├── d3viz ├── .donotdelete ├── resources │ ├── styles │ │ ├── home.css │ │ └── simpledashboard.css │ ├── bower_components │ │ ├── angular │ │ │ ├── index.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── bower.json │ │ │ ├── angular-csp.css │ │ │ ├── .bower.json │ │ │ └── package.json │ │ ├── d3 │ │ │ ├── .gitattributes │ │ │ ├── package.js │ │ │ ├── bower.json │ │ │ ├── README.md │ │ │ └── .bower.json │ │ └── nvd3 │ │ │ ├── package.js │ │ │ └── bower.json │ ├── images │ │ ├── loader.gif │ │ └── loader1.gif │ └── scripts │ │ └── jsonp.js ├── assets │ ├── img │ │ ├── devices.png │ │ ├── expo-lyft.jpg │ │ ├── expo-riot.jpg │ │ ├── sass-less.png │ │ ├── components.png │ │ ├── expo-vogue.jpg │ │ └── expo-newsweek.jpg │ ├── flash │ │ └── ZeroClipboard.swf │ ├── js │ │ ├── vendor │ │ │ └── autoprefixer.js │ │ ├── ie8-responsive-file-warning.js │ │ └── ie10-viewport-bug-workaround.js │ └── css │ │ └── ie10-viewport-bug-workaround.css ├── starter-template.css └── dist │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ └── npm.js ├── solr ├── .donotdelete └── imagecatdev │ └── conf │ ├── spellings.txt │ ├── _rest_managed.json │ ├── lang │ ├── contractions_ga.txt │ ├── hyphenations_ga.txt │ ├── contractions_ca.txt │ ├── stemdict_nl.txt │ ├── contractions_fr.txt │ ├── contractions_it.txt │ └── stopwords_hy.txt │ ├── velocity │ ├── suggest.vm │ ├── header.vm │ ├── facets.vm │ ├── error.vm │ ├── facet_pivot.vm │ ├── facet_queries.vm │ ├── did_you_mean.vm │ ├── join_doc.vm │ ├── layout.vm │ ├── results_list.vm │ ├── pagination_bottom.vm │ ├── hit.vm │ ├── cluster.vm │ ├── hit_plain.vm │ ├── cluster_results.vm │ ├── facet_fields.vm │ ├── debug.vm │ ├── browse.vm │ └── facet_ranges.vm │ ├── _schema_analysis_synonyms_english.json │ ├── _schema_analysis_stopwords_english.json │ └── stopwords.txt ├── banana ├── .donotdelete ├── resources │ ├── banana-int-solr-4.4 │ │ └── banana-int │ │ │ └── conf │ │ │ ├── spellings.txt │ │ │ ├── lang │ │ │ ├── hyphenations_ga.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_ca.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_it.txt │ │ │ └── stopwords_hy.txt │ │ │ ├── velocity │ │ │ ├── suggest.vm │ │ │ ├── facets.vm │ │ │ ├── header.vm │ │ │ ├── error.vm │ │ │ ├── did_you_mean.vm │ │ │ ├── facet_pivot.vm │ │ │ ├── facet_queries.vm │ │ │ ├── join_doc.vm │ │ │ ├── layout.vm │ │ │ ├── results_list.vm │ │ │ ├── pagination_bottom.vm │ │ │ ├── hit.vm │ │ │ ├── cluster.vm │ │ │ ├── hit_plain.vm │ │ │ ├── facet_fields.vm │ │ │ ├── cluster_results.vm │ │ │ ├── browse.vm │ │ │ └── debug.vm │ │ │ └── stopwords.txt │ ├── banana-int-solr-4.5 │ │ └── banana-int │ │ │ └── core.properties │ └── README.md ├── src │ ├── img │ │ ├── load.gif │ │ ├── load_big.gif │ │ ├── silklogo.jpg │ │ ├── silklogo.png │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ ├── app │ │ ├── controllers │ │ │ └── all.js │ │ ├── panels │ │ │ ├── bettermap │ │ │ │ ├── module.css │ │ │ │ ├── leaflet │ │ │ │ │ └── images │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ └── module.html │ │ │ ├── bettermap_multi │ │ │ │ ├── module.css │ │ │ │ ├── leaflet │ │ │ │ │ └── images │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ ├── marker-shadow.png │ │ │ │ │ │ └── marker-icon-2x.png │ │ │ │ └── module.html │ │ │ ├── filtering │ │ │ │ ├── editor.html │ │ │ │ └── meta.html │ │ │ ├── tagcloud │ │ │ │ └── module.html │ │ │ ├── query │ │ │ │ └── editor.html │ │ │ ├── timepicker │ │ │ │ └── refreshctrl.html │ │ │ ├── text │ │ │ │ └── module.html │ │ │ ├── column │ │ │ │ ├── panelgeneral.html │ │ │ │ └── module.html │ │ │ ├── multiseries │ │ │ │ └── module.html │ │ │ └── table │ │ │ │ └── fields.html │ │ ├── partials │ │ │ ├── load.html │ │ │ ├── paneladd.html │ │ │ ├── modal.html │ │ │ └── dashLoaderShare.html │ │ ├── services │ │ │ ├── all.js │ │ │ └── timer.js │ │ ├── directives │ │ │ ├── all.js │ │ │ ├── ngBlur.js │ │ │ ├── confirmClick.js │ │ │ ├── ngModelOnBlur.js │ │ │ └── arrayJoin.js │ │ ├── components │ │ │ └── underscore.extended.js │ │ └── dashboards │ │ │ └── blank.json │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── vendor │ │ ├── bootstrap │ │ │ └── less │ │ │ │ ├── bootstrap.dark.less │ │ │ │ ├── bootstrap.light.less │ │ │ │ ├── bootswatch.light.less │ │ │ │ ├── layouts.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── utilities.less │ │ │ │ ├── grid.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── wells.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── close.less │ │ │ │ └── accordion.less │ │ └── require │ │ │ ├── tmpl.js │ │ │ └── css.js │ ├── css │ │ └── rotate.css │ └── WEB-INF │ │ └── web.xml ├── .jshintignore ├── QUICKSTART ├── test │ ├── protractor-conf.js │ ├── unit │ │ ├── servicesSpec.js │ │ ├── controllersSpec.js │ │ ├── filtersSpec.js │ │ └── directivesSpec.js │ └── karma.conf.js.orig ├── jetty-contexts │ └── banana-context.xml ├── .jshintrc ├── LICENSE.md ├── build.xml └── bower.json ├── geoparser └── .donotdelete ├── homepage ├── .donotdelete ├── img │ ├── ISI-logo.png │ ├── JPL-icon.png │ ├── NYU-logo.png │ ├── bullet.png │ ├── geoparser.png │ ├── hero-image.png │ ├── imagecat-icon.png │ ├── khooshe-icon.png │ ├── kitware-logo.png │ ├── logos │ │ ├── aetuts.jpg │ │ ├── envato.jpg │ │ ├── wordpress.jpg │ │ ├── designmodo.jpg │ │ ├── microlancer.jpg │ │ ├── themeforest.jpg │ │ └── creative-market.jpg │ ├── facetspace-icon.png │ ├── imagespace-icon.png │ ├── ContinuumWordmark.png │ ├── banana_screenshot.png │ └── weaponsviz_screenshot.png ├── font-awesome │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── fixed-width.less │ │ ├── bordered-pulled.less │ │ ├── larger.less │ │ ├── core.less │ │ ├── list.less │ │ ├── font-awesome.less │ │ ├── stacked.less │ │ ├── spinning.less │ │ ├── rotated-flipped.less │ │ └── path.less │ └── scss │ │ ├── _fixed-width.scss │ │ ├── _bordered-pulled.scss │ │ ├── _larger.scss │ │ ├── _core.scss │ │ ├── _list.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _spinning.scss │ │ ├── _path.scss │ │ └── _rotated-flipped.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── css │ └── wp.css ├── khooshe └── .donotdelete ├── facetview_ads ├── .donotdelete ├── vendor │ ├── c3-0.4.10 │ │ ├── src │ │ │ ├── scss │ │ │ │ ├── select_drag.scss │ │ │ │ ├── line.scss │ │ │ │ ├── brush.scss │ │ │ │ ├── area.scss │ │ │ │ ├── region.scss │ │ │ │ ├── bar.scss │ │ │ │ ├── text.scss │ │ │ │ ├── point.scss │ │ │ │ ├── grid.scss │ │ │ │ ├── axis.scss │ │ │ │ ├── focus.scss │ │ │ │ ├── legend.scss │ │ │ │ ├── arc.scss │ │ │ │ ├── chart.scss │ │ │ │ └── main.scss │ │ │ ├── head.js │ │ │ ├── api.color.js │ │ │ ├── category.js │ │ │ ├── api.group.js │ │ │ ├── tail.js │ │ │ ├── ua.js │ │ │ ├── api.legend.js │ │ │ ├── api.x.js │ │ │ ├── api.category.js │ │ │ ├── cache.js │ │ │ ├── api.transform.js │ │ │ └── api.zoom.js │ │ ├── .travis.yml │ │ ├── 0.4.10.zip │ │ ├── htdocs │ │ │ ├── data │ │ │ │ ├── c3_test.csv │ │ │ │ ├── c3_test2.csv │ │ │ │ ├── c3_test.tsv │ │ │ │ ├── c3_test3.csv │ │ │ │ ├── c3_test.json │ │ │ │ ├── c3_test2_ts.csv │ │ │ │ ├── c3_test_ts.csv │ │ │ │ ├── c3_test_2.json │ │ │ │ └── c3_test_3.json │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ └── index.css │ │ │ ├── samples │ │ │ │ ├── requirejs.html │ │ │ │ ├── axes_y_default.html │ │ │ │ ├── data_columned.html │ │ │ │ ├── interaction_enabled.html │ │ │ │ ├── tooltip_grouped.html │ │ │ │ ├── data_region.html │ │ │ │ ├── bar_zerobased.html │ │ │ │ ├── chart_spline.html │ │ │ │ ├── area_zerobased.html │ │ │ │ ├── data_rowed.html │ │ │ │ ├── data_hide.html │ │ │ │ ├── grid_focus.html │ │ │ │ ├── axes_y2.html │ │ │ │ ├── point_r.html │ │ │ │ ├── simple.html │ │ │ │ ├── api_data_colors.html │ │ │ │ └── tooltip_show.html │ │ │ └── js │ │ │ │ └── samples │ │ │ │ ├── requirejs.js │ │ │ │ └── plugin.js │ │ ├── .gitignore │ │ ├── extensions │ │ │ └── exporter │ │ │ │ ├── test.png │ │ │ │ └── config.json │ │ ├── .editorconfig │ │ ├── spec │ │ │ └── c3-spec.js │ │ ├── component.json │ │ ├── .jshintrc │ │ └── bower.json │ ├── .DS_Store │ ├── d3-3.5.6 │ │ └── d3.zip │ ├── bootstrap │ │ ├── .DS_Store │ │ ├── img │ │ │ ├── glyphicons-halflings.png │ │ │ └── glyphicons-halflings-white.png │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── npm.js │ ├── jquery-ui-1.8.18.custom │ │ └── images │ │ │ ├── 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 │ │ │ ├── ui-bg_flat_0_aaaaaa_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_75_ffffff_1x400.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── linkify │ │ └── 1.11 │ │ └── plugins │ │ └── jquery.linkify-1.0-twitter-min.js ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ └── web.xml └── tests │ └── index.html ├── facetview_images ├── .donotdelete ├── vendor │ ├── c3-0.4.10 │ │ ├── src │ │ │ ├── scss │ │ │ │ ├── select_drag.scss │ │ │ │ ├── line.scss │ │ │ │ ├── brush.scss │ │ │ │ ├── area.scss │ │ │ │ ├── region.scss │ │ │ │ ├── bar.scss │ │ │ │ ├── text.scss │ │ │ │ ├── point.scss │ │ │ │ ├── grid.scss │ │ │ │ ├── axis.scss │ │ │ │ ├── focus.scss │ │ │ │ ├── legend.scss │ │ │ │ ├── arc.scss │ │ │ │ ├── chart.scss │ │ │ │ └── main.scss │ │ │ ├── head.js │ │ │ ├── api.color.js │ │ │ ├── category.js │ │ │ ├── api.group.js │ │ │ ├── tail.js │ │ │ ├── ua.js │ │ │ ├── api.legend.js │ │ │ ├── api.x.js │ │ │ ├── api.category.js │ │ │ ├── cache.js │ │ │ ├── api.transform.js │ │ │ └── api.zoom.js │ │ ├── .travis.yml │ │ ├── 0.4.10.zip │ │ ├── htdocs │ │ │ ├── data │ │ │ │ ├── c3_test.csv │ │ │ │ ├── c3_test2.csv │ │ │ │ ├── c3_test3.csv │ │ │ │ ├── c3_test.tsv │ │ │ │ ├── c3_test.json │ │ │ │ ├── c3_test2_ts.csv │ │ │ │ ├── c3_test_2.json │ │ │ │ ├── c3_test_ts.csv │ │ │ │ └── c3_test_3.json │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ └── index.css │ │ │ ├── samples │ │ │ │ ├── requirejs.html │ │ │ │ ├── axes_y_default.html │ │ │ │ ├── data_columned.html │ │ │ │ ├── tooltip_grouped.html │ │ │ │ ├── interaction_enabled.html │ │ │ │ ├── data_region.html │ │ │ │ ├── area_zerobased.html │ │ │ │ ├── bar_zerobased.html │ │ │ │ ├── chart_spline.html │ │ │ │ ├── data_rowed.html │ │ │ │ ├── data_hide.html │ │ │ │ ├── grid_focus.html │ │ │ │ ├── axes_y2.html │ │ │ │ ├── point_r.html │ │ │ │ ├── simple.html │ │ │ │ └── api_data_colors.html │ │ │ └── js │ │ │ │ └── samples │ │ │ │ ├── requirejs.js │ │ │ │ └── plugin.js │ │ ├── .gitignore │ │ ├── extensions │ │ │ └── exporter │ │ │ │ ├── test.png │ │ │ │ └── config.json │ │ ├── .editorconfig │ │ ├── spec │ │ │ └── c3-spec.js │ │ ├── component.json │ │ ├── .jshintrc │ │ └── bower.json │ ├── .DS_Store │ ├── d3-3.5.6 │ │ └── d3.zip │ ├── bootstrap │ │ ├── .DS_Store │ │ ├── img │ │ │ ├── glyphicons-halflings.png │ │ │ └── glyphicons-halflings-white.png │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── npm.js │ ├── jquery-ui-1.8.18.custom │ │ └── images │ │ │ ├── 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 │ │ │ ├── ui-bg_flat_0_aaaaaa_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_75_ffffff_1x400.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── linkify │ │ └── 1.0 │ │ └── plugins │ │ └── jquery.linkify-1.0-twitter-min.js ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ └── web.xml └── tests │ └── index.html ├── nutch ├── conf │ ├── naivebayes-wordlist.txt │ ├── protocols.txt │ ├── parse-plugins.dtd │ ├── nutch-conf.xsl │ └── contenttype-mapping.txt ├── selenium │ ├── conf │ │ ├── naivebayes-wordlist.txt │ │ ├── naivebayes-wordlist.txt.template │ │ ├── nutch-site.xml.template │ │ ├── protocols.txt │ │ ├── regex-parsefilter.txt │ │ ├── parse-plugins.dtd │ │ └── nutch-conf.xsl │ └── handlers │ │ └── README.md ├── selenium-handlers │ └── lib │ │ └── protocol-interactiveselenium.jar └── scripts │ └── README.md ├── .gitmodules ├── README.md └── .gitignore /d3viz/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solr/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /banana/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geoparser/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homepage/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /khooshe/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /facetview_ads/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /facetview_images/.donotdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d3viz/resources/styles/home.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | 3 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | {"initArgs":{},"managedList":[]} 2 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.5/banana-int/core.properties: -------------------------------------------------------------------------------- 1 | name=banana-int 2 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/select_drag.scss: -------------------------------------------------------------------------------- 1 | .c3-dragarea { 2 | } 3 | -------------------------------------------------------------------------------- /nutch/conf/naivebayes-wordlist.txt: -------------------------------------------------------------------------------- 1 | nutch 2 | funny 3 | happy 4 | search 5 | mattmann -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/select_drag.scss: -------------------------------------------------------------------------------- 1 | .c3-dragarea { 2 | } 3 | -------------------------------------------------------------------------------- /nutch/selenium/conf/naivebayes-wordlist.txt: -------------------------------------------------------------------------------- 1 | nutch 2 | funny 3 | happy 4 | search 5 | mattmann -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/line.scss: -------------------------------------------------------------------------------- 1 | .c3-line { 2 | stroke-width: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/line.scss: -------------------------------------------------------------------------------- 1 | .c3-line { 2 | stroke-width: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /nutch/selenium/conf/naivebayes-wordlist.txt.template: -------------------------------------------------------------------------------- 1 | nutch 2 | funny 3 | happy 4 | search 5 | mattmann -------------------------------------------------------------------------------- /banana/src/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/load.gif -------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/brush.scss: -------------------------------------------------------------------------------- 1 | .c3-brush .extent { 2 | fill-opacity: .1; 3 | } 4 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/brush.scss: -------------------------------------------------------------------------------- 1 | .c3-brush .extent { 2 | fill-opacity: .1; 3 | } 4 | -------------------------------------------------------------------------------- /homepage/img/ISI-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/ISI-logo.png -------------------------------------------------------------------------------- /homepage/img/JPL-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/JPL-icon.png -------------------------------------------------------------------------------- /homepage/img/NYU-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/NYU-logo.png -------------------------------------------------------------------------------- /homepage/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/bullet.png -------------------------------------------------------------------------------- /banana/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | dist/* 3 | sample/* 4 | src/vendor/* 5 | src/app/panels/*/{lib,leaflet}/* -------------------------------------------------------------------------------- /banana/src/img/load_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/load_big.gif -------------------------------------------------------------------------------- /banana/src/img/silklogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/silklogo.jpg -------------------------------------------------------------------------------- /banana/src/img/silklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/silklogo.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/area.scss: -------------------------------------------------------------------------------- 1 | .c3-area { 2 | stroke-width: 0; 3 | opacity: 0.2; 4 | } 5 | -------------------------------------------------------------------------------- /homepage/img/geoparser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/geoparser.png -------------------------------------------------------------------------------- /homepage/img/hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/hero-image.png -------------------------------------------------------------------------------- /banana/src/app/controllers/all.js: -------------------------------------------------------------------------------- 1 | define([ 2 | './dash', 3 | './dashLoader', 4 | './row', 5 | ], function () {}); -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/module.css: -------------------------------------------------------------------------------- 1 | /** custom additions **/ 2 | .leaflet-marker-icon { 3 | color: #333; 4 | } -------------------------------------------------------------------------------- /d3viz/assets/img/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/devices.png -------------------------------------------------------------------------------- /d3viz/assets/img/expo-lyft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/expo-lyft.jpg -------------------------------------------------------------------------------- /d3viz/assets/img/expo-riot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/expo-riot.jpg -------------------------------------------------------------------------------- /d3viz/assets/img/sass-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/sass-less.png -------------------------------------------------------------------------------- /facetview_ads/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: 1.7.0_71 (Oracle Corporation) 3 | 4 | -------------------------------------------------------------------------------- /facetview_ads/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/.DS_Store -------------------------------------------------------------------------------- /facetview_images/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: 1.7.0_71 (Oracle Corporation) 3 | 4 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/area.scss: -------------------------------------------------------------------------------- 1 | .c3-area { 2 | stroke-width: 0; 3 | opacity: 0.2; 4 | } 5 | -------------------------------------------------------------------------------- /homepage/img/imagecat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/imagecat-icon.png -------------------------------------------------------------------------------- /homepage/img/khooshe-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/khooshe-icon.png -------------------------------------------------------------------------------- /homepage/img/kitware-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/kitware-logo.png -------------------------------------------------------------------------------- /homepage/img/logos/aetuts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/aetuts.jpg -------------------------------------------------------------------------------- /homepage/img/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/envato.jpg -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "imagespace"] 2 | path = imagespace 3 | url = git@github.com:memex-explorer/image_space.git 4 | -------------------------------------------------------------------------------- /banana/src/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/font/FontAwesome.otf -------------------------------------------------------------------------------- /d3viz/assets/img/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/components.png -------------------------------------------------------------------------------- /d3viz/assets/img/expo-vogue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/expo-vogue.jpg -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/region.scss: -------------------------------------------------------------------------------- 1 | .c3-region { 2 | fill: steelblue; 3 | fill-opacity: .1; 4 | } 5 | -------------------------------------------------------------------------------- /homepage/img/facetspace-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/facetspace-icon.png -------------------------------------------------------------------------------- /homepage/img/imagespace-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/imagespace-icon.png -------------------------------------------------------------------------------- /homepage/img/logos/wordpress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/wordpress.jpg -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/module.css: -------------------------------------------------------------------------------- 1 | /** custom additions **/ 2 | .leaflet-marker-icon { 3 | color: #333; 4 | } -------------------------------------------------------------------------------- /d3viz/assets/img/expo-newsweek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/img/expo-newsweek.jpg -------------------------------------------------------------------------------- /d3viz/resources/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/resources/images/loader.gif -------------------------------------------------------------------------------- /d3viz/resources/images/loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/resources/images/loader1.gif -------------------------------------------------------------------------------- /facetview_images/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/.DS_Store -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/region.scss: -------------------------------------------------------------------------------- 1 | .c3-region { 2 | fill: steelblue; 3 | fill-opacity: .1; 4 | } 5 | -------------------------------------------------------------------------------- /homepage/img/ContinuumWordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/ContinuumWordmark.png -------------------------------------------------------------------------------- /homepage/img/banana_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/banana_screenshot.png -------------------------------------------------------------------------------- /homepage/img/logos/designmodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/designmodo.jpg -------------------------------------------------------------------------------- /homepage/img/logos/microlancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/microlancer.jpg -------------------------------------------------------------------------------- /homepage/img/logos/themeforest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/themeforest.jpg -------------------------------------------------------------------------------- /d3viz/assets/flash/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/flash/ZeroClipboard.swf -------------------------------------------------------------------------------- /facetview_ads/vendor/d3-3.5.6/d3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/d3-3.5.6/d3.zip -------------------------------------------------------------------------------- /banana/src/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /banana/src/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /banana/src/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /banana/src/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /d3viz/assets/js/vendor/autoprefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/assets/js/vendor/autoprefixer.js -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/.DS_Store -------------------------------------------------------------------------------- /facetview_images/vendor/d3-3.5.6/d3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/d3-3.5.6/d3.zip -------------------------------------------------------------------------------- /homepage/img/logos/creative-market.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/logos/creative-market.jpg -------------------------------------------------------------------------------- /homepage/img/weaponsviz_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/img/weaponsviz_screenshot.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | before_script: 4 | - npm install -g grunt-cli 5 | - gem install sass 6 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/0.4.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/c3-0.4.10/0.4.10.zip -------------------------------------------------------------------------------- /banana/src/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test.csv: -------------------------------------------------------------------------------- 1 | data1,data2,data3 2 | 120,80,200 3 | 140,50,210 4 | 170,100,250 5 | 150,70,300 6 | 180,120,280 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test2.csv: -------------------------------------------------------------------------------- 1 | data1,data2,data3 2 | 20,180,400 3 | 40,150,310 4 | 70,120,470 5 | 50,170,400 6 | 80,200,380 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/head.js: -------------------------------------------------------------------------------- 1 | (function (window) { 2 | 'use strict'; 3 | 4 | /*global define, module, exports, require */ 5 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/bar.scss: -------------------------------------------------------------------------------- 1 | .c3-bar { 2 | stroke-width: 0; 3 | } 4 | .c3-bar._expanded_ { 5 | fill-opacity: 0.75; 6 | } 7 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/text.scss: -------------------------------------------------------------------------------- 1 | .c3-text { 2 | } 3 | 4 | .c3-text.c3-empty { 5 | fill: #808080; 6 | font-size: 2em; 7 | } 8 | -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/.DS_Store -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | before_script: 4 | - npm install -g grunt-cli 5 | - gem install sass 6 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/0.4.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/c3-0.4.10/0.4.10.zip -------------------------------------------------------------------------------- /homepage/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /d3viz/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | .starter-template { 5 | padding: 40px 15px; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test.tsv: -------------------------------------------------------------------------------- 1 | data1 data2 data3 2 | 520 380 100 3 | 540 350 110 4 | 570 400 150 5 | 550 370 200 6 | 580 420 180 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test3.csv: -------------------------------------------------------------------------------- 1 | x,download,loading 2 | www.hogehoge.com,30,19 3 | www.aaaa.com,30,13 4 | www.bb.com,20,24 5 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test.csv: -------------------------------------------------------------------------------- 1 | data1,data2,data3 2 | 120,80,200 3 | 140,50,210 4 | 170,100,250 5 | 150,70,300 6 | 180,120,280 -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test2.csv: -------------------------------------------------------------------------------- 1 | data1,data2,data3 2 | 20,180,400 3 | 40,150,310 4 | 70,120,470 5 | 50,170,400 6 | 80,200,380 -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test3.csv: -------------------------------------------------------------------------------- 1 | x,download,loading 2 | www.hogehoge.com,30,19 3 | www.aaaa.com,30,13 4 | www.bb.com,20,24 5 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/head.js: -------------------------------------------------------------------------------- 1 | (function (window) { 2 | 'use strict'; 3 | 4 | /*global define, module, exports, require */ 5 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/bar.scss: -------------------------------------------------------------------------------- 1 | .c3-bar { 2 | stroke-width: 0; 3 | } 4 | .c3-bar._expanded_ { 5 | fill-opacity: 0.75; 6 | } 7 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/text.scss: -------------------------------------------------------------------------------- 1 | .c3-text { 2 | } 3 | 4 | .c3-text.c3-empty { 5 | fill: #808080; 6 | font-size: 2em; 7 | } 8 | -------------------------------------------------------------------------------- /homepage/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /homepage/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /banana/QUICKSTART: -------------------------------------------------------------------------------- 1 | Copy Banana folder to $SOLR_HOME/example/solr-webapp/webapp/ 2 | 3 | Browse to http://localhost:8983/solr/banana/src/index.html#/dashboard -------------------------------------------------------------------------------- /d3viz/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /d3viz/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /d3viz/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test.tsv: -------------------------------------------------------------------------------- 1 | data1 data2 data3 2 | 520 380 100 3 | 540 350 110 4 | 570 400 150 5 | 550 370 200 6 | 580 420 180 -------------------------------------------------------------------------------- /homepage/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /homepage/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /d3viz/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/.gitignore: -------------------------------------------------------------------------------- 1 | # npm modules 2 | node_modules 3 | bower_components 4 | d3.js 5 | d3.min.js 6 | components 7 | build 8 | .sass-cache 9 | -------------------------------------------------------------------------------- /homepage/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /homepage/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /homepage/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/homepage/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/.gitignore: -------------------------------------------------------------------------------- 1 | # npm modules 2 | node_modules 3 | bower_components 4 | d3.js 5 | d3.min.js 6 | components 7 | build 8 | .sass-cache 9 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap/leaflet/images/layers.png -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /banana/src/app/panels/filtering/editor.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | No options here 5 |
6 |
7 |
-------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/d3viz/resources/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/extensions/exporter/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/c3-0.4.10/extensions/exporter/test.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/css/style.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | text-align: center; 4 | } 5 | 6 | #chart { 7 | width: 720px; 8 | margin: 24px auto; 9 | } 10 | -------------------------------------------------------------------------------- /nutch/selenium-handlers/lib/protocol-interactiveselenium.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/nutch/selenium-handlers/lib/protocol-interactiveselenium.jar -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /banana/src/app/panels/tagcloud/module.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/bootstrap.dark.less: -------------------------------------------------------------------------------- 1 | @import "bootstrap.less"; 2 | @import "bootswatch.dark.less"; 3 | @import "overrides.less"; 4 | @import "variables.dark.less"; 5 | -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/extensions/exporter/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/c3-0.4.10/extensions/exporter/test.png -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/css/style.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | text-align: center; 4 | } 5 | 6 | #chart { 7 | width: 720px; 8 | margin: 24px auto; 9 | } 10 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap_multi/leaflet/images/layers.png -------------------------------------------------------------------------------- /banana/src/app/partials/load.html: -------------------------------------------------------------------------------- 1 |
2 | type: {{type}}
3 | id: {{id}}
4 |
-------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/bootstrap.light.less: -------------------------------------------------------------------------------- 1 | @import "bootstrap.less"; 2 | @import "bootswatch.light.less"; 3 | @import "overrides.less"; 4 | @import "variables.light.less"; 5 | -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /homepage/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap_multi/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test.json: -------------------------------------------------------------------------------- 1 | { 2 | "data1": [120, 140, 170, 150, 180], 3 | "data2": [80, 50, 100, 70, 120], 4 | "data3": [200, 210, 250, 300, 280] 5 | } 6 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.color.js: -------------------------------------------------------------------------------- 1 | // TODO: fix 2 | c3_chart_fn.color = function (id) { 3 | var $$ = this.internal; 4 | return $$.color(id); // more patterns 5 | }; 6 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test.json: -------------------------------------------------------------------------------- 1 | { 2 | "data1": [120, 140, 170, 150, 180], 3 | "data2": [80, 50, 100, 70, 120], 4 | "data3": [200, 210, 250, 300, 280] 5 | } 6 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.color.js: -------------------------------------------------------------------------------- 1 | // TODO: fix 2 | c3_chart_fn.color = function (id) { 3 | var $$ = this.internal; 4 | return $$.color(id); // more patterns 5 | }; 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MEMEX Weapons 2 | Our MEMEX pilots for the Weapons domain. 3 | 4 | # Contact 5 | Please send email to [Chris Mattmann](mailto:chris.a.mattmann@jpl.nasa.gov) with questions. 6 | 7 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap_multi/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap_multi/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- 1 | # Set of Irish contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | d 4 | m 5 | b 6 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- 1 | # Set of Irish hyphenations for StopFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | h 4 | n 5 | t 6 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/banana/src/app/panels/bettermap_multi/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /d3viz/resources/bower_components/d3/.gitattributes: -------------------------------------------------------------------------------- 1 | bower.json -diff merge=ours 2 | component.json -diff merge=ours 3 | d3.js -diff merge=ours 4 | d3.min.js -diff merge=ours 5 | package.js -diff merge=ours 6 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test2_ts.csv: -------------------------------------------------------------------------------- 1 | x,data1,data2,data3 2 | 2013-04-01,20,180,400 3 | 2013-04-02,40,150,310 4 | 2013-04-03,70,120,470 5 | 2013-04-04,50,170,400 6 | 2013-04-05,80,200,380 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test_ts.csv: -------------------------------------------------------------------------------- 1 | x,data1,data2,data3 2 | 2012-12-31,120,80,200 3 | 2013-01-01,140,50,210 4 | 2013-01-02,170,100,250 5 | 2013-01-03,150,70,300 6 | 2013-01-04,180,120,280 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/point.scss: -------------------------------------------------------------------------------- 1 | .c3-circle._expanded_ { 2 | stroke-width: 1px; 3 | stroke: white; 4 | } 5 | .c3-selected-circle { 6 | fill: white; 7 | stroke-width: 2px; 8 | } 9 | -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "data1": [20, 40, 70, 50, 80, 30], 3 | "data2": [180, 150, 200, 170, 220, 400], 4 | "data3": [1200, 1210, 1250, 1300, 1280, 1000] 5 | } 6 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test2_ts.csv: -------------------------------------------------------------------------------- 1 | x,data1,data2,data3 2 | 2013-04-01,20,180,400 3 | 2013-04-02,40,150,310 4 | 2013-04-03,70,120,470 5 | 2013-04-04,50,170,400 6 | 2013-04-05,80,200,380 -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "data1": [20, 40, 70, 50, 80, 30], 3 | "data2": [180, 150, 200, 170, 220, 400], 4 | "data3": [1200, 1210, 1250, 1300, 1280, 1000] 5 | } 6 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test_ts.csv: -------------------------------------------------------------------------------- 1 | x,data1,data2,data3 2 | 2012-12-31,120,80,200 3 | 2013-01-01,140,50,210 4 | 2013-01-02,170,100,250 5 | 2013-01-03,150,70,300 6 | 2013-01-04,180,120,280 -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/point.scss: -------------------------------------------------------------------------------- 1 | .c3-circle._expanded_ { 2 | stroke-width: 1px; 3 | stroke: white; 4 | } 5 | .c3-selected-circle { 6 | fill: white; 7 | stroke-width: 2px; 8 | } 9 | -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- 1 | # Set of Irish hyphenations for StopFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | h 4 | n 5 | t 6 | -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- 1 | # Set of Catalan contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | d 4 | l 5 | m 6 | n 7 | s 8 | t 9 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- 1 | # Set of Irish contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | d 4 | m 5 | b 6 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/category.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.categoryName = function (i) { 2 | var config = this.config; 3 | return i < config.axis_x_categories.length ? config.axis_x_categories[i] : i; 4 | }; 5 | -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Provides cynamic spelling suggestions 3 | * as you type in the search form 4 | *# 5 | 6 | #foreach($t in $response.response.terms.name) 7 | $t.key 8 | #end 9 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/category.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.categoryName = function (i) { 2 | var config = this.config; 3 | return i < config.axis_x_categories.length ? config.axis_x_categories[i] : i; 4 | }; 5 | -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /banana/src/app/services/all.js: -------------------------------------------------------------------------------- 1 | define([ 2 | './alertSrv', 3 | './dashboard', 4 | './fields', 5 | './filterSrv', 6 | './kbnIndex', 7 | './querySrv', 8 | './timer', 9 | './panelMove' 10 | ], 11 | function () {}); -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /banana/src/app/directives/all.js: -------------------------------------------------------------------------------- 1 | define([ 2 | './addPanel', 3 | './arrayJoin', 4 | './dashUpload', 5 | './kibanaPanel', 6 | './ngBlur', 7 | './ngModelOnBlur', 8 | './tip', 9 | './confirmClick' 10 | ], function () {}); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/grid.scss: -------------------------------------------------------------------------------- 1 | .c3-grid line { 2 | stroke: #aaa; 3 | } 4 | .c3-grid text { 5 | fill: #aaa; 6 | } 7 | .c3-xgrid, .c3-ygrid { 8 | stroke-dasharray: 3 3; 9 | } 10 | .c3-xgrid-focus { 11 | } 12 | -------------------------------------------------------------------------------- /facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_ads/vendor/jquery-ui-1.8.18.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- 1 | # Set of overrides for the dutch stemmer 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | fiets fiets 4 | bromfiets bromfiets 5 | ei eier 6 | kind kinder 7 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- 1 | # Set of Catalan contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | d 4 | l 5 | m 6 | n 7 | s 8 | t 9 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/grid.scss: -------------------------------------------------------------------------------- 1 | .c3-grid line { 2 | stroke: #aaa; 3 | } 4 | .c3-grid text { 5 | fill: #aaa; 6 | } 7 | .c3-xgrid, .c3-ygrid { 8 | stroke-dasharray: 3 3; 9 | } 10 | .c3-xgrid-focus { 11 | } 12 | -------------------------------------------------------------------------------- /facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl-memex/weapons/HEAD/facetview_images/vendor/jquery-ui-1.8.18.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Provides cynamic spelling suggestions 3 | * as you type in the search form 4 | *# 5 | 6 | #foreach($t in $response.response.terms.name) 7 | $t.key 8 | #end 9 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/css/index.css: -------------------------------------------------------------------------------- 1 | .row { 2 | margin-left: 8px; 3 | } 4 | .row a { 5 | display: block; 6 | text-align: left; 7 | font-size: 1.2em; 8 | line-height: 1.8; 9 | } 10 | .row h3 { 11 | color: #777; 12 | } -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/axis.scss: -------------------------------------------------------------------------------- 1 | .c3-axis-x .tick { 2 | } 3 | .c3-axis-x-label { 4 | } 5 | 6 | .c3-axis-y .tick { 7 | } 8 | .c3-axis-y-label { 9 | } 10 | 11 | .c3-axis-y2 .tick { 12 | } 13 | .c3-axis-y2-label { 14 | } 15 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/axis.scss: -------------------------------------------------------------------------------- 1 | .c3-axis-x .tick { 2 | } 3 | .c3-axis-x-label { 4 | } 5 | 6 | .c3-axis-y .tick { 7 | } 8 | .c3-axis-y-label { 9 | } 10 | 11 | .c3-axis-y2 .tick { 12 | } 13 | .c3-axis-y2-label { 14 | } 15 | -------------------------------------------------------------------------------- /nutch/selenium/conf/nutch-site.xml.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /nutch/selenium/handlers/README.md: -------------------------------------------------------------------------------- 1 | Nutch Selenium Handlers 2 | ======================= 3 | 4 | This is a Maven project that builds interactive selenium 5 | handlers as a drop-in jar for Nutch for crawling weapons 6 | sites which require Ajax. 7 | 8 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/css/index.css: -------------------------------------------------------------------------------- 1 | .row { 2 | margin-left: 8px; 3 | } 4 | .row a { 5 | display: block; 6 | text-align: left; 7 | font-size: 1.2em; 8 | line-height: 1.8; 9 | } 10 | .row h3 { 11 | color: #777; 12 | } -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- 1 | # Set of overrides for the dutch stemmer 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | fiets fiets 4 | bromfiets bromfiets 5 | ei eier 6 | kind kinder 7 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /banana/src/app/partials/paneladd.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

{{tab.title}}

5 |
6 |
-------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/focus.scss: -------------------------------------------------------------------------------- 1 | .c3-target.c3-focused { 2 | opacity: 1; 3 | } 4 | .c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step { 5 | stroke-width: 2px; 6 | } 7 | .c3-target.c3-defocused { 8 | opacity: 0.3 !important; 9 | } 10 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/spec/c3-spec.js: -------------------------------------------------------------------------------- 1 | describe('c3', function () { 2 | 'use strict'; 3 | 4 | var c3 = window.c3; 5 | 6 | it('exists', function () { 7 | expect(c3).not.toBeNull(); 8 | expect(typeof c3).toBe('object'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/spec/c3-spec.js: -------------------------------------------------------------------------------- 1 | describe('c3', function () { 2 | 'use strict'; 3 | 4 | var c3 = window.c3; 5 | 6 | it('exists', function () { 7 | expect(c3).not.toBeNull(); 8 | expect(typeof c3).toBe('object'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/focus.scss: -------------------------------------------------------------------------------- 1 | .c3-target.c3-focused { 2 | opacity: 1; 3 | } 4 | .c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step { 5 | stroke-width: 2px; 6 | } 7 | .c3-target.c3-defocused { 8 | opacity: 0.3 !important; 9 | } 10 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/legend.scss: -------------------------------------------------------------------------------- 1 | .c3-legend-item { 2 | font-size: 12px; 3 | } 4 | .c3-legend-item-hidden { 5 | opacity: 0.15; 6 | } 7 | 8 | .c3-legend-background { 9 | opacity: 0.75; 10 | fill: white; 11 | stroke: lightgray; 12 | stroke-width: 1 13 | } 14 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/legend.scss: -------------------------------------------------------------------------------- 1 | .c3-legend-item { 2 | font-size: 12px; 3 | } 4 | .c3-legend-item-hidden { 5 | opacity: 0.15; 6 | } 7 | 8 | .c3-legend-background { 9 | opacity: 0.75; 10 | fill: white; 11 | stroke: lightgray; 12 | stroke-width: 1 13 | } 14 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/_schema_analysis_synonyms_english.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{ 3 | "ignoreCase":true, 4 | "format":"solr" 5 | }, 6 | "managedMap":{ 7 | "GB":["GiB","Gigabyte"], 8 | "happy":["glad","joyful"], 9 | "TV":["Television"] 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.group.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.groups = function (groups) { 2 | var $$ = this.internal, config = $$.config; 3 | if (isUndefined(groups)) { return config.data_groups; } 4 | config.data_groups = groups; 5 | $$.redraw(); 6 | return config.data_groups; 7 | }; 8 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- 1 | # Set of French contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | l 4 | m 5 | t 6 | qu 7 | n 8 | s 9 | j 10 | d 11 | c 12 | jusqu 13 | quoiqu 14 | lorsqu 15 | puisqu 16 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.group.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.groups = function (groups) { 2 | var $$ = this.internal, config = $$.config; 3 | if (isUndefined(groups)) { return config.data_groups; } 4 | config.data_groups = groups; 5 | $$.redraw(); 6 | return config.data_groups; 7 | }; 8 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/header.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Render the top section of the page visible to users 3 | *# 4 | 5 | 8 | -------------------------------------------------------------------------------- /nutch/conf/protocols.txt: -------------------------------------------------------------------------------- 1 | # Example configuration file for urlnormalizer-protocol 2 | # 3 | # URL's of hosts listed in the configuration are normalized to the target 4 | # protocol. Useful in cases where a host accepts both http and https, doubling 5 | # the site's size. 6 | # 7 | # format: \t\n 8 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/facets.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Overall Facet display block 3 | * Invokes the 4 facet and 1 cluster template 4 | *# 5 | 6 | #parse('facet_fields.vm') 7 | #parse('facet_queries.vm') 8 | #parse('facet_ranges.vm') 9 | #parse('facet_pivot.vm') 10 | #parse('cluster.vm') 11 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- 1 | # Set of French contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | l 4 | m 5 | t 6 | qu 7 | n 8 | s 9 | j 10 | d 11 | c 12 | jusqu 13 | quoiqu 14 | lorsqu 15 | puisqu 16 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/data/c3_test_3.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "id": 1, "name": "abc", "data1": 1200, "data2": 500 }, 3 | { "id": 2, "name": "efg", "data1": 900, "data2": 600 }, 4 | { "id": 3, "name": "pqr", "data1": 1150, "data2": 300 }, 5 | { "id": 4, "name": "xyz", "data1": 1020, "data2": 900 } 6 | ] 7 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/data/c3_test_3.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "id": 1, "name": "abc", "data1": 1200, "data2": 500 }, 3 | { "id": 2, "name": "efg", "data1": 900, "data2": 600 }, 4 | { "id": 3, "name": "pqr", "data1": 1150, "data2": 300 }, 5 | { "id": 4, "name": "xyz", "data1": 1020, "data2": 900 } 6 | ] 7 | -------------------------------------------------------------------------------- /nutch/selenium/conf/protocols.txt: -------------------------------------------------------------------------------- 1 | # Example configuration file for urlnormalizer-protocol 2 | # 3 | # URL's of hosts listed in the configuration are normalized to the target 4 | # protocol. Useful in cases where a host accepts both http and https, doubling 5 | # the site's size. 6 | # 7 | # format: \t\n 8 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/bootswatch.light.less: -------------------------------------------------------------------------------- 1 | 2 | // KIBANA 3 | .panelCont { 4 | outline: 1px solid darken(@bodyBackground, 10%); 5 | border-top: 1px solid lighten(@bodyBackground, 10%); 6 | padding: 0px 10px 10px 10px; 7 | background: darken(@bodyBackground, 5%); 8 | margin: 0px; 9 | } 10 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/requirejs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/requirejs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/facets.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Overall Facet display block 3 | * Invokes the 4 facet and 1 cluster template 4 | *# 5 | 6 | #parse('facet_fields.vm') 7 | #parse('facet_queries.vm') 8 | #parse('facet_ranges.vm') 9 | #parse('facet_pivot.vm') 10 | #parse('cluster.vm') 11 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/header.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Render the top section of the page visible to users 3 | *# 4 | 5 | 8 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/extensions/exporter/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "js": [ 3 | "../../bower_components/d3/d3.min.js", 4 | "../../c3.min.js" 5 | ], 6 | "css": [ 7 | "../../c3.css" 8 | ], 9 | 10 | "template": "
" 11 | } -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/tail.js: -------------------------------------------------------------------------------- 1 | if (typeof define === 'function' && define.amd) { 2 | define("c3", ["d3"], c3); 3 | } else if ('undefined' !== typeof exports && 'undefined' !== typeof module) { 4 | module.exports = c3; 5 | } else { 6 | window.c3 = c3; 7 | } 8 | 9 | })(window); 10 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/error.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Show Error Message, if any 3 | *# 4 | 5 | ## Show Error Message, if any 6 | ## Usually rendered inside div class=error 7 | 8 | #if( $response.response.error.code ) 9 |

ERROR $response.response.error.code

10 | $response.response.error.msg 11 | #end 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.history 2 | *.class 3 | 4 | # Mobile Tools for Java (J2ME) 5 | .mtj.tmp/ 6 | 7 | # Package Files # 8 | #*.jar 9 | *.war 10 | *.ear 11 | 12 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 13 | hs_err_pid* 14 | 15 | # MAC Files 16 | .DS_STORE 17 | 18 | #IDE Files 19 | .idea 20 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/extensions/exporter/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "js": [ 3 | "../../bower_components/d3/d3.min.js", 4 | "../../c3.min.js" 5 | ], 6 | "css": [ 7 | "../../c3.css" 8 | ], 9 | 10 | "template": "
" 11 | } -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/tail.js: -------------------------------------------------------------------------------- 1 | if (typeof define === 'function' && define.amd) { 2 | define("c3", ["d3"], c3); 3 | } else if ('undefined' !== typeof exports && 'undefined' !== typeof module) { 4 | module.exports = c3; 5 | } else { 6 | window.c3 = c3; 7 | } 8 | 9 | })(window); 10 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/ua.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.isSafari = function () { 2 | var ua = window.navigator.userAgent; 3 | return ua.indexOf('Safari') >= 0 && ua.indexOf('Chrome') < 0; 4 | }; 5 | c3_chart_internal_fn.isChrome = function () { 6 | var ua = window.navigator.userAgent; 7 | return ua.indexOf('Chrome') >= 0; 8 | }; 9 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/error.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Show Error Message, if any 3 | *# 4 | 5 | ## Show Error Message, if any 6 | ## Usually rendered inside div class=error 7 | 8 | #if( $response.response.error.code ) 9 |

ERROR $response.response.error.code

10 | $response.response.error.msg 11 | #end 12 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/ua.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.isSafari = function () { 2 | var ua = window.navigator.userAgent; 3 | return ua.indexOf('Safari') >= 0 && ua.indexOf('Chrome') < 0; 4 | }; 5 | c3_chart_internal_fn.isChrome = function () { 6 | var ua = window.navigator.userAgent; 7 | return ua.indexOf('Chrome') >= 0; 8 | }; 9 | -------------------------------------------------------------------------------- /banana/src/app/panels/query/editor.html: -------------------------------------------------------------------------------- 1 |
2 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/did_you_mean.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Hyperlinked spelling suggestions in results list 3 | *# 4 | 5 | #set($dym = $response.response.spellcheck.suggestions.collation.collationQuery) 6 | #if($dym) 7 | Did you mean 8 | $esc.html($dym)? 9 | #end 10 | -------------------------------------------------------------------------------- /banana/test/protractor-conf.js: -------------------------------------------------------------------------------- 1 | exports.config = { 2 | allScriptsTimeout: 11000, 3 | 4 | specs: [ 5 | 'e2e/*.js' 6 | ], 7 | 8 | capabilities: { 9 | 'browserName': 'chrome' 10 | }, 11 | 12 | baseUrl: 'http://localhost:8000/app/', 13 | 14 | framework: 'jasmine', 15 | 16 | jasmineNodeOpts: { 17 | defaultTimeoutInterval: 30000 18 | } 19 | }; 20 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/facet_pivot.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display Pivot-Based Facets 3 | * e.g.: facets specified by &facet.pivot= 4 | *# 5 | 6 |

7 | Pivot Facets 8 |

9 | 10 | #set($pivot = $response.response.facet_counts.facet_pivot) 11 | 12 | #display_facet_pivot($pivot, "") 13 | -------------------------------------------------------------------------------- /banana/test/unit/servicesSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for services go here */ 4 | 5 | describe('service', function() { 6 | beforeEach(module('myApp.services')); 7 | 8 | 9 | describe('version', function() { 10 | it('should return current version', inject(function(version) { 11 | expect(version).toEqual('0.1'); 12 | })); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /banana/src/app/panels/bettermap/module.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
6 |
-------------------------------------------------------------------------------- /banana/src/app/panels/bettermap_multi/module.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
6 |
-------------------------------------------------------------------------------- /banana/src/app/panels/timepicker/refreshctrl.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
-------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- 1 | # Set of Italian contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | c 4 | l 5 | all 6 | dall 7 | dell 8 | nell 9 | sull 10 | coll 11 | pell 12 | gl 13 | agl 14 | dagl 15 | degl 16 | negl 17 | sugl 18 | un 19 | m 20 | t 21 | s 22 | v 23 | d 24 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- 1 | # Set of Italian contractions for ElisionFilter 2 | # TODO: load this as a resource from the analyzer and sync it in build.xml 3 | c 4 | l 5 | all 6 | dall 7 | dell 8 | nell 9 | sull 10 | coll 11 | pell 12 | gl 13 | agl 14 | dagl 15 | degl 16 | negl 17 | sugl 18 | un 19 | m 20 | t 21 | s 22 | v 23 | d 24 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/facet_pivot.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display Pivot-Based Facets 3 | * e.g.: facets specified by &facet.pivot= 4 | *# 5 | 6 |

7 | Pivot Facets 8 |

9 | 10 | #set($pivot = $response.response.facet_counts.facet_pivot) 11 | 12 | #display_facet_pivot($pivot, "") 13 | -------------------------------------------------------------------------------- /nutch/selenium/conf/regex-parsefilter.txt: -------------------------------------------------------------------------------- 1 | # Example configuration file for parsefilter-regex 2 | # 3 | # Parse metadata field is set to true if the HTML matches the regex. The 4 | # source can either be html or text. If source is html, the regex is applied to 5 | # the entire HTML tree. If source is text, the regex is applied to the 6 | # extracted text. 7 | # 8 | # format: \t\t\n 9 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display facets based on specific facet queries 3 | * e.g.: facets specified by &facet.query= 4 | *# 5 | 6 | #set($field = $response.response.facet_counts.facet_queries) 7 | 8 |

9 | Query Facets 10 |

11 | 12 | #display_facet_query($field, "", "") 13 | -------------------------------------------------------------------------------- /banana/src/app/partials/modal.html: -------------------------------------------------------------------------------- 1 | 5 | 10 | -------------------------------------------------------------------------------- /nutch/conf/parse-plugins.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display facets based on specific facet queries 3 | * e.g.: facets specified by &facet.query= 4 | *# 5 | 6 | #set($field = $response.response.facet_counts.facet_queries) 7 | 8 |

9 | Query Facets 10 |

11 | 12 | #display_facet_query($field, "", "") 13 | -------------------------------------------------------------------------------- /nutch/selenium/conf/parse-plugins.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /banana/test/unit/controllersSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('Table controllers', function() { 4 | 5 | describe('table', function(){ 6 | 7 | beforeEach(module('kibana.panels.table')); 8 | it('should defined table controller', inject(function($controller) { 9 | var scope = {}, 10 | ctrl = $controller('table', {$scope:scope}); 11 | 12 | expect(ctrl).toBeDefined(); 13 | })); 14 | 15 | }); 16 | }); -------------------------------------------------------------------------------- /homepage/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "c3", 3 | "repo": "masayuki0812/c3", 4 | "description": "A D3-based reusable chart library", 5 | "version": "0.4.10", 6 | "keywords": [], 7 | "dependencies": { 8 | "mbostock/d3": "v3.5.0" 9 | }, 10 | "development": {}, 11 | "license": "MIT", 12 | "main": "c3.js", 13 | "scripts": [ 14 | "c3.js" 15 | ], 16 | "styles": [ 17 | "c3.css" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/js/samples/requirejs.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | baseUrl: '/js', 3 | paths: { 4 | d3: "http://d3js.org/d3.v3.min" 5 | } 6 | }); 7 | 8 | require(["d3", "c3"], function(d3, c3) { 9 | 10 | window.chart = c3.generate({ 11 | data: { 12 | columns: [ 13 | ['sample', 30, 200, 100, 400, 150, 250] 14 | ] 15 | } 16 | }); 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/js/samples/requirejs.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | baseUrl: '/js', 3 | paths: { 4 | d3: "http://d3js.org/d3.v3.min" 5 | } 6 | }); 7 | 8 | require(["d3", "c3"], function(d3, c3) { 9 | 10 | window.chart = c3.generate({ 11 | data: { 12 | columns: [ 13 | ['sample', 30, 200, 100, 400, 150, 250] 14 | ] 15 | } 16 | }); 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "c3", 3 | "repo": "masayuki0812/c3", 4 | "description": "A D3-based reusable chart library", 5 | "version": "0.4.10", 6 | "keywords": [], 7 | "dependencies": { 8 | "mbostock/d3": "v3.5.0" 9 | }, 10 | "development": {}, 11 | "license": "MIT", 12 | "main": "c3.js", 13 | "scripts": [ 14 | "c3.js" 15 | ], 16 | "styles": [ 17 | "c3.css" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | 6 | .fade { 7 | opacity: 0; 8 | .transition(opacity .15s linear); 9 | &.in { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | .collapse { 15 | position: relative; 16 | height: 0; 17 | overflow: hidden; 18 | .transition(height .35s ease); 19 | &.in { 20 | height: auto; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/d3/package.js: -------------------------------------------------------------------------------- 1 | // Package metadata for Meteor.js. 2 | 3 | Package.describe({ 4 | name: "d3js:d3", // http://atmospherejs.com/d3js/d3 5 | summary: "D3 (official): A JavaScript visualization library for HTML and SVG.", 6 | version: "3.5.9", 7 | git: "https://github.com/mbostock/d3.git" 8 | }); 9 | 10 | Package.onUse(function(api) { 11 | api.versionsFrom(["METEOR@1.0"]); 12 | api.addFiles("d3.js", "client"); 13 | }); 14 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.legend.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.legend = function () {}; 2 | c3_chart_fn.legend.show = function (targetIds) { 3 | var $$ = this.internal; 4 | $$.showLegend($$.mapToTargetIds(targetIds)); 5 | $$.updateAndRedraw({withLegend: true}); 6 | }; 7 | c3_chart_fn.legend.hide = function (targetIds) { 8 | var $$ = this.internal; 9 | $$.hideLegend($$.mapToTargetIds(targetIds)); 10 | $$.updateAndRedraw({withLegend: true}); 11 | }; 12 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/did_you_mean.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Hyperlinked spelling suggestions in results list 3 | *# 4 | 5 | #set($collations = $response.response.spellcheck.suggestions.getAll("collation")) 6 | #if($collations.size() > 0) 7 | Did you mean 8 | #foreach($collation in $collations) 9 | $esc.html($collation.collationQuery) ($collation.hits)? 10 | #end 11 | #end 12 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.legend.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.legend = function () {}; 2 | c3_chart_fn.legend.show = function (targetIds) { 3 | var $$ = this.internal; 4 | $$.showLegend($$.mapToTargetIds(targetIds)); 5 | $$.updateAndRedraw({withLegend: true}); 6 | }; 7 | c3_chart_fn.legend.hide = function (targetIds) { 8 | var $$ = this.internal; 9 | $$.hideLegend($$.mapToTargetIds(targetIds)); 10 | $$.updateAndRedraw({withLegend: true}); 11 | }; 12 | -------------------------------------------------------------------------------- /nutch/scripts/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | Usage 4 | 5 | ``` 6 | ./wrangler_cron.sh > pipe_Output.txt 7 | ``` 8 | 9 | 1. Expect fresh weekly segments in $WRANGLER_SEGS 10 | 11 | 2. Script/Cron Job should Run & Complete prior to the transition of dates (midnight) 12 | Reason: Document IDs are grepped from hadoop.log based on date of File Dump. Hence Nutch FileDumper portion of the Cron job should complete prior to the transition of dates 13 | 14 | 3. Stderr is piped to terminal 15 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/join_doc.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display documents that are joined to other documents 3 | *# 4 | 5 |
6 | #field('compName_s') 7 |
8 | 9 |
10 | Id: #field('id') 11 | (company-details document for 12 | join 13 | ) 14 |
15 | 16 |
17 | Address: #field('address_s') 18 |
19 | 20 | #parse('debug.vm') 21 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/join_doc.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display documents that are joined to other documents 3 | *# 4 | 5 |
6 | #field('compName_s') 7 |
8 | 9 |
10 | Id: #field('id') 11 | (company-details document for 12 | join 13 | ) 14 |
15 | 16 |
17 | Address: #field('address_s') 18 |
19 | 20 | #parse('debug.vm') 21 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- 1 | # example set of Armenian stopwords. 2 | այդ 3 | այլ 4 | այն 5 | այս 6 | դու 7 | դուք 8 | եմ 9 | են 10 | ենք 11 | ես 12 | եք 13 | է 14 | էի 15 | էին 16 | էինք 17 | էիր 18 | էիք 19 | էր 20 | ըստ 21 | թ 22 | ի 23 | ին 24 | իսկ 25 | իր 26 | կամ 27 | համար 28 | հետ 29 | հետո 30 | մենք 31 | մեջ 32 | մի 33 | ն 34 | նա 35 | նաև 36 | նրա 37 | նրանք 38 | որ 39 | որը 40 | որոնք 41 | որպես 42 | ու 43 | ում 44 | պիտի 45 | վրա 46 | և 47 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /banana/jetty-contexts/banana-context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | /webapps/banana.war 6 | /banana-webapp 7 | 8 | -------------------------------------------------------------------------------- /banana/resources/README.md: -------------------------------------------------------------------------------- 1 | # Resources 2 | 3 | This directory contains instructions and resources that help deploy and run banana. Currently, we have provided: 4 | 5 | 1. Directions for enabling cross-origin resource-sharing (CORS) in Solr, in the _enable-cors_ directory. 6 | 2. solrconfig.xml and schema.xml for the banana-int collection that is used for storing internal details such as dashboards. The _banana-int-solr-4.4_ directory works with Solr 4.4, while _banana-int-solr-4.5_ works with Solr 4.5 and above. -------------------------------------------------------------------------------- /banana/src/app/panels/text/module.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | {{panel.content}} 5 | 6 |

7 |

8 |

9 |

10 |
-------------------------------------------------------------------------------- /banana/src/css/rotate.css: -------------------------------------------------------------------------------- 1 | .rotate-icon { 2 | background-image: url("../img/rotate.svg"); 3 | width: 15px; 4 | height: 14px; 5 | background-size: 100%; 6 | float: right; 7 | display: inline-block; 8 | background-position: 0px 2px; 9 | background-repeat: repeat-x; 10 | padding-top: 6px; 11 | } 12 | 13 | .panel-error { 14 | opacity: 0.9; 15 | position:absolute; 16 | z-index: 900 !important; 17 | } 18 | 19 | .datepicker-dropdown { 20 | z-index: 1000 !important; 21 | } -------------------------------------------------------------------------------- /d3viz/resources/bower_components/d3/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "d3", 3 | "main": "d3.js", 4 | "scripts": [ 5 | "d3.js" 6 | ], 7 | "ignore": [ 8 | ".DS_Store", 9 | ".git", 10 | ".gitignore", 11 | ".npmignore", 12 | ".spmignore", 13 | ".travis.yml", 14 | "Makefile", 15 | "bin", 16 | "component.json", 17 | "composer.json", 18 | "index.js", 19 | "lib", 20 | "node_modules", 21 | "package.json", 22 | "src", 23 | "test" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- 1 | # example set of Armenian stopwords. 2 | այդ 3 | այլ 4 | այն 5 | այս 6 | դու 7 | դուք 8 | եմ 9 | են 10 | ենք 11 | ես 12 | եք 13 | է 14 | էի 15 | էին 16 | էինք 17 | էիր 18 | էիք 19 | էր 20 | ըստ 21 | թ 22 | ի 23 | ին 24 | իսկ 25 | իր 26 | կամ 27 | համար 28 | հետ 29 | հետո 30 | մենք 31 | մեջ 32 | մի 33 | ն 34 | նա 35 | նաև 36 | նրա 37 | նրանք 38 | որ 39 | որը 40 | որոնք 41 | որպես 42 | ու 43 | ում 44 | պիտի 45 | վրա 46 | և 47 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Quick floats 7 | .pull-right { 8 | float: right; 9 | } 10 | .pull-left { 11 | float: left; 12 | } 13 | 14 | // Toggling content 15 | .hide { 16 | display: none; 17 | } 18 | .show { 19 | display: block; 20 | } 21 | 22 | // Visibility 23 | .invisible { 24 | visibility: hidden; 25 | } 26 | 27 | // For Affix plugin 28 | .affix { 29 | position: fixed; 30 | } 31 | -------------------------------------------------------------------------------- /facetview_ads/vendor/linkify/1.11/plugins/jquery.linkify-1.0-twitter-min.js: -------------------------------------------------------------------------------- 1 | // Twitter plugin for jQuery.fn.linkify() 1.0 - MIT/GPL Licensed 2 | jQuery.extend(jQuery.fn.linkify.plugins,{twitterUser:{re:/(^|["'(]|<|\s)@([a-z0-9_-]+)((?:[:?]|\.+)?(?:\s|$)|>|[)"',])/gi,tmpl:'$1@$2$3'},twitterHashtag:{re:/(^|["'(]|<|\s)(#.+?)((?:[:?]|\.+)?(?:\s|$)|>|[)"',])/gi,tmpl:function(d,b,a,c){return b+''+a+''+c}}}); 3 | -------------------------------------------------------------------------------- /banana/src/vendor/require/tmpl.js: -------------------------------------------------------------------------------- 1 | /*jshint unused:false */ 2 | define(['module'], function (module) { 3 | 'use strict'; 4 | 5 | var masterConfig = (module.config && module.config()) || {}; 6 | 7 | return { 8 | load: function (name, require, onLoad, config) { 9 | var url = require.toUrl(name); 10 | require(['text!'+name], function (text) { 11 | masterConfig.registerTemplate && masterConfig.registerTemplate(url, text); 12 | onLoad(text); 13 | }); 14 | } 15 | }; 16 | 17 | }); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/js/samples/plugin.js: -------------------------------------------------------------------------------- 1 | c3.chart.internal.fn.isTimeSeries = function () { 2 | console.log('custom isTimeSeries'); 3 | return false; 4 | }; 5 | c3.chart.internal.fn.additionalConfig.test1 = undefined; 6 | c3.chart.internal.fn.additionalConfig.test2 = undefined; 7 | 8 | c3.chart.fn.hoge = function () { 9 | console.log("hoge()", this.internal.isTimeSeries()); 10 | }; 11 | c3.chart.fn.test = function () { 12 | console.log('test()', this.internal.config.test1); 13 | }; 14 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/js/samples/plugin.js: -------------------------------------------------------------------------------- 1 | c3.chart.internal.fn.isTimeSeries = function () { 2 | console.log('custom isTimeSeries'); 3 | return false; 4 | }; 5 | c3.chart.internal.fn.additionalConfig.test1 = undefined; 6 | c3.chart.internal.fn.additionalConfig.test2 = undefined; 7 | 8 | c3.chart.fn.hoge = function () { 9 | console.log("hoge()", this.internal.isTimeSeries()); 10 | }; 11 | c3.chart.fn.test = function () { 12 | console.log('test()', this.internal.config.test1); 13 | }; 14 | -------------------------------------------------------------------------------- /facetview_images/vendor/linkify/1.0/plugins/jquery.linkify-1.0-twitter-min.js: -------------------------------------------------------------------------------- 1 | // Twitter plugin for jQuery.fn.linkify() 1.0 - MIT/GPL Licensed 2 | jQuery.extend(jQuery.fn.linkify.plugins,{twitterUser:{re:/(^|["'(]|<|\s)@([a-z0-9_-]+)((?:[:?]|\.+)?(?:\s|$)|>|[)"',])/gi,tmpl:'$1@$2$3'},twitterHashtag:{re:/(^|["'(]|<|\s)(#.+?)((?:[:?]|\.+)?(?:\s|$)|>|[)"',])/gi,tmpl:function(d,b,a,c){return b+''+a+''+c}}}); 3 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /banana/src/app/directives/ngBlur.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'angular' 3 | ], 4 | function (angular) { 5 | 'use strict'; 6 | 7 | angular 8 | .module('kibana.directives') 9 | .directive('ngBlur', ['$parse', function($parse) { 10 | return function(scope, element, attr) { 11 | var fn = $parse(attr['ngBlur']); 12 | element.bind('blur', function(event) { 13 | scope.$apply(function() { 14 | fn(scope, {$event:event}); 15 | }); 16 | }); 17 | }; 18 | }]); 19 | 20 | }); -------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": {}, 7 | "homepage": "https://github.com/angular/bower-angular", 8 | "_release": "1.4.8", 9 | "_resolution": { 10 | "type": "version", 11 | "tag": "v1.4.8", 12 | "commit": "572a4fcc552c27c0f4bb1b9aab395249218c1255" 13 | }, 14 | "_source": "git://github.com/angular/bower-angular.git", 15 | "_target": "^1.x", 16 | "_originalSource": "angular" 17 | } -------------------------------------------------------------------------------- /d3viz/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Fixed (940px) 7 | #grid > .core(@gridColumnWidth, @gridGutterWidth); 8 | 9 | // Fluid (940px) 10 | #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); 11 | 12 | // Reset utility classes due to specificity 13 | [class*="span"].hide, 14 | .row-fluid [class*="span"].hide { 15 | display: none; 16 | } 17 | 18 | [class*="span"].pull-right, 19 | .row-fluid [class*="span"].pull-right { 20 | float: right; 21 | } 22 | -------------------------------------------------------------------------------- /banana/test/unit/filtersSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for filters go here */ 4 | 5 | describe('filter', function() { 6 | beforeEach(module('myApp.filters')); 7 | 8 | 9 | describe('interpolate', function() { 10 | beforeEach(module(function($provide) { 11 | $provide.value('version', 'TEST_VER'); 12 | })); 13 | 14 | 15 | it('should replace VERSION', inject(function(interpolateFilter) { 16 | expect(interpolateFilter('before %VERSION% after')).toEqual('before TEST_VER after'); 17 | })); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /banana/src/app/panels/column/panelgeneral.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 |
8 |
9 | 10 |
11 |
-------------------------------------------------------------------------------- /facetview_ads/vendor/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /facetview_images/vendor/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/layout.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Overall HTML page layout 3 | *# 4 | 5 | 6 | 7 | #parse("head.vm") 8 | 9 | 10 | 11 | 14 |
15 | #parse("tabs.vm") 16 |
17 |
18 | $content 19 |
20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/layout.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Overall HTML page layout 3 | *# 4 | 5 | 6 | 7 | #parse("head.vm") 8 | 9 | 10 | 11 | 14 |
15 | #parse("tabs.vm") 16 |
17 |
18 | $content 19 |
20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin: 0 0 @baseLineHeight; 9 | list-style: none; 10 | background-color: #f5f5f5; 11 | .border-radius(@baseBorderRadius); 12 | > li { 13 | display: inline-block; 14 | .ie7-inline-block(); 15 | text-shadow: 0 1px 0 @white; 16 | > .divider { 17 | padding: 0 5px; 18 | color: #ccc; 19 | } 20 | } 21 | > .active { 22 | color: @grayLight; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/arc.scss: -------------------------------------------------------------------------------- 1 | .c3-chart-arcs-title { 2 | dominant-baseline: middle; 3 | font-size: 1.3em; 4 | } 5 | 6 | .c3-chart-arcs .c3-chart-arcs-background { 7 | fill: #e0e0e0; 8 | stroke: none; 9 | } 10 | .c3-chart-arcs .c3-chart-arcs-gauge-unit { 11 | fill: #000; 12 | font-size: 16px; 13 | } 14 | .c3-chart-arcs .c3-chart-arcs-gauge-max { 15 | fill: #777; 16 | } 17 | .c3-chart-arcs .c3-chart-arcs-gauge-min { 18 | fill: #777; 19 | } 20 | 21 | .c3-chart-arc .c3-gauge-value { 22 | fill: #000; 23 | /* font-size: 28px !important;*/ 24 | } 25 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/chart.scss: -------------------------------------------------------------------------------- 1 | .c3 svg { 2 | font: 10px sans-serif; 3 | } 4 | .c3 path, .c3 line { 5 | fill: none; 6 | stroke: #000; 7 | } 8 | .c3 text { 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | user-select: none; 12 | } 13 | 14 | .c3-legend-item-tile, 15 | .c3-xgrid-focus, 16 | .c3-ygrid, 17 | .c3-event-rect, 18 | .c3-bars path { 19 | shape-rendering: crispEdges; 20 | } 21 | 22 | .c3-chart-arc path { 23 | stroke: #fff; 24 | 25 | } 26 | .c3-chart-arc text { 27 | fill: #fff; 28 | font-size: 13px; 29 | } 30 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/arc.scss: -------------------------------------------------------------------------------- 1 | .c3-chart-arcs-title { 2 | dominant-baseline: middle; 3 | font-size: 1.3em; 4 | } 5 | 6 | .c3-chart-arcs .c3-chart-arcs-background { 7 | fill: #e0e0e0; 8 | stroke: none; 9 | } 10 | .c3-chart-arcs .c3-chart-arcs-gauge-unit { 11 | fill: #000; 12 | font-size: 16px; 13 | } 14 | .c3-chart-arcs .c3-chart-arcs-gauge-max { 15 | fill: #777; 16 | } 17 | .c3-chart-arcs .c3-chart-arcs-gauge-min { 18 | fill: #777; 19 | } 20 | 21 | .c3-chart-arc .c3-gauge-value { 22 | fill: #000; 23 | /* font-size: 28px !important;*/ 24 | } 25 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/chart.scss: -------------------------------------------------------------------------------- 1 | .c3 svg { 2 | font: 10px sans-serif; 3 | } 4 | .c3 path, .c3 line { 5 | fill: none; 6 | stroke: #000; 7 | } 8 | .c3 text { 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | user-select: none; 12 | } 13 | 14 | .c3-legend-item-tile, 15 | .c3-xgrid-focus, 16 | .c3-ygrid, 17 | .c3-event-rect, 18 | .c3-bars path { 19 | shape-rendering: crispEdges; 20 | } 21 | 22 | .c3-chart-arc path { 23 | stroke: #fff; 24 | 25 | } 26 | .c3-chart-arc text { 27 | fill: #fff; 28 | font-size: 13px; 29 | } 30 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.x.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.x = function (x) { 2 | var $$ = this.internal; 3 | if (arguments.length) { 4 | $$.updateTargetX($$.data.targets, x); 5 | $$.redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true}); 6 | } 7 | return $$.data.xs; 8 | }; 9 | c3_chart_fn.xs = function (xs) { 10 | var $$ = this.internal; 11 | if (arguments.length) { 12 | $$.updateTargetXs($$.data.targets, xs); 13 | $$.redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true}); 14 | } 15 | return $$.data.xs; 16 | }; 17 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/results_list.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Render the main Results List 3 | *# 4 | 5 | ## Usually displayed inside
6 | 7 | #if($response.response.get('grouped')) 8 | 9 | #foreach($grouping in $response.response.get('grouped')) 10 | #parse("hit_grouped.vm") 11 | #end 12 | 13 | #else 14 | 15 | #foreach($doc in $response.results) 16 | #parse("hit.vm") 17 | ## Can get an extremely simple view of the doc 18 | ## which might be nicer for debugging 19 | ##parse("hit_plain.vm") 20 | #end 21 | 22 | #end 23 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.x.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.x = function (x) { 2 | var $$ = this.internal; 3 | if (arguments.length) { 4 | $$.updateTargetX($$.data.targets, x); 5 | $$.redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true}); 6 | } 7 | return $$.data.xs; 8 | }; 9 | c3_chart_fn.xs = function (xs) { 10 | var $$ = this.internal; 11 | if (arguments.length) { 12 | $$.updateTargetXs($$.data.targets, xs); 13 | $$.redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true}); 14 | } 15 | return $$.data.xs; 16 | }; 17 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/pagination_bottom.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Paging and Statistics at bottom of results 3 | *# 4 | 5 | ## Usually rendered in pagination div tag 6 | 7 | #if($response.response.get('grouped')) 8 | ## pass 9 | #else 10 | 11 | #link_to_previous_page("previous") 12 | 13 | $page.results_found 14 | results found. 15 | 16 | Page $page.current_page_number 17 | of $page.page_count 18 | 19 | #link_to_next_page("next") 20 | 21 | #end 22 |
23 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/results_list.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Render the main Results List 3 | *# 4 | 5 | ## Usually displayed inside
6 | 7 | #if($response.response.get('grouped')) 8 | 9 | #foreach($grouping in $response.response.get('grouped')) 10 | #parse("hit_grouped.vm") 11 | #end 12 | 13 | #else 14 | 15 | #foreach($doc in $response.results) 16 | #parse("hit.vm") 17 | ## Can get an extremely simple view of the doc 18 | ## which might be nicer for debugging 19 | ##parse("hit_plain.vm") 20 | #end 21 | 22 | #end 23 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/pagination_bottom.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Paging and Statistics at bottom of results 3 | *# 4 | 5 | ## Usually rendered in pagination div tag 6 | 7 | #if($response.response.get('grouped')) 8 | ## pass 9 | #else 10 | 11 | #link_to_previous_page("previous") 12 | 13 | $page.results_found 14 | results found. 15 | 16 | Page $page.current_page_number 17 | of $page.page_count 18 | 19 | #link_to_next_page("next") 20 | 21 | #end 22 |
23 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/responsive-768px-979px.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Tablet to desktop 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 768px) and (max-width: 979px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth768, @gridGutterWidth768); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth768, @gridGutterWidth768); 16 | 17 | // No need to reset .thumbnails here since it's the same @gridGutterWidth 18 | 19 | } 20 | -------------------------------------------------------------------------------- /homepage/css/wp.css: -------------------------------------------------------------------------------- 1 | header{ 2 | min-width: 100%; 3 | min-height:100%; 4 | background:url(../img/hero-image.png) no-repeat center center fixed; 5 | -webkit-background-size: cover; 6 | -moz-background-size: cover; 7 | -o-background-size: cover; 8 | background-size: cover; 9 | } 10 | 11 | .bg-light-gray{ 12 | background: #aaa; 13 | } 14 | 15 | #apps, #collaborators{ 16 | padding-bottom: 5%; 17 | } 18 | 19 | #apps .application-outline img{ 20 | border: 5px solid #aaa; 21 | margin-bottom: 5%; 22 | } 23 | 24 | #collaborators img{ 25 | display: inline; 26 | } -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.category.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.category = function (i, category) { 2 | var $$ = this.internal, config = $$.config; 3 | if (arguments.length > 1) { 4 | config.axis_x_categories[i] = category; 5 | $$.redraw(); 6 | } 7 | return config.axis_x_categories[i]; 8 | }; 9 | c3_chart_fn.categories = function (categories) { 10 | var $$ = this.internal, config = $$.config; 11 | if (!arguments.length) { return config.axis_x_categories; } 12 | config.axis_x_categories = categories; 13 | $$.redraw(); 14 | return config.axis_x_categories; 15 | }; 16 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/cache.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.hasCaches = function (ids) { 2 | for (var i = 0; i < ids.length; i++) { 3 | if (! (ids[i] in this.cache)) { return false; } 4 | } 5 | return true; 6 | }; 7 | c3_chart_internal_fn.addCache = function (id, target) { 8 | this.cache[id] = this.cloneTarget(target); 9 | }; 10 | c3_chart_internal_fn.getCaches = function (ids) { 11 | var targets = [], i; 12 | for (i = 0; i < ids.length; i++) { 13 | if (ids[i] in this.cache) { targets.push(this.cloneTarget(this.cache[ids[i]])); } 14 | } 15 | return targets; 16 | }; 17 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.category.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.category = function (i, category) { 2 | var $$ = this.internal, config = $$.config; 3 | if (arguments.length > 1) { 4 | config.axis_x_categories[i] = category; 5 | $$.redraw(); 6 | } 7 | return config.axis_x_categories[i]; 8 | }; 9 | c3_chart_fn.categories = function (categories) { 10 | var $$ = this.internal, config = $$.config; 11 | if (!arguments.length) { return config.axis_x_categories; } 12 | config.axis_x_categories = categories; 13 | $$.redraw(); 14 | return config.axis_x_categories; 15 | }; 16 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/cache.js: -------------------------------------------------------------------------------- 1 | c3_chart_internal_fn.hasCaches = function (ids) { 2 | for (var i = 0; i < ids.length; i++) { 3 | if (! (ids[i] in this.cache)) { return false; } 4 | } 5 | return true; 6 | }; 7 | c3_chart_internal_fn.addCache = function (id, target) { 8 | this.cache[id] = this.cloneTarget(target); 9 | }; 10 | c3_chart_internal_fn.getCaches = function (ids) { 11 | var targets = [], i; 12 | for (i = 0; i < ids.length; i++) { 13 | if (ids[i] in this.cache) { targets.push(this.cloneTarget(this.cache[ids[i]])); } 14 | } 15 | return targets; 16 | }; 17 | -------------------------------------------------------------------------------- /d3viz/assets/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * IE10 viewport hack for Surface/desktop Windows 8 bug 3 | * Copyright 2014-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | /* 8 | * See the Getting Started docs for more information: 9 | * http://getbootstrap.com/getting-started/#support-ie10-width 10 | */ 11 | @-webkit-viewport { width: device-width; } 12 | @-moz-viewport { width: device-width; } 13 | @-ms-viewport { width: device-width; } 14 | @-o-viewport { width: device-width; } 15 | @viewport { width: device-width; } 16 | -------------------------------------------------------------------------------- /banana/test/unit/directivesSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for directives go here */ 4 | 5 | describe('directives', function() { 6 | beforeEach(module('myApp.directives')); 7 | 8 | describe('app-version', function() { 9 | it('should print current version', function() { 10 | module(function($provide) { 11 | $provide.value('version', 'TEST_VER'); 12 | }); 13 | inject(function($compile, $rootScope) { 14 | var element = $compile('')($rootScope); 15 | expect(element.text()).toEqual('TEST_VER'); 16 | }); 17 | }); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /banana/src/app/panels/multiseries/module.html: -------------------------------------------------------------------------------- 1 |
2 | 24 | 25 |
-------------------------------------------------------------------------------- /nutch/conf/nutch-conf.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
namevaluedescription
21 | 22 | 23 |
24 |
25 | -------------------------------------------------------------------------------- /banana/src/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | Banana Web Application 9 | 10 | 11 | index.html 12 | 13 | 14 | 15 | default 16 | / 17 | 18 | 19 | -------------------------------------------------------------------------------- /nutch/selenium/conf/nutch-conf.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
namevaluedescription
21 | 22 | 23 |
24 |
25 | -------------------------------------------------------------------------------- /facetview_ads/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | FacetView Web Application 9 | 10 | 11 | index.html 12 | 13 | 14 | 15 | default 16 | / 17 | 18 | 19 | -------------------------------------------------------------------------------- /facetview_images/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | FacetView Web Application 9 | 10 | 11 | index.html 12 | 13 | 14 | 15 | default 16 | / 17 | 18 | 19 | -------------------------------------------------------------------------------- /banana/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "browser": true, 3 | 4 | "bitwise":false, 5 | "curly": true, 6 | "eqnull": true, 7 | "globalstrict": true, 8 | "devel": true, 9 | "eqeqeq": true, 10 | "forin": false, 11 | "immed": true, 12 | "supernew": true, 13 | "expr": true, 14 | "indent": 2, 15 | "latedef": true, 16 | "newcap": true, 17 | "noarg": true, 18 | "noempty": true, 19 | "undef": true, 20 | "boss": true, 21 | "trailing": false, 22 | "laxbreak": true, 23 | "laxcomma": true, 24 | "sub": true, 25 | "unused": true, 26 | 27 | "maxlen": 1000, 28 | 29 | "globals": { 30 | "define": true, 31 | "require": true 32 | } 33 | } -------------------------------------------------------------------------------- /banana/src/app/partials/dashLoaderShare.html: -------------------------------------------------------------------------------- 1 | 5 | 9 | 12 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/hit.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Called for each matching document but then 3 | * calls one of product_doc, join_doc or richtext_doc 4 | * depending on which fields the doc has 5 | *# 6 | 7 | #set($docId = $doc.getFieldValue('id')) 8 | 9 |
10 | 11 | ## Has a "name" field ? 12 | #if($doc.getFieldValue('name')) 13 | #parse("product_doc.vm") 14 | 15 | ## Has a "compName_s" field ? 16 | #elseif($doc.getFieldValue('compName_s')) 17 | #parse("join_doc.vm") 18 | 19 | ## Fallback to richtext_doc 20 | #else 21 | #parse("richtext_doc.vm") 22 | 23 | #end 24 | 25 |
26 | -------------------------------------------------------------------------------- /banana/LICENSE.md: -------------------------------------------------------------------------------- 1 | Portions Copyright 2013-2014 LucidWorks, Inc. 2 | Copyright 2012-2013 Elasticsearch BV 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); you 5 | may not use this file except in compliance with the License. You may 6 | obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 13 | implied. See the License for the specific language governing 14 | permissions and limitations under the License. 15 | -------------------------------------------------------------------------------- /banana/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/hit.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Called for each matching document but then 3 | * calls one of product_doc, join_doc or richtext_doc 4 | * depending on which fields the doc has 5 | *# 6 | 7 | #set($docId = $doc.getFieldValue('id')) 8 | 9 |
10 | 11 | ## Has a "name" field ? 12 | #if($doc.getFieldValue('name')) 13 | #parse("product_doc.vm") 14 | 15 | ## Has a "compName_s" field ? 16 | #elseif($doc.getFieldValue('compName_s')) 17 | #parse("join_doc.vm") 18 | 19 | ## Fallback to richtext_doc 20 | #else 21 | #parse("richtext_doc.vm") 22 | 23 | #end 24 | 25 |
26 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/hero-unit.less: -------------------------------------------------------------------------------- 1 | // 2 | // Hero unit 3 | // -------------------------------------------------- 4 | 5 | 6 | .hero-unit { 7 | padding: 60px; 8 | margin-bottom: 30px; 9 | font-size: 18px; 10 | font-weight: 200; 11 | line-height: @baseLineHeight * 1.5; 12 | color: @heroUnitLeadColor; 13 | background-color: @heroUnitBackground; 14 | .border-radius(6px); 15 | h1 { 16 | margin-bottom: 0; 17 | font-size: 60px; 18 | line-height: 1; 19 | color: @heroUnitHeadingColor; 20 | letter-spacing: -1px; 21 | } 22 | li { 23 | line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Check if Clustering is Enabled and then 3 | * call cluster_results.vm 4 | *# 5 | 6 |

7 | Clusters 8 |

9 | 10 | ## Div tag has placeholder text by default 11 |
12 | Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see results 13 |
14 | 15 | ## Replace the div content *if* Carrot^2 is available 16 | 20 | -------------------------------------------------------------------------------- /d3viz/assets/js/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- 1 | // NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT 2 | // IT'S JUST JUNK FOR OUR DOCS! 3 | // ++++++++++++++++++++++++++++++++++++++++++ 4 | /*! 5 | * Copyright 2011-2015 Twitter, Inc. 6 | * 7 | * Licensed under the Creative Commons Attribution 3.0 Unported License. For 8 | * details, see https://creativecommons.org/licenses/by/3.0/. 9 | */ 10 | // Intended to prevent false-positive bug reports about responsive styling supposedly not working in IE8. 11 | if (window.location.protocol == 'file:') { 12 | window.alert('ERROR: Bootstrap\'s responsive CSS is disabled!\nSee getbootstrap.com/getting-started/#respond-file-proto for details.') 13 | } 14 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/axes_y_default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/data_columned.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /banana/src/app/panels/filtering/meta.html: -------------------------------------------------------------------------------- 1 |
2 | 7 | × 8 |
Query Alias
9 |
10 | 11 |
12 | 13 |
14 |
15 |
-------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/axes_y_default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/data_columned.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Check if Clustering is Enabled and then 3 | * call cluster_results.vm 4 | *# 5 | 6 |

7 | Clusters 8 |

9 | 10 | ## Div tag has placeholder text by default 11 |
12 | Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see clustered search results. 13 |
14 | 15 | ## Replace the div content *if* Carrot^2 is available 16 | 20 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "bitwise": true, 3 | "eqeqeq": true, 4 | "curly": true, 5 | "strict": true, 6 | "trailing": true, 7 | "white": true, 8 | "maxlen": 210, 9 | "undef": true, 10 | "unused": true, 11 | "indent": 4, 12 | 13 | "eqnull": true, 14 | "expr": true, 15 | "newcap": false, 16 | "loopfunc": true, 17 | "bitwise": false, 18 | 19 | "browser": true, 20 | 21 | "globals": { 22 | "jasmine": false, 23 | "describe": false, 24 | "beforeEach": false, 25 | "beforeAll": false, 26 | "it": false, 27 | "expect": false, 28 | "d3": false 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "bitwise": true, 3 | "eqeqeq": true, 4 | "curly": true, 5 | "strict": true, 6 | "trailing": true, 7 | "white": true, 8 | "maxlen": 210, 9 | "undef": true, 10 | "unused": true, 11 | "indent": 4, 12 | 13 | "eqnull": true, 14 | "expr": true, 15 | "newcap": false, 16 | "loopfunc": true, 17 | "bitwise": false, 18 | 19 | "browser": true, 20 | 21 | "globals": { 22 | "jasmine": false, 23 | "describe": false, 24 | "beforeEach": false, 25 | "beforeAll": false, 26 | "it": false, 27 | "expect": false, 28 | "d3": false 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "c3", 3 | "main": [ 4 | "c3.css", 5 | "c3.js" 6 | ], 7 | "version": "0.4.10", 8 | "homepage": "https://github.com/masayuki0812/c3", 9 | "authors": [ 10 | "Masayuki Tanaka " 11 | ], 12 | "description": "D3-based reusable chart library", 13 | "keywords": [ 14 | "chart", 15 | "d3" 16 | ], 17 | "license": "MIT", 18 | "ignore": [ 19 | "**/.*", 20 | "node_modules", 21 | "bower_components", 22 | "htdocs", 23 | "spec", 24 | "src", 25 | "package.json", 26 | "component.json", 27 | "Gruntfile.*" 28 | ], 29 | "dependencies": { 30 | "d3": "<=3.5.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/interaction_enabled.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/tooltip_grouped.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/tooltip_grouped.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @wellBackground; 12 | border: 1px solid darken(@wellBackground, 7%); 13 | .border-radius(@baseBorderRadius); 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-large { 23 | padding: 24px; 24 | .border-radius(@borderRadiusLarge); 25 | } 26 | .well-small { 27 | padding: 9px; 28 | .border-radius(@borderRadiusSmall); 29 | } 30 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "c3", 3 | "main": [ 4 | "c3.css", 5 | "c3.js" 6 | ], 7 | "version": "0.4.10", 8 | "homepage": "https://github.com/masayuki0812/c3", 9 | "authors": [ 10 | "Masayuki Tanaka " 11 | ], 12 | "description": "D3-based reusable chart library", 13 | "keywords": [ 14 | "chart", 15 | "d3" 16 | ], 17 | "license": "MIT", 18 | "ignore": [ 19 | "**/.*", 20 | "node_modules", 21 | "bower_components", 22 | "htdocs", 23 | "spec", 24 | "src", 25 | "package.json", 26 | "component.json", 27 | "Gruntfile.*" 28 | ], 29 | "dependencies": { 30 | "d3": "<=3.5.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/interaction_enabled.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/_schema_analysis_stopwords_english.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{"ignoreCase":true}, 3 | "managedList":[ 4 | "a", 5 | "an", 6 | "and", 7 | "are", 8 | "as", 9 | "at", 10 | "be", 11 | "but", 12 | "by", 13 | "for", 14 | "if", 15 | "in", 16 | "into", 17 | "is", 18 | "it", 19 | "no", 20 | "not", 21 | "of", 22 | "on", 23 | "or", 24 | "stopworda", 25 | "stopwordb", 26 | "such", 27 | "that", 28 | "the", 29 | "their", 30 | "then", 31 | "there", 32 | "these", 33 | "they", 34 | "this", 35 | "to", 36 | "was", 37 | "will", 38 | "with"]} 39 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "description": "HTML enhanced for web apps", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/angular/angular.js.git" 12 | }, 13 | "keywords": [ 14 | "angular", 15 | "framework", 16 | "browser", 17 | "client-side" 18 | ], 19 | "author": "Angular Core Team ", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/angular/angular.js/issues" 23 | }, 24 | "homepage": "http://angularjs.org" 25 | } 26 | -------------------------------------------------------------------------------- /banana/src/app/directives/confirmClick.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'angular', 3 | 'kbn' 4 | ], 5 | function (angular) { 6 | 'use strict'; 7 | 8 | var module = angular.module('kibana.directives'); 9 | 10 | module.directive('confirmClick', function() { 11 | return { 12 | restrict: 'A', 13 | link: function(scope, elem, attrs) { 14 | elem.bind('click', function() { 15 | var message = attrs.confirmation || "Are you sure you want to do that?"; 16 | if (window.confirm(message)) { 17 | var action = attrs.confirmClick; 18 | if (action) { 19 | scope.$apply(scope.$eval(action)); 20 | } 21 | } 22 | }); 23 | }, 24 | }; 25 | }); 26 | }); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/data_region.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/data_region.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/responsive-1200px-min.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Large desktop and up 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 1200px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); 16 | 17 | // Thumbnails 18 | .thumbnails { 19 | margin-left: -@gridGutterWidth1200; 20 | } 21 | .thumbnails > li { 22 | margin-left: @gridGutterWidth1200; 23 | } 24 | .row-fluid .thumbnails { 25 | margin-left: 0; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/nvd3/package.js: -------------------------------------------------------------------------------- 1 | // Package metadata for Meteor.js full stack web framework 2 | // This file is defined in Meteor documentation at http://docs.meteor.com/#/full/packagejs 3 | // and used by Meteor https://www.meteor.com/ and its package repository Atmosphere https://atmospherejs.com 4 | 5 | Package.describe({ 6 | "name": 'nvd3:nvd3', 7 | summary: 'Nvd3.org charts.', 8 | version: '1.8.1', 9 | git: "https://github.com/novus/nvd3.git" 10 | }); 11 | Package.on_use(function (api) { 12 | api.versionsFrom("METEOR@1.0"); 13 | api.use('d3js:d3@3.5.5', 'client'); 14 | api.add_files('build/nv.d3.js', 'client'); 15 | api.add_files('build/nv.d3.css', 'client'); 16 | api.export("nv"); 17 | }); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/bar_zerobased.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/chart_spline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /banana/src/app/components/underscore.extended.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'underscore-src' 3 | ], 4 | function () { 5 | 'use strict'; 6 | 7 | var _ = window._; 8 | 9 | /* 10 | Mixins :) 11 | */ 12 | _.mixin({ 13 | move: function (array, fromIndex, toIndex) { 14 | array.splice(toIndex, 0, array.splice(fromIndex, 1)[0] ); 15 | return array; 16 | }, 17 | remove: function (array, index) { 18 | array.splice(index, 1); 19 | return array; 20 | }, 21 | toggleInOut: function(array,value) { 22 | if(_.contains(array,value)) { 23 | array = _.without(array,value); 24 | } else { 25 | array.push(value); 26 | } 27 | return array; 28 | } 29 | }); 30 | 31 | return _; 32 | }); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/area_zerobased.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/area_zerobased.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/bar_zerobased.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/chart_spline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/hit_plain.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * An extremely plain / debug version of hit.vm 3 | *# 4 | 5 | 6 | ## For each field 7 | #foreach( $fieldName in $doc.fieldNames ) 8 | ## For each value 9 | #foreach( $value in $doc.getFieldValues($fieldName) ) 10 | 11 | ## Field Name 12 | 17 | ## Field Value(s) 18 | 21 | 22 | #end ## end for each value 23 | #end ## end for each field 24 |
13 | #if( $foreach.count == 1 ) 14 | $fieldName: 15 | #end 16 | 19 | $esc.html($value)
20 |
25 |
26 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/hit_plain.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * An extremely plain / debug version of hit.vm 3 | *# 4 | 5 | 6 | ## For each field 7 | #foreach( $fieldName in $doc.fieldNames ) 8 | ## For each value 9 | #foreach( $value in $doc.getFieldValues($fieldName) ) 10 | 11 | ## Field Name 12 | 17 | ## Field Value(s) 18 | 21 | 22 | #end ## end for each value 23 | #end ## end for each field 24 |
13 | #if( $foreach.count == 1 ) 14 | $fieldName: 15 | #end 16 | 19 | $esc.html($value)
20 |
25 |
26 | -------------------------------------------------------------------------------- /banana/src/app/directives/ngModelOnBlur.js: -------------------------------------------------------------------------------- 1 | define(['angular'], 2 | function (angular) { 3 | 'use strict'; 4 | 5 | angular 6 | .module('kibana.directives') 7 | .directive('ngModelOnblur', function() { 8 | return { 9 | restrict: 'A', 10 | require: 'ngModel', 11 | link: function(scope, elm, attr, ngModelCtrl) { 12 | if (attr.type === 'radio' || attr.type === 'checkbox') { 13 | return; 14 | } 15 | 16 | elm.unbind('input').unbind('keydown').unbind('change'); 17 | elm.bind('blur', function() { 18 | scope.$apply(function() { 19 | ngModelCtrl.$setViewValue(elm.val()); 20 | }); 21 | }); 22 | } 23 | }; 24 | }); 25 | }); -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/data_rowed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/data_rowed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /homepage/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/d3/README.md: -------------------------------------------------------------------------------- 1 | # Data-Driven Documents 2 | 3 | 4 | 5 | **D3.js** is a JavaScript library for manipulating documents based on data. **D3** helps you bring data to life using HTML, SVG, and CSS. **D3** emphasizes web standards and combines powerful visualization components with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers without tying yourself to a proprietary framework. 6 | 7 | Want to learn more? [See the wiki.](https://github.com/mbostock/d3/wiki) 8 | 9 | For examples, [see the gallery](https://github.com/mbostock/d3/wiki/Gallery) and [mbostock’s bl.ocks](http://bl.ocks.org/mbostock). 10 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/data_hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/data_hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /banana/src/app/panels/column/module.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |
7 | × 8 | Oops! {{panel.error}} 9 |
10 |
11 | 12 |
13 | 14 |
15 |
16 |
-------------------------------------------------------------------------------- /homepage/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /d3viz/assets/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * IE10 viewport hack for Surface/desktop Windows 8 bug 3 | * Copyright 2014-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | // See the Getting Started docs for more information: 8 | // http://getbootstrap.com/getting-started/#support-ie10-width 9 | 10 | (function () { 11 | 'use strict'; 12 | 13 | if (navigator.userAgent.match(/IEMobile\/10\.0/)) { 14 | var msViewportStyle = document.createElement('style') 15 | msViewportStyle.appendChild( 16 | document.createTextNode( 17 | '@-ms-viewport{width:auto!important}' 18 | ) 19 | ) 20 | document.querySelector('head').appendChild(msViewportStyle) 21 | } 22 | 23 | })(); 24 | -------------------------------------------------------------------------------- /facetview_ads/tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Facet Test Suite 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |

Facet Test Suite

21 |

22 |

23 |
    24 |
    25 |
    26 | 27 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/grid_focus.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
    7 | 8 | 9 | 10 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /facetview_images/tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Facet Test Suite 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
    20 |

    Facet Test Suite

    21 |

    22 |

    23 |
      24 |
      25 |
      26 | 27 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/grid_focus.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /banana/src/app/panels/table/fields.html: -------------------------------------------------------------------------------- 1 |
      2 |
      3 |
      Add Field Add field to be shown on the fields list pane of the panel
      4 |
      5 | 6 | 7 |
      8 |
      9 |
      10 |
      Fields Click to remove
      11 | {{field}} 12 |
      13 |
      14 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.transform.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.transform = function (type, targetIds) { 2 | var $$ = this.internal, 3 | options = ['pie', 'donut'].indexOf(type) >= 0 ? {withTransform: true} : null; 4 | $$.transformTo(targetIds, type, options); 5 | }; 6 | 7 | c3_chart_internal_fn.transformTo = function (targetIds, type, optionsForRedraw) { 8 | var $$ = this, 9 | withTransitionForAxis = !$$.hasArcType(), 10 | options = optionsForRedraw || {withTransitionForAxis: withTransitionForAxis}; 11 | options.withTransitionForTransform = false; 12 | $$.transiting = false; 13 | $$.setTargetType(targetIds, type); 14 | $$.updateTargets($$.data.targets); // this is needed when transforming to arc 15 | $$.updateAndRedraw(options); 16 | }; 17 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.transform.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.transform = function (type, targetIds) { 2 | var $$ = this.internal, 3 | options = ['pie', 'donut'].indexOf(type) >= 0 ? {withTransform: true} : null; 4 | $$.transformTo(targetIds, type, options); 5 | }; 6 | 7 | c3_chart_internal_fn.transformTo = function (targetIds, type, optionsForRedraw) { 8 | var $$ = this, 9 | withTransitionForAxis = !$$.hasArcType(), 10 | options = optionsForRedraw || {withTransitionForAxis: withTransitionForAxis}; 11 | options.withTransitionForTransform = false; 12 | $$.transiting = false; 13 | $$.setTargetType(targetIds, type); 14 | $$.updateTargets($$.data.targets); // this is needed when transforming to arc 15 | $$.updateAndRedraw(options); 16 | }; 17 | -------------------------------------------------------------------------------- /homepage/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /d3viz/resources/scripts/jsonp.js: -------------------------------------------------------------------------------- 1 | d3.jsonp = function (url, callback) { 2 | function rand() { 3 | var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 4 | c = '', i = -1; 5 | while (++i < 15) c += chars.charAt(Math.floor(Math.random() * 52)); 6 | return c; 7 | } 8 | 9 | function create(url) { 10 | var e = url.match(/callback=d3.jsonp.(\w+)/), 11 | c = e ? e[1] : rand(); 12 | d3.jsonp[c] = function(data) { 13 | callback(data); 14 | delete d3.jsonp[c]; 15 | script.remove(); 16 | }; 17 | return 'd3.jsonp.' + c; 18 | } 19 | 20 | var cb = create(url), 21 | script = d3.select('head') 22 | .append('script') 23 | .attr('type', 'text/javascript') 24 | .attr('src', url.replace(/(\{|%7B)callback(\}|%7D)/, cb)); 25 | }; -------------------------------------------------------------------------------- /banana/src/vendor/require/css.js: -------------------------------------------------------------------------------- 1 | /** `css` is a requirejs plugin 2 | that loads a css file and inject it into a page. 3 | note that this loader will return immediately, 4 | regardless of whether the browser had finished parsing the stylesheet. 5 | this css loader is implemented for file optimization and depedency managment 6 | */ 7 | 8 | define({ 9 | load: function (name, require, load, config) { 10 | function inject(filename) 11 | { 12 | var head = document.getElementsByTagName('head')[0]; 13 | var link = document.createElement('link'); 14 | link.href = filename; 15 | link.rel = 'stylesheet'; 16 | link.type = 'text/css'; 17 | head.appendChild(link); 18 | } 19 | inject(requirejs.toUrl(name)); 20 | load(true); 21 | }, 22 | pluginBuilder: '../vendor/require/css-build' 23 | }); 24 | -------------------------------------------------------------------------------- /banana/src/app/dashboards/blank.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "New Dashboard", 3 | "services": { 4 | "query": { 5 | "idQueue": [ 6 | 1, 7 | 2, 8 | 3, 9 | 4 10 | ], 11 | "list": { 12 | "0": { 13 | "query": "*", 14 | "alias": "", 15 | "color": "#7EB26D", 16 | "id": 0 17 | } 18 | }, 19 | "ids": [ 20 | 0 21 | ] 22 | }, 23 | "filter": { 24 | "idQueue": [ 25 | 0, 26 | 1, 27 | 2 28 | ], 29 | "list": {}, 30 | "ids": [] 31 | } 32 | }, 33 | "rows": [ 34 | ], 35 | "editable": true, 36 | "failover": false, 37 | "index": { 38 | "interval": "none", 39 | "pattern": "[logstash-]YYYY.MM.DD", 40 | "default": "_all" 41 | } 42 | } -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: 20px; 9 | font-weight: bold; 10 | line-height: @baseLineHeight; 11 | color: @black; 12 | text-shadow: 0 1px 0 rgba(255,255,255,1); 13 | .opacity(20); 14 | &:hover, 15 | &:focus { 16 | color: @black; 17 | text-decoration: none; 18 | cursor: pointer; 19 | .opacity(40); 20 | } 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | button.close { 27 | padding: 0; 28 | cursor: pointer; 29 | background: transparent; 30 | border: 0; 31 | -webkit-appearance: none; 32 | } -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/axes_y2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /banana/test/karma.conf.js.orig: -------------------------------------------------------------------------------- 1 | module.exports = function(config){ 2 | config.set({ 3 | 4 | basePath : '../', 5 | 6 | files : [ 7 | 'bower_components/angular/angular.js', 8 | 'bower_components/angular-route/angular-route.js', 9 | 'bower_components/angular-mocks/angular-mocks.js', 10 | 'src/app/**/*.js', 11 | 'test/unit/**/*.js' 12 | ], 13 | 14 | autoWatch : true, 15 | 16 | frameworks: ['jasmine'], 17 | 18 | browsers : ['Chrome'], 19 | 20 | plugins : [ 21 | 'karma-chrome-launcher', 22 | 'karma-firefox-launcher', 23 | 'karma-jasmine', 24 | 'karma-junit-reporter' 25 | ], 26 | 27 | junitReporter : { 28 | outputFile: 'test_out/unit.xml', 29 | suite: 'unit' 30 | } 31 | 32 | }); 33 | }; 34 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/point_r.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/api.zoom.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.zoom = function (domain) { 2 | var $$ = this.internal; 3 | if (domain) { 4 | if ($$.isTimeSeries()) { 5 | domain = domain.map(function (x) { return $$.parseDate(x); }); 6 | } 7 | $$.brush.extent(domain); 8 | $$.redraw({withUpdateXDomain: true, withY: $$.config.zoom_rescale}); 9 | $$.config.zoom_onzoom.call(this, $$.x.orgDomain()); 10 | } 11 | return $$.brush.extent(); 12 | }; 13 | c3_chart_fn.zoom.enable = function (enabled) { 14 | var $$ = this.internal; 15 | $$.config.zoom_enabled = enabled; 16 | $$.updateAndRedraw(); 17 | }; 18 | c3_chart_fn.unzoom = function () { 19 | var $$ = this.internal; 20 | $$.brush.clear().update(); 21 | $$.redraw({withUpdateXDomain: true}); 22 | }; 23 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/axes_y2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/api.zoom.js: -------------------------------------------------------------------------------- 1 | c3_chart_fn.zoom = function (domain) { 2 | var $$ = this.internal; 3 | if (domain) { 4 | if ($$.isTimeSeries()) { 5 | domain = domain.map(function (x) { return $$.parseDate(x); }); 6 | } 7 | $$.brush.extent(domain); 8 | $$.redraw({withUpdateXDomain: true, withY: $$.config.zoom_rescale}); 9 | $$.config.zoom_onzoom.call(this, $$.x.orgDomain()); 10 | } 11 | return $$.brush.extent(); 12 | }; 13 | c3_chart_fn.zoom.enable = function (enabled) { 14 | var $$ = this.internal; 15 | $$.config.zoom_enabled = enabled; 16 | $$.updateAndRedraw(); 17 | }; 18 | c3_chart_fn.unzoom = function () { 19 | var $$ = this.internal; 20 | $$.brush.clear().update(); 21 | $$.redraw({withUpdateXDomain: true}); 22 | }; 23 | -------------------------------------------------------------------------------- /banana/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-seed", 3 | "description": "A starter project for AngularJS", 4 | "version": "0.0.0", 5 | "homepage": "https://github.com/angular/angular-seed", 6 | "license": "MIT", 7 | "private": true, 8 | "dependencies": { 9 | "angular": "1.0.8", 10 | "angular-loader": "1.0.8", 11 | "angular-mocks": "1.0.8", 12 | "angular-sanitize": "1.0.8", 13 | "angular-strap": "0.7.5", 14 | "bootstrap": "2.3.2", 15 | "d3": "~3.4.11", 16 | "jquery": "1.8.0", 17 | "jquery-ui": "1.10.3", 18 | "jquery-flot": "0.8.1", 19 | "requirejs": "2.1.8", 20 | "modernizr": "2.6.1", 21 | "moment": "2.1.0", 22 | "underscore": "1.5.1" 23 | }, 24 | "resolutions": { 25 | "angular": "1.0.8", 26 | "jquery": "1.8.0", 27 | "bootstrap": "2.3.2" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /banana/src/vendor/bootstrap/less/accordion.less: -------------------------------------------------------------------------------- 1 | // 2 | // Accordion 3 | // -------------------------------------------------- 4 | 5 | 6 | // Parent container 7 | .accordion { 8 | margin-bottom: @baseLineHeight; 9 | } 10 | 11 | // Group == heading + body 12 | .accordion-group { 13 | margin-bottom: 2px; 14 | border: 1px solid #e5e5e5; 15 | .border-radius(@baseBorderRadius); 16 | } 17 | .accordion-heading { 18 | border-bottom: 0; 19 | } 20 | .accordion-heading .accordion-toggle { 21 | display: block; 22 | padding: 8px 15px; 23 | } 24 | 25 | // General toggle styles 26 | .accordion-toggle { 27 | cursor: pointer; 28 | } 29 | 30 | // Inner needs the styles because you can't animate properly with any styles on the element 31 | .accordion-inner { 32 | padding: 9px 15px; 33 | border-top: 1px solid #e5e5e5; 34 | } 35 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/point_r.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /d3viz/resources/styles/simpledashboard.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | 3 | body{ 4 | width:1060px; 5 | margin:50px auto; 6 | } 7 | path { stroke: #fff; } 8 | path:hover { opacity:0.9; } 9 | rect:hover { fill:blue; } 10 | .axis { font: 10px sans-serif; } 11 | .legend tr{ border-bottom:1px solid grey; } 12 | .legend tr:first-child{ border-top:1px solid grey; } 13 | 14 | .axis path, 15 | .axis line { 16 | fill: none; 17 | stroke: #000; 18 | shape-rendering: crispEdges; 19 | } 20 | 21 | .x.axis path { display: none; } 22 | .legend{ 23 | margin-bottom:76px; 24 | display:inline-block; 25 | border-collapse: collapse; 26 | border-spacing: 0px; 27 | } 28 | .legend td{ 29 | padding:4px 5px; 30 | vertical-align:bottom; 31 | } 32 | .legendFreq, .legendPerc{ 33 | align:right; 34 | width:50px; 35 | } 36 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/src/scss/main.scss: -------------------------------------------------------------------------------- 1 | /*-- Chart --*/ 2 | 3 | @import 'chart'; 4 | 5 | /*-- Axis --*/ 6 | 7 | @import 'axis'; 8 | 9 | /*-- Grid --*/ 10 | 11 | @import 'grid'; 12 | 13 | /*-- Text on Chart --*/ 14 | 15 | @import 'text'; 16 | 17 | /*-- Line --*/ 18 | 19 | @import 'line'; 20 | 21 | /*-- Point --*/ 22 | 23 | @import 'point'; 24 | 25 | /*-- Bar --*/ 26 | 27 | @import 'bar'; 28 | 29 | /*-- Focus --*/ 30 | 31 | @import 'focus'; 32 | 33 | /*-- Region --*/ 34 | 35 | @import 'region'; 36 | 37 | /*-- Brush --*/ 38 | 39 | @import 'brush'; 40 | 41 | /*-- Select - Drag --*/ 42 | 43 | @import 'select_drag'; 44 | 45 | /*-- Legend --*/ 46 | 47 | @import 'legend'; 48 | 49 | /*-- Tooltip --*/ 50 | 51 | @import 'tooltip'; 52 | 53 | /*-- Area --*/ 54 | 55 | @import 'area'; 56 | 57 | /*-- Arc --*/ 58 | 59 | @import 'arc'; 60 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/simple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/simple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/src/scss/main.scss: -------------------------------------------------------------------------------- 1 | /*-- Chart --*/ 2 | 3 | @import 'chart'; 4 | 5 | /*-- Axis --*/ 6 | 7 | @import 'axis'; 8 | 9 | /*-- Grid --*/ 10 | 11 | @import 'grid'; 12 | 13 | /*-- Text on Chart --*/ 14 | 15 | @import 'text'; 16 | 17 | /*-- Line --*/ 18 | 19 | @import 'line'; 20 | 21 | /*-- Point --*/ 22 | 23 | @import 'point'; 24 | 25 | /*-- Bar --*/ 26 | 27 | @import 'bar'; 28 | 29 | /*-- Focus --*/ 30 | 31 | @import 'focus'; 32 | 33 | /*-- Region --*/ 34 | 35 | @import 'region'; 36 | 37 | /*-- Brush --*/ 38 | 39 | @import 'brush'; 40 | 41 | /*-- Select - Drag --*/ 42 | 43 | @import 'select_drag'; 44 | 45 | /*-- Legend --*/ 46 | 47 | @import 'legend'; 48 | 49 | /*-- Tooltip --*/ 50 | 51 | @import 'tooltip'; 52 | 53 | /*-- Area --*/ 54 | 55 | @import 'area'; 56 | 57 | /*-- Arc --*/ 58 | 59 | @import 'arc'; 60 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/d3/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "d3", 3 | "main": "d3.js", 4 | "scripts": [ 5 | "d3.js" 6 | ], 7 | "ignore": [ 8 | ".DS_Store", 9 | ".git", 10 | ".gitignore", 11 | ".npmignore", 12 | ".spmignore", 13 | ".travis.yml", 14 | "Makefile", 15 | "bin", 16 | "component.json", 17 | "composer.json", 18 | "index.js", 19 | "lib", 20 | "node_modules", 21 | "package.json", 22 | "src", 23 | "test" 24 | ], 25 | "homepage": "https://github.com/mbostock/d3", 26 | "version": "3.5.9", 27 | "_release": "3.5.9", 28 | "_resolution": { 29 | "type": "version", 30 | "tag": "v3.5.9", 31 | "commit": "9951df10b4c72a25e9e8796100a02d9ecab47a0e" 32 | }, 33 | "_source": "git://github.com/mbostock/d3.git", 34 | "_target": "^3.3.13", 35 | "_originalSource": "d3" 36 | } -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/api_data_colors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display facets based on field values 3 | * e.g.: fields specified by &facet.field= 4 | *# 5 | 6 | #if($response.facetFields) 7 |

      8 | Field Facets 9 |

      10 | #foreach($field in $response.facetFields) 11 | ## Hide facets without value 12 | #if($field.values.size() > 0) 13 | $field.name 14 |
        15 | #foreach($facet in $field.values) 16 |
      • 17 | $facet.name ($facet.count) 18 |
      • 19 | #end 20 |
      21 | #end ## end if > 0 22 | #end ## end for each facet field 23 | #end ## end if response has facet fields 24 | -------------------------------------------------------------------------------- /banana/src/app/services/timer.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'angular', 3 | 'underscore' 4 | ], 5 | function (angular, _) { 6 | 'use strict'; 7 | 8 | var module = angular.module('kibana.services'); 9 | 10 | module.service('timer', function($timeout) { 11 | // This service really just tracks a list of $timeout promises to give us a 12 | // method for cancelling them all when we need to 13 | 14 | var timers = []; 15 | 16 | this.register = function(promise) { 17 | timers.push(promise); 18 | return promise; 19 | }; 20 | 21 | this.cancel = function(promise) { 22 | timers = _.without(timers,promise); 23 | $timeout.cancel(promise); 24 | }; 25 | 26 | this.cancel_all = function() { 27 | _.each(timers, function(t){ 28 | $timeout.cancel(t); 29 | }); 30 | timers = []; 31 | }; 32 | }); 33 | 34 | }); -------------------------------------------------------------------------------- /facetview_images/vendor/c3-0.4.10/htdocs/samples/api_data_colors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/cluster_results.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Actual rendering of Clusters 3 | *# 4 | 5 | ## For each cluster 6 | #foreach ($clusters in $response.response.clusters) 7 | 8 | #set($labels = $clusters.get('labels')) 9 | #set($docs = $clusters.get('docs')) 10 | 11 | ## This Cluster's Heading 12 |

      13 | #foreach ($label in $labels) 14 | ## Keep the following line together to prevent 15 | ## a space appearing before each comma 16 | $label#if( $foreach.hasNext ),#end 17 | #end 18 |

      19 | 20 | ## This Cluster's Documents 21 |
        22 | ## For each doc in this cluster 23 | #foreach ($cluDoc in $docs) 24 |
      1. 25 | 26 | $cluDoc 27 |
      2. 28 | #end 29 |
      30 | 31 | #end ## end for each Cluster 32 | -------------------------------------------------------------------------------- /d3viz/resources/bower_components/nvd3/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nvd3", 3 | "homepage": "http://www.nvd3.org", 4 | "authors": [ 5 | "Bob Monteverde", 6 | "Tyler Wolf", 7 | "Robin Hu", 8 | "Frank Shao", 9 | "liquidpele" 10 | ], 11 | "description": "Re-usable charts and chart components for d3.", 12 | "main": [ 13 | "build/nv.d3.js", 14 | "build/nv.d3.css" 15 | ], 16 | "keywords": [ 17 | "d3", 18 | "visualization", 19 | "svg", 20 | "charts" 21 | ], 22 | "license": "Apache License, v2.0", 23 | "dependencies": { 24 | "d3": "^3.4.4" 25 | }, 26 | "ignore": [ 27 | "**/.*", 28 | "node_modules", 29 | "bower_components", 30 | "test", 31 | "src", 32 | "examples", 33 | "GruntFile.js", 34 | "*.html", 35 | "*.log", 36 | "*.xml", 37 | "*.json", 38 | "*.md" 39 | ] 40 | } 41 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/stopwords.txt: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/cluster_results.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Actual rendering of Clusters 3 | *# 4 | 5 | ## For each cluster 6 | #foreach ($clusters in $response.response.clusters) 7 | 8 | #set($labels = $clusters.get('labels')) 9 | #set($docs = $clusters.get('docs')) 10 | 11 | ## This Cluster's Heading 12 |

      13 | #foreach ($label in $labels) 14 | ## Keep the following line together to prevent 15 | ## a space appearing before each comma 16 | $label#if( $foreach.hasNext ),#end 17 | #end 18 |

      19 | 20 | ## This Cluster's Documents 21 |
        22 | ## For each doc in this cluster 23 | #foreach ($cluDoc in $docs) 24 |
      1. 25 | 26 | $cluDoc 27 |
      2. 28 | #end 29 |
      30 | 31 | #end ## end for each Cluster 32 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display facets based on field values 3 | * e.g.: fields specified by &facet.field= 4 | *# 5 | 6 | #if($response.facetFields) 7 |

      8 | Field Facets 9 |

      10 | #foreach($field in $response.facetFields) 11 | ## Hide facets without value 12 | #if($field.values.size() > 0) 13 | $field.name 14 | 19 | #end ## end if > 0 20 | #end ## end for each facet field 21 | #end ## end if response has facet fields 22 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/stopwords.txt: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -------------------------------------------------------------------------------- /banana/src/app/directives/arrayJoin.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'angular', 3 | 'app', 4 | 'underscore' 5 | ], 6 | function (angular, app, _) { 7 | 'use strict'; 8 | 9 | angular 10 | .module('kibana.directives') 11 | .directive('arrayJoin', function() { 12 | return { 13 | restrict: 'A', 14 | require: 'ngModel', 15 | link: function(scope, element, attr, ngModel) { 16 | 17 | function split_array(text) { 18 | return (text || '').split(','); 19 | } 20 | 21 | function join_array(text) { 22 | if(_.isArray(text)) { 23 | return (text || '').join(','); 24 | } else { 25 | return text; 26 | } 27 | } 28 | 29 | ngModel.$parsers.push(split_array); 30 | ngModel.$formatters.push(join_array); 31 | } 32 | }; 33 | }); 34 | }); -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/debug.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Show Debugging Information, if enabled 3 | *# 4 | 5 | #if( $params.getBool("debugQuery",false) ) 6 | 7 | toggle explain 8 | 9 |
      10 |     $response.getExplainMap().get($doc.getFirstValue('id'))
      11 |   
      12 | 13 | 14 | toggle all fields 15 | 16 | 17 | #foreach($fieldname in $doc.fieldNames) 18 |
      19 | $fieldname : 20 | 21 | #foreach($value in $doc.getFieldValues($fieldname)) 22 | $esc.html($value) 23 | #end 24 | 25 |
      26 | #end 27 |
      28 | #end 29 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/browse.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Main entry point into the /browse templates 3 | *# 4 | 5 | #set($searcher = $request.searcher) 6 | #set($params = $request.params) 7 | #set($clusters = $response.response.clusters) 8 | #set($mltResults = $response.response.get("moreLikeThis")) 9 | #set($annotate = $params.get("annotateBrowse")) 10 | #parse('query_form.vm') 11 | #parse('did_you_mean.vm') 12 | 13 | 16 | 17 | 20 | 21 | ## Show Error Message, if any 22 |
      23 | #parse("error.vm") 24 |
      25 | 26 | ## Render Results, actual matching docs 27 |
      28 | #parse("results_list.vm") 29 |
      30 | 31 | 34 | -------------------------------------------------------------------------------- /banana/resources/banana-int-solr-4.4/banana-int/conf/velocity/debug.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Show Debugging Information, if enabled 3 | *# 4 | 5 | #if( $params.getBool("debugQuery",false) ) 6 | 7 | toggle explain 8 | 9 |
      10 |     $response.getExplainMap().get($doc.getFirstValue('id'))
      11 |   
      12 | 13 | 14 | toggle all fields 15 | 16 | 17 | #foreach($fieldname in $doc.fieldNames) 18 |
      19 | $fieldname : 20 | 21 | #foreach($value in $doc.getFieldValues($fieldname)) 22 | $esc.html($value) 23 | #end 24 | 25 |
      26 | #end 27 |
      28 | #end 29 | -------------------------------------------------------------------------------- /nutch/conf/contenttype-mapping.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Mapping of detected content types (MIME types) to custom types (target types) 3 | # used by the plugin index-more when filling the index field `type'. 4 | # 5 | # Note: The mappings defined in this file are only active if the property 6 | # `moreIndexingFilter.mapMimeTypes' is true. 7 | # 8 | # Format (tab-separated plain text, comment lines start with `#'): 9 | # 10 | # [ ...] 11 | # 12 | # Examples (comment in to activate): 13 | # 14 | # map XHTML to HTML 15 | #text/html application/xhtml+xml 16 | # 17 | # Map XHTML and HTML to a custom type "web page" 18 | #web page text/html application/xhtml+xml 19 | # 20 | # map various office document formats to a custom type "office document" 21 | #office document application/vnd.oasis.opendocument.text application/x-tika-msoffice application/msword 22 | # 23 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/browse.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Main entry point into the /browse templates 3 | *# 4 | 5 | #set($searcher = $request.searcher) 6 | #set($params = $request.params) 7 | #set($clusters = $response.response.clusters) 8 | #set($mltResults = $response.response.get("moreLikeThis")) 9 | #set($annotate = $params.get("annotateBrowse")) 10 | #parse('query_form.vm') 11 | #parse('did_you_mean.vm') 12 | 13 | 16 | 17 | 20 | 21 | ## Show Error Message, if any 22 |
      23 | #parse("error.vm") 24 |
      25 | 26 | ## Render Results, actual matching docs 27 |
      28 | #parse("results_list.vm") 29 |
      30 | 31 | 34 | -------------------------------------------------------------------------------- /solr/imagecatdev/conf/velocity/facet_ranges.vm: -------------------------------------------------------------------------------- 1 | #** 2 | * Display facets based on ranges of values, AKA "Bukets" 3 | * e.g.: ranges specified by &facet.range= 4 | *# 5 | 6 |

      7 | Range Facets 8 |

      9 | 10 | #foreach ($field in $response.response.facet_counts.facet_ranges) 11 | ## Hide facets without value 12 | #if($field.value.counts.size() > 0) 13 | #set($name = $field.key) 14 | #set($display = $name) 15 | #set($f = $field.value.counts) 16 | #set($start = $field.value.start) 17 | #set($end = $field.value.end) 18 | #set($gap = $field.value.gap) 19 | #set($before = $field.value.before) 20 | #set($after = $field.value.after) 21 | #display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after) 22 | #end ## end if has any values 23 | #end ## end for each facet range 24 | -------------------------------------------------------------------------------- /facetview_ads/vendor/c3-0.4.10/htdocs/samples/tooltip_show.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
      7 | 8 | 9 | 10 | 31 | 32 | 33 | --------------------------------------------------------------------------------