├── .gitignore ├── README.txt ├── dates ├── date-parser-tests.xqy └── date-parser.xqy ├── hashing └── hashing.xqy ├── http ├── cookies.xqy ├── lib-uitools.xqy ├── rapid-app-demo │ ├── Press Release Content 20080327.zip │ ├── README.txt │ ├── docs │ │ ├── Database Configuration Template.xls │ │ ├── Demo Notes.docx │ │ └── Installation Readme.doc │ └── src │ │ ├── appspecific-width.css │ │ ├── css │ │ ├── appspecific-demo.css │ │ ├── appspecific.css │ │ ├── basicui.css │ │ ├── search-ui.css │ │ ├── style.css │ │ └── template.css │ │ ├── default.xqy │ │ ├── example-columns.xqy │ │ ├── example-default.xqy │ │ ├── example-width.xqy │ │ ├── get-expfile.xqy │ │ ├── get-file.xqy │ │ ├── images │ │ ├── pwc │ │ │ ├── alert │ │ │ │ ├── bottom.gif │ │ │ │ ├── bottom_left.gif │ │ │ │ ├── bottom_right.gif │ │ │ │ ├── left.gif │ │ │ │ ├── overlay.png │ │ │ │ ├── progress.gif │ │ │ │ ├── right.gif │ │ │ │ ├── top.gif │ │ │ │ ├── top_left.gif │ │ │ │ └── top_right.gif │ │ │ ├── alphacube │ │ │ │ ├── bottom-left-c.gif │ │ │ │ ├── bottom-middle.gif │ │ │ │ ├── bottom-right-c.gif │ │ │ │ ├── button-close-focus.gif │ │ │ │ ├── button-max-focus.gif │ │ │ │ ├── button-min-focus.gif │ │ │ │ ├── frame-left.gif │ │ │ │ ├── frame-right.gif │ │ │ │ ├── left-top.gif │ │ │ │ ├── right-top.gif │ │ │ │ └── top-middle.gif │ │ │ └── default │ │ │ │ ├── bottom_left.gif │ │ │ │ ├── bottom_mid.gif │ │ │ │ ├── bottom_right.gif │ │ │ │ ├── bottom_right_resize.gif │ │ │ │ ├── center_left.gif │ │ │ │ ├── center_right.gif │ │ │ │ ├── clear.gif │ │ │ │ ├── close.gif │ │ │ │ ├── inspect.gif │ │ │ │ ├── maximize.gif │ │ │ │ ├── minimize.gif │ │ │ │ ├── overlay.png │ │ │ │ ├── resize.gif │ │ │ │ ├── sizer.gif │ │ │ │ ├── top_left.gif │ │ │ │ ├── top_mid.gif │ │ │ │ └── top_right.gif │ │ ├── silk │ │ │ ├── accept.png │ │ │ ├── building.png │ │ │ ├── bullet_black.png │ │ │ ├── bullet_delete.png │ │ │ ├── bullet_go.png │ │ │ ├── coins.png │ │ │ ├── error.png │ │ │ ├── exclamation.png │ │ │ ├── group.png │ │ │ ├── page.png │ │ │ ├── user_suit.png │ │ │ └── world.png │ │ └── spacer.gif │ │ ├── js │ │ ├── appspecific.js │ │ ├── builder.js │ │ ├── controls.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── prototype.js │ │ ├── scriptaculous.js │ │ ├── slider.js │ │ ├── sound.js │ │ ├── ui.js │ │ ├── unittest.js │ │ └── window.js │ │ ├── modules │ │ ├── display-demo.xqy │ │ ├── display.xqy │ │ ├── lib-parser-custom.xqy │ │ ├── lib-parser.xqy │ │ ├── lib-search-custom.xqy │ │ ├── lib-search.xqy │ │ ├── lib-uitools.xqy │ │ ├── page-layout-demo.xqy │ │ ├── page-layout.xqy │ │ ├── search-ui.xqy │ │ ├── test-lib-parser.xqy │ │ └── widgets.xqy │ │ ├── request.xqy │ │ ├── search-help.xqy │ │ ├── search.xqy │ │ ├── template.html │ │ ├── template.xqy │ │ └── widgets │ │ ├── blockmenu.html │ │ ├── dropnav.html │ │ ├── formattedform.html │ │ ├── mainmenu.html │ │ ├── messages.html │ │ ├── pagination.html │ │ ├── quicksearch.html │ │ └── stackmenu.html ├── search-ui │ ├── example-screenshot.PNG │ ├── examples.txt │ ├── search-ui.css │ └── search-ui.xqy └── statefull-cookies.xqy ├── json └── json.xqy ├── memupdate ├── example_usage.xqy └── in-mem-update.xqy ├── properties └── properties.xqy ├── rdfa ├── LICENSE.txt ├── rdfa.xqy └── rdfa_extract.xqy ├── scaffolding ├── readme.txt └── scaffolding.xqy ├── search └── query-xml │ ├── example-search.xqy │ └── query-xml.xqy └── ziprelease.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/README.txt -------------------------------------------------------------------------------- /dates/date-parser-tests.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/dates/date-parser-tests.xqy -------------------------------------------------------------------------------- /dates/date-parser.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/dates/date-parser.xqy -------------------------------------------------------------------------------- /hashing/hashing.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/hashing/hashing.xqy -------------------------------------------------------------------------------- /http/cookies.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/cookies.xqy -------------------------------------------------------------------------------- /http/lib-uitools.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/lib-uitools.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/Press Release Content 20080327.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/Press Release Content 20080327.zip -------------------------------------------------------------------------------- /http/rapid-app-demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/README.txt -------------------------------------------------------------------------------- /http/rapid-app-demo/docs/Database Configuration Template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/docs/Database Configuration Template.xls -------------------------------------------------------------------------------- /http/rapid-app-demo/docs/Demo Notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/docs/Demo Notes.docx -------------------------------------------------------------------------------- /http/rapid-app-demo/docs/Installation Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/docs/Installation Readme.doc -------------------------------------------------------------------------------- /http/rapid-app-demo/src/appspecific-width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/appspecific-width.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/appspecific-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/css/appspecific-demo.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/appspecific.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/basicui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/css/basicui.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/search-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/css/search-ui.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/css/style.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/css/template.css -------------------------------------------------------------------------------- /http/rapid-app-demo/src/default.xqy: -------------------------------------------------------------------------------- 1 | xdmp:redirect-response("example-default.xqy") -------------------------------------------------------------------------------- /http/rapid-app-demo/src/example-columns.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/example-columns.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/example-default.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/example-default.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/example-width.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/example-width.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/get-expfile.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/get-expfile.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/get-file.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/get-file.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/bottom.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/bottom_left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/bottom_right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/overlay.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/progress.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/top.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/top_left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alert/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alert/top_right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/bottom-left-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/bottom-left-c.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/bottom-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/bottom-middle.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/bottom-right-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/bottom-right-c.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/button-close-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/button-close-focus.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/button-max-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/button-max-focus.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/button-min-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/button-min-focus.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/frame-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/frame-left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/frame-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/frame-right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/left-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/left-top.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/right-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/right-top.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/alphacube/top-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/alphacube/top-middle.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/bottom_left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/bottom_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/bottom_mid.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/bottom_right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/bottom_right_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/bottom_right_resize.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/center_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/center_left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/center_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/center_right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/clear.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/close.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/inspect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/inspect.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/maximize.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/minimize.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/overlay.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/resize.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/sizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/sizer.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/top_left.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/top_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/top_mid.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/pwc/default/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/pwc/default/top_right.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/accept.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/building.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/bullet_black.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/bullet_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/bullet_delete.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/bullet_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/bullet_go.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/coins.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/error.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/exclamation.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/group.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/page.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/user_suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/user_suit.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/silk/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/silk/world.png -------------------------------------------------------------------------------- /http/rapid-app-demo/src/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/images/spacer.gif -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/appspecific.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/builder.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/controls.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/dragdrop.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/effects.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/prototype.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/scriptaculous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/scriptaculous.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/slider.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/sound.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/ui.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/unittest.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/js/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/js/window.js -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/display-demo.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/display-demo.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/display.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/display.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/lib-parser-custom.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/lib-parser-custom.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/lib-parser.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/lib-parser.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/lib-search-custom.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/lib-search-custom.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/lib-search.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/lib-search.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/lib-uitools.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/lib-uitools.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/page-layout-demo.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/page-layout-demo.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/page-layout.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/page-layout.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/search-ui.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/search-ui.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/test-lib-parser.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/test-lib-parser.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/modules/widgets.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/modules/widgets.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/request.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/request.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/search-help.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/search-help.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/search.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/search.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/template.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/template.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/template.xqy -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/blockmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/blockmenu.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/dropnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/dropnav.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/formattedform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/formattedform.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/mainmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/mainmenu.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/messages.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/pagination.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/quicksearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/quicksearch.html -------------------------------------------------------------------------------- /http/rapid-app-demo/src/widgets/stackmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/rapid-app-demo/src/widgets/stackmenu.html -------------------------------------------------------------------------------- /http/search-ui/example-screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/search-ui/example-screenshot.PNG -------------------------------------------------------------------------------- /http/search-ui/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/search-ui/examples.txt -------------------------------------------------------------------------------- /http/search-ui/search-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/search-ui/search-ui.css -------------------------------------------------------------------------------- /http/search-ui/search-ui.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/search-ui/search-ui.xqy -------------------------------------------------------------------------------- /http/statefull-cookies.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/http/statefull-cookies.xqy -------------------------------------------------------------------------------- /json/json.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/json/json.xqy -------------------------------------------------------------------------------- /memupdate/example_usage.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/memupdate/example_usage.xqy -------------------------------------------------------------------------------- /memupdate/in-mem-update.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/memupdate/in-mem-update.xqy -------------------------------------------------------------------------------- /properties/properties.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/properties/properties.xqy -------------------------------------------------------------------------------- /rdfa/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/rdfa/LICENSE.txt -------------------------------------------------------------------------------- /rdfa/rdfa.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/rdfa/rdfa.xqy -------------------------------------------------------------------------------- /rdfa/rdfa_extract.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/rdfa/rdfa_extract.xqy -------------------------------------------------------------------------------- /scaffolding/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/scaffolding/readme.txt -------------------------------------------------------------------------------- /scaffolding/scaffolding.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/scaffolding/scaffolding.xqy -------------------------------------------------------------------------------- /search/query-xml/example-search.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/search/query-xml/example-search.xqy -------------------------------------------------------------------------------- /search/query-xml/query-xml.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/search/query-xml/query-xml.xqy -------------------------------------------------------------------------------- /ziprelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/commons/HEAD/ziprelease.sh --------------------------------------------------------------------------------