CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 01:32:20 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100112181255
location: https://web.archive.org/web/20100112181255/https://github.com/jquery/jquery-wikiapi2xml
server-timing: captures_list;dur=1.228118, exclusion.robots;dur=0.026621, exclusion.robots.policy;dur=0.014324, esindex;dur=0.556363, cdx.remote;dur=38.643712, LoadShardBlock;dur=210.692830, PetaboxLoader3.datanode;dur=151.215024, PetaboxLoader3.resolve;dur=51.510174
x-app-server: wwwb-app220
x-ts: 302
x-tr: 279
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app220; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 30 Jul 2025 01:32:21 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 12 Jan 2010 18:12:54 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "17e0b9ba37e7f98e94a59384ea7a43d0"
x-archive-orig-x-runtime: 1057ms
x-archive-orig-content-length: 22700
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 12 Jan 2010 18:12:55 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 11 Jan 2010 10:59:23 GMT", ; rel="prev memento"; datetime="Mon, 11 Jan 2010 10:59:23 GMT", ; rel="memento"; datetime="Tue, 12 Jan 2010 18:12:55 GMT", ; rel="next memento"; datetime="Sun, 14 Feb 2010 14:59:46 GMT", ; rel="last memento"; datetime="Sun, 07 Aug 2016 09:46:36 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_13_20100112114729_crawl103_IndexOnly-c/52_13_20100112180425_crawl101.arc.gz
server-timing: captures_list;dur=0.548542, exclusion.robots;dur=0.017988, exclusion.robots.policy;dur=0.008922, esindex;dur=0.010358, cdx.remote;dur=17.982244, LoadShardBlock;dur=313.580360, PetaboxLoader3.datanode;dur=124.853784, PetaboxLoader3.resolve;dur=389.646377, load_resource;dur=255.259007
x-app-server: wwwb-app220
x-ts: 200
x-tr: 652
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
jquery's jquery-wikiapi2xml at master - GitHub
This service is courtesy of Pledgie.
jquery / jquery-wikiapi2xml
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Convert the jQuery wiki documentation to an XML file. — Read more
name | age | message | |
---|---|---|---|
![]() |
README | Sat Jul 25 07:48:00 -0700 2009 | Moving over from the jQuery SVN repository. [jeresig] |
![]() |
createjQueryXMLDocs.py | Sat Jul 25 07:48:00 -0700 2009 | Moving over from the jQuery SVN repository. [jeresig] |
![]() |
createjQueryXMLDocsOldFormat.py | Sat Jul 25 07:48:00 -0700 2009 | Moving over from the jQuery SVN repository. [jeresig] |
![]() |
export.php | Sat Jul 25 07:48:00 -0700 2009 | Moving over from the jQuery SVN repository. [jeresig] |
README
The python script createjQueryXMLDocs.py goes to the internet and retrieves API data from jQuery's wiki then converts it to an XML format for use by other applications. It was written by David Serduke in late 2007. There are a few options that can be passed in: help: For reading and displaying this help out of SVN. (defaults to 'false' unless no parameters were set) supresscontenttype: For use when not running on a web server. (defaults to 'false') start: The starting place in the wiki. (defaults to 'API') exporter: The wiki XML exporter page. (defaults to 'https://docs/jquery.com/Special:Export') version: The version number to put on the generated XML document. (defaults to 'Unknown') convertlinks: The method to convert wiki links like [[Ajax_Events|Ajax Events]]. Can have the value of 'none', 'html', or 'node'. These either i(respectively) send it on, convert to a string like "<a href='Ajax_Events'>Ajax Events</a>", or create an XML node named 'a' with the same information. (defaults to 'html') forlinksurl: Value to prepend to any wiki link like 'https://docs.jquery.com/' (defaults to '') verbose: Can add an XML node 'info' to the root 'docs' element that has conversion details mostly for debugging purposes. It will also create "pretty" xml when not set to false. Can have the value of 'false', 'true', or 'super'. (defaults to 'false') debug: Will force the output to be text/plain instead of text/xml and put verbose messages to normal print instead of sticking them in the xml tree. (defaults to 'false') The basic XML format is as follows: <docs timestamp="[last time anything was modified]" version="[version parameter]" startdoc='[start param]'> <info> - this node is here if 'verbose' parameter was set to other than 'false' <msg>Loading...</msg> </info> <cat value="Core"> <subcat value="$(...) The jQuery Function"> <function name="jQuery" .../> <function .../> <selector .../> <property .../> </subcat> </cat> </docs> The 'cat' and 'subcat' elements are optional depending on the 'start' parameter and what is in the wiki data. Other than that, most of the wiki data is converted directly to an XML equivilent so if anything new is added to the wiki it should be sent right over to the XML document the next time it is created. Here are a few examples of how to use the script. To get this help: https://[location of script]/createjQueryXMLDocs.py To get the API: https://[location of script]/createjQueryXMLDocs.py?version=1.2.2 To get the UI: https://[location of script]/createjQueryXMLDocs.py?start=UI&version=1.1 To get a specific function: https://[location of script]/createjQueryXMLDocs.py?start=Events/bind&version=1.2.2 To get a debug a problem: https://[location of script]/createjQueryXMLDocs.py?start=Selectors&verbose=super&debug=true
This feature is coming soon. Sit tight!