Revision 11372
Added by Aaron Marcuse-Kubitza about 11 years ago
web/links/index.htm | ||
---|---|---|
491 | 491 |
<DT><A HREF="http://www.postgresql.org/docs/9.0/static/sql-syntax-calling-funcs.html" name="http://www.postgresql.org/docs/9.0/static/sql-syntax-calling-funcs.html" ADD_DATE="1340057070" ICON_URI="http://www.postgresql.org/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://www.postgresql.org/favicon.ico" style="margin-right: 0.5em;"/>PostgreSQL: Documentation: 9.0: Calling Functions</A><a name="PostgreSQL: Documentation: 9.0: Calling Functions" href="#PostgreSQL: Documentation: 9.0: Calling Functions" style="margin-left: 0.5em;">¶</a> |
492 | 492 |
<DT><A HREF="http://www.postgresql.org/docs/9.1/static/sql-altertable.html" name="http://www.postgresql.org/docs/9.1/static/sql-altertable.html" ADD_DATE="1367836103" ICON_URI="http://www.postgresql.org/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://www.postgresql.org/favicon.ico" style="margin-right: 0.5em;"/>PostgreSQL: Documentation: 9.1: ALTER TABLE</A><a name="PostgreSQL: Documentation: 9.1: ALTER TABLE" href="#PostgreSQL: Documentation: 9.1: ALTER TABLE" style="margin-left: 0.5em;">¶</a> |
493 | 493 |
<DD>"As an exception, if the USING clause does not change the column contents and the old type is either binary coercible to the new type or an unconstrained domain over the new type, a table rewrite is not needed, but any indexes on the affected columns must still be rebuilt" |
494 |
|
|
495 |
"If the constraint is marked NOT VALID, the potentially-lengthy initial check to verify that all rows in the table satisfy the constraint is skipped. *The constraint will still be enforced against subsequent inserts or updates* (that is, they'll fail unless there is a matching row in the referenced table)." [+emph] |
|
496 |
it has been experimentally verified that the constraint *is* enforced against new rows, so this unfortunately *cannot* be used to temporarily disable an fkey |
|
497 |
|
|
498 |
"VALIDATE CONSTRAINT |
|
499 |
|
|
500 |
This form validates a foreign key constraint that was previously created as NOT VALID, by scanning the table to ensure there are no unmatched rows. Nothing happens if the constraint is already marked valid." |
|
501 |
|
|
502 |
"Disabling or enabling internally generated constraint triggers requires superuser privileges" |
|
503 |
if you try to disable a foreign key constraint's trigger, you will get an error, even if it is marked NOT VALID: |
|
504 |
"ERROR: permission denied: "RI_ConstraintTrigger_..." is a system trigger |
|
505 |
SQL state: 42501" |
|
494 | 506 |
<DT><A HREF="http://www.postgresql.org/docs/9.1/static/sql-analyze.html" name="http://www.postgresql.org/docs/9.1/static/sql-analyze.html" ADD_DATE="1377904843" ICON_URI="http://www.postgresql.org/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://www.postgresql.org/favicon.ico" style="margin-right: 0.5em;"/>PostgreSQL: Documentation: 9.1: ANALYZE</A><a name="PostgreSQL: Documentation: 9.1: ANALYZE" href="#PostgreSQL: Documentation: 9.1: ANALYZE" style="margin-left: 0.5em;">¶</a> |
495 | 507 |
<DD>"the autovacuum daemon (see Section 23.1.5) takes care of automatic analyzing of tables when they are first loaded with data, and as they change throughout regular operation" |
496 | 508 |
<DT><A HREF="http://www.postgresql.org/docs/9.1/static/plpgsql-statements.html#PLPGSQL-STATEMENTS-SQL-ONEROW" name="http://www.postgresql.org/docs/9.1/static/plpgsql-statements.html#PLPGSQL-STATEMENTS-SQL-ONEROW" ADD_DATE="1379915256" ICON_URI="http://www.postgresql.org/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://www.postgresql.org/favicon.ico" style="margin-right: 0.5em;"/>PostgreSQL: Documentation: 9.1: Basic Statements: 39.5.4. Executing Dynamic Commands</A><a name="PostgreSQL: Documentation: 9.1: Basic Statements: 39.5.4. Executing Dynamic Commands" href="#PostgreSQL: Documentation: 9.1: Basic Statements: 39.5.4. Executing Dynamic Commands" style="margin-left: 0.5em;">¶</a> |
... | ... | |
748 | 760 |
<DT><A HREF="http://stackoverflow.com/questions/398884/postgresql-hash-index" name="http://stackoverflow.com/questions/398884/postgresql-hash-index" ADD_DATE="1366152256" ICON_URI="http://stackoverflow.com/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://stackoverflow.com/favicon.ico" style="margin-right: 0.5em;"/>sql - PostgreSQL HASH index - Stack Overflow</A><a name="sql - PostgreSQL HASH index - Stack Overflow" href="#sql - PostgreSQL HASH index - Stack Overflow" style="margin-left: 0.5em;">¶</a> |
749 | 761 |
<DD>"It should be noted that as of version 8.4 the issue with Hash indexes being less efficient and slower than b-tree indexes is resolved" |
750 | 762 |
<DT><A HREF="http://stackoverflow.com/questions/12606842/what-is-the-maximum-number-of-columns-in-a-postgresql-select-query" name="http://stackoverflow.com/questions/12606842/what-is-the-maximum-number-of-columns-in-a-postgresql-select-query" ADD_DATE="1360679821" ICON_URI="http://stackoverflow.com/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://stackoverflow.com/favicon.ico" style="margin-right: 0.5em;"/>sql - What is the maximum number of columns in a PostgreSQL select query - Stack Overflow</A><a name="sql - What is the maximum number of columns in a PostgreSQL select query - Stack Overflow" href="#sql - What is the maximum number of columns in a PostgreSQL select query - Stack Overflow" style="margin-left: 0.5em;">¶</a> |
763 |
<DT><A HREF="http://stackoverflow.com/questions/4848964/postgresql-difference-between-text-and-varchar-character-varying/4848999#4848999" name="http://stackoverflow.com/questions/4848964/postgresql-difference-between-text-and-varchar-character-varying/4848999#4848999" ADD_DATE="1382047506" ICON_URI="http://cdn.sstatic.net/stackoverflow/img/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://cdn.sstatic.net/stackoverflow/img/favicon.ico" style="margin-right: 0.5em;"/>string - PostgreSQL: Difference between text and varchar (character varying) - Stack Overflow</A><a name="string - PostgreSQL: Difference between text and varchar (character varying) - Stack Overflow" href="#string - PostgreSQL: Difference between text and varchar (character varying) - Stack Overflow" style="margin-left: 0.5em;">¶</a> |
|
751 | 764 |
<DT><A HREF="http://wiki.postgresql.org/wiki/String_Functions_and_Operators_Compatibility#concat_ws" name="http://wiki.postgresql.org/wiki/String_Functions_and_Operators_Compatibility#concat_ws" ADD_DATE="1362550434" ICON_URI="http://wiki.postgresql.org/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://wiki.postgresql.org/favicon.ico" style="margin-right: 0.5em;"/>String Functions and Operators Compatibility - PostgreSQL wiki</A><a name="String Functions and Operators Compatibility - PostgreSQL wiki" href="#String Functions and Operators Compatibility - PostgreSQL wiki" style="margin-left: 0.5em;">¶</a> |
752 | 765 |
<DT><A HREF="http://vibhorkumar.wordpress.com/2011/10/28/instead-of-trigger/" name="http://vibhorkumar.wordpress.com/2011/10/28/instead-of-trigger/" ADD_DATE="1379908228" ICON_URI="http://1.gravatar.com/blavatar/b8bffed7fdb4c45db7f4f07f397841f3?s=16" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://1.gravatar.com/blavatar/b8bffed7fdb4c45db7f4f07f397841f3?s=16" style="margin-right: 0.5em;"/>Updateable Views in PostgreSQL 9.1 using INSTEAD OF Trigger | Database Technologies</A><a name="Updateable Views in PostgreSQL 9.1 using INSTEAD OF Trigger | Database Technologies" href="#Updateable Views in PostgreSQL 9.1 using INSTEAD OF Trigger | Database Technologies" style="margin-left: 0.5em;">¶</a> |
753 | 766 |
<DD>page's description: About updateable views user ask many times. Is it supported in PostgreSQL? Can we write Complex updateable views? Answer for above is yes. Till 9.0, we have to use RULE for implementing updateable view. Again, RULE Implementation used to be a bit tidious, since user has to write multiple RULES to implement this feature. Following… |
... | ... | |
1007 | 1020 |
</DL><p> |
1008 | 1021 |
<DT><a name="Mac" href="#Mac"><H3 ADD_DATE="1361008732">Mac</H3></a> |
1009 | 1022 |
<DL><p> |
1010 |
<DT><a name="10.8 Mountain Lion" href="#10.8 Mountain Lion"><H3 ADD_DATE="1368126870">10.8 Mountain Lion</H3></a>
|
|
1023 |
<DT><a name="10.8 Mountain Lion upgrade" href="#10.8 Mountain Lion upgrade"><H3 ADD_DATE="1368126870">10.8 Mountain Lion upgrade</H3></a>
|
|
1011 | 1024 |
<DD>WARNING: DO NOT upgrade unless you are prepared to fix several programs broken by the upgrade: svn, Apache PHP, Apache ~/Sites dirs, PostgreSQL, Python psycopg2, Python OrderedDict, X11, Xcode |
1012 | 1025 |
instructions are in the corresponding subdirs. |
1013 | 1026 |
these programs will be COMPLETELY UNAVAILABLE until they are manually fixed! |
... | ... | |
1182 | 1195 |
<DT><A HREF="http://www.macworld.com/article/1138403/dockbounce.html" name="http://www.macworld.com/article/1138403/dockbounce.html" ADD_DATE="1367786323" ICON_URI="http://www.macworld.com/www.idgcsmb.mw/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://www.macworld.com/www.idgcsmb.mw/favicon.ico" style="margin-right: 0.5em;"/>Disable the Dock’s ‘bounce to alert’ behavior | Macworld</A><a name="Disable the Dock’s ‘bounce to alert’ behavior | Macworld" href="#Disable the Dock’s ‘bounce to alert’ behavior | Macworld" style="margin-left: 0.5em;">¶</a> |
1183 | 1196 |
<DD>page's description: Learn how to prevent icons from bouncing in the Dock to get your attention |
1184 | 1197 |
<DT><A HREF="https://discussions.apple.com/thread/3324489?start=0&tstart=0" name="https://discussions.apple.com/thread/3324489?start=0&tstart=0" ADD_DATE="1363328233" ICON_URI="https://ssl.apple.com/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="https://ssl.apple.com/favicon.ico" style="margin-right: 0.5em;"/>firewall blocks ssh since Sept 12 update: Apple Support Communities</A><a name="firewall blocks ssh since Sept 12 update: Apple Support Communities" href="#firewall blocks ssh since Sept 12 update: Apple Support Communities" style="margin-left: 0.5em;">¶</a> |
1198 |
<DT><A HREF="http://forums.macrumors.com/showthread.php?t=1254720" name="http://forums.macrumors.com/showthread.php?t=1254720" ADD_DATE="1381985356" ICON_URI="http://forums.macrumors.com/favicon.ico" LAST_CHARSET="windows-1252"><img width="16" height="16" src="http://forums.macrumors.com/favicon.ico" style="margin-right: 0.5em;"/>Flush DNS cache changed in Lion - MacRumors Forums</A><a name="Flush DNS cache changed in Lion - MacRumors Forums" href="#Flush DNS cache changed in Lion - MacRumors Forums" style="margin-left: 0.5em;">¶</a> |
|
1199 |
<DD>page's description: Flush DNS cache changed in Lion Mac OS X 10.7 Lion |
|
1200 |
|
|
1201 |
"What works under 10.7 is: |
|
1202 |
sudo killall -HUP mDNSResponder |
|
1203 |
" |
|
1185 | 1204 |
<DT><A HREF="http://forums.macrumors.com/showthread.php?t=1281546" name="http://forums.macrumors.com/showthread.php?t=1281546" ADD_DATE="1367490962" ICON_URI="http://forums.macrumors.com/favicon.ico" LAST_CHARSET="windows-1252"><img width="16" height="16" src="http://forums.macrumors.com/favicon.ico" style="margin-right: 0.5em;"/>Force every folder to be arranged by kind and sorted by name? - MacRumors Forums</A><a name="Force every folder to be arranged by kind and sorted by name? - MacRumors Forums" href="#Force every folder to be arranged by kind and sorted by name? - MacRumors Forums" style="margin-left: 0.5em;">¶</a> |
1186 | 1205 |
<DD>page's description: Force every folder to be arranged by kind and sorted by name? Mac OS X 10.7 Lion |
1187 | 1206 |
<DT><A HREF="http://stackoverflow.com/questions/4833052/how-do-i-remove-the-extended-attributes-on-a-file-in-mac-osx" name="http://stackoverflow.com/questions/4833052/how-do-i-remove-the-extended-attributes-on-a-file-in-mac-osx" ADD_DATE="1368582727" ICON_URI="http://cdn.sstatic.net/stackoverflow/img/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://cdn.sstatic.net/stackoverflow/img/favicon.ico" style="margin-right: 0.5em;"/>How do I remove the "extended attributes" on a file in mac osx - Stack Overflow</A><a name="How do I remove the "extended attributes" on a file in mac osx - Stack Overflow" href="#How do I remove the "extended attributes" on a file in mac osx - Stack Overflow" style="margin-left: 0.5em;">¶</a> |
... | ... | |
1194 | 1213 |
<DT><A HREF="http://themainframe.ca/2011/06/29/install-htop-on-mac-os-x/" name="http://themainframe.ca/2011/06/29/install-htop-on-mac-os-x/" ADD_DATE="1340928610" ICON_URI="http://themainframe.ca/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://themainframe.ca/favicon.ico" style="margin-right: 0.5em;"/>Install htop on Mac OS X - opinion, technology, culture, politics - themainframe.ca</A><a name="Install htop on Mac OS X - opinion, technology, culture, politics - themainframe.ca" href="#Install htop on Mac OS X - opinion, technology, culture, politics - themainframe.ca" style="margin-left: 0.5em;">¶</a> |
1195 | 1214 |
<DT><A HREF="http://guides.macrumors.com/Linux_Time_Capsule_Server" name="http://guides.macrumors.com/Linux_Time_Capsule_Server" ADD_DATE="1368643133" ICON_URI="http://guides.macrumors.com/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://guides.macrumors.com/favicon.ico" style="margin-right: 0.5em;"/>Linux Time Capsule Server - Mac Guides</A><a name="Linux Time Capsule Server - Mac Guides" href="#Linux Time Capsule Server - Mac Guides" style="margin-left: 0.5em;">¶</a> |
1196 | 1215 |
<DT><A HREF="http://hints.macworld.com/article.php?story=20040203002020660" name="http://hints.macworld.com/article.php?story=20040203002020660" ADD_DATE="1367385714" ICON_URI="http://hints.macworld.com/favicon.ico" LAST_CHARSET="windows-1252"><img width="16" height="16" src="http://hints.macworld.com/favicon.ico" style="margin-right: 0.5em;"/>Lock the keychain when the screensaver activates - Mac OS X Hints</A><a name="Lock the keychain when the screensaver activates - Mac OS X Hints" href="#Lock the keychain when the screensaver activates - Mac OS X Hints" style="margin-left: 0.5em;">¶</a> |
1216 |
<DT><A HREF="http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.0-white-13-specs.html" name="http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.0-white-13-specs.html" ADD_DATE="1379484700" ICON_URI="http://www.everymac.com/favicon.ico" LAST_CHARSET="windows-1252"><img width="16" height="16" src="http://www.everymac.com/favicon.ico" style="margin-right: 0.5em;"/>MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com</A><a name="MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com" href="#MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com" style="margin-left: 0.5em;">¶</a> |
|
1217 |
<DD>page's description: Technical specifications for the MacBook "Core 2 Duo" 2.0 13" (White/06). Dates sold, processor type, memory info, hard drive details, price and more. |
|
1218 |
|
|
1219 |
"a 1280 by 800 native resolution" (example small-screen computer) |
|
1220 |
visible browser area for the small-screen computer: 1203x716px |
|
1197 | 1221 |
<DT><A HREF="http://support.apple.com/kb/HT5343" name="http://support.apple.com/kb/HT5343" ADD_DATE="1363155945" ICON_URI="http://support.apple.com/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://support.apple.com/favicon.ico" style="margin-right: 0.5em;"/>OS X: How to reset the DNS cache</A><a name="OS X: How to reset the DNS cache" href="#OS X: How to reset the DNS cache" style="margin-left: 0.5em;">¶</a> |
1198 | 1222 |
<DD>page's description: <p>Learn how to reset (flush) the DNS cache. </p> |
1199 | 1223 |
<DT><A HREF="http://superuser.com/questions/279891/list-all-members-of-a-group-mac-os-x" name="http://superuser.com/questions/279891/list-all-members-of-a-group-mac-os-x" ADD_DATE="1361008714" ICON_URI="http://cdn.sstatic.net/superuser/img/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://cdn.sstatic.net/superuser/img/favicon.ico" style="margin-right: 0.5em;"/>osx - List all members of a group (Mac OS X) - Super User</A><a name="osx - List all members of a group (Mac OS X) - Super User" href="#osx - List all members of a group (Mac OS X) - Super User" style="margin-left: 0.5em;">¶</a> |
... | ... | |
1201 | 1225 |
<DT><A HREF="http://forums.techarena.in/operating-systems/1421137.htm" name="http://forums.techarena.in/operating-systems/1421137.htm" ADD_DATE="1332983804" ICON_URI="http://forums.techarena.in/favicon.ico" LAST_CHARSET="ISO-8859-1"><img width="16" height="16" src="http://forums.techarena.in/favicon.ico" style="margin-right: 0.5em;"/>Quick Look Helper process eating virtual memory on Mac - Operating Systems</A><a name="Quick Look Helper process eating virtual memory on Mac - Operating Systems" href="#Quick Look Helper process eating virtual memory on Mac - Operating Systems" style="margin-left: 0.5em;">¶</a> |
1202 | 1226 |
<DD>page's description: Quick Look Helper process eating virtual memory on Mac, Operating Systems, Computer end-user technical support troubleshooting for Windows, Mac, and Linux. Operating system tips and tweaks as well.. |
1203 | 1227 |
<DT><A HREF="http://superuser.com/questions/299758/what-is-the-mac-terminal-command-to-remove-acl" name="http://superuser.com/questions/299758/what-is-the-mac-terminal-command-to-remove-acl" ADD_DATE="1368582599" ICON_URI="http://cdn.sstatic.net/superuser/img/favicon.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://cdn.sstatic.net/superuser/img/favicon.ico" style="margin-right: 0.5em;"/>What is the Mac terminal command to remove ACL? - Super User</A><a name="What is the Mac terminal command to remove ACL? - Super User" href="#What is the Mac terminal command to remove ACL? - Super User" style="margin-left: 0.5em;">¶</a> |
1204 |
<DT><A HREF="http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.0-white-13-specs.html" name="http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.0-white-13-specs.html" ADD_DATE="1379484700" ICON_URI="http://www.everymac.com/favicon.ico" LAST_CHARSET="windows-1252"><img width="16" height="16" src="http://www.everymac.com/favicon.ico" style="margin-right: 0.5em;"/>MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com</A><a name="MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com" href="#MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (Late 2006, MA700LL/A, MacBook2,1, A1181, 2121) @ EveryMac.com" style="margin-left: 0.5em;">¶</a> |
|
1205 |
<DD>page's description: Technical specifications for the MacBook "Core 2 Duo" 2.0 13" (White/06). Dates sold, processor type, memory info, hard drive details, price and more. |
|
1206 |
|
|
1207 |
"a 1280 by 800 native resolution" (example small-screen computer) |
|
1208 |
visible browser area for the small-screen computer: 1203x716px |
|
1209 | 1228 |
</DL><p> |
1210 | 1229 |
<DT><a name="\0" href="#\0"><H3 ADD_DATE="1370140145">\0</H3></a> |
1211 | 1230 |
<DL><p> |
... | ... | |
1743 | 1762 |
<DT><A HREF="http://purl.org/docs/index.html" name="http://purl.org/docs/index.html" ADD_DATE="1363161370" LAST_CHARSET="UTF-8"><img width="16" height="16" src="blank.gif" style="margin-right: 0.5em;"/>PURL Home Page</A><a name="PURL Home Page" href="#PURL Home Page" style="margin-left: 0.5em;">¶</a> |
1744 | 1763 |
<DT><A HREF="https://bitly.com/" name="https://bitly.com/" ADD_DATE="1362840677" ICON_URI="https://d1ayxb9ooonjts.cloudfront.net/22f1d0b2154c2f58baf06f92038d262a.png"><img width="16" height="16" src="https://d1ayxb9ooonjts.cloudfront.net/22f1d0b2154c2f58baf06f92038d262a.png" style="margin-right: 0.5em;"/>bitly</A><a name="bitly" href="#bitly" style="margin-left: 0.5em;">¶</a> |
1745 | 1764 |
<DT><A HREF="http://meyerweb.com/eric/tools/dencoder/" name="http://meyerweb.com/eric/tools/dencoder/" ADD_DATE="1333064653" ICON_URI="http://meyerweb.com/favicon.ico" LAST_CHARSET="ISO-8859-1"><img width="16" height="16" src="http://meyerweb.com/favicon.ico" style="margin-right: 0.5em;"/>URL Decoder/Encoder</A><a name="URL Decoder/Encoder" href="#URL Decoder/Encoder" style="margin-left: 0.5em;">¶</a> |
1765 |
<DT><A HREF="http://www.dwfaq.com/tutorials/miscellaneous/special_links_encoding.asp" name="http://www.dwfaq.com/tutorials/miscellaneous/special_links_encoding.asp" ADD_DATE="1382044946" LAST_CHARSET="windows-1252"><img width="16" height="16" src="blank.gif" style="margin-right: 0.5em;"/>Not your typical links- URL Encoding at Dreamweaver FAQ.com</A><a name="Not your typical links- URL Encoding at Dreamweaver FAQ.com" href="#Not your typical links- URL Encoding at Dreamweaver FAQ.com" style="margin-left: 0.5em;">¶</a> |
|
1766 |
<DD>page's description: Some characters are not safe to use in a URL without first being encoded. The most common URL escape code is %20, which represents a space. Listed here are some of the most common encoding characters with examples of their use. |
|
1746 | 1767 |
</DL><p> |
1747 | 1768 |
<DT><A HREF="http://en.wikipedia.org/wiki/Data_URI_scheme" name="http://en.wikipedia.org/wiki/Data_URI_scheme" ADD_DATE="1367370763" ICON_URI="http://bits.wikimedia.org/favicon/wikipedia.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="http://bits.wikimedia.org/favicon/wikipedia.ico" style="margin-right: 0.5em;"/>Data URI scheme - Wikipedia, the free encyclopedia</A><a name="Data URI scheme - Wikipedia, the free encyclopedia" href="#Data URI scheme - Wikipedia, the free encyclopedia" style="margin-left: 0.5em;">¶</a> |
1748 | 1769 |
</DL><p> |
... | ... | |
1777 | 1798 |
<DD>page's description: Free HTML XHTML CSS JavaScript jQuery XML DOM XSL XSLT RSS AJAX ASP .NET PHP SQL tutorials, references, examples for web building. |
1778 | 1799 |
</DL><p> |
1779 | 1800 |
<DT><A HREF="https://www.google.com/search?q=%s" name="https://www.google.com/search?q=%s" ADD_DATE="1318464507" ICON_URI="https://www.google.com/favicon.ico" SHORTCUTURL="g"><img width="16" height="16" src="https://www.google.com/favicon.ico" style="margin-right: 0.5em;"/>Google</A><a name="Google" href="#Google" style="margin-left: 0.5em;">¶</a> |
1780 |
<DT><A HREF="https://www.google.com/calendar/render" name="https://www.google.com/calendar/render" ADD_DATE="1318014776" ICON_URI="https://calendar.google.com/googlecalendar/images/favicon_v2013_12.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="https://calendar.google.com/googlecalendar/images/favicon_v2013_12.ico" style="margin-right: 0.5em;"/>Google Calendar</A><a name="Google Calendar" href="#Google Calendar" style="margin-left: 0.5em;">¶</a>
|
|
1801 |
<DT><A HREF="https://www.google.com/calendar/render" name="https://www.google.com/calendar/render" ADD_DATE="1318014776" ICON_URI="https://calendar.google.com/googlecalendar/images/favicon_v2013_18.ico" LAST_CHARSET="UTF-8"><img width="16" height="16" src="https://calendar.google.com/googlecalendar/images/favicon_v2013_18.ico" style="margin-right: 0.5em;"/>Google Calendar</A><a name="Google Calendar" href="#Google Calendar" style="margin-left: 0.5em;">¶</a>
|
|
1781 | 1802 |
<DT><A HREF="javascript:(function(){var%20ca,cea,cs,df,dfe,i,j,x,y;function%20n(i,what){return%20i+%22%20%22+what+((i==1)?%22%22:%22s%22)}ca=cea=cs=0;df=document.forms;for(i=0;i<df.length;++i){x=df[i];dfe=x.elements;if(x.onsubmit){x.onsubmit=%22%22;++cs;}if(x.attributes[%22autocomplete%22]){x.attributes[%22autocomplete%22].value=%22on%22;++ca;}for(j=0;j<dfe.length;++j){y=dfe[j];if(y.attributes[%22autocomplete%22]){y.attributes[%22autocomplete%22].value=%22on%22;++cea;}}}alert(%22Removed%20autocomplete=off%20from%20%22+n(ca,%22form%22)+%22%20and%20from%20%22+n(cea,%22form%20element%22)+%22,%20and%20removed%20onsubmit%20from%20%22+n(cs,%22form%22)+%22.%20After%20you%20type%20your%20password%20and%20submit%20the%20form,%20the%20browser%20will%20offer%20to%20remember%20your%20password.%22)})();" name="javascript:(function(){var%20ca,cea,cs,df,dfe,i,j,x,y;function%20n(i,what){return%20i+%22%20%22+what+((i==1)?%22%22:%22s%22)}ca=cea=cs=0;df=document.forms;for(i=0;i<df.length;++i){x=df[i];dfe=x.elements;if(x.onsubmit){x.onsubmit=%22%22;++cs;}if(x.attributes[%22autocomplete%22]){x.attributes[%22autocomplete%22].value=%22on%22;++ca;}for(j=0;j<dfe.length;++j){y=dfe[j];if(y.attributes[%22autocomplete%22]){y.attributes[%22autocomplete%22].value=%22on%22;++cea;}}}alert(%22Removed%20autocomplete=off%20from%20%22+n(ca,%22form%22)+%22%20and%20from%20%22+n(cea,%22form%20element%22)+%22,%20and%20removed%20onsubmit%20from%20%22+n(cs,%22form%22)+%22.%20After%20you%20type%20your%20password%20and%20submit%20the%20form,%20the%20browser%20will%20offer%20to%20remember%20your%20password.%22)})();" ADD_DATE="1318292619" SHORTCUTURL="r"><img width="16" height="16" src="blank.gif" style="margin-right: 0.5em;"/>remember password</A><a name="remember password" href="#remember password" style="margin-left: 0.5em;">¶</a> |
1782 | 1803 |
<HR> <DT><A HREF="place:sort=14&type=6&maxResults=10&queryType=1" name="place:sort=14&type=6&maxResults=10&queryType=1"><img width="16" height="16" src="blank.gif" style="margin-right: 0.5em;"/>Recent Tags</A><a name="Recent Tags" href="#Recent Tags" style="margin-left: 0.5em;">¶</a> |
1783 | 1804 |
<DT><A HREF="place:folder=BOOKMARKS_MENU&folder=UNFILED_BOOKMARKS&folder=TOOLBAR&sort=12&excludeQueries=1&maxResults=10&queryType=1" name="place:folder=BOOKMARKS_MENU&folder=UNFILED_BOOKMARKS&folder=TOOLBAR&sort=12&excludeQueries=1&maxResults=10&queryType=1"><img width="16" height="16" src="blank.gif" style="margin-right: 0.5em;"/>Recently Bookmarked</A><a name="Recently Bookmarked" href="#Recently Bookmarked" style="margin-left: 0.5em;">¶</a> |
Also available in: Unified diff
web/links/index.htm: updated to Firefox bookmarks. PostgreSQL: ALTER TABLE: added documentation about disabling of foreign key triggers, which is only possible by the superuser. note that marking a foreign key constraint as NOT VALID does not disable the trigger, so NOT VALID cannot be used for this purpose. this would be used to add fkeys from core VegBIEN tables to validation results tables such as the geoscrubbing results, without needing to import the validation results directly into core VegBIEN (which is time-consuming and currently must be done before input data is loaded, requiring a datasource reload to add geoscrubbing results).