├── .editorconfig ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── data ├── admin │ ├── author.xml │ ├── author │ │ └── edit.xml │ ├── blog.xml │ ├── blog │ │ ├── comment-edit.xml │ │ └── edit.xml │ ├── code.xml │ ├── code │ │ └── edit.xml │ ├── events.xml │ ├── events │ │ └── edit.xml │ ├── index.xml │ ├── learn.xml │ ├── learn │ │ └── edit.xml │ ├── media.xml │ ├── news.xml │ ├── news │ │ └── edit.xml │ ├── ondemand.xml │ ├── ondemand │ │ └── edit.xml │ ├── pages.xml │ ├── pages │ │ └── edit.xml │ ├── recipe.xml │ ├── recipe │ │ └── edit.xml │ └── tutorial │ │ └── edit.xml ├── adventure │ ├── administrator.xml │ ├── developer.xml │ ├── developer │ │ ├── java │ │ │ └── start.xml │ │ ├── nodejs │ │ │ └── start.xml │ │ └── rest │ │ │ └── start.xml │ ├── install.xml │ └── install │ │ ├── linux.xml │ │ ├── mac.xml │ │ └── windows.xml ├── apidoc │ └── index.xml ├── blog.xml ├── code.xml ├── eula.xml ├── features.xml ├── features │ ├── bitemporal.xml │ ├── enhanced-http.xml │ ├── flexrep.xml │ ├── inc-backup.xml │ ├── javascript.xml │ ├── json.xml │ ├── management-api.xml │ ├── prescriptive-sizing.xml │ ├── samplestack.xml │ └── semantics.xml ├── free-developer.xml ├── index.xml ├── labs.xml ├── learn.xml ├── learn │ ├── free-online-training.xml │ ├── java │ │ ├── analytics.xml │ │ ├── basic-search.xml │ │ ├── crud.xml │ │ ├── custom-search.xml │ │ ├── java-api-basics.xml │ │ ├── more-learning-resources.xml │ │ ├── processing-search-results.xml │ │ └── setup.xml │ ├── references.xml │ ├── rest │ │ ├── analytics.xml │ │ ├── basic-search.xml │ │ ├── crud.xml │ │ ├── custom-search.xml │ │ ├── more-learning-resources.xml │ │ ├── rest-api-basics.xml │ │ ├── setup.xml │ │ └── understanding-search-results.xml │ ├── topics.xml │ ├── topics │ │ └── ide.xml │ └── videos.xml ├── media │ ├── MLPHP-logo.png │ ├── SEC Roadshow 17_Animated Promo_101717.gif │ ├── adventure │ │ ├── admin.png │ │ ├── admin.svg │ │ ├── administrator-badge.svg │ │ ├── adventure-header.jpg │ │ ├── dev.png │ │ ├── dev.svg │ │ ├── developer-badge.svg │ │ ├── java-api.png │ │ ├── node-api.png │ │ ├── node-icon.png │ │ └── rest-api.png │ ├── amazon.png │ ├── curtain.jpg │ ├── duke-java-mascot.png │ ├── elephant_rgb-TRANS_sm.png │ ├── github-logo.png │ ├── home-page-ads │ │ ├── developer-reimagine-promo-24.png │ │ └── developer-sparql-marklogic-promo-24.png │ ├── home │ │ ├── pasqua-intro.png │ │ └── promotion-arrow.png │ ├── laptop.png │ ├── marklogic-community-badge.png │ ├── marklogic-plugin-for-nagios-screenshot.png │ ├── ml-js-48.png │ ├── ml9.png │ ├── mongo2marklogic.png │ ├── music-blue-note.png │ ├── odh.svg │ ├── paper │ │ └── resource-consumption.png │ ├── qconsole-notebook.png │ ├── stackoverflow-logo.png │ ├── what-is-enterprise-nosql-still.jpg │ └── widgets │ │ ├── bar-chart-vertical.gif │ │ ├── heat-map.gif │ │ ├── line-chart.gif │ │ ├── pie-chart.gif │ │ └── point-map.gif ├── meet.xml ├── people │ ├── fb-signup.xml │ ├── profile.xml │ ├── recovery.xml │ ├── reset-email.xml │ ├── reset.xml │ ├── set-password.xml │ ├── signup.xml │ └── supernodes.xml ├── products.xml ├── products │ ├── aws.xml │ ├── aws │ │ └── cloud-formation.xml │ ├── download-via-curl.xml │ ├── hadoop.xml │ ├── java.xml │ ├── marklogic-server │ │ ├── 5.0.xml │ │ ├── 6.0-4.xml │ │ ├── 6.0.xml │ │ ├── 7.0.xml │ │ ├── 8.0.xml │ │ ├── 9.0.xml │ │ ├── enterprise-nosql.xml │ │ ├── requirements-4.1.xml │ │ ├── requirements-4.2.xml │ │ ├── requirements-5.0.xml │ │ ├── requirements-6.0.xml │ │ ├── requirements-7.0.xml │ │ ├── requirements-8.0.xml │ │ ├── requirements-9.0.xml │ │ └── which-nosql.xml │ ├── mlcp.xml │ ├── nagios.xml │ ├── node.xml │ ├── odbc.xml │ ├── sharepoint.xml │ ├── visualization-widgets.xml │ └── xcc │ │ ├── 5.0.xml │ │ ├── 6.0.xml │ │ ├── 7.0.xml │ │ ├── 8.0.xml │ │ └── 9.0.xml ├── qa.xml ├── recipes.xml └── search.xml ├── deploy ├── app_specific.rb ├── build.properties ├── default.properties ├── lib │ ├── Help.rb │ ├── MLClient.rb │ ├── RoxyHttp.rb │ ├── framework.rb │ ├── java │ │ ├── marklogic-corb-2.3.2.jar │ │ ├── marklogic-xcc-9.0.1.jar │ │ ├── recordloader.jar │ │ ├── xpp3-1.1.4c.jar │ │ ├── xqsync.jar │ │ └── xstream-1.4.10.jar │ ├── json.rb │ ├── json │ │ ├── Array.xpm │ │ ├── FalseClass.xpm │ │ ├── Hash.xpm │ │ ├── Key.xpm │ │ ├── NilClass.xpm │ │ ├── Numeric.xpm │ │ ├── String.xpm │ │ ├── TrueClass.xpm │ │ ├── add │ │ │ ├── core.rb │ │ │ └── rails.rb │ │ ├── common.rb │ │ ├── editor.rb │ │ ├── ext.rb │ │ ├── json.xpm │ │ ├── pure.rb │ │ ├── pure │ │ │ ├── generator.rb │ │ │ └── parser.rb │ │ └── version.rb │ ├── ml.rb │ ├── ml_rest.rb │ ├── password.rb │ ├── scaffold.rb │ ├── server_config.rb │ ├── templates │ │ ├── controller-function.xqy │ │ ├── controller.xqy │ │ ├── layout.html.xqy │ │ ├── layout.xqy │ │ ├── model-function.xqy │ │ ├── model.xqy │ │ ├── test.xqy │ │ ├── view.html.xqy │ │ ├── view.json.xqy │ │ ├── view.xml.xqy │ │ └── view.xqy │ ├── upgrader.rb │ ├── util.rb │ ├── xcc.rb │ └── xquery │ │ ├── cpf.xqy │ │ ├── setup.xqy │ │ └── triggers.xqy ├── ml-config.xml ├── rundmc-appservers.xml ├── sample │ ├── all.sample.xml │ ├── build.sample.properties │ ├── custom-config.xqy │ ├── default-docs-config.sample.xml │ ├── log-create.xqy │ ├── ml-config.sample.xml │ ├── pipeline-config.sample.xml │ ├── properties.sample.xml │ ├── rest-ext.sample.xqy │ ├── rest-transform.sample.xqy │ ├── rest-transform.sample.xslt │ └── triggers-config.sample.xml └── test │ ├── data │ ├── ml4-config.xml │ ├── ml4-properties │ │ ├── build.properties │ │ └── default.properties │ ├── ml5-config.xml │ ├── ml5-properties │ │ ├── build.properties │ │ └── default.properties │ ├── ml6-config.xml │ ├── ml6-properties │ │ ├── build.properties │ │ └── default.properties │ ├── ml7-config-changed.xml │ ├── ml7-config.xml │ └── ml7-properties │ │ ├── build.properties │ │ └── default.properties │ ├── test_generators.rb │ ├── test_main.rb │ ├── test_server_config.rb │ └── test_util.rb ├── git-hooks ├── developer.marklogic.com │ └── post-receive └── dmc-stage.marklogic.com │ └── post-merge ├── hacks └── markmail-updates.html ├── local.devnotes.README ├── ml ├── ml.bat ├── mockups ├── adminCodeEdit.html ├── blog.html ├── css │ ├── admin.css │ └── screen.css ├── js │ ├── functions.js │ └── twitStream.js └── learn.html ├── rest-api ├── config │ ├── options │ │ └── www.xml │ └── properties.xml └── transforms │ └── www.xqy ├── src ├── admin │ ├── README.txt │ ├── clean-pubs.xqy │ ├── config │ │ ├── forms │ │ │ ├── Announcement.xml │ │ │ ├── Article.xml │ │ │ ├── Author.xml │ │ │ ├── Event.xml │ │ │ ├── OnDemand.xml │ │ │ ├── Page.xml │ │ │ ├── Post.xml │ │ │ ├── Project.xml │ │ │ ├── README.txt │ │ │ ├── Recipe.xml │ │ │ └── Tutorial.xml │ │ ├── navigation.xml │ │ ├── template.xhtml │ │ └── topic-tags.xml │ ├── controller │ │ ├── create.xqy │ │ ├── edit-by-uri.xqy │ │ ├── list-media-by-uri.xqy │ │ ├── media-remove.xqy │ │ ├── modules │ │ │ ├── admin-ops.xqy │ │ │ └── authorize.xqy │ │ ├── ondemand.xqy │ │ ├── preview.xqy │ │ ├── publish-unpublish-doc.xqy │ │ ├── purge-previews.xqy │ │ ├── replace.xqy │ │ ├── transform.xqy │ │ ├── upload.xqy │ │ ├── url_rewrite.xqy │ │ └── validate.xqy │ ├── css │ │ ├── admin.css │ │ ├── screen.css │ │ └── screen_ie.css │ ├── images │ │ ├── arrow_down.gif │ │ ├── arrow_down_white.png │ │ ├── arrow_right.gif │ │ ├── b_cancel.png │ │ ├── b_close.png │ │ ├── b_download.png │ │ ├── b_download2.png │ │ ├── b_download_now.png │ │ ├── b_send.png │ │ ├── b_submit.png │ │ ├── b_subscribe.png │ │ ├── bg_content.gif │ │ ├── bg_content_layout2.gif │ │ ├── bg_header.png │ │ ├── bg_header_admin.png │ │ ├── bg_header_doclist.png │ │ ├── bg_popup_bottom.png │ │ ├── bg_popup_middle.png │ │ ├── bg_popup_top.png │ │ ├── bg_special_img_top.png │ │ ├── bg_special_intro_index_bottom.png │ │ ├── bg_sub_bottom.png │ │ ├── bg_sub_bottom_narrow.png │ │ ├── bg_tab_index_current.png │ │ ├── bg_tablehead_gray.png │ │ ├── bg_tablehead_green.png │ │ ├── book1.jpg │ │ ├── book2.jpg │ │ ├── book3.jpg │ │ ├── cq_screen_small.jpg │ │ ├── denmark_meeting.jpg │ │ ├── fpo.jpg │ │ ├── icon_browser.png │ │ ├── icon_download.png │ │ ├── icon_enlarge.png │ │ ├── icon_minus_black.png │ │ ├── icon_minus_white.png │ │ ├── icon_pdf.png │ │ ├── icon_plus_black.png │ │ ├── icon_plus_white.png │ │ ├── icon_twitter.png │ │ ├── icon_zip.png │ │ ├── image_delete.png │ │ ├── logo.png │ │ ├── map_home.jpg │ │ ├── marklogic-server.jpg │ │ ├── ml_server.jpg │ │ ├── placeholder_media.png │ │ ├── recent_news.jpg │ │ └── separator_headernav.gif │ ├── ingest-pubs-status.xqy │ ├── ingest-pubs.xqy │ ├── js │ │ ├── functions.js │ │ ├── jquerydefaultvalue.js │ │ └── tiny_mce │ │ │ ├── jquery.tinymce.js │ │ │ ├── langs │ │ │ └── en.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ ├── advhr │ │ │ │ ├── css │ │ │ │ │ └── advhr.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── rule.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── rule.htm │ │ │ ├── advimage │ │ │ │ ├── css │ │ │ │ │ └── advimage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ └── sample.gif │ │ │ │ ├── js │ │ │ │ │ └── image.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── advlink │ │ │ │ ├── css │ │ │ │ │ └── advlink.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── advlink.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── link.htm │ │ │ ├── advlist │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autoresize │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autosave │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── langs │ │ │ │ │ └── en.js │ │ │ ├── bbcode │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── directionality │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── emotions │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── emotions.htm │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── js │ │ │ │ │ └── emotions.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── example │ │ │ │ ├── dialog.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ └── example.gif │ │ │ │ ├── js │ │ │ │ │ └── dialog.js │ │ │ │ └── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ ├── fullpage │ │ │ │ ├── css │ │ │ │ │ └── fullpage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── fullpage.htm │ │ │ │ ├── js │ │ │ │ │ └── fullpage.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── fullscreen │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── fullscreen.htm │ │ │ ├── iespell │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── inlinepopups │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── skins │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ │ └── vertical.gif │ │ │ │ │ │ └── window.css │ │ │ │ └── template.htm │ │ │ ├── insertdatetime │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── layer │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── legacyoutput │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ ├── content.css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── flv_player.swf │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── media.htm │ │ │ ├── nonbreaking │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── noneditable │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── pagebreak │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ └── trans.gif │ │ │ ├── paste │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── preview │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── example.html │ │ │ │ ├── jscripts │ │ │ │ │ └── embed.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── save │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── searchreplace │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── spellchecker │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ └── wline.gif │ │ │ ├── style │ │ │ │ ├── css │ │ │ │ │ └── props.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── props.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── props.htm │ │ │ ├── tabfocus │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── table │ │ │ │ ├── cell.htm │ │ │ │ ├── css │ │ │ │ │ ├── cell.css │ │ │ │ │ ├── row.css │ │ │ │ │ └── table.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── cell.js │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ ├── row.js │ │ │ │ │ └── table.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── merge_cells.htm │ │ │ │ ├── row.htm │ │ │ │ └── table.htm │ │ │ ├── template │ │ │ │ ├── blank.htm │ │ │ │ ├── css │ │ │ │ │ └── template.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── template.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── template.htm │ │ │ ├── visualchars │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── wordcount │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ └── xhtmlxtras │ │ │ │ ├── abbr.htm │ │ │ │ ├── acronym.htm │ │ │ │ ├── attributes.htm │ │ │ │ ├── cite.htm │ │ │ │ ├── css │ │ │ │ ├── attributes.css │ │ │ │ └── popup.css │ │ │ │ ├── del.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── ins.htm │ │ │ │ ├── js │ │ │ │ ├── abbr.js │ │ │ │ ├── acronym.js │ │ │ │ ├── attributes.js │ │ │ │ ├── cite.js │ │ │ │ ├── del.js │ │ │ │ ├── element_common.js │ │ │ │ └── ins.js │ │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ │ ├── themes │ │ │ ├── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ └── icons.gif │ │ │ │ ├── js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── charmap.js │ │ │ │ │ ├── color_picker.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── link.js │ │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── link.htm │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ ├── load-zip.xqy │ ├── model │ │ ├── README.txt │ │ ├── form2xml.xsl │ │ ├── publish-unpublish.xsl │ │ ├── set-doc-attribute.xsl │ │ ├── xml2form.xsl │ │ └── xml2form │ │ │ ├── add-ids.xsl │ │ │ ├── annotate-doc.xsl │ │ │ ├── insert-missing-fields.xsl │ │ │ ├── normalize-form-spec.xsl │ │ │ └── strip-comments.xsl │ ├── store-license-hash.xqy │ └── view │ │ ├── README.txt │ │ ├── adminAddMedia.html │ │ ├── form.xsl │ │ ├── page.xsl │ │ └── tag-library.xsl ├── apidoc │ ├── README.txt │ ├── config │ │ ├── .gitignore │ │ ├── 10.0 │ │ │ └── document-list.xml │ │ ├── 11.0 │ │ │ └── document-list.xml │ │ ├── 5.0 │ │ │ └── document-list.xml │ │ ├── 6.0 │ │ │ └── document-list.xml │ │ ├── 7.0 │ │ │ └── document-list.xml │ │ ├── 8.0 │ │ │ └── document-list.xml │ │ ├── 9.0 │ │ │ └── document-list.xml │ │ ├── README.txt │ │ ├── REST-complexType-mappings.xml │ │ ├── category-mappings.xml │ │ ├── help-config.xml │ │ ├── namespace-mappings.xml │ │ ├── server-versions.xml │ │ ├── source-database.xml │ │ ├── static-docs.xml │ │ ├── template.xhtml │ │ └── title-aliases.xml │ ├── controller │ │ ├── controller.xqm │ │ ├── docapp-redirector.xqy │ │ ├── rewrite.xqm │ │ ├── transform.xqy │ │ └── url_rewrite.xqy │ ├── images │ │ ├── admin-help │ │ │ ├── drarr.gif │ │ │ └── varspace.gif │ │ ├── documentation-badge.png │ │ ├── externalLink.png │ │ ├── printerFriendly.png │ │ └── removeFilter.png │ ├── js │ │ ├── .gitignore │ │ ├── jquery-ui-1.8.14.custom.min.js │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ ├── jquery-ui │ │ │ └── css │ │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ └── jquery-ui-1.8.14.custom.css │ │ ├── jquery.cookie.js │ │ ├── jquery.pjax.js │ │ ├── jquery.treeview.async.js │ │ ├── jquery.treeview.edit.js │ │ ├── jquery.treeview.js │ │ ├── toc_filter.js │ │ └── tooltip.js │ ├── model │ │ └── data-access.xqy │ ├── setup │ │ ├── README.js-optimization.txt │ │ ├── README.txt │ │ ├── README2.txt │ │ ├── README_FOR_NIGHTLY_BUILD.txt │ │ ├── build.xqy │ │ ├── clean.xqy │ │ ├── consolidate-guides.xqy │ │ ├── convert-guides.xqy │ │ ├── copy-guide-images.xqy │ │ ├── create-toc.xqy │ │ ├── delete-docs.xqy │ │ ├── delete-old-toc.xqy │ │ ├── delete-raw-docs.xqy │ │ ├── guide.xqm │ │ ├── load-raw-docs.xqy │ │ ├── load-static-docs.xqy │ │ ├── make-list-pages.xqy │ │ ├── make-standalone-search-page.xqy │ │ ├── optimize-js-requests.xsl │ │ ├── optimize-js.sh │ │ ├── pull-function-docs.xqy │ │ ├── raw-docs-access.xqy │ │ ├── render-toc.xqy │ │ ├── setup-all.xqy │ │ ├── setup-guides.xqy │ │ ├── setup-indexes.xqy │ │ ├── setup.xqm │ │ ├── setup.xqy │ │ └── toc.xqm │ └── view │ │ ├── README.txt │ │ ├── page.xsl │ │ └── view.xqm ├── app │ └── config │ │ └── config.xqy ├── config │ ├── .gitignore │ ├── 4.1-function-url-mappings.xml │ ├── 4.2-function-url-mappings.xml │ ├── 5.0-function-url-mappings.xml │ ├── README.txt │ ├── disqus-info.SAMPLE.xml │ ├── disqus-info.xml │ ├── navigation.xml │ ├── server-urls.xml │ ├── template.xhtml │ └── widgets.xml ├── controller │ ├── 301redirect.xqy │ ├── access.xml │ ├── api-redirects.xml │ ├── disqus-info.xqy │ ├── disqus-to-comments-pre-ML6.xsl │ ├── disqus-to-comments.xsl │ ├── download-report.xqy │ ├── error-handler.xqy │ ├── fetch-meetup.xqy │ ├── fetch-training-calendar-events.xqy │ ├── forbidden.xqy │ ├── get-db-file.xqy │ ├── get-download-url.xqy │ ├── get-fs-file.xqy │ ├── get-updated-disqus-threads.xqy │ ├── gone.xqy │ ├── invalidate-navigation-cache.xqy │ ├── license-record.xqy │ ├── license-report.xqy │ ├── login.xqy │ ├── logout.xqy │ ├── modules │ │ ├── params.xqy │ │ └── queryparams.xqy │ ├── notfound.xqy │ ├── preferences.xqy │ ├── process-license-request-2.xqy │ ├── process-license-request.xqy │ ├── recent.xqy │ ├── recipe-search.xqy │ ├── redirect.xqy │ ├── reset-email.xqy │ ├── reset.xqy │ ├── rewrite.xqm │ ├── rex.xqy │ ├── save-profile.xqy │ ├── search.xqm │ ├── server-config.xqy │ ├── server-urls.xqy │ ├── set-password.xqy │ ├── signup-report.xqy │ ├── signup.xqy │ ├── suggest.xqy │ ├── tracker.xqy │ ├── transform.xqy │ ├── try-proxy.xqy │ └── url_rewrite.xqy ├── css │ ├── adventure.css │ ├── anythingslider.css │ ├── apidoc-screen.css │ ├── apidoc.css │ ├── apidoc │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── api_plusminus.png │ │ │ ├── file.gif │ │ │ ├── folder-closed.gif │ │ │ ├── folder.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── treeview-black-line.gif │ │ │ ├── treeview-black.gif │ │ │ ├── treeview-default-line.gif │ │ │ ├── treeview-default.gif │ │ │ ├── treeview-famfamfam-line.gif │ │ │ ├── treeview-famfamfam.gif │ │ │ ├── treeview-gray-line.gif │ │ │ ├── treeview-gray.gif │ │ │ ├── treeview-red-line.gif │ │ │ └── treeview-red.gif │ │ ├── jquery.treeview.css │ │ └── smoothness │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.16.custom.css │ ├── apidoc_print.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── custom-new.css │ ├── custom.css │ ├── entypo │ │ ├── entypo.eot │ │ ├── entypo.svg │ │ ├── entypo.ttf │ │ └── entypo.woff │ ├── fancybox.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── foundation-icons.zip │ ├── foundation-icons │ │ ├── .fontcustom-data │ │ ├── foundation-icons.css │ │ ├── foundation-icons.eot │ │ ├── foundation-icons.svg │ │ ├── foundation-icons.ttf │ │ ├── foundation-icons.woff │ │ ├── preview.html │ │ └── svgs │ │ │ ├── fi-address-book.svg │ │ │ ├── fi-alert.svg │ │ │ ├── fi-align-center.svg │ │ │ ├── fi-align-justify.svg │ │ │ ├── fi-align-left.svg │ │ │ ├── fi-align-right.svg │ │ │ ├── fi-anchor.svg │ │ │ ├── fi-annotate.svg │ │ │ ├── fi-archive.svg │ │ │ ├── fi-arrow-down.svg │ │ │ ├── fi-arrow-left.svg │ │ │ ├── fi-arrow-right.svg │ │ │ ├── fi-arrow-up.svg │ │ │ ├── fi-arrows-compress.svg │ │ │ ├── fi-arrows-expand.svg │ │ │ ├── fi-arrows-in.svg │ │ │ ├── fi-arrows-out.svg │ │ │ ├── fi-asl.svg │ │ │ ├── fi-asterisk.svg │ │ │ ├── fi-at-sign.svg │ │ │ ├── fi-background-color.svg │ │ │ ├── fi-battery-empty.svg │ │ │ ├── fi-battery-full.svg │ │ │ ├── fi-battery-half.svg │ │ │ ├── fi-bitcoin-circle.svg │ │ │ ├── fi-bitcoin.svg │ │ │ ├── fi-blind.svg │ │ │ ├── fi-bluetooth.svg │ │ │ ├── fi-bold.svg │ │ │ ├── fi-book-bookmark.svg │ │ │ ├── fi-book.svg │ │ │ ├── fi-bookmark.svg │ │ │ ├── fi-braille.svg │ │ │ ├── fi-burst-new.svg │ │ │ ├── fi-burst-sale.svg │ │ │ ├── fi-burst.svg │ │ │ ├── fi-calendar.svg │ │ │ ├── fi-camera.svg │ │ │ ├── fi-check.svg │ │ │ ├── fi-checkbox.svg │ │ │ ├── fi-clipboard-notes.svg │ │ │ ├── fi-clipboard-pencil.svg │ │ │ ├── fi-clipboard.svg │ │ │ ├── fi-clock.svg │ │ │ ├── fi-closed-caption.svg │ │ │ ├── fi-cloud.svg │ │ │ ├── fi-comment-minus.svg │ │ │ ├── fi-comment-quotes.svg │ │ │ ├── fi-comment-video.svg │ │ │ ├── fi-comment.svg │ │ │ ├── fi-comments.svg │ │ │ ├── fi-compass.svg │ │ │ ├── fi-contrast.svg │ │ │ ├── fi-credit-card.svg │ │ │ ├── fi-crop.svg │ │ │ ├── fi-crown.svg │ │ │ ├── fi-css3.svg │ │ │ ├── fi-database.svg │ │ │ ├── fi-die-five.svg │ │ │ ├── fi-die-four.svg │ │ │ ├── fi-die-one.svg │ │ │ ├── fi-die-six.svg │ │ │ ├── fi-die-three.svg │ │ │ ├── fi-die-two.svg │ │ │ ├── fi-dislike.svg │ │ │ ├── fi-dollar-bill.svg │ │ │ ├── fi-dollar.svg │ │ │ ├── fi-download.svg │ │ │ ├── fi-eject.svg │ │ │ ├── fi-elevator.svg │ │ │ ├── fi-euro.svg │ │ │ ├── fi-eye.svg │ │ │ ├── fi-fast-forward.svg │ │ │ ├── fi-female-symbol.svg │ │ │ ├── fi-female.svg │ │ │ ├── fi-filter.svg │ │ │ ├── fi-first-aid.svg │ │ │ ├── fi-flag.svg │ │ │ ├── fi-folder-add.svg │ │ │ ├── fi-folder-lock.svg │ │ │ ├── fi-folder.svg │ │ │ ├── fi-foot.svg │ │ │ ├── fi-foundation.svg │ │ │ ├── fi-graph-bar.svg │ │ │ ├── fi-graph-horizontal.svg │ │ │ ├── fi-graph-pie.svg │ │ │ ├── fi-graph-trend.svg │ │ │ ├── fi-guide-dog.svg │ │ │ ├── fi-hearing-aid.svg │ │ │ ├── fi-heart.svg │ │ │ ├── fi-home.svg │ │ │ ├── fi-html5.svg │ │ │ ├── fi-indent-less.svg │ │ │ ├── fi-indent-more.svg │ │ │ ├── fi-info.svg │ │ │ ├── fi-italic.svg │ │ │ ├── fi-key.svg │ │ │ ├── fi-laptop.svg │ │ │ ├── fi-layout.svg │ │ │ ├── fi-lightbulb.svg │ │ │ ├── fi-like.svg │ │ │ ├── fi-link.svg │ │ │ ├── fi-list-bullet.svg │ │ │ ├── fi-list-number.svg │ │ │ ├── fi-list-thumbnails.svg │ │ │ ├── fi-list.svg │ │ │ ├── fi-lock.svg │ │ │ ├── fi-loop.svg │ │ │ ├── fi-magnifying-glass.svg │ │ │ ├── fi-mail.svg │ │ │ ├── fi-male-female.svg │ │ │ ├── fi-male-symbol.svg │ │ │ ├── fi-male.svg │ │ │ ├── fi-map.svg │ │ │ ├── fi-marker.svg │ │ │ ├── fi-megaphone.svg │ │ │ ├── fi-microphone.svg │ │ │ ├── fi-minus-circle.svg │ │ │ ├── fi-minus.svg │ │ │ ├── fi-mobile-signal.svg │ │ │ ├── fi-mobile.svg │ │ │ ├── fi-monitor.svg │ │ │ ├── fi-mountains.svg │ │ │ ├── fi-music.svg │ │ │ ├── fi-next.svg │ │ │ ├── fi-no-dogs.svg │ │ │ ├── fi-no-smoking.svg │ │ │ ├── fi-page-add.svg │ │ │ ├── fi-page-copy.svg │ │ │ ├── fi-page-csv.svg │ │ │ ├── fi-page-delete.svg │ │ │ ├── fi-page-doc.svg │ │ │ ├── fi-page-edit.svg │ │ │ ├── fi-page-export-csv.svg │ │ │ ├── fi-page-export-doc.svg │ │ │ ├── fi-page-export-pdf.svg │ │ │ ├── fi-page-export.svg │ │ │ ├── fi-page-filled.svg │ │ │ ├── fi-page-multiple.svg │ │ │ ├── fi-page-pdf.svg │ │ │ ├── fi-page-remove.svg │ │ │ ├── fi-page-search.svg │ │ │ ├── fi-page.svg │ │ │ ├── fi-paint-bucket.svg │ │ │ ├── fi-paperclip.svg │ │ │ ├── fi-pause.svg │ │ │ ├── fi-paw.svg │ │ │ ├── fi-paypal.svg │ │ │ ├── fi-pencil.svg │ │ │ ├── fi-photo.svg │ │ │ ├── fi-play-circle.svg │ │ │ ├── fi-play-video.svg │ │ │ ├── fi-play.svg │ │ │ ├── fi-plus.svg │ │ │ ├── fi-pound.svg │ │ │ ├── fi-power.svg │ │ │ ├── fi-previous.svg │ │ │ ├── fi-price-tag.svg │ │ │ ├── fi-pricetag-multiple.svg │ │ │ ├── fi-print.svg │ │ │ ├── fi-prohibited.svg │ │ │ ├── fi-projection-screen.svg │ │ │ ├── fi-puzzle.svg │ │ │ ├── fi-quote.svg │ │ │ ├── fi-record.svg │ │ │ ├── fi-refresh.svg │ │ │ ├── fi-results-demographics.svg │ │ │ ├── fi-results.svg │ │ │ ├── fi-rewind-ten.svg │ │ │ ├── fi-rewind.svg │ │ │ ├── fi-rss.svg │ │ │ ├── fi-safety-cone.svg │ │ │ ├── fi-save.svg │ │ │ ├── fi-share.svg │ │ │ ├── fi-sheriff-badge.svg │ │ │ ├── fi-shield.svg │ │ │ ├── fi-shopping-bag.svg │ │ │ ├── fi-shopping-cart.svg │ │ │ ├── fi-shuffle.svg │ │ │ ├── fi-skull.svg │ │ │ ├── fi-social-500px.svg │ │ │ ├── fi-social-adobe.svg │ │ │ ├── fi-social-amazon.svg │ │ │ ├── fi-social-android.svg │ │ │ ├── fi-social-apple.svg │ │ │ ├── fi-social-behance.svg │ │ │ ├── fi-social-bing.svg │ │ │ ├── fi-social-blogger.svg │ │ │ ├── fi-social-delicious.svg │ │ │ ├── fi-social-designer-news.svg │ │ │ ├── fi-social-deviant-art.svg │ │ │ ├── fi-social-digg.svg │ │ │ ├── fi-social-dribbble.svg │ │ │ ├── fi-social-drive.svg │ │ │ ├── fi-social-dropbox.svg │ │ │ ├── fi-social-evernote.svg │ │ │ ├── fi-social-facebook.svg │ │ │ ├── fi-social-flickr.svg │ │ │ ├── fi-social-forrst.svg │ │ │ ├── fi-social-foursquare.svg │ │ │ ├── fi-social-game-center.svg │ │ │ ├── fi-social-github.svg │ │ │ ├── fi-social-google-plus.svg │ │ │ ├── fi-social-hacker-news.svg │ │ │ ├── fi-social-hi5.svg │ │ │ ├── fi-social-instagram.svg │ │ │ ├── fi-social-joomla.svg │ │ │ ├── fi-social-lastfm.svg │ │ │ ├── fi-social-linkedin.svg │ │ │ ├── fi-social-medium.svg │ │ │ ├── fi-social-myspace.svg │ │ │ ├── fi-social-orkut.svg │ │ │ ├── fi-social-path.svg │ │ │ ├── fi-social-picasa.svg │ │ │ ├── fi-social-pinterest.svg │ │ │ ├── fi-social-rdio.svg │ │ │ ├── fi-social-reddit.svg │ │ │ ├── fi-social-skillshare.svg │ │ │ ├── fi-social-skype.svg │ │ │ ├── fi-social-smashing-mag.svg │ │ │ ├── fi-social-snapchat.svg │ │ │ ├── fi-social-spotify.svg │ │ │ ├── fi-social-squidoo.svg │ │ │ ├── fi-social-stack-overflow.svg │ │ │ ├── fi-social-steam.svg │ │ │ ├── fi-social-stumbleupon.svg │ │ │ ├── fi-social-treehouse.svg │ │ │ ├── fi-social-tumblr.svg │ │ │ ├── fi-social-twitter.svg │ │ │ ├── fi-social-vimeo.svg │ │ │ ├── fi-social-windows.svg │ │ │ ├── fi-social-xbox.svg │ │ │ ├── fi-social-yahoo.svg │ │ │ ├── fi-social-yelp.svg │ │ │ ├── fi-social-youtube.svg │ │ │ ├── fi-social-zerply.svg │ │ │ ├── fi-social-zurb.svg │ │ │ ├── fi-sound.svg │ │ │ ├── fi-star.svg │ │ │ ├── fi-stop.svg │ │ │ ├── fi-strikethrough.svg │ │ │ ├── fi-subscript.svg │ │ │ ├── fi-superscript.svg │ │ │ ├── fi-tablet-landscape.svg │ │ │ ├── fi-tablet-portrait.svg │ │ │ ├── fi-target-two.svg │ │ │ ├── fi-target.svg │ │ │ ├── fi-telephone-accessible.svg │ │ │ ├── fi-telephone.svg │ │ │ ├── fi-text-color.svg │ │ │ ├── fi-thumbnails.svg │ │ │ ├── fi-ticket.svg │ │ │ ├── fi-torso-business.svg │ │ │ ├── fi-torso-female.svg │ │ │ ├── fi-torso.svg │ │ │ ├── fi-torsos-all-female.svg │ │ │ ├── fi-torsos-all.svg │ │ │ ├── fi-torsos-female-male.svg │ │ │ ├── fi-torsos-male-female.svg │ │ │ ├── fi-torsos.svg │ │ │ ├── fi-trash.svg │ │ │ ├── fi-trees.svg │ │ │ ├── fi-trophy.svg │ │ │ ├── fi-underline.svg │ │ │ ├── fi-universal-access.svg │ │ │ ├── fi-unlink.svg │ │ │ ├── fi-unlock.svg │ │ │ ├── fi-upload-cloud.svg │ │ │ ├── fi-upload.svg │ │ │ ├── fi-usb.svg │ │ │ ├── fi-video.svg │ │ │ ├── fi-volume-none.svg │ │ │ ├── fi-volume-strike.svg │ │ │ ├── fi-volume.svg │ │ │ ├── fi-web.svg │ │ │ ├── fi-wheelchair.svg │ │ │ ├── fi-widget.svg │ │ │ ├── fi-wrench.svg │ │ │ ├── fi-x-circle.svg │ │ │ ├── fi-x.svg │ │ │ ├── fi-yen.svg │ │ │ ├── fi-zoom-in.svg │ │ │ └── fi-zoom-out.svg │ ├── images │ │ ├── glyphicons_223_chevron-right-purple.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_f5f5f5_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_inset-soft_0_aaaaaa_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_666666_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-ui-1.8.16.custom.css │ ├── overcast │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ ├── ui-icons_999999_256x240.png │ │ │ └── ui-icons_fbc856_256x240.png │ │ ├── jquery-ui-1.8.16.custom.css │ │ ├── jquery-ui.css │ │ ├── jquery-ui.structure.css │ │ └── jquery-ui.theme.css │ ├── screen.css │ ├── screen_ie.css │ ├── theme-metallic.css │ └── ui-lightness │ │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.8.custom.css ├── download ├── favicon.ico ├── features │ ├── README.txt │ ├── active-document.xml │ ├── eclipse.xml │ ├── geospatial.xml │ ├── ml-server.xml │ ├── mluc10.xml │ ├── mluc11.xml │ ├── mvc-kit.xml │ ├── narthex.xml │ ├── office-toolkits.xml │ ├── pomegranate.xml │ ├── rundmc.xml │ ├── semantics.xml │ ├── tunage.xml │ ├── veg-o-matic.xml │ ├── xqdebug.xml │ └── xslt.xml ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── google978d12d96932d00a.html ├── images │ ├── 178x44-logo.png │ ├── GitHub-Mark-32px.png │ ├── ML-core-database-wh-3.svg │ ├── TransparentYouTubeButtonOverlay.png │ ├── ZeroClipboard.swf │ ├── api_plusminus.png │ ├── arrow_down.gif │ ├── arrow_down_white.png │ ├── arrow_right.gif │ ├── arrow_up_white.png │ ├── arrows-metallic.png │ ├── arrows-minimalist.png │ ├── avatar.jpg │ ├── b_cancel.png │ ├── b_close.png │ ├── b_download.png │ ├── b_download2.png │ ├── b_download_now.png │ ├── b_send.png │ ├── b_submit.png │ ├── b_subscribe.png │ ├── bannerbg.jpg │ ├── bannerbg.png │ ├── bg-btn-blue.png │ ├── bg_cacaca.gif │ ├── bg_content.gif │ ├── bg_content_layout2.gif │ ├── bg_header.png │ ├── bg_header_doclist.gif │ ├── bg_header_doclist.png │ ├── bg_nav_current.png │ ├── bg_popup_bottom.png │ ├── bg_popup_middle.png │ ├── bg_popup_top.png │ ├── bg_shadow_header.gif │ ├── bg_shadow_vert.png │ ├── bg_special_img_top.png │ ├── bg_special_intro_index_bottom.gif │ ├── bg_special_intro_index_bottom.png │ ├── bg_sub_bottom.png │ ├── bg_sub_bottom_narrow.png │ ├── bg_tab_index_current.png │ ├── bg_table_corner_bl.gif │ ├── bg_table_corner_br.gif │ ├── bg_table_features_bottom.png │ ├── bg_table_features_top.png │ ├── bg_table_features_topleft.png │ ├── bg_table_features_topmiddle.png │ ├── bg_table_features_topright.png │ ├── bg_tablehead_gray.png │ ├── bg_tablehead_green.png │ ├── bmug-1.png │ ├── book1.jpg │ ├── book2.jpg │ ├── book3.jpg │ ├── button-search.png │ ├── checkblank.gif │ ├── checkmark.gif │ ├── chicklet │ │ ├── get-coding-quickly.png │ │ ├── ninja-way.png │ │ └── watch-and-learn.png │ ├── cloudformation-launch-stack.png │ ├── construction.gif │ ├── cq_screen_small.jpg │ ├── cs-portfolio.png │ ├── default.png │ ├── denmark_meeting.jpg │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ └── fancybox.png │ ├── favicon.ico │ ├── feed_icon_large.png │ ├── feed_icon_small.png │ ├── fpo.jpg │ ├── getting-started-still.png │ ├── hr_line.jpg │ ├── iStock_000018092301XSmall.jpg │ ├── i_arrow_down.png │ ├── i_arrow_down_small.png │ ├── i_arrows_fork.png │ ├── i_badge.png │ ├── i_book.png │ ├── i_bullhorn.png │ ├── i_calendar.png │ ├── i_calendar_small.png │ ├── i_database_arrow.png │ ├── i_database_arrow_down.png │ ├── i_database_plus.png │ ├── i_diamond.png │ ├── i_doc.png │ ├── i_doc_small.png │ ├── i_documentation.png │ ├── i_dotnet.png │ ├── i_drawer.png │ ├── i_eye.png │ ├── i_facebook.png │ ├── i_flag_dk.png │ ├── i_folder.png │ ├── i_function.png │ ├── i_github.png │ ├── i_github_lg.png │ ├── i_googlecode.png │ ├── i_info.png │ ├── i_java.png │ ├── i_lifesaver.png │ ├── i_linkedin.png │ ├── i_mag_glass1.png │ ├── i_mag_glass2.png │ ├── i_mag_glass2_sm.png │ ├── i_mag_logo.png │ ├── i_mag_logo_small.png │ ├── i_markups.png │ ├── i_me.png │ ├── i_meetup.png │ ├── i_meetup_lg.png │ ├── i_monitor.png │ ├── i_newspaper.png │ ├── i_notepad.png │ ├── i_ondemand.png │ ├── i_opensource.png │ ├── i_pdf.png │ ├── i_pencil.png │ ├── i_rest.png │ ├── i_rss.png │ ├── i_rss_small.png │ ├── i_rundmc.png │ ├── i_screen_m.png │ ├── i_screen_try.png │ ├── i_speaker.png │ ├── i_speechbubble.png │ ├── i_stackoverflow.png │ ├── i_supernode.png │ ├── i_supernode_large.png │ ├── i_twitter.png │ ├── i_twitter2.png │ ├── i_visualtools.png │ ├── i_wrench.png │ ├── i_zip.png │ ├── icon-search.png │ ├── icon_browser.png │ ├── icon_download.png │ ├── icon_enlarge.png │ ├── icon_minus_black.png │ ├── icon_minus_white.png │ ├── icon_pdf.png │ ├── icon_plus_black.png │ ├── icon_plus_white.png │ ├── icon_searchabledocs.png │ ├── icon_twitter.png │ ├── icon_zip.png │ ├── img_xquery.jpg │ ├── labs-border.png │ ├── labs-flask-75-icon-100x85.png │ ├── labs-noborder.png │ ├── learn_rest.jpg │ ├── learn_tools.jpg │ ├── learn_xquery.jpg │ ├── logo-25ppi.png │ ├── logo-37ppi.png │ ├── logo-72ppi.png │ ├── logo-75ppi.png │ ├── logo-community-white-178x44.png │ ├── logo-community-white-89x22.png │ ├── logo-community-white.svg │ ├── logo.png │ ├── logo_hadoop.png │ ├── logo_marklogic5.png │ ├── logo_markmail.png │ ├── magnify.png │ ├── map_home.jpg │ ├── marklogic-logo-150.png │ ├── marklogic-server.jpg │ ├── marklogic.png │ ├── ml_icon-note.png │ ├── ml_icons_note.png │ ├── ml_icons_warning.png │ ├── ml_server.jpg │ ├── people1.jpg │ ├── people2.jpg │ ├── people3.jpg │ ├── people4.jpg │ ├── play-button-red.png │ ├── play.png │ ├── previousdocs.png │ ├── recent_news.jpg │ ├── s_arrows_prevnext_gray.png │ ├── s_open_close.png │ ├── s_plusminus.png │ ├── s_plusminus_dark.png │ ├── s_plusminus_light.png │ ├── separator_headernav.gif │ ├── separator_vert.gif │ ├── signUpAssets │ │ ├── icon_login_downarrow.png │ │ ├── icon_signup_fb.png │ │ ├── icon_signup_ml.png │ │ └── logo_signup_meetup.png │ ├── stackoverflow-logo.png │ ├── step-1.png │ ├── step-2.png │ ├── step-3.png │ ├── strangeloop.jpg │ ├── strangeloop_large.jpg │ ├── supernodes.png │ ├── toggle_down_light.png │ ├── toggle_up_dark.png │ ├── twitter-logo-55ac33.png │ └── xmlholland.jpg ├── js │ ├── .gitignore │ ├── CodeMirror-0.94 │ │ ├── LICENSE │ │ ├── bigtest.html │ │ ├── compress.html │ │ ├── contrib │ │ │ ├── csharp │ │ │ │ ├── css │ │ │ │ │ └── csharpcolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parsecsharp.js │ │ │ │ │ └── tokenizecsharp.js │ │ │ ├── freemarker │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── freemarkercolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── parsefreemarker.js │ │ │ ├── groovy │ │ │ │ └── index.html │ │ │ ├── java │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── javacolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parsejava.js │ │ │ │ │ └── tokenizejava.js │ │ │ ├── lua │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── luacolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── parselua.js │ │ │ ├── ometa │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── ometacolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parseometa.js │ │ │ │ │ └── tokenizeometa.js │ │ │ ├── php │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── phpcolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parsephp.js │ │ │ │ │ ├── parsephphtmlmixed.js │ │ │ │ │ └── tokenizephp.js │ │ │ ├── plsql │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── plsqlcolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── parseplsql.js │ │ │ ├── python │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── pythoncolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── parsepython.js │ │ │ ├── regex │ │ │ │ ├── css │ │ │ │ │ ├── js-regexcolors.css │ │ │ │ │ └── regexcolors.css │ │ │ │ ├── index.html │ │ │ │ ├── js-regex.html │ │ │ │ └── js │ │ │ │ │ ├── parsejavascript_and_regex.js │ │ │ │ │ ├── parseregex-unicode.js │ │ │ │ │ └── parseregex.js │ │ │ ├── scheme │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── schemecolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parsescheme.js │ │ │ │ │ └── tokenizescheme.js │ │ │ ├── sql │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── sqlcolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── parsesql.js │ │ │ └── xquery │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ ├── xqcolors-dark.css │ │ │ │ ├── xqcolors.css │ │ │ │ └── xqcolors2.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── parsexquery.js │ │ │ │ └── tokenizexquery.js │ │ ├── css │ │ │ ├── baboon.png │ │ │ ├── baboon_vector.ai │ │ │ ├── csscolors.css │ │ │ ├── docs.css │ │ │ ├── font.js │ │ │ ├── jscolors.css │ │ │ ├── people.jpg │ │ │ ├── sparqlcolors.css │ │ │ └── xmlcolors.css │ │ ├── csstest.html │ │ ├── faq.html │ │ ├── favicon.ico │ │ ├── googleb196c451afc2ee11.html │ │ ├── googlehostedservice.html │ │ ├── highlight.html │ │ ├── htmltest.html │ │ ├── index.html │ │ ├── js │ │ │ ├── codemirror.js │ │ │ ├── editor.js │ │ │ ├── highlight.js │ │ │ ├── mirrorframe.js │ │ │ ├── parsecss.js │ │ │ ├── parsedummy.js │ │ │ ├── parsehtmlmixed.js │ │ │ ├── parsejavascript.js │ │ │ ├── parsesparql.js │ │ │ ├── parsexml.js │ │ │ ├── select.js │ │ │ ├── stringstream.js │ │ │ ├── tokenize.js │ │ │ ├── tokenizejavascript.js │ │ │ ├── undo.js │ │ │ ├── unittests.js │ │ │ └── util.js │ │ ├── jstest.html │ │ ├── manual.html │ │ ├── mixedtest.html │ │ ├── sparqltest.html │ │ ├── story.html │ │ ├── unittests.html │ │ └── xhtmltest.xhtml │ ├── PIE.htc │ ├── ZeroClipboard.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── cornify.js │ ├── fs.js │ ├── functions.js │ ├── functionsORIG.js │ ├── jquery-1.11.2.min.js │ ├── jquery-1.4.2.min.js │ ├── jquery-1.6.4.min.js │ ├── jquery-1.7.2.js │ ├── jquery-1.7.2.min.js │ ├── jquery-ui-1.11.2.js │ ├── jquery-ui-1.11.2.min.js │ ├── jquery-ui-1.8.16.custom.min.js │ ├── jquery-ui-1.8.custom.min.js │ ├── jquery-ui-autocomplete.js │ ├── jquery.anythingslider.min.js │ ├── jquery.cookie.js │ ├── jquery.dataTables.min.js │ ├── jquery.dirtyforms.js │ ├── jquery.fancybox.pack.js │ ├── jquery.jfeed.js │ ├── jquery.printElement.min.js │ ├── jquery.qtip-1.0.0-rc3.js │ ├── jquery.select-to-autocomplete.min.js │ ├── jquery.tools.min.js │ ├── jquery.tooltip.min.js │ ├── jquery.validate.min.js │ ├── jquerydefaultvalue.js │ ├── modernizr.js │ ├── printThis.js │ ├── profile.js │ ├── react-0.12.2 │ │ ├── JSXTransformer.js │ │ ├── react-with-addons.js │ │ ├── react-with-addons.min.js │ │ ├── react.js │ │ └── react.min.js │ ├── recipes.js │ └── rundmc_init.js ├── lib │ ├── atom-lib.xqy │ ├── atom.xqy │ ├── cookies.xqy │ ├── cprof.xqy │ ├── date-parser.xqy │ ├── marketo-associate-lead.xqy │ ├── marketo-sync-lead.xqy │ ├── marketo.xqy │ ├── mega-nav.xqy │ ├── mljson │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── lib │ │ │ ├── date-parser.xqy │ │ │ ├── json.xqy │ │ │ └── path-parser.xqy │ │ ├── samples │ │ │ ├── app.js │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ └── jquery-1.4.2.min.js │ │ │ └── save.html │ │ └── test │ │ │ ├── css │ │ │ └── qunit.css │ │ │ ├── dateparser.html │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── dateparser-tests.js │ │ │ ├── jquery.js │ │ │ ├── mljson-tests.js │ │ │ ├── path-parser-tests.js │ │ │ └── qunit.js │ │ │ ├── mljson.html │ │ │ ├── path-parser.html │ │ │ └── xq │ │ │ ├── array-construction.xqy │ │ │ ├── isomorphic.xqy │ │ │ ├── object-construction-dup-keys.xqy │ │ │ ├── object-construction.xqy │ │ │ ├── parsedate.xqy │ │ │ └── parsepath.xqy │ ├── properties.xqy │ ├── stackoverflow.xqy │ ├── users.xqy │ ├── util-2.xqy │ └── util.xqy ├── maven-header.html ├── model │ ├── data-access.xqy │ ├── document-insert.xqy │ ├── filter-drafts.xqy │ └── top-threads.xqy ├── robots.txt ├── setup │ ├── README.txt │ ├── README_FOR_STANDALONE_APIDOC.md │ ├── collection-tagger.xqy │ ├── extract-function-mappings.xsl │ ├── install.xqy │ ├── optimize-js-requests.xsl │ ├── optimize-js.sh │ └── rundmc.conf ├── stackunderflow │ ├── LICENSE.txt │ ├── README.md │ ├── StackUnderflow.png │ ├── stackoverflow.css │ ├── stackoverflow.min.css │ ├── stackunderflow-1.0.3.js │ └── stackunderflow-1.0.3.min.js ├── test │ ├── apidoc-guide.xqm │ ├── apidoc-model.xqm │ ├── apidoc-rewrite.xqm │ ├── apidoc-setup.xqm │ ├── apidoc-toc.xqm │ ├── atom-lib.xqy │ ├── date-parser.xqy │ ├── error.xqy │ ├── fetch-meetup.xqy │ ├── headers.xqy │ ├── home.css │ ├── home.html │ ├── main-controller.xqm │ ├── main-rewrite.xqm │ ├── model.xqm │ ├── page-xsl.xqy │ ├── search.xqm │ ├── users.xqy │ └── util.xqy ├── view │ ├── README.txt │ ├── comments.xsl │ ├── navigation.xsl │ ├── page.xsl │ ├── pre-process-navigation.xsl │ ├── search.xsl │ ├── tag-library.xsl │ ├── tutorial.xsl │ ├── widgets.xsl │ └── xquery-imports.xsl └── widgets │ ├── README.txt │ ├── cookbook │ └── implementing-xquery.xml │ ├── ebooks.xml │ ├── escape-the-matrix.xml │ ├── getting-started.xml │ ├── hadoop.xml │ ├── inside-marklogic-server-toc.xml │ ├── insidehack-2011.xml │ ├── latest-docs.xml │ ├── mark-logic-authors.xml │ ├── mark-logic-bloggers.xml │ ├── mark-logic-products.xml │ ├── mlw-ad.xml │ ├── mugfr-flickr.xml │ ├── new-tutorials.xml │ ├── old-docs.xml │ ├── online-training.xml │ ├── open-source-projects.xml │ ├── quick-references.xml │ ├── recent-blog-posts.xqy │ ├── recent-blog-posts.xsl │ ├── signup.xml │ ├── start-a-user-group.xml │ ├── subscribe-to-baymug.xml │ ├── subscribe-to-benelux.xml │ ├── subscribe-to-bmug.xml │ ├── subscribe-to-denmark.xml │ ├── subscribe-to-general-user-group.xml │ ├── subscribe-to-laxml.xml │ ├── subscribe-to-mailing-list.xml │ ├── subscribe-to-markups.xml │ ├── subscribe-to-mugfr.xml │ ├── subscribe-to-mugl.xml │ ├── subscribe-to-novamug.xml │ ├── subscribe-to-nymug.xml │ ├── subscribe-to-sohmug.xml │ ├── training-calendar.xqy │ ├── tutorials.xml │ ├── twitter-topic.xqy │ ├── twitter.xqy │ ├── workshop-ad.xml │ └── write-a-tutorial.xml └── tools ├── bootstrap-config.json ├── dpl.txt ├── dpl2xml.py ├── lib ├── recordloader.jar ├── xcc.jar ├── xpp3-1.1.4c.jar ├── xqsync.jar └── xstream-1.3.1.jar └── load-from-stage.sh /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | max_line_length=80 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .history 2 | tools/simplelogger-* 3 | download 4 | dpl.xml 5 | deploy/prod.properties 6 | deploy/dev.properties 7 | deploy/local.properties 8 | deploy/docker.properties 9 | src/config/disqus-info.xml 10 | src/config/server-urls-local.xml 11 | node_modules 12 | .DS_Store 13 | bower_components 14 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "src/xray"] 2 | path = src/xray 3 | url = git://github.com/robwhitby/xray.git 4 | -------------------------------------------------------------------------------- /data/admin/author/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Author Edit

5 | 6 |

7 |

NOTE: Changing the status to "Published" will automatically make this the most recent post (by resetting the created date).

8 | 9 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /data/admin/blog/comment-edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Blog Comment Edit

5 | 6 | 7 | 8 |
-------------------------------------------------------------------------------- /data/admin/blog/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Blog Edit

5 | 6 |
7 |

NOTE: Changing the status to "Published" will automatically make this the most recent post (by resetting the created date).

8 |
9 | 10 | 11 | 12 | 13 | 14 |
15 | -------------------------------------------------------------------------------- /data/admin/code.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Code

5 | 6 |
7 |

These pages describe community-driven projects.

8 |
9 | 10 |
11 |
12 | 13 |
14 |
15 | 16 | 17 | 18 |
19 | -------------------------------------------------------------------------------- /data/admin/code/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Code Edit

5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /data/admin/events/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Event Edit

4 |

5 |

NOTE: Changing the status to "Published" will automatically make this the most recent post (by resetting the created date).

6 | 7 |
8 | -------------------------------------------------------------------------------- /data/admin/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Content Management Home

5 | 6 |

Here's our stuff!

7 | 8 | 9 | 10 |
11 | -------------------------------------------------------------------------------- /data/admin/learn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Learn

4 | 5 |
6 |

Tutorials provide step-by-step instructions for how to use a feature or accomplish a goal.

7 | 8 |

See *wiki link* for formatting tips.

9 |
10 | 11 | Add New Multi-page Tutorial 12 | 13 | Add New Article 14 | 15 | 16 |
17 | -------------------------------------------------------------------------------- /data/admin/learn/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Learn Edit

4 |

WARNING: Use the rich text editor with care. If you originally authored outside it, then it's probably best to first click "Add/Remove WYSIWYG editor" and edit in plain text instead.

5 | 6 | 7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /data/admin/news/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

News Edit

4 |

5 |

Don't use this doc type anymore for new announcements. Instead, create a 6 | blog post 7 | .

8 | 9 |
10 | -------------------------------------------------------------------------------- /data/admin/ondemand.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

On Demand

4 | 5 |
6 |

Use the On Demand form to upload PowerPoints with the scripts for MLU On Demand videos.

7 |
8 | 9 | Add New 10 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /data/admin/ondemand/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

OnDemand Edit

5 | 6 |

7 |

NOTE: Changing the status to "Published" will automatically make this the most recent post (by resetting the created date).

8 | 9 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /data/admin/pages/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Page Edit

4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /data/admin/recipe.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Recipes

4 | 5 |
6 |

Here's the list of recipes

7 |
8 | 9 |
10 |
11 | 12 |
13 |
14 | 15 |
16 | -------------------------------------------------------------------------------- /data/admin/recipe/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Recipe Edit

5 | 6 |

7 | 8 | 9 | 10 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /data/admin/tutorial/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Tutorial Edit

4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /data/blog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Blog

4 | 5 | 7 |
8 | -------------------------------------------------------------------------------- /data/features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MarkLogic 8 provides great new tools to make you more productive than ever. 4 | 5 | -------------------------------------------------------------------------------- /data/learn/references.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

API References

4 | 5 |
-------------------------------------------------------------------------------- /data/learn/topics.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Topics 4 |

Topics For Discovery

5 | 6 | 7 | 8 | 9 | 10 | 11 |
-------------------------------------------------------------------------------- /data/learn/topics/ide.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Topics 4 |

Debugging, editing, and profiling tools

5 | 6 | 7 | 8 | 9 |
-------------------------------------------------------------------------------- /data/media/MLPHP-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/MLPHP-logo.png -------------------------------------------------------------------------------- /data/media/SEC Roadshow 17_Animated Promo_101717.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/SEC Roadshow 17_Animated Promo_101717.gif -------------------------------------------------------------------------------- /data/media/adventure/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/admin.png -------------------------------------------------------------------------------- /data/media/adventure/adventure-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/adventure-header.jpg -------------------------------------------------------------------------------- /data/media/adventure/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/dev.png -------------------------------------------------------------------------------- /data/media/adventure/java-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/java-api.png -------------------------------------------------------------------------------- /data/media/adventure/node-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/node-api.png -------------------------------------------------------------------------------- /data/media/adventure/node-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/node-icon.png -------------------------------------------------------------------------------- /data/media/adventure/rest-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/adventure/rest-api.png -------------------------------------------------------------------------------- /data/media/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/amazon.png -------------------------------------------------------------------------------- /data/media/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/curtain.jpg -------------------------------------------------------------------------------- /data/media/duke-java-mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/duke-java-mascot.png -------------------------------------------------------------------------------- /data/media/elephant_rgb-TRANS_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/elephant_rgb-TRANS_sm.png -------------------------------------------------------------------------------- /data/media/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/github-logo.png -------------------------------------------------------------------------------- /data/media/home-page-ads/developer-reimagine-promo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/home-page-ads/developer-reimagine-promo-24.png -------------------------------------------------------------------------------- /data/media/home-page-ads/developer-sparql-marklogic-promo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/home-page-ads/developer-sparql-marklogic-promo-24.png -------------------------------------------------------------------------------- /data/media/home/pasqua-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/home/pasqua-intro.png -------------------------------------------------------------------------------- /data/media/home/promotion-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/home/promotion-arrow.png -------------------------------------------------------------------------------- /data/media/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/laptop.png -------------------------------------------------------------------------------- /data/media/marklogic-community-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/marklogic-community-badge.png -------------------------------------------------------------------------------- /data/media/marklogic-plugin-for-nagios-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/marklogic-plugin-for-nagios-screenshot.png -------------------------------------------------------------------------------- /data/media/ml-js-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/ml-js-48.png -------------------------------------------------------------------------------- /data/media/ml9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/ml9.png -------------------------------------------------------------------------------- /data/media/mongo2marklogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/mongo2marklogic.png -------------------------------------------------------------------------------- /data/media/music-blue-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/music-blue-note.png -------------------------------------------------------------------------------- /data/media/paper/resource-consumption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/paper/resource-consumption.png -------------------------------------------------------------------------------- /data/media/qconsole-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/qconsole-notebook.png -------------------------------------------------------------------------------- /data/media/stackoverflow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/stackoverflow-logo.png -------------------------------------------------------------------------------- /data/media/what-is-enterprise-nosql-still.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/what-is-enterprise-nosql-still.jpg -------------------------------------------------------------------------------- /data/media/widgets/bar-chart-vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/widgets/bar-chart-vertical.gif -------------------------------------------------------------------------------- /data/media/widgets/heat-map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/widgets/heat-map.gif -------------------------------------------------------------------------------- /data/media/widgets/line-chart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/widgets/line-chart.gif -------------------------------------------------------------------------------- /data/media/widgets/pie-chart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/widgets/pie-chart.gif -------------------------------------------------------------------------------- /data/media/widgets/point-map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/data/media/widgets/point-map.gif -------------------------------------------------------------------------------- /data/people/fb-signup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Join the MarkLogic Community. It's free!

5 |
6 | 7 | 8 |
-------------------------------------------------------------------------------- /data/people/reset-email.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

You will receive an email with instructions on how to reset your password. Please be sure to check your spam folder if you don't receive the email within a few minutes.

4 |
-------------------------------------------------------------------------------- /data/people/set-password.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Your password has been updated.

4 |
-------------------------------------------------------------------------------- /data/products.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This is the stuff! 5 |

Downloads

6 | 7 |
-------------------------------------------------------------------------------- /data/products/aws/cloud-formation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | MarkLogic Server and Amazon Cloud Formation Templates 5 |

6 | oops 7 | This page is on vacation. Please come back later. 8 |
-------------------------------------------------------------------------------- /data/search.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Search Results

5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /deploy/lib/java/marklogic-corb-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/marklogic-corb-2.3.2.jar -------------------------------------------------------------------------------- /deploy/lib/java/marklogic-xcc-9.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/marklogic-xcc-9.0.1.jar -------------------------------------------------------------------------------- /deploy/lib/java/recordloader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/recordloader.jar -------------------------------------------------------------------------------- /deploy/lib/java/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /deploy/lib/java/xqsync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/xqsync.jar -------------------------------------------------------------------------------- /deploy/lib/java/xstream-1.4.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/deploy/lib/java/xstream-1.4.10.jar -------------------------------------------------------------------------------- /deploy/lib/json/Array.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * Array_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ", 9 | " .......... ", 10 | " . . ", 11 | " . . ", 12 | " . . ", 13 | " . . ", 14 | " . . ", 15 | " . . ", 16 | " . . ", 17 | " . . ", 18 | " .......... ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /deploy/lib/json/FalseClass.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * False_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #FF0000", 6 | " ", 7 | " ", 8 | " ", 9 | " ...... ", 10 | " . ", 11 | " . ", 12 | " . ", 13 | " ...... ", 14 | " . ", 15 | " . ", 16 | " . ", 17 | " . ", 18 | " . ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /deploy/lib/json/Hash.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * Hash_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ", 9 | " . . ", 10 | " . . ", 11 | " . . ", 12 | " ......... ", 13 | " . . ", 14 | " . . ", 15 | " ......... ", 16 | " . . ", 17 | " . . ", 18 | " . . ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /deploy/lib/json/NilClass.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * False_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ", 9 | " ... ", 10 | " . . ", 11 | " . . ", 12 | " . . ", 13 | " . . ", 14 | " . . ", 15 | " . . ", 16 | " . . ", 17 | " . . ", 18 | " ... ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /deploy/lib/json/TrueClass.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * TrueClass_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #0BF311", 6 | " ", 7 | " ", 8 | " ", 9 | " ......... ", 10 | " . ", 11 | " . ", 12 | " . ", 13 | " . ", 14 | " . ", 15 | " . ", 16 | " . ", 17 | " . ", 18 | " . ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /deploy/lib/json/add/rails.rb: -------------------------------------------------------------------------------- 1 | # This file used to implementations of rails custom objects for 2 | # serialisation/deserialisation and is obsoleted now. 3 | 4 | unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED 5 | require 'json' 6 | end 7 | 8 | $DEBUG and warn "required json/add/rails which is obsolete now!" 9 | -------------------------------------------------------------------------------- /deploy/lib/json/pure.rb: -------------------------------------------------------------------------------- 1 | require 'json/common' 2 | require 'json/pure/parser' 3 | require 'json/pure/generator' 4 | 5 | module JSON 6 | # This module holds all the modules/classes that implement JSON's 7 | # functionality in pure ruby. 8 | module Pure 9 | $DEBUG and warn "Using Pure library for JSON." 10 | JSON.parser = Parser 11 | JSON.generator = Generator 12 | end 13 | 14 | JSON_LOADED = true unless defined?(::JSON::JSON_LOADED) 15 | end 16 | -------------------------------------------------------------------------------- /deploy/lib/json/version.rb: -------------------------------------------------------------------------------- 1 | module JSON 2 | # JSON version 3 | VERSION = '1.5.3' 4 | VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: 5 | VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: 6 | VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: 7 | VERSION_BUILD = VERSION_ARRAY[2] # :nodoc: 8 | end 9 | -------------------------------------------------------------------------------- /deploy/lib/templates/controller-function.xqy: -------------------------------------------------------------------------------- 1 | 2 | declare function c:#function-name() as item()* 3 | { 4 | () 5 | (: 6 | ch:add-value("message", "This is a test message."), 7 | ch:add-value("title", "This is a test page title"), 8 | ch:use-view((), "xml"), 9 | ch:use-layout((), "xml") 10 | :) 11 | }; 12 | -------------------------------------------------------------------------------- /deploy/lib/templates/layout.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace vh = "http://marklogic.com/roxy/view-helper" at "/roxy/lib/view-helper.xqy"; 4 | 5 | declare variable $view as item()* := vh:get("view"); 6 | declare variable $title as xs:string? := (vh:get('title'), "New Roxy Application")[1]; 7 | 8 | (: put your code here :) -------------------------------------------------------------------------------- /deploy/lib/templates/model-function.xqy: -------------------------------------------------------------------------------- 1 | 2 | (:~ 3 | : Function description 4 | : 5 | : @param $function-param - description of param 6 | : @return - description of return 7 | :) 8 | declare function m:#function-name() 9 | { 10 | (: put your code here :) 11 | }; 12 | -------------------------------------------------------------------------------- /deploy/lib/templates/model.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | module namespace m = "http://marklogic.com/roxy/models/#model-name"; 4 | 5 | import module namespace c = "http://marklogic.com/roxy/config" at "/app/config/config.xqy"; 6 | 7 | declare option xdmp:mapping "false"; 8 | 9 | -------------------------------------------------------------------------------- /deploy/lib/templates/test.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace test="http://marklogic.com/roxy/test-helper" at "/test/test-helper.xqy"; 4 | 5 | (: Your Test code goes here :) -------------------------------------------------------------------------------- /deploy/sample/log-create.xqy: -------------------------------------------------------------------------------- 1 | xquery version '1.0-ml'; 2 | 3 | (: 4 | : This is a sample triggers module, which simply logs the creation of a new document. 5 | :) 6 | 7 | import module namespace trgr='http://marklogic.com/xdmp/triggers' 8 | at '/MarkLogic/triggers.xqy'; 9 | 10 | declare variable $trgr:uri as xs:string external; 11 | 12 | xdmp:log(fn:concat('*****Document ', $trgr:uri, ' was created.*****')) 13 | 14 | 15 | -------------------------------------------------------------------------------- /deploy/sample/properties.sample.xml: -------------------------------------------------------------------------------- 1 | 2 | none 3 | true 4 | 5 | false 6 | 11 | false 12 | merge-metadata 13 | 14 | -------------------------------------------------------------------------------- /deploy/test/test_main.rb: -------------------------------------------------------------------------------- 1 | require 'test/test_server_config' 2 | require 'test/test_generators' 3 | require 'test/test_util' 4 | -------------------------------------------------------------------------------- /deploy/test/test_util.rb: -------------------------------------------------------------------------------- 1 | require 'test/unit' 2 | require 'util' 3 | 4 | class TestProperties < Test::Unit::TestCase 5 | 6 | def teardown 7 | end 8 | 9 | # test for issue #177 10 | def test_xquery_safe_unsafe 11 | assert_equal('secret', 'secret'.xquery_safe.xquery_unsafe) 12 | assert_equal('crazypassword{123@#$%}},.<>', 'crazypassword{123@#$%}},.<>'.xquery_safe.xquery_unsafe) 13 | end 14 | 15 | end 16 | -------------------------------------------------------------------------------- /git-hooks/developer.marklogic.com/post-receive: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd .. 3 | export GIT_DIR=".git" 4 | git checkout -f 5 | export PATH=/usr/local/bin:$PATH 6 | cd /space/git/rundmc.git/src/setup 7 | ./optimize-js.sh 8 | 9 | # Enable the following once we merge the apidoc branch to master 10 | cd /space/git/rundmc.git/src/apidoc/setup 11 | ./optimize-js.sh 12 | -------------------------------------------------------------------------------- /git-hooks/dmc-stage.marklogic.com/post-merge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | export PATH=/usr/local/bin:$PATH 3 | cd /space/git/rundmc.git/src/setup 4 | ./optimize-js.sh 5 | 6 | # Enable the following once we merge the apidoc branch to master 7 | cd /space/git/rundmc.git/src/apidoc/setup 8 | ./optimize-js.sh 9 | -------------------------------------------------------------------------------- /mockups/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/mockups/css/screen.css -------------------------------------------------------------------------------- /rest-api/config/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | none 3 | true 4 | 5 | false 6 | false 7 | 8 | -------------------------------------------------------------------------------- /src/admin/config/topic-tags.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 9 | -------------------------------------------------------------------------------- /src/admin/controller/list-media-by-uri.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | "[" || 4 | fn:string-join( 5 | cts:uri-match("/media/" || xdmp:get-request-field("uri") || "*") ! ('"' || . || '"'), 6 | ", " 7 | ) || 8 | "]" 9 | -------------------------------------------------------------------------------- /src/admin/controller/media-remove.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | declare variable $uri := xdmp:get-request-field("uri"); 4 | 5 | if (fn:not(fn:matches($uri, "^/media/"))) then 6 | fn:error(xs:QName("NOT-MEDIA"), "media-remove.xqy is only for deleting media files") 7 | else if (fn:doc-available($uri)) then 8 | xdmp:document-delete($uri) 9 | else ( 10 | fn:error(xs:QName("NotFound"), "Failed to delete; no document at " || $uri) 11 | ), 12 | 13 | xdmp:redirect-response("/media") 14 | -------------------------------------------------------------------------------- /src/admin/css/screen_ie.css: -------------------------------------------------------------------------------- 1 | #special_intro .nav, 2 | #main .single, 3 | #main .double, 4 | #footer, 5 | .popup #content 6 | {zoom: 1;} 7 | legend {text-indent: -6px;} 8 | #footer {margin-top: 0;} 9 | #sub .head ul {margin-top: -1.5em;} 10 | #sub .section .body {float: none;} 11 | .doclist form {top: 5px;} 12 | #sub .body .download img {margin-top: -2em;} 13 | #sub .special {padding-bottom: 1em;} 14 | #special_intro .section, .special_img .section {padding-bottom:0} 15 | .special_img .section a.enlarge {bottom:15px;} -------------------------------------------------------------------------------- /src/admin/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/arrow_down.gif -------------------------------------------------------------------------------- /src/admin/images/arrow_down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/arrow_down_white.png -------------------------------------------------------------------------------- /src/admin/images/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/arrow_right.gif -------------------------------------------------------------------------------- /src/admin/images/b_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_cancel.png -------------------------------------------------------------------------------- /src/admin/images/b_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_close.png -------------------------------------------------------------------------------- /src/admin/images/b_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_download.png -------------------------------------------------------------------------------- /src/admin/images/b_download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_download2.png -------------------------------------------------------------------------------- /src/admin/images/b_download_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_download_now.png -------------------------------------------------------------------------------- /src/admin/images/b_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_send.png -------------------------------------------------------------------------------- /src/admin/images/b_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_submit.png -------------------------------------------------------------------------------- /src/admin/images/b_subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/b_subscribe.png -------------------------------------------------------------------------------- /src/admin/images/bg_content.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_content.gif -------------------------------------------------------------------------------- /src/admin/images/bg_content_layout2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_content_layout2.gif -------------------------------------------------------------------------------- /src/admin/images/bg_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_header.png -------------------------------------------------------------------------------- /src/admin/images/bg_header_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_header_admin.png -------------------------------------------------------------------------------- /src/admin/images/bg_header_doclist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_header_doclist.png -------------------------------------------------------------------------------- /src/admin/images/bg_popup_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_popup_bottom.png -------------------------------------------------------------------------------- /src/admin/images/bg_popup_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_popup_middle.png -------------------------------------------------------------------------------- /src/admin/images/bg_popup_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_popup_top.png -------------------------------------------------------------------------------- /src/admin/images/bg_special_img_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_special_img_top.png -------------------------------------------------------------------------------- /src/admin/images/bg_special_intro_index_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_special_intro_index_bottom.png -------------------------------------------------------------------------------- /src/admin/images/bg_sub_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_sub_bottom.png -------------------------------------------------------------------------------- /src/admin/images/bg_sub_bottom_narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_sub_bottom_narrow.png -------------------------------------------------------------------------------- /src/admin/images/bg_tab_index_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_tab_index_current.png -------------------------------------------------------------------------------- /src/admin/images/bg_tablehead_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_tablehead_gray.png -------------------------------------------------------------------------------- /src/admin/images/bg_tablehead_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/bg_tablehead_green.png -------------------------------------------------------------------------------- /src/admin/images/book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/book1.jpg -------------------------------------------------------------------------------- /src/admin/images/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/book2.jpg -------------------------------------------------------------------------------- /src/admin/images/book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/book3.jpg -------------------------------------------------------------------------------- /src/admin/images/cq_screen_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/cq_screen_small.jpg -------------------------------------------------------------------------------- /src/admin/images/denmark_meeting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/denmark_meeting.jpg -------------------------------------------------------------------------------- /src/admin/images/fpo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/fpo.jpg -------------------------------------------------------------------------------- /src/admin/images/icon_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_browser.png -------------------------------------------------------------------------------- /src/admin/images/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_download.png -------------------------------------------------------------------------------- /src/admin/images/icon_enlarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_enlarge.png -------------------------------------------------------------------------------- /src/admin/images/icon_minus_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_minus_black.png -------------------------------------------------------------------------------- /src/admin/images/icon_minus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_minus_white.png -------------------------------------------------------------------------------- /src/admin/images/icon_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_pdf.png -------------------------------------------------------------------------------- /src/admin/images/icon_plus_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_plus_black.png -------------------------------------------------------------------------------- /src/admin/images/icon_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_plus_white.png -------------------------------------------------------------------------------- /src/admin/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_twitter.png -------------------------------------------------------------------------------- /src/admin/images/icon_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/icon_zip.png -------------------------------------------------------------------------------- /src/admin/images/image_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/image_delete.png -------------------------------------------------------------------------------- /src/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/logo.png -------------------------------------------------------------------------------- /src/admin/images/map_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/map_home.jpg -------------------------------------------------------------------------------- /src/admin/images/marklogic-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/marklogic-server.jpg -------------------------------------------------------------------------------- /src/admin/images/ml_server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/ml_server.jpg -------------------------------------------------------------------------------- /src/admin/images/placeholder_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/placeholder_media.png -------------------------------------------------------------------------------- /src/admin/images/recent_news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/recent_news.jpg -------------------------------------------------------------------------------- /src/admin/images/separator_headernav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/images/separator_headernav.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.autosave',{ 2 | restore_content: "Restore auto-saved content", 3 | warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" 4 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemFlash, .mceItemShockWave, .mceItemQuickTime, .mceItemWindowsMedia, .mceItemRealMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc;} 2 | .mceItemShockWave {background-image: url(../img/shockwave.gif);} 3 | .mceItemFlash {background-image:url(../img/flash.gif);} 4 | .mceItemQuickTime {background-image:url(../img/quicktime.gif);} 5 | .mceItemWindowsMedia {background-image:url(../img/windowsmedia.gif);} 6 | .mceItemRealMedia {background-image:url(../img/realmedia.gif);} 7 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} 2 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{ 2 | searchnext_desc:"Find again", 3 | notfound:"The search has been completed. The search string could not be found.", 4 | search_title:"Find", 5 | replace_title:"Find/Replace", 6 | allreplaced:"All occurrences of the search string were replaced.", 7 | findwhat:"Find what", 8 | replacewith:"Replace with", 9 | direction:"Direction", 10 | up:"Up", 11 | down:"Down", 12 | mcase:"Match case", 13 | findnext:"Find next", 14 | replace:"Replace", 15 | replaceall:"Replace all" 16 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/wordcount/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/wordcount/editor_plugin.js -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/wordcount/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/plugins/wordcount/editor_plugin_src.js -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- 1 | input.field, select.field {width:200px;} 2 | input.picker {width:179px; margin-left: 5px;} 3 | input.disabled {border-color:#F2F2F2;} 4 | img.picker {vertical-align:text-bottom; cursor:pointer;} 5 | h1 {padding: 0 0 5px 0;} 6 | .panel_wrapper div.current {height:160px;} 7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} 8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} 9 | #datetime {width:180px;} 10 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{ 2 | bold_desc:"Bold (Ctrl+B)", 3 | italic_desc:"Italic (Ctrl+I)", 4 | underline_desc:"Underline (Ctrl+U)", 5 | striketrough_desc:"Strikethrough", 6 | bullist_desc:"Unordered list", 7 | numlist_desc:"Ordered list", 8 | undo_desc:"Undo (Ctrl+Z)", 9 | redo_desc:"Redo (Ctrl+Y)", 10 | cleanup_desc:"Cleanup messy code" 11 | }); -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 2 | 3 | body {background: #FFF;} 4 | .mceVisualAid {border: 1px dashed #BBB;} 5 | 6 | /* IE */ 7 | 8 | * html body { 9 | scrollbar-3dlight-color: #F0F0EE; 10 | scrollbar-arrow-color: #676662; 11 | scrollbar-base-color: #F0F0EE; 12 | scrollbar-darkshadow-color: #DDDDDD; 13 | scrollbar-face-color: #E0E0DD; 14 | scrollbar-highlight-color: #F0F0EE; 15 | scrollbar-shadow-color: #F0F0EE; 16 | scrollbar-track-color: #F5F5F5; 17 | } 18 | -------------------------------------------------------------------------------- /src/admin/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/admin/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /src/admin/model/xml2form/strip-comments.xsl: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/admin/store-license-hash.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | 4 | xdmp:document-insert("/private/license-hash.xml", 5 | 6 | 7 | {xdmp:get-request-field("hash")} 8 | {xdmp:get-request-field("id")} 9 | 10 | 11 | ) 12 | -------------------------------------------------------------------------------- /src/apidoc/config/.gitignore: -------------------------------------------------------------------------------- 1 | template.optimized.xhtml 2 | template.previous.xhtml 3 | -------------------------------------------------------------------------------- /src/apidoc/config/server-versions.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /src/apidoc/config/source-database.xml: -------------------------------------------------------------------------------- 1 | RunDMC-api-rawdocs 2 | -------------------------------------------------------------------------------- /src/apidoc/config/static-docs.xml: -------------------------------------------------------------------------------- 1 | 2 | books 3 | dotnet 4 | javadoc 5 | nodeclient/jsdoc 6 | hadoop 7 | javaclient 8 | c++ 9 | pdf 10 | 11 | -------------------------------------------------------------------------------- /src/apidoc/controller/url_rewrite.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | (: URL rewriter. 3 | : This is a thin wrapper around the rewrite.xqm library. 4 | :) 5 | import module namespace rw="http://marklogic.com/rundmc/apidoc/rewrite" 6 | at "/apidoc/controller/rewrite.xqm"; 7 | 8 | rw:rewrite() 9 | 10 | (: url_rewrite.xqy :) 11 | -------------------------------------------------------------------------------- /src/apidoc/images/admin-help/drarr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/admin-help/drarr.gif -------------------------------------------------------------------------------- /src/apidoc/images/admin-help/varspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/admin-help/varspace.gif -------------------------------------------------------------------------------- /src/apidoc/images/documentation-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/documentation-badge.png -------------------------------------------------------------------------------- /src/apidoc/images/externalLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/externalLink.png -------------------------------------------------------------------------------- /src/apidoc/images/printerFriendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/printerFriendly.png -------------------------------------------------------------------------------- /src/apidoc/images/removeFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/images/removeFilter.png -------------------------------------------------------------------------------- /src/apidoc/js/.gitignore: -------------------------------------------------------------------------------- 1 | optimized 2 | -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/apidoc/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/apidoc/setup/README.js-optimization.txt: -------------------------------------------------------------------------------- 1 | From within /apidoc/setup, we're reusing the same JavaScript 2 | optimization code in /setup, via simple wrappers (optimize-js.sh 3 | and optimize-js-requests.xsl) around the original scripts. See 4 | /setup/README.txt for more info. 5 | 6 | Follow the same instructions here as you would there, i.e. 7 | run optimize-js.sh from within this directory (/apidoc/setup). 8 | -------------------------------------------------------------------------------- /src/apidoc/setup/clean.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 4 | at "setup.xqm"; 5 | 6 | declare variable $VERSION as xs:string external ; 7 | 8 | stp:clean($VERSION) 9 | 10 | (: apidoc/setup/clean.xqy :) 11 | 12 | -------------------------------------------------------------------------------- /src/apidoc/setup/consolidate-guides.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | (: This script is run in the raw database, setting up the URLs for the XML 4 | : files for each guide, and adding a chapter list to the title doc. 5 | :) 6 | 7 | import module namespace guide="http://marklogic.com/rundmc/api/guide" 8 | at "guide.xqm" ; 9 | 10 | declare variable $VERSION as xs:string external ; 11 | 12 | guide:consolidate($VERSION) 13 | 14 | (: apidoc/setup/consolidate-guides.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/convert-guides.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace guide="http://marklogic.com/rundmc/api/guide" 4 | at "/apidoc/setup/guide.xqm" ; 5 | import module namespace raw="http://marklogic.com/rundmc/raw-docs-access" 6 | at "/apidoc/setup/raw-docs-access.xqy" ; 7 | 8 | declare variable $VERSION as xs:string external ; 9 | 10 | guide:render(raw:guide-docs($VERSION)) 11 | 12 | (: convert-guides.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/create-toc.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | (: Create the new XML TOC :) 4 | 5 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 6 | at "setup.xqm" ; 7 | import module namespace toc="http://marklogic.com/rundmc/api/toc" 8 | at "toc.xqm" ; 9 | 10 | declare variable $VERSION as xs:string external ; 11 | 12 | declare variable $HELP-XSD-DIR as xs:string external ; 13 | 14 | toc:toc($VERSION, $HELP-XSD-DIR) 15 | 16 | (: create-toc.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/delete-docs.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace api="http://marklogic.com/rundmc/api" 4 | at "/apidoc/model/data-access.xqy"; 5 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 6 | at "setup.xqm"; 7 | 8 | declare variable $VERSION as xs:string external ; 9 | 10 | declare variable $VERSION-DIR := api:version-dir($VERSION) ; 11 | 12 | (: Wipe out the entire version directory :) 13 | xdmp:directory-delete($VERSION-DIR) 14 | 15 | (: delete-docs.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/delete-old-toc.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace api="http://marklogic.com/rundmc/api" 4 | at "/apidoc/model/data-access.xqy"; 5 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 6 | at "setup.xqm"; 7 | 8 | declare variable $VERSION as xs:string external ; 9 | 10 | stp:toc-docs-delete($VERSION), 11 | if ($VERSION ne $api:DEFAULT-VERSION) then () 12 | else stp:toc-docs-delete('default') 13 | 14 | (: apidoc/setup/delete-old-toc.xqy :) 15 | 16 | -------------------------------------------------------------------------------- /src/apidoc/setup/delete-raw-docs.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace api="http://marklogic.com/rundmc/api" 4 | at "/apidoc/model/data-access.xqy"; 5 | import module namespace raw="http://marklogic.com/rundmc/raw-docs-access" 6 | at "raw-docs-access.xqy"; 7 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 8 | at "setup.xqm"; 9 | 10 | declare variable $VERSION as xs:string external ; 11 | 12 | stp:raw-delete($VERSION) 13 | 14 | (: delete-raw-docs.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/load-raw-docs.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 4 | at "setup.xqm"; 5 | 6 | declare variable $ZIP as xs:string external ; 7 | 8 | declare variable $VERSION as xs:string external ; 9 | 10 | stp:zip-load-raw-docs($VERSION, xdmp:document-get($ZIP)/node()) 11 | 12 | (: load-raw-docs.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/load-static-docs.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 4 | at "setup.xqm"; 5 | 6 | declare variable $ZIP as xs:string external ; 7 | declare variable $VERSION as xs:string external ; 8 | 9 | stp:zip-static-docs-insert($VERSION, $ZIP) 10 | 11 | (: load-static-docs.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/make-list-pages.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 4 | at "setup.xqm"; 5 | 6 | declare variable $VERSION as xs:string external ; 7 | 8 | stp:list-pages-render($VERSION) 9 | 10 | (: make-list-pages.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/make-standalone-search-page.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 4 | at "setup.xqm"; 5 | 6 | stp:search-results-page-insert(), 7 | "Generated the standalone apidoc search page." 8 | 9 | (: apidoc/setup/make-standalone-search-page.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/optimize-js.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | source ../../setup/optimize-js.sh 4 | -------------------------------------------------------------------------------- /src/apidoc/setup/pull-function-docs.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | (: This script creates one function document per function 4 | : found in the raw database. 5 | :) 6 | 7 | import module namespace api="http://marklogic.com/rundmc/api" 8 | at "/apidoc/model/data-access.xqy" ; 9 | import module namespace stp="http://marklogic.com/rundmc/api/setup" 10 | at "setup.xqm" ; 11 | 12 | declare variable $VERSION as xs:string external ; 13 | 14 | stp:function-docs($VERSION) 15 | 16 | (: pull-function-docs.xqy :) -------------------------------------------------------------------------------- /src/apidoc/setup/render-toc.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace toc="http://marklogic.com/rundmc/api/toc" 4 | at "toc.xqm"; 5 | 6 | declare variable $VERSION as xs:string external ; 7 | 8 | toc:render($VERSION) 9 | 10 | (: apidoc/setup/render-toc.xqy :) -------------------------------------------------------------------------------- /src/app/config/config.xqy: -------------------------------------------------------------------------------- 1 | module namespace config = "http://developer.marklogic.com/roxy/config"; 2 | 3 | declare variable $MLAPI-SRC := "${meganavSource}"; 4 | declare variable $MLAPI-FLAG := "${meganavFlag}"; -------------------------------------------------------------------------------- /src/config/.gitignore: -------------------------------------------------------------------------------- 1 | template.optimized.xhtml 2 | template.previous.xhtml 3 | -------------------------------------------------------------------------------- /src/config/disqus-info.xml: -------------------------------------------------------------------------------- 1 | ../../../rundmc-private.live/disqus/disqus-info.xml -------------------------------------------------------------------------------- /src/controller/301redirect.xqy: -------------------------------------------------------------------------------- 1 | import module namespace qp="http://www.marklogic.com/ps/lib/queryparams" 2 | at "modules/queryparams.xqy"; 3 | 4 | let $params := qp:load-params() 5 | return 6 | ( 7 | xdmp:set-response-code(301,"Moved Permanently"), 8 | xdmp:add-response-header("Location",$params/qp:path) 9 | ) 10 | -------------------------------------------------------------------------------- /src/controller/forbidden.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | xdmp:set-response-code(403, "Forbidden"), "403 Forbidden" 4 | -------------------------------------------------------------------------------- /src/controller/gone.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | xdmp:set-response-code(410, "Gone"), 4 | xdmp:invoke("error-handler.xqy", (xs:QName("error:errors"),)) 5 | -------------------------------------------------------------------------------- /src/controller/invalidate-navigation-cache.xqy: -------------------------------------------------------------------------------- 1 | import module namespace ml = "http://developer.marklogic.com/site/internal" 2 | at "../model/data-access.xqy"; 3 | 4 | ml:invalidate-cached-navigation(), 5 | "Navigation caches invalidated." 6 | -------------------------------------------------------------------------------- /src/controller/license-record.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | xdmp:redirect-response(xdmp:get-request-field("url")) 4 | (: xdmp:get-request-field("url") :) 5 | 6 | -------------------------------------------------------------------------------- /src/controller/logout.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | import module namespace users="users" at "/lib/users.xqy"; 4 | 5 | let $_ := users:endSession() 6 | 7 | return '{"status": "ok"}' 8 | -------------------------------------------------------------------------------- /src/controller/notfound.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | xdmp:set-response-code(404, "Not Found"), 4 | xdmp:invoke("error-handler.xqy", (xs:QName("error:errors"),)) 5 | -------------------------------------------------------------------------------- /src/controller/redirect.xqy: -------------------------------------------------------------------------------- 1 | import module namespace qp="http://www.marklogic.com/ps/lib/queryparams" 2 | at "modules/queryparams.xqy"; 3 | 4 | let $params := qp:load-params() 5 | return xdmp:redirect-response($params/qp:path) 6 | -------------------------------------------------------------------------------- /src/controller/url_rewrite.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | (: Main rewriter. 3 | : TODO move this code into the library module. 4 | :) 5 | 6 | import module namespace rw="http://marklogic.com/rundmc/rewrite" 7 | at "/controller/rewrite.xqm"; 8 | 9 | rw:rewrite() 10 | 11 | (: url_rewrite.xqy :) 12 | 13 | -------------------------------------------------------------------------------- /src/css/apidoc/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/api_plusminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/api_plusminus.png -------------------------------------------------------------------------------- /src/css/apidoc/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/file.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/folder-closed.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/folder.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/minus.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/plus.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-black-line.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-black.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-default-line.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-default.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-famfamfam.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-gray-line.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-gray.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-red-line.gif -------------------------------------------------------------------------------- /src/css/apidoc/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/images/treeview-red.gif -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/css/apidoc/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/apidoc/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/css/apidoc_print.css: -------------------------------------------------------------------------------- 1 | #api_sub, 2 | #breadcrumb, 3 | #header, 4 | footer, 5 | #tooltip, 6 | #comments, 7 | .nextChapter, 8 | .previousChapter, 9 | .printerFriendly { 10 | display: none; 11 | } 12 | 13 | #copyright { font-size: 8pt; } 14 | 15 | a:link, 16 | a:visited, 17 | a:hover, 18 | a:active { 19 | text-decoration: none; 20 | pointer-events: none; 21 | cursor: default; 22 | color: black; 23 | } 24 | 25 | table, th, td { 26 | border: 1px solid black; 27 | } 28 | table { 29 | border-collapse: collapse; 30 | width: 100%; 31 | } 32 | td { 33 | padding: 8px; 34 | } 35 | -------------------------------------------------------------------------------- /src/css/entypo/entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/entypo/entypo.eot -------------------------------------------------------------------------------- /src/css/entypo/entypo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/css/entypo/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/entypo/entypo.ttf -------------------------------------------------------------------------------- /src/css/entypo/entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/entypo/entypo.woff -------------------------------------------------------------------------------- /src/css/foundation-icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/foundation-icons.zip -------------------------------------------------------------------------------- /src/css/foundation-icons/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/foundation-icons/foundation-icons.eot -------------------------------------------------------------------------------- /src/css/foundation-icons/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/foundation-icons/foundation-icons.ttf -------------------------------------------------------------------------------- /src/css/foundation-icons/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/foundation-icons/foundation-icons.woff -------------------------------------------------------------------------------- /src/css/images/glyphicons_223_chevron-right-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/glyphicons_223_chevron-right-purple.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_flat_75_f5f5f5_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_flat_75_f5f5f5_40x100.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/css/images/ui-bg_inset-soft_0_aaaaaa_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-bg_inset-soft_0_aaaaaa_1x100.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /src/css/overcast/images/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/overcast/images/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/download: -------------------------------------------------------------------------------- 1 | /space/download -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/favicon.ico -------------------------------------------------------------------------------- /src/features/README.txt: -------------------------------------------------------------------------------- 1 | The documents in this section configure tabbed-, or sidebar-based, 2 | "features". To include features on a given page, use the 3 | tag. 4 | 5 | For example: 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/google978d12d96932d00a.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google978d12d96932d00a.html -------------------------------------------------------------------------------- /src/images/178x44-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/178x44-logo.png -------------------------------------------------------------------------------- /src/images/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /src/images/TransparentYouTubeButtonOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/TransparentYouTubeButtonOverlay.png -------------------------------------------------------------------------------- /src/images/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/ZeroClipboard.swf -------------------------------------------------------------------------------- /src/images/api_plusminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/api_plusminus.png -------------------------------------------------------------------------------- /src/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrow_down.gif -------------------------------------------------------------------------------- /src/images/arrow_down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrow_down_white.png -------------------------------------------------------------------------------- /src/images/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrow_right.gif -------------------------------------------------------------------------------- /src/images/arrow_up_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrow_up_white.png -------------------------------------------------------------------------------- /src/images/arrows-metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrows-metallic.png -------------------------------------------------------------------------------- /src/images/arrows-minimalist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/arrows-minimalist.png -------------------------------------------------------------------------------- /src/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/avatar.jpg -------------------------------------------------------------------------------- /src/images/b_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_cancel.png -------------------------------------------------------------------------------- /src/images/b_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_close.png -------------------------------------------------------------------------------- /src/images/b_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_download.png -------------------------------------------------------------------------------- /src/images/b_download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_download2.png -------------------------------------------------------------------------------- /src/images/b_download_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_download_now.png -------------------------------------------------------------------------------- /src/images/b_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_send.png -------------------------------------------------------------------------------- /src/images/b_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_submit.png -------------------------------------------------------------------------------- /src/images/b_subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/b_subscribe.png -------------------------------------------------------------------------------- /src/images/bannerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bannerbg.jpg -------------------------------------------------------------------------------- /src/images/bannerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bannerbg.png -------------------------------------------------------------------------------- /src/images/bg-btn-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg-btn-blue.png -------------------------------------------------------------------------------- /src/images/bg_cacaca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_cacaca.gif -------------------------------------------------------------------------------- /src/images/bg_content.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_content.gif -------------------------------------------------------------------------------- /src/images/bg_content_layout2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_content_layout2.gif -------------------------------------------------------------------------------- /src/images/bg_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_header.png -------------------------------------------------------------------------------- /src/images/bg_header_doclist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_header_doclist.gif -------------------------------------------------------------------------------- /src/images/bg_header_doclist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_header_doclist.png -------------------------------------------------------------------------------- /src/images/bg_nav_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_nav_current.png -------------------------------------------------------------------------------- /src/images/bg_popup_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_popup_bottom.png -------------------------------------------------------------------------------- /src/images/bg_popup_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_popup_middle.png -------------------------------------------------------------------------------- /src/images/bg_popup_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_popup_top.png -------------------------------------------------------------------------------- /src/images/bg_shadow_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_shadow_header.gif -------------------------------------------------------------------------------- /src/images/bg_shadow_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_shadow_vert.png -------------------------------------------------------------------------------- /src/images/bg_special_img_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_special_img_top.png -------------------------------------------------------------------------------- /src/images/bg_special_intro_index_bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_special_intro_index_bottom.gif -------------------------------------------------------------------------------- /src/images/bg_special_intro_index_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_special_intro_index_bottom.png -------------------------------------------------------------------------------- /src/images/bg_sub_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_sub_bottom.png -------------------------------------------------------------------------------- /src/images/bg_sub_bottom_narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_sub_bottom_narrow.png -------------------------------------------------------------------------------- /src/images/bg_tab_index_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_tab_index_current.png -------------------------------------------------------------------------------- /src/images/bg_table_corner_bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_corner_bl.gif -------------------------------------------------------------------------------- /src/images/bg_table_corner_br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_corner_br.gif -------------------------------------------------------------------------------- /src/images/bg_table_features_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_features_bottom.png -------------------------------------------------------------------------------- /src/images/bg_table_features_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_features_top.png -------------------------------------------------------------------------------- /src/images/bg_table_features_topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_features_topleft.png -------------------------------------------------------------------------------- /src/images/bg_table_features_topmiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_features_topmiddle.png -------------------------------------------------------------------------------- /src/images/bg_table_features_topright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_table_features_topright.png -------------------------------------------------------------------------------- /src/images/bg_tablehead_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_tablehead_gray.png -------------------------------------------------------------------------------- /src/images/bg_tablehead_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bg_tablehead_green.png -------------------------------------------------------------------------------- /src/images/bmug-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/bmug-1.png -------------------------------------------------------------------------------- /src/images/book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/book1.jpg -------------------------------------------------------------------------------- /src/images/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/book2.jpg -------------------------------------------------------------------------------- /src/images/book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/book3.jpg -------------------------------------------------------------------------------- /src/images/button-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/button-search.png -------------------------------------------------------------------------------- /src/images/checkblank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/checkblank.gif -------------------------------------------------------------------------------- /src/images/checkmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/checkmark.gif -------------------------------------------------------------------------------- /src/images/chicklet/get-coding-quickly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/chicklet/get-coding-quickly.png -------------------------------------------------------------------------------- /src/images/chicklet/ninja-way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/chicklet/ninja-way.png -------------------------------------------------------------------------------- /src/images/chicklet/watch-and-learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/chicklet/watch-and-learn.png -------------------------------------------------------------------------------- /src/images/cloudformation-launch-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/cloudformation-launch-stack.png -------------------------------------------------------------------------------- /src/images/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/construction.gif -------------------------------------------------------------------------------- /src/images/cq_screen_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/cq_screen_small.jpg -------------------------------------------------------------------------------- /src/images/cs-portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/cs-portfolio.png -------------------------------------------------------------------------------- /src/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/default.png -------------------------------------------------------------------------------- /src/images/denmark_meeting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/denmark_meeting.jpg -------------------------------------------------------------------------------- /src/images/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/blank.gif -------------------------------------------------------------------------------- /src/images/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_close.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /src/images/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /src/images/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /src/images/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /src/images/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fancybox/fancybox.png -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/favicon.ico -------------------------------------------------------------------------------- /src/images/feed_icon_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/feed_icon_large.png -------------------------------------------------------------------------------- /src/images/feed_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/feed_icon_small.png -------------------------------------------------------------------------------- /src/images/fpo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/fpo.jpg -------------------------------------------------------------------------------- /src/images/getting-started-still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/getting-started-still.png -------------------------------------------------------------------------------- /src/images/hr_line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/hr_line.jpg -------------------------------------------------------------------------------- /src/images/iStock_000018092301XSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/iStock_000018092301XSmall.jpg -------------------------------------------------------------------------------- /src/images/i_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_arrow_down.png -------------------------------------------------------------------------------- /src/images/i_arrow_down_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_arrow_down_small.png -------------------------------------------------------------------------------- /src/images/i_arrows_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_arrows_fork.png -------------------------------------------------------------------------------- /src/images/i_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_badge.png -------------------------------------------------------------------------------- /src/images/i_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_book.png -------------------------------------------------------------------------------- /src/images/i_bullhorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_bullhorn.png -------------------------------------------------------------------------------- /src/images/i_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_calendar.png -------------------------------------------------------------------------------- /src/images/i_calendar_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_calendar_small.png -------------------------------------------------------------------------------- /src/images/i_database_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_database_arrow.png -------------------------------------------------------------------------------- /src/images/i_database_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_database_arrow_down.png -------------------------------------------------------------------------------- /src/images/i_database_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_database_plus.png -------------------------------------------------------------------------------- /src/images/i_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_diamond.png -------------------------------------------------------------------------------- /src/images/i_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_doc.png -------------------------------------------------------------------------------- /src/images/i_doc_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_doc_small.png -------------------------------------------------------------------------------- /src/images/i_documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_documentation.png -------------------------------------------------------------------------------- /src/images/i_dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_dotnet.png -------------------------------------------------------------------------------- /src/images/i_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_drawer.png -------------------------------------------------------------------------------- /src/images/i_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_eye.png -------------------------------------------------------------------------------- /src/images/i_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_facebook.png -------------------------------------------------------------------------------- /src/images/i_flag_dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_flag_dk.png -------------------------------------------------------------------------------- /src/images/i_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_folder.png -------------------------------------------------------------------------------- /src/images/i_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_function.png -------------------------------------------------------------------------------- /src/images/i_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_github.png -------------------------------------------------------------------------------- /src/images/i_github_lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_github_lg.png -------------------------------------------------------------------------------- /src/images/i_googlecode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_googlecode.png -------------------------------------------------------------------------------- /src/images/i_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_info.png -------------------------------------------------------------------------------- /src/images/i_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_java.png -------------------------------------------------------------------------------- /src/images/i_lifesaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_lifesaver.png -------------------------------------------------------------------------------- /src/images/i_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_linkedin.png -------------------------------------------------------------------------------- /src/images/i_mag_glass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_mag_glass1.png -------------------------------------------------------------------------------- /src/images/i_mag_glass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_mag_glass2.png -------------------------------------------------------------------------------- /src/images/i_mag_glass2_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_mag_glass2_sm.png -------------------------------------------------------------------------------- /src/images/i_mag_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_mag_logo.png -------------------------------------------------------------------------------- /src/images/i_mag_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_mag_logo_small.png -------------------------------------------------------------------------------- /src/images/i_markups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_markups.png -------------------------------------------------------------------------------- /src/images/i_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_me.png -------------------------------------------------------------------------------- /src/images/i_meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_meetup.png -------------------------------------------------------------------------------- /src/images/i_meetup_lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_meetup_lg.png -------------------------------------------------------------------------------- /src/images/i_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_monitor.png -------------------------------------------------------------------------------- /src/images/i_newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_newspaper.png -------------------------------------------------------------------------------- /src/images/i_notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_notepad.png -------------------------------------------------------------------------------- /src/images/i_ondemand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_ondemand.png -------------------------------------------------------------------------------- /src/images/i_opensource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_opensource.png -------------------------------------------------------------------------------- /src/images/i_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_pdf.png -------------------------------------------------------------------------------- /src/images/i_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_pencil.png -------------------------------------------------------------------------------- /src/images/i_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_rest.png -------------------------------------------------------------------------------- /src/images/i_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_rss.png -------------------------------------------------------------------------------- /src/images/i_rss_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_rss_small.png -------------------------------------------------------------------------------- /src/images/i_rundmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_rundmc.png -------------------------------------------------------------------------------- /src/images/i_screen_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_screen_m.png -------------------------------------------------------------------------------- /src/images/i_screen_try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_screen_try.png -------------------------------------------------------------------------------- /src/images/i_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_speaker.png -------------------------------------------------------------------------------- /src/images/i_speechbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_speechbubble.png -------------------------------------------------------------------------------- /src/images/i_stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_stackoverflow.png -------------------------------------------------------------------------------- /src/images/i_supernode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_supernode.png -------------------------------------------------------------------------------- /src/images/i_supernode_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_supernode_large.png -------------------------------------------------------------------------------- /src/images/i_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_twitter.png -------------------------------------------------------------------------------- /src/images/i_twitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_twitter2.png -------------------------------------------------------------------------------- /src/images/i_visualtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_visualtools.png -------------------------------------------------------------------------------- /src/images/i_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_wrench.png -------------------------------------------------------------------------------- /src/images/i_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/i_zip.png -------------------------------------------------------------------------------- /src/images/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon-search.png -------------------------------------------------------------------------------- /src/images/icon_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_browser.png -------------------------------------------------------------------------------- /src/images/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_download.png -------------------------------------------------------------------------------- /src/images/icon_enlarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_enlarge.png -------------------------------------------------------------------------------- /src/images/icon_minus_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_minus_black.png -------------------------------------------------------------------------------- /src/images/icon_minus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_minus_white.png -------------------------------------------------------------------------------- /src/images/icon_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_pdf.png -------------------------------------------------------------------------------- /src/images/icon_plus_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_plus_black.png -------------------------------------------------------------------------------- /src/images/icon_plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_plus_white.png -------------------------------------------------------------------------------- /src/images/icon_searchabledocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_searchabledocs.png -------------------------------------------------------------------------------- /src/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_twitter.png -------------------------------------------------------------------------------- /src/images/icon_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/icon_zip.png -------------------------------------------------------------------------------- /src/images/img_xquery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/img_xquery.jpg -------------------------------------------------------------------------------- /src/images/labs-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/labs-border.png -------------------------------------------------------------------------------- /src/images/labs-flask-75-icon-100x85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/labs-flask-75-icon-100x85.png -------------------------------------------------------------------------------- /src/images/labs-noborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/labs-noborder.png -------------------------------------------------------------------------------- /src/images/learn_rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/learn_rest.jpg -------------------------------------------------------------------------------- /src/images/learn_tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/learn_tools.jpg -------------------------------------------------------------------------------- /src/images/learn_xquery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/learn_xquery.jpg -------------------------------------------------------------------------------- /src/images/logo-25ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-25ppi.png -------------------------------------------------------------------------------- /src/images/logo-37ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-37ppi.png -------------------------------------------------------------------------------- /src/images/logo-72ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-72ppi.png -------------------------------------------------------------------------------- /src/images/logo-75ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-75ppi.png -------------------------------------------------------------------------------- /src/images/logo-community-white-178x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-community-white-178x44.png -------------------------------------------------------------------------------- /src/images/logo-community-white-89x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo-community-white-89x22.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo.png -------------------------------------------------------------------------------- /src/images/logo_hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo_hadoop.png -------------------------------------------------------------------------------- /src/images/logo_marklogic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo_marklogic5.png -------------------------------------------------------------------------------- /src/images/logo_markmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/logo_markmail.png -------------------------------------------------------------------------------- /src/images/magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/magnify.png -------------------------------------------------------------------------------- /src/images/map_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/map_home.jpg -------------------------------------------------------------------------------- /src/images/marklogic-logo-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/marklogic-logo-150.png -------------------------------------------------------------------------------- /src/images/marklogic-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/marklogic-server.jpg -------------------------------------------------------------------------------- /src/images/marklogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/marklogic.png -------------------------------------------------------------------------------- /src/images/ml_icon-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/ml_icon-note.png -------------------------------------------------------------------------------- /src/images/ml_icons_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/ml_icons_note.png -------------------------------------------------------------------------------- /src/images/ml_icons_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/ml_icons_warning.png -------------------------------------------------------------------------------- /src/images/ml_server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/ml_server.jpg -------------------------------------------------------------------------------- /src/images/people1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/people1.jpg -------------------------------------------------------------------------------- /src/images/people2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/people2.jpg -------------------------------------------------------------------------------- /src/images/people3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/people3.jpg -------------------------------------------------------------------------------- /src/images/people4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/people4.jpg -------------------------------------------------------------------------------- /src/images/play-button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/play-button-red.png -------------------------------------------------------------------------------- /src/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/play.png -------------------------------------------------------------------------------- /src/images/previousdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/previousdocs.png -------------------------------------------------------------------------------- /src/images/recent_news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/recent_news.jpg -------------------------------------------------------------------------------- /src/images/s_arrows_prevnext_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/s_arrows_prevnext_gray.png -------------------------------------------------------------------------------- /src/images/s_open_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/s_open_close.png -------------------------------------------------------------------------------- /src/images/s_plusminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/s_plusminus.png -------------------------------------------------------------------------------- /src/images/s_plusminus_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/s_plusminus_dark.png -------------------------------------------------------------------------------- /src/images/s_plusminus_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/s_plusminus_light.png -------------------------------------------------------------------------------- /src/images/separator_headernav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/separator_headernav.gif -------------------------------------------------------------------------------- /src/images/separator_vert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/separator_vert.gif -------------------------------------------------------------------------------- /src/images/signUpAssets/icon_login_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/signUpAssets/icon_login_downarrow.png -------------------------------------------------------------------------------- /src/images/signUpAssets/icon_signup_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/signUpAssets/icon_signup_fb.png -------------------------------------------------------------------------------- /src/images/signUpAssets/icon_signup_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/signUpAssets/icon_signup_ml.png -------------------------------------------------------------------------------- /src/images/signUpAssets/logo_signup_meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/signUpAssets/logo_signup_meetup.png -------------------------------------------------------------------------------- /src/images/stackoverflow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/stackoverflow-logo.png -------------------------------------------------------------------------------- /src/images/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/step-1.png -------------------------------------------------------------------------------- /src/images/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/step-2.png -------------------------------------------------------------------------------- /src/images/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/step-3.png -------------------------------------------------------------------------------- /src/images/strangeloop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/strangeloop.jpg -------------------------------------------------------------------------------- /src/images/strangeloop_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/strangeloop_large.jpg -------------------------------------------------------------------------------- /src/images/supernodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/supernodes.png -------------------------------------------------------------------------------- /src/images/toggle_down_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/toggle_down_light.png -------------------------------------------------------------------------------- /src/images/toggle_up_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/toggle_up_dark.png -------------------------------------------------------------------------------- /src/images/twitter-logo-55ac33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/twitter-logo-55ac33.png -------------------------------------------------------------------------------- /src/images/xmlholland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/images/xmlholland.jpg -------------------------------------------------------------------------------- /src/js/.gitignore: -------------------------------------------------------------------------------- 1 | optimized 2 | -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/css/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/js/CodeMirror-0.94/css/baboon.png -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/css/baboon_vector.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/js/CodeMirror-0.94/css/baboon_vector.ai -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/css/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/js/CodeMirror-0.94/css/people.jpg -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/js/CodeMirror-0.94/favicon.ico -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/googleb196c451afc2ee11.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googleb196c451afc2ee11.html -------------------------------------------------------------------------------- /src/js/CodeMirror-0.94/googlehostedservice.html: -------------------------------------------------------------------------------- 1 | googleffffffffbefaa7aa -------------------------------------------------------------------------------- /src/lib/mljson/README.markdown: -------------------------------------------------------------------------------- 1 | # MLJSON - JSON parsing, serialization, construction and more 2 | 3 | The MLJSON project is a set of libraries for working with JSON content. 4 | 5 | Note: This project used to contain a REST frontend to expose MarkLogic 6 | functionality. That work has now been split off into a new project, 7 | [Corona](https://github.com/marklogic/Corona). 8 | 9 | ## API Documentation 10 | [Check the wiki for documentation on the various library functions.](mljson/wiki) 11 | -------------------------------------------------------------------------------- /src/lib/mljson/samples/app.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/lib/mljson/samples/save.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | Hello 11 |
12 | Bottom 13 |
14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/lib/mljson/test/index.html: -------------------------------------------------------------------------------- 1 | 2 |

Varoius test suites

3 | 7 | 8 | -------------------------------------------------------------------------------- /src/lib/mljson/test/xq/parsedate.xqy: -------------------------------------------------------------------------------- 1 | import module namespace dateparser="http://marklogic.com/dateparser" at "/lib/date-parser.xqy"; 2 | 3 | dateparser:parse(xdmp:get-request-field("date")) 4 | -------------------------------------------------------------------------------- /src/lib/mljson/test/xq/parsepath.xqy: -------------------------------------------------------------------------------- 1 | import module namespace path="http://marklogic.com/mljson/path-parser" at "/data/lib/path-parser.xqy"; 2 | 3 | declare option xdmp:mapping "false"; 4 | 5 | try { 6 | path:parse(xdmp:get-request-field("path")) 7 | } 8 | catch ($e) { 9 | string($e/*:message) 10 | } 11 | -------------------------------------------------------------------------------- /src/maven-header.html: -------------------------------------------------------------------------------- 1 |

MarkLogic XCC Maven Repository

2 | -------------------------------------------------------------------------------- /src/model/document-insert.xqy: -------------------------------------------------------------------------------- 1 | xquery version "1.0-ml"; 2 | 3 | (: A wrapper to transactionally separate auxiliary document insertions :) 4 | 5 | declare variable $uri external; 6 | declare variable $document external; 7 | 8 | if (fn:doc-available($uri)) then 9 | xdmp:document-insert( 10 | $uri, 11 | $document, 12 | xdmp:document-get-permissions($uri), 13 | xdmp:document-get-collections($uri)) 14 | else 15 | xdmp:document-insert( 16 | $uri, 17 | $document, 18 | (xdmp:permission("RunDMC-role", "read"), 19 | xdmp:permission("RunDMC-role", "update")) 20 | ) 21 | -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: rogerbot 2 | Disallow: / 3 | User-agent: SemrushBot 4 | Disallow: / 5 | User-agent: * 6 | Disallow: /media/apiTOC/ 7 | Disallow: /search 8 | Allow: / 9 | -------------------------------------------------------------------------------- /src/stackunderflow/StackUnderflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/src/stackunderflow/StackUnderflow.png -------------------------------------------------------------------------------- /src/test/error.xqy: -------------------------------------------------------------------------------- 1 | (: bad :) 2 | 3 | XXXX 4 | -------------------------------------------------------------------------------- /src/test/headers.xqy: -------------------------------------------------------------------------------- 1 | for $h in xdmp:get-request-header-names() 2 | return concat($h, ":", xdmp:get-request-header($h)) 3 | -------------------------------------------------------------------------------- /src/test/util.xqy: -------------------------------------------------------------------------------- 1 | 2 | import module namespace u = "http://marklogic.com/rundmc/util" at "../lib/util-2.xqy"; 3 | 4 | u:is-directory("/"), 5 | u:is-directory("/index"), 6 | u:is-directory("/index.xml"), 7 | u:is-directory("/blog"), 8 | u:is-directory("/blog/"), 9 | u:is-directory("/learn"), 10 | u:is-directory("/learn/") 11 | -------------------------------------------------------------------------------- /src/widgets/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains all the widgets (XML, XQuery, or XSLT files) that are 2 | used to generate the content you see on the sidebar of each page of the site. 3 | 4 | See /config/widgets.xml to see how the widgets are mapped to each page. 5 | -------------------------------------------------------------------------------- /src/widgets/cookbook/implementing-xquery.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/widgets/ebooks.xml: -------------------------------------------------------------------------------- 1 | 2 |

eBooks

3 | 11 |
12 | -------------------------------------------------------------------------------- /src/widgets/escape-the-matrix.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Escape the Matrix 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/widgets/insidehack-2011.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /src/widgets/latest-docs.xml: -------------------------------------------------------------------------------- 1 | 2 |

Latest docs

3 |
4 | MarkLogic 5 5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /src/widgets/mlw-ad.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /src/widgets/new-tutorials.xml: -------------------------------------------------------------------------------- 1 | 2 |

New Tutorials!

3 | 11 |
12 | -------------------------------------------------------------------------------- /src/widgets/old-docs.xml: -------------------------------------------------------------------------------- 1 | 2 |

doc with left arrow Previous release docs

3 | 10 |
11 | -------------------------------------------------------------------------------- /src/widgets/quick-references.xml: -------------------------------------------------------------------------------- 1 | 2 |

Quick Reference Cards

3 |
4 | Dan Vint’s XML references:

5 | 9 |
10 |
11 | -------------------------------------------------------------------------------- /src/widgets/subscribe-to-baymug.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Join the Group

4 |
5 | The BAYMUG User Group uses meetup.com to organize its meetings. 6 |
7 |
8 | See meetup 9 | for more details. 10 |
11 |
12 | -------------------------------------------------------------------------------- /src/widgets/subscribe-to-bmug.xml: -------------------------------------------------------------------------------- 1 | 2 |

Join the Group

3 |
4 | The BMLUG User Group uses meetup.com to organize its meetings. 5 |
6 |
7 | See meetup 8 | for more details. 9 |
10 |
11 | -------------------------------------------------------------------------------- /src/widgets/subscribe-to-laxml.xml: -------------------------------------------------------------------------------- 1 | 2 |

Join the Group

3 |
4 | LAxML uses meetup.com to organize its meetings. 5 |
6 |
7 | See meetup 8 | for more details. 9 |
10 |
11 | -------------------------------------------------------------------------------- /src/widgets/subscribe-to-nymug.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Join the Group

4 |
5 | The NYMUG User Group uses meetup.com to organize its meetings. 6 |
7 |
8 | See meetup 9 | for more details. 10 |
11 |
12 | -------------------------------------------------------------------------------- /src/widgets/tutorials.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |

  Tutorials & Videos

4 |
5 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /src/widgets/twitter-topic.xqy: -------------------------------------------------------------------------------- 1 | 2 | 3 |

twitterRoots Tech Tweets

4 |
5 | 8 |
9 | + Show more 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /src/widgets/workshop-ad.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Security Workshop Roadshow 4 | 5 | 6 | -------------------------------------------------------------------------------- /tools/lib/recordloader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/tools/lib/recordloader.jar -------------------------------------------------------------------------------- /tools/lib/xcc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/tools/lib/xcc.jar -------------------------------------------------------------------------------- /tools/lib/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/tools/lib/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /tools/lib/xqsync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/tools/lib/xqsync.jar -------------------------------------------------------------------------------- /tools/lib/xstream-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklogic-community/RunDMC/cbf5db263c959d3d645c652b62e695b38228ee40/tools/lib/xstream-1.3.1.jar --------------------------------------------------------------------------------