├── .gitignore ├── CREDITS.txt ├── LICENSE ├── README.md ├── ant └── ezfind.properties ├── autoloads └── eztemplateautoload.php ├── bin ├── php │ ├── ezsolrcommit.php │ ├── ezsolroptimize.php │ └── updatesearchindexsolr.php └── scripts │ ├── debian │ └── solr │ ├── gentoo │ └── solr │ └── rhel │ └── solr ├── classes ├── archive │ └── filestorage │ │ ├── ezpfilearchive.php │ │ ├── ezpfilearchivefactory.php │ │ └── ezpfilearchivefilesystem.php ├── exceptions │ ├── ezfexception.php │ └── ezfsolrexception.php ├── extendedattributefilters │ └── ezfindgeodistextendedattributefilter.php ├── ezdatatypesolrstorage.php ├── ezfTemplateOperators.php ├── ezfezpsolrquerybuilder.php ├── ezfindelevateconfiguration.php ├── ezfindextendedattributefilterfactory.php ├── ezfindextendedattributefilterinterface.php ├── ezfindresultnode.php ├── ezfindresultobject.php ├── ezfindservercallfunctions.php ├── ezfmodulefunctioncollection.php ├── ezfsearchresultinfo.php ├── ezfsolrdocumentfieldbase.php ├── ezfsolrdocumentfielddummyexample.php ├── ezfsolrdocumentfieldgmaplocation.php ├── ezfsolrdocumentfieldname.php ├── ezfsolrdocumentfieldobjectrelation.php ├── ezfsolrdocumentfieldxml.php ├── ezfsolrstorage.php ├── ezfsolrutils.php ├── ezsolrbase.php ├── ezsolrdoc.php ├── indexplugins │ ├── ezfindexparentname.php │ └── ezfindexplugin.php └── solrstorage │ ├── ezauthorsolrstorage.php │ ├── ezbinaryfilesolrstorage.php │ ├── ezdatesolrstorage.php │ ├── ezdatetimesolrstorage.php │ ├── ezenumsolrstorage.php │ ├── ezkeywordsolrstorage.php │ ├── ezmatrixsolrstorage.php │ ├── ezmultioptionsolrstorage.php │ ├── ezobjectrelationlistsolrstorage.php │ ├── ezoptionsolrstorage.php │ ├── ezpricesolrstorage.php │ ├── ezproductcategorysolrstorage.php │ ├── ezrangeoptionsolrstorage.php │ ├── ezselectionsolrstorage.php │ ├── ezurlsolrstorage.php │ ├── ezusersolrstorage.php │ └── ezxmltextsolrstorage.php ├── composer.json ├── cronjobs ├── ezfindexsubtree.php └── ezfoptimizeindex.php ├── design ├── admin │ ├── stylesheets │ │ └── ezajax_autocomplete.css │ └── templates │ │ ├── content │ │ └── search.tpl │ │ └── page_search.tpl ├── ezdemo │ ├── override │ │ └── templates │ │ │ └── full │ │ │ └── product.tpl │ └── templates │ │ └── content │ │ └── search.tpl ├── ezflow │ ├── override │ │ └── templates │ │ │ └── block │ │ │ └── search.tpl │ └── stylesheets │ │ └── ezajax_autocomplete.css ├── ezwebin │ ├── stylesheets │ │ └── ezajax_autocomplete.css │ └── templates │ │ ├── content │ │ └── search.tpl │ │ ├── node │ │ └── view │ │ │ ├── example_morelikethis_article.tpl │ │ │ └── ezfind_line.tpl │ │ ├── page_header_searchbox.tpl │ │ └── parts │ │ ├── display_related_content.tpl │ │ ├── image │ │ └── related_content.tpl │ │ └── related_content.tpl └── standard │ ├── javascript │ ├── ezajax_autocomplete.js │ └── ezajaxsearch.js │ ├── stylesheets │ └── ezfind.css │ └── templates │ ├── content │ ├── advancedsearch.tpl │ ├── search.tpl │ └── searchresult.tpl │ ├── ezfind │ ├── backoffice_left_menu.tpl │ ├── elevate.tpl │ ├── elevation_detail.tpl │ └── remove_elevation.tpl │ └── node │ ├── ezfindcontextmenu.tpl │ ├── ezfindcontextsubmenu.tpl │ ├── ezfindsubitemscontextmenu.tpl │ └── view │ └── search.tpl ├── dist.sh ├── doc ├── INSTALL.md ├── boosting-ezp5.txt ├── changelogs │ ├── 1.0 │ │ └── unstable │ │ │ └── CHANGELOG-1.0.0beta1-to-1.0.0beta2 │ ├── 2.0 │ │ └── unstable │ │ │ ├── CHANGELOG-1.0.0beta1-to-2.0.0alpha1 │ │ │ ├── CHANGELOG-2.0.0alpha1-to-2.0.0beta1 │ │ │ └── CHANGELOG-2.0.0beta1-to-2.0.0final │ ├── 2.1 │ │ ├── CHANGELOG-2.1.0-to-2.1.1 │ │ └── unstable │ │ │ ├── CHANGELOG-2.0.0final-to-2.1.0alpha1 │ │ │ ├── CHANGELOG-2.1.0alpha1-to-2.1.0beta1 │ │ │ ├── CHANGELOG-2.1.0beta1-to-2.1.0rc1 │ │ │ ├── CHANGELOG-2.1.0rc1-to-2.1.0rc2 │ │ │ └── CHANGELOG-2.1.0rc2-to-2.1_0final │ ├── 2.2 │ │ └── unstable │ │ │ ├── CHANGELOG-2.1.0-to-2.2.0-beta2 │ │ │ ├── CHANGELOG-2.2.0-beta2-to-2.2.0-rc1 │ │ │ └── CHANGELOG-2.2.0-rc1-to-2.2.0-final │ └── 2.3 │ │ └── unstable │ │ └── CHANGELOG-2.2.0-to-2.3.0 ├── design │ ├── 2.0 │ │ ├── facets.txt │ │ ├── native_types.txt │ │ └── sorting.txt │ ├── 2.1 │ │ ├── Elevate_support_in_eZFind.jpg │ │ ├── Generating_the_configuration_and_pushing_it_to_Solr.jpg │ │ ├── elevate_dashboard.jpg │ │ ├── elevate_support.rst.txt │ │ ├── enhanced_multilanguage_support.rst.txt │ │ ├── search-logging.txt │ │ └── subattribute-filtering.txt │ ├── 2.2 │ │ ├── distributed-search.txt │ │ ├── filter-sort-facet-dedicated-fields.txt │ │ ├── high-traffic-feature-solr-commit-tuning.txt │ │ └── multi-lingual-improvements-with-multi-core.txt │ └── 2.3 │ │ ├── archive-storage.txt │ │ └── auto-suggest.txt ├── multicore-HOWTO.txt └── upgrading │ ├── upgrade-ezfind-2.0.0-final-to-2.1.0-final.txt │ └── upgrade-ezfind-2.0alpha1-to-2.0-beta1.txt ├── extension.xml ├── java ├── README.txt ├── SOLR-EXTENSION-HOWTO.txt ├── contexts │ └── solr-jetty-context.xml ├── etc │ ├── jetty.xml │ └── webdefault.xml ├── lib │ ├── ext │ │ ├── jcl-over-slf4j-1.7.6.jar │ │ ├── jul-to-slf4j-1.7.6.jar │ │ ├── log4j-1.2.17.jar │ │ ├── slf4j-api-1.7.6.jar │ │ └── slf4j-log4j12-1.7.6.jar │ ├── jetty-continuation-8.1.10.v20130312.jar │ ├── jetty-deploy-8.1.10.v20130312.jar │ ├── jetty-http-8.1.10.v20130312.jar │ ├── jetty-io-8.1.10.v20130312.jar │ ├── jetty-jmx-8.1.10.v20130312.jar │ ├── jetty-security-8.1.10.v20130312.jar │ ├── jetty-server-8.1.10.v20130312.jar │ ├── jetty-servlet-8.1.10.v20130312.jar │ ├── jetty-util-8.1.10.v20130312.jar │ ├── jetty-webapp-8.1.10.v20130312.jar │ ├── jetty-xml-8.1.10.v20130312.jar │ └── servlet-api-3.0.jar ├── logs │ └── stub.log ├── resources │ └── log4j.properties ├── solr.languages │ ├── README.txt │ ├── ar │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_ar.txt │ ├── cjk │ │ └── language-specific-fieldtypes.xml │ ├── de │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_de.txt │ ├── en │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_en.txt │ ├── es │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_es.txt │ ├── fi │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_fi.txt │ ├── fr │ │ ├── contractions_fr.txt │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_fr.txt │ ├── it │ │ ├── contractions_it.txt │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_it.txt │ ├── ja │ │ └── language-specific-fieldtypes.xml │ ├── nl │ │ ├── language-specific-fieldtypes.xml │ │ ├── stemdict_nl.txt │ │ └── stopwords_nl.txt │ ├── no │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_no.txt │ └── pt │ │ ├── language-specific-fieldtypes.xml │ │ └── stopwords_pt.txt ├── solr.sh ├── solr │ ├── README.txt │ ├── bin │ │ ├── abc │ │ ├── abo │ │ ├── backup │ │ ├── backupcleaner │ │ ├── commit │ │ ├── optimize │ │ ├── readercycle │ │ ├── rsyncd-disable │ │ ├── rsyncd-enable │ │ ├── rsyncd-start │ │ ├── rsyncd-stop │ │ ├── scripts-util │ │ ├── snapcleaner │ │ ├── snapinstaller │ │ ├── snappuller │ │ ├── snappuller-disable │ │ ├── snappuller-enable │ │ └── snapshooter │ ├── ezp-default │ │ └── conf │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── custom-fields.xml │ │ │ ├── elevate.xml │ │ │ ├── language-specific-fieldtypes.xml │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── velocity │ │ │ ├── VM_global_library.vm │ │ │ ├── browse.vm │ │ │ ├── cluster.vm │ │ │ ├── clusterResults.vm │ │ │ ├── doc.vm │ │ │ ├── facet_dates.vm │ │ │ ├── facet_fields.vm │ │ │ ├── facet_queries.vm │ │ │ ├── facet_ranges.vm │ │ │ ├── facets.vm │ │ │ ├── footer.vm │ │ │ ├── head.vm │ │ │ ├── header.vm │ │ │ ├── hit.vm │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.autocomplete.js │ │ │ ├── layout.vm │ │ │ ├── main.css │ │ │ ├── query.vm │ │ │ ├── querySpatial.vm │ │ │ ├── suggest.vm │ │ │ └── tabs.vm │ │ │ └── xslt │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ └── luke.xsl │ ├── lib │ │ ├── attributes-binder-1.2.1.jar │ │ ├── carrot2-mini-3.9.0.jar │ │ ├── ezsystems-ezfind-solr-extension-solr-4.10.1.jar │ │ ├── hppc-0.5.2.jar │ │ ├── icu4j-53.1.jar │ │ ├── jackson-core-asl-1.9.13.jar │ │ ├── jackson-mapper-asl-1.9.13.jar │ │ ├── jsonic-1.2.7.jar │ │ ├── langdetect-1.1-20120112.jar │ │ ├── lucene-analyzers-icu-4.10.1.jar │ │ ├── lucene-analyzers-morfologik-4.10.1.jar │ │ ├── lucene-analyzers-smartcn-4.10.1.jar │ │ ├── lucene-analyzers-stempel-4.10.1.jar │ │ ├── mahout-collections-1.0.jar │ │ ├── mahout-math-0.6.jar │ │ ├── morfologik-fsa-1.7.1.jar │ │ ├── morfologik-polish-1.7.1.jar │ │ ├── morfologik-stemming-1.7.1.jar │ │ ├── simple-xml-2.7.jar │ │ ├── solr-analysis-extras-4.10.1.jar │ │ ├── solr-cell-4.10.1.jar │ │ ├── solr-clustering-4.10.1.jar │ │ ├── solr-core-4.10.1.jar │ │ ├── solr-dataimporthandler-4.10.1.jar │ │ ├── solr-dataimporthandler-extras-4.10.1.jar │ │ ├── solr-langid-4.10.1.jar │ │ ├── solr-map-reduce-4.10.1.jar │ │ ├── solr-morphlines-cell-4.10.1.jar │ │ ├── solr-morphlines-core-4.10.1.jar │ │ ├── solr-solrj-4.10.1.jar │ │ ├── solr-test-framework-4.10.1.jar │ │ ├── solr-uima-4.10.1.jar │ │ └── solr-velocity-4.10.1.jar │ └── solr.xml ├── src │ └── ezfind │ │ ├── build.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── ezsystems │ │ └── solr │ │ └── handler │ │ └── ezfind │ │ └── eZFindRequestHandler.java ├── start.jar └── webapps │ └── solr.war ├── modules └── ezfind │ ├── elevate.php │ ├── elevation_detail.php │ ├── function_definition.php │ ├── module.php │ └── remove_elevation.php ├── search └── plugins │ └── ezsolr │ └── ezsolr.php ├── settings ├── admininterface.ini.append.php ├── block.ini.append.php ├── cronjob.ini.append.php ├── datetime.ini.append.php ├── dbschema.ini.append.php ├── debug.ini.append.php ├── design.ini.append.php ├── ezfind.ini ├── ezjscore.ini.append.php ├── menu.ini.append.php ├── module.ini.append.php ├── site.ini.append.php ├── solr.ini └── template.ini.append.php ├── share ├── db_schema.dba └── ezfind_elevate_configuration.dba ├── sql ├── mysql │ ├── mysql.sql │ └── schema.sql ├── oracle │ ├── oracle.sql │ └── schema.sql └── postgresql │ ├── postgresql.sql │ └── schema.sql ├── tests ├── classes │ ├── ezcontentobject_tester.php │ ├── ezcontentobjectattribute_tester.php │ ├── ezfezpsolrquerybuilder_test.php │ ├── ezfezpsolrquerybuilder_tester.php │ ├── ezfindelevateconfiguration_test.php │ ├── ezfindelevateconfiguration_tester.php │ ├── ezfindfetch_regression.php │ ├── ezfsolrdocumentfieldbase_test.php │ ├── ezfsolrdocumentfieldname_test.php │ ├── ezfsolrdocumentfieldname_tester.php │ ├── ezfsolrdocumentfieldobjectrelation_tester.php │ ├── ezsolr_regression.php │ ├── ezsolr_test.php │ ├── ezsolrbase_regression.php │ └── ezsolrmulticorebase_test.php └── suite.php └── translations ├── cat-ES └── translation.ts ├── chi-TW └── translation.ts ├── cro-HR └── translation.ts ├── dan-DK └── translation.ts ├── dut-NL └── translation.ts ├── esl-ES └── translation.ts ├── fre-FR └── translation.ts ├── ger-DE └── translation.ts ├── ita-IT └── translation.ts ├── jpn-JP └── translation.ts ├── nor-NO └── translation.ts ├── pol-PL └── translation.ts ├── por-BR └── translation.ts ├── swe-SE └── translation.ts └── untranslated └── translation.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/README.md -------------------------------------------------------------------------------- /ant/ezfind.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/ant/ezfind.properties -------------------------------------------------------------------------------- /autoloads/eztemplateautoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/autoloads/eztemplateautoload.php -------------------------------------------------------------------------------- /bin/php/ezsolrcommit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/php/ezsolrcommit.php -------------------------------------------------------------------------------- /bin/php/ezsolroptimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/php/ezsolroptimize.php -------------------------------------------------------------------------------- /bin/php/updatesearchindexsolr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/php/updatesearchindexsolr.php -------------------------------------------------------------------------------- /bin/scripts/debian/solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/scripts/debian/solr -------------------------------------------------------------------------------- /bin/scripts/gentoo/solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/scripts/gentoo/solr -------------------------------------------------------------------------------- /bin/scripts/rhel/solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/bin/scripts/rhel/solr -------------------------------------------------------------------------------- /classes/archive/filestorage/ezpfilearchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/archive/filestorage/ezpfilearchive.php -------------------------------------------------------------------------------- /classes/archive/filestorage/ezpfilearchivefactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/archive/filestorage/ezpfilearchivefactory.php -------------------------------------------------------------------------------- /classes/archive/filestorage/ezpfilearchivefilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/archive/filestorage/ezpfilearchivefilesystem.php -------------------------------------------------------------------------------- /classes/exceptions/ezfexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/exceptions/ezfexception.php -------------------------------------------------------------------------------- /classes/exceptions/ezfsolrexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/exceptions/ezfsolrexception.php -------------------------------------------------------------------------------- /classes/extendedattributefilters/ezfindgeodistextendedattributefilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/extendedattributefilters/ezfindgeodistextendedattributefilter.php -------------------------------------------------------------------------------- /classes/ezdatatypesolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezdatatypesolrstorage.php -------------------------------------------------------------------------------- /classes/ezfTemplateOperators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfTemplateOperators.php -------------------------------------------------------------------------------- /classes/ezfezpsolrquerybuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfezpsolrquerybuilder.php -------------------------------------------------------------------------------- /classes/ezfindelevateconfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindelevateconfiguration.php -------------------------------------------------------------------------------- /classes/ezfindextendedattributefilterfactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindextendedattributefilterfactory.php -------------------------------------------------------------------------------- /classes/ezfindextendedattributefilterinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindextendedattributefilterinterface.php -------------------------------------------------------------------------------- /classes/ezfindresultnode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindresultnode.php -------------------------------------------------------------------------------- /classes/ezfindresultobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindresultobject.php -------------------------------------------------------------------------------- /classes/ezfindservercallfunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfindservercallfunctions.php -------------------------------------------------------------------------------- /classes/ezfmodulefunctioncollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfmodulefunctioncollection.php -------------------------------------------------------------------------------- /classes/ezfsearchresultinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsearchresultinfo.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfieldbase.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfielddummyexample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfielddummyexample.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldgmaplocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfieldgmaplocation.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfieldname.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldobjectrelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfieldobjectrelation.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldxml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrdocumentfieldxml.php -------------------------------------------------------------------------------- /classes/ezfsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrstorage.php -------------------------------------------------------------------------------- /classes/ezfsolrutils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezfsolrutils.php -------------------------------------------------------------------------------- /classes/ezsolrbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezsolrbase.php -------------------------------------------------------------------------------- /classes/ezsolrdoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/ezsolrdoc.php -------------------------------------------------------------------------------- /classes/indexplugins/ezfindexparentname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/indexplugins/ezfindexparentname.php -------------------------------------------------------------------------------- /classes/indexplugins/ezfindexplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/indexplugins/ezfindexplugin.php -------------------------------------------------------------------------------- /classes/solrstorage/ezauthorsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezauthorsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezbinaryfilesolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezbinaryfilesolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezdatesolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezdatesolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezdatetimesolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezdatetimesolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezenumsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezenumsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezkeywordsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezkeywordsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezmatrixsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezmatrixsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezmultioptionsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezmultioptionsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezobjectrelationlistsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezobjectrelationlistsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezoptionsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezoptionsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezpricesolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezpricesolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezproductcategorysolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezproductcategorysolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezrangeoptionsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezrangeoptionsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezselectionsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezselectionsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezurlsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezurlsolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezusersolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezusersolrstorage.php -------------------------------------------------------------------------------- /classes/solrstorage/ezxmltextsolrstorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/classes/solrstorage/ezxmltextsolrstorage.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/composer.json -------------------------------------------------------------------------------- /cronjobs/ezfindexsubtree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/cronjobs/ezfindexsubtree.php -------------------------------------------------------------------------------- /cronjobs/ezfoptimizeindex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/cronjobs/ezfoptimizeindex.php -------------------------------------------------------------------------------- /design/admin/stylesheets/ezajax_autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/admin/stylesheets/ezajax_autocomplete.css -------------------------------------------------------------------------------- /design/admin/templates/content/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/admin/templates/content/search.tpl -------------------------------------------------------------------------------- /design/admin/templates/page_search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/admin/templates/page_search.tpl -------------------------------------------------------------------------------- /design/ezdemo/override/templates/full/product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezdemo/override/templates/full/product.tpl -------------------------------------------------------------------------------- /design/ezdemo/templates/content/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezdemo/templates/content/search.tpl -------------------------------------------------------------------------------- /design/ezflow/override/templates/block/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezflow/override/templates/block/search.tpl -------------------------------------------------------------------------------- /design/ezflow/stylesheets/ezajax_autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezflow/stylesheets/ezajax_autocomplete.css -------------------------------------------------------------------------------- /design/ezwebin/stylesheets/ezajax_autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/stylesheets/ezajax_autocomplete.css -------------------------------------------------------------------------------- /design/ezwebin/templates/content/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/content/search.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/node/view/example_morelikethis_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/node/view/example_morelikethis_article.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/node/view/ezfind_line.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/node/view/ezfind_line.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/page_header_searchbox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/page_header_searchbox.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/parts/display_related_content.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/parts/display_related_content.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/parts/image/related_content.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/parts/image/related_content.tpl -------------------------------------------------------------------------------- /design/ezwebin/templates/parts/related_content.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/ezwebin/templates/parts/related_content.tpl -------------------------------------------------------------------------------- /design/standard/javascript/ezajax_autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/javascript/ezajax_autocomplete.js -------------------------------------------------------------------------------- /design/standard/javascript/ezajaxsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/javascript/ezajaxsearch.js -------------------------------------------------------------------------------- /design/standard/stylesheets/ezfind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/stylesheets/ezfind.css -------------------------------------------------------------------------------- /design/standard/templates/content/advancedsearch.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/content/advancedsearch.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/content/search.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/searchresult.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/content/searchresult.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezfind/backoffice_left_menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/ezfind/backoffice_left_menu.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezfind/elevate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/ezfind/elevate.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezfind/elevation_detail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/ezfind/elevation_detail.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezfind/remove_elevation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/ezfind/remove_elevation.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/ezfindcontextmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/node/ezfindcontextmenu.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/ezfindcontextsubmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/node/ezfindcontextsubmenu.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/ezfindsubitemscontextmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/node/ezfindsubitemscontextmenu.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/view/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/design/standard/templates/node/view/search.tpl -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/dist.sh -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/boosting-ezp5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/boosting-ezp5.txt -------------------------------------------------------------------------------- /doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta1-to-1.0.0beta2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta1-to-1.0.0beta2 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-1.0.0beta1-to-2.0.0alpha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-1.0.0beta1-to-2.0.0alpha1 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-2.0.0alpha1-to-2.0.0beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-2.0.0alpha1-to-2.0.0beta1 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta1-to-2.0.0final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta1-to-2.0.0final -------------------------------------------------------------------------------- /doc/changelogs/2.1/CHANGELOG-2.1.0-to-2.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/CHANGELOG-2.1.0-to-2.1.1 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.0.0final-to-2.1.0alpha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.0.0final-to-2.1.0alpha1 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.1.0alpha1-to-2.1.0beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.1.0alpha1-to-2.1.0beta1 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.1.0beta1-to-2.1.0rc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.1.0beta1-to-2.1.0rc1 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.1.0rc1-to-2.1.0rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.1.0rc1-to-2.1.0rc2 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.1.0rc2-to-2.1_0final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.1.0rc2-to-2.1_0final -------------------------------------------------------------------------------- /doc/changelogs/2.2/unstable/CHANGELOG-2.1.0-to-2.2.0-beta2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.2/unstable/CHANGELOG-2.1.0-to-2.2.0-beta2 -------------------------------------------------------------------------------- /doc/changelogs/2.2/unstable/CHANGELOG-2.2.0-beta2-to-2.2.0-rc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.2/unstable/CHANGELOG-2.2.0-beta2-to-2.2.0-rc1 -------------------------------------------------------------------------------- /doc/changelogs/2.2/unstable/CHANGELOG-2.2.0-rc1-to-2.2.0-final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.2/unstable/CHANGELOG-2.2.0-rc1-to-2.2.0-final -------------------------------------------------------------------------------- /doc/changelogs/2.3/unstable/CHANGELOG-2.2.0-to-2.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/changelogs/2.3/unstable/CHANGELOG-2.2.0-to-2.3.0 -------------------------------------------------------------------------------- /doc/design/2.0/facets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.0/facets.txt -------------------------------------------------------------------------------- /doc/design/2.0/native_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.0/native_types.txt -------------------------------------------------------------------------------- /doc/design/2.0/sorting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.0/sorting.txt -------------------------------------------------------------------------------- /doc/design/2.1/Elevate_support_in_eZFind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/Elevate_support_in_eZFind.jpg -------------------------------------------------------------------------------- /doc/design/2.1/Generating_the_configuration_and_pushing_it_to_Solr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/Generating_the_configuration_and_pushing_it_to_Solr.jpg -------------------------------------------------------------------------------- /doc/design/2.1/elevate_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/elevate_dashboard.jpg -------------------------------------------------------------------------------- /doc/design/2.1/elevate_support.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/elevate_support.rst.txt -------------------------------------------------------------------------------- /doc/design/2.1/enhanced_multilanguage_support.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/enhanced_multilanguage_support.rst.txt -------------------------------------------------------------------------------- /doc/design/2.1/search-logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/search-logging.txt -------------------------------------------------------------------------------- /doc/design/2.1/subattribute-filtering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.1/subattribute-filtering.txt -------------------------------------------------------------------------------- /doc/design/2.2/distributed-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.2/distributed-search.txt -------------------------------------------------------------------------------- /doc/design/2.2/filter-sort-facet-dedicated-fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.2/filter-sort-facet-dedicated-fields.txt -------------------------------------------------------------------------------- /doc/design/2.2/high-traffic-feature-solr-commit-tuning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.2/high-traffic-feature-solr-commit-tuning.txt -------------------------------------------------------------------------------- /doc/design/2.2/multi-lingual-improvements-with-multi-core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.2/multi-lingual-improvements-with-multi-core.txt -------------------------------------------------------------------------------- /doc/design/2.3/archive-storage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.3/archive-storage.txt -------------------------------------------------------------------------------- /doc/design/2.3/auto-suggest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/design/2.3/auto-suggest.txt -------------------------------------------------------------------------------- /doc/multicore-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/multicore-HOWTO.txt -------------------------------------------------------------------------------- /doc/upgrading/upgrade-ezfind-2.0.0-final-to-2.1.0-final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/upgrading/upgrade-ezfind-2.0.0-final-to-2.1.0-final.txt -------------------------------------------------------------------------------- /doc/upgrading/upgrade-ezfind-2.0alpha1-to-2.0-beta1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/doc/upgrading/upgrade-ezfind-2.0alpha1-to-2.0-beta1.txt -------------------------------------------------------------------------------- /extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/extension.xml -------------------------------------------------------------------------------- /java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/README.txt -------------------------------------------------------------------------------- /java/SOLR-EXTENSION-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/SOLR-EXTENSION-HOWTO.txt -------------------------------------------------------------------------------- /java/contexts/solr-jetty-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/contexts/solr-jetty-context.xml -------------------------------------------------------------------------------- /java/etc/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/etc/jetty.xml -------------------------------------------------------------------------------- /java/etc/webdefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/etc/webdefault.xml -------------------------------------------------------------------------------- /java/lib/ext/jcl-over-slf4j-1.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/ext/jcl-over-slf4j-1.7.6.jar -------------------------------------------------------------------------------- /java/lib/ext/jul-to-slf4j-1.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/ext/jul-to-slf4j-1.7.6.jar -------------------------------------------------------------------------------- /java/lib/ext/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/ext/log4j-1.2.17.jar -------------------------------------------------------------------------------- /java/lib/ext/slf4j-api-1.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/ext/slf4j-api-1.7.6.jar -------------------------------------------------------------------------------- /java/lib/ext/slf4j-log4j12-1.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/ext/slf4j-log4j12-1.7.6.jar -------------------------------------------------------------------------------- /java/lib/jetty-continuation-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-continuation-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-deploy-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-deploy-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-http-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-http-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-io-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-io-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-jmx-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-jmx-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-security-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-security-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-server-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-server-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-servlet-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-servlet-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-util-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-util-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-webapp-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-webapp-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/jetty-xml-8.1.10.v20130312.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/jetty-xml-8.1.10.v20130312.jar -------------------------------------------------------------------------------- /java/lib/servlet-api-3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/lib/servlet-api-3.0.jar -------------------------------------------------------------------------------- /java/logs/stub.log: -------------------------------------------------------------------------------- 1 | do not remove, this is a stub file for git checkouts 2 | -------------------------------------------------------------------------------- /java/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/resources/log4j.properties -------------------------------------------------------------------------------- /java/solr.languages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/README.txt -------------------------------------------------------------------------------- /java/solr.languages/ar/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/ar/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/ar/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/ar/stopwords_ar.txt -------------------------------------------------------------------------------- /java/solr.languages/cjk/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/cjk/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/de/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/de/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/de/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/de/stopwords_de.txt -------------------------------------------------------------------------------- /java/solr.languages/en/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/en/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/en/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/en/stopwords_en.txt -------------------------------------------------------------------------------- /java/solr.languages/es/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/es/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/es/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/es/stopwords_es.txt -------------------------------------------------------------------------------- /java/solr.languages/fi/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/fi/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/fi/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/fi/stopwords_fi.txt -------------------------------------------------------------------------------- /java/solr.languages/fr/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/fr/contractions_fr.txt -------------------------------------------------------------------------------- /java/solr.languages/fr/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/fr/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/fr/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/fr/stopwords_fr.txt -------------------------------------------------------------------------------- /java/solr.languages/it/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/it/contractions_it.txt -------------------------------------------------------------------------------- /java/solr.languages/it/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/it/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/it/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/it/stopwords_it.txt -------------------------------------------------------------------------------- /java/solr.languages/ja/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/ja/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/nl/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/nl/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/nl/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/nl/stemdict_nl.txt -------------------------------------------------------------------------------- /java/solr.languages/nl/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/nl/stopwords_nl.txt -------------------------------------------------------------------------------- /java/solr.languages/no/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/no/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/no/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/no/stopwords_no.txt -------------------------------------------------------------------------------- /java/solr.languages/pt/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/pt/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr.languages/pt/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.languages/pt/stopwords_pt.txt -------------------------------------------------------------------------------- /java/solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr.sh -------------------------------------------------------------------------------- /java/solr/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/README.txt -------------------------------------------------------------------------------- /java/solr/bin/abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/abc -------------------------------------------------------------------------------- /java/solr/bin/abo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/abo -------------------------------------------------------------------------------- /java/solr/bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/backup -------------------------------------------------------------------------------- /java/solr/bin/backupcleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/backupcleaner -------------------------------------------------------------------------------- /java/solr/bin/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/commit -------------------------------------------------------------------------------- /java/solr/bin/optimize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/optimize -------------------------------------------------------------------------------- /java/solr/bin/readercycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/readercycle -------------------------------------------------------------------------------- /java/solr/bin/rsyncd-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/rsyncd-disable -------------------------------------------------------------------------------- /java/solr/bin/rsyncd-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/rsyncd-enable -------------------------------------------------------------------------------- /java/solr/bin/rsyncd-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/rsyncd-start -------------------------------------------------------------------------------- /java/solr/bin/rsyncd-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/rsyncd-stop -------------------------------------------------------------------------------- /java/solr/bin/scripts-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/scripts-util -------------------------------------------------------------------------------- /java/solr/bin/snapcleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snapcleaner -------------------------------------------------------------------------------- /java/solr/bin/snapinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snapinstaller -------------------------------------------------------------------------------- /java/solr/bin/snappuller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snappuller -------------------------------------------------------------------------------- /java/solr/bin/snappuller-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snappuller-disable -------------------------------------------------------------------------------- /java/solr/bin/snappuller-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snappuller-enable -------------------------------------------------------------------------------- /java/solr/bin/snapshooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/bin/snapshooter -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/admin-extra.html -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/admin-extra.menu-bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/admin-extra.menu-bottom.html -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/admin-extra.menu-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/admin-extra.menu-top.html -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/custom-fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/custom-fields.xml -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/elevate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/mapping-FoldToASCII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/mapping-FoldToASCII.txt -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/protwords.txt -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/schema.xml -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/scripts.conf -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/solrconfig.xml -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/stopwords.txt -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/synonyms.txt -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/VM_global_library.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/VM_global_library.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/browse.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/browse.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/cluster.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/clusterResults.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/clusterResults.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/doc.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/facet_dates.vm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/facet_fields.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/facet_queries.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/facet_ranges.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/facet_ranges.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/facets.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/facets.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/footer.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/head.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/head.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/header.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/hit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/hit.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/jquery.autocomplete.css -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/jquery.autocomplete.js -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/layout.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/main.css -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/query.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/query.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/querySpatial.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/querySpatial.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/suggest.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/velocity/tabs.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/velocity/tabs.vm -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/xslt/example.xsl -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/xslt/example_atom.xsl -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/xslt/example_rss.xsl -------------------------------------------------------------------------------- /java/solr/ezp-default/conf/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/ezp-default/conf/xslt/luke.xsl -------------------------------------------------------------------------------- /java/solr/lib/attributes-binder-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/attributes-binder-1.2.1.jar -------------------------------------------------------------------------------- /java/solr/lib/carrot2-mini-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/carrot2-mini-3.9.0.jar -------------------------------------------------------------------------------- /java/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/hppc-0.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/hppc-0.5.2.jar -------------------------------------------------------------------------------- /java/solr/lib/icu4j-53.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/icu4j-53.1.jar -------------------------------------------------------------------------------- /java/solr/lib/jackson-core-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/jackson-core-asl-1.9.13.jar -------------------------------------------------------------------------------- /java/solr/lib/jackson-mapper-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/jackson-mapper-asl-1.9.13.jar -------------------------------------------------------------------------------- /java/solr/lib/jsonic-1.2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/jsonic-1.2.7.jar -------------------------------------------------------------------------------- /java/solr/lib/langdetect-1.1-20120112.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/langdetect-1.1-20120112.jar -------------------------------------------------------------------------------- /java/solr/lib/lucene-analyzers-icu-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/lucene-analyzers-icu-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/lucene-analyzers-morfologik-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/lucene-analyzers-morfologik-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/lucene-analyzers-smartcn-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/lucene-analyzers-smartcn-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/lucene-analyzers-stempel-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/lucene-analyzers-stempel-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/mahout-collections-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/mahout-collections-1.0.jar -------------------------------------------------------------------------------- /java/solr/lib/mahout-math-0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/mahout-math-0.6.jar -------------------------------------------------------------------------------- /java/solr/lib/morfologik-fsa-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/morfologik-fsa-1.7.1.jar -------------------------------------------------------------------------------- /java/solr/lib/morfologik-polish-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/morfologik-polish-1.7.1.jar -------------------------------------------------------------------------------- /java/solr/lib/morfologik-stemming-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/morfologik-stemming-1.7.1.jar -------------------------------------------------------------------------------- /java/solr/lib/simple-xml-2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/simple-xml-2.7.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-analysis-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-analysis-extras-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-cell-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-clustering-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-clustering-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-core-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-dataimporthandler-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-dataimporthandler-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-dataimporthandler-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-dataimporthandler-extras-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-langid-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-langid-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-map-reduce-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-map-reduce-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-morphlines-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-morphlines-cell-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-morphlines-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-morphlines-core-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-solrj-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-solrj-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-test-framework-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-test-framework-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-uima-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-uima-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/lib/solr-velocity-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/lib/solr-velocity-4.10.1.jar -------------------------------------------------------------------------------- /java/solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/solr/solr.xml -------------------------------------------------------------------------------- /java/src/ezfind/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/src/ezfind/build.xml -------------------------------------------------------------------------------- /java/src/ezfind/src/main/java/org/ezsystems/solr/handler/ezfind/eZFindRequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/src/ezfind/src/main/java/org/ezsystems/solr/handler/ezfind/eZFindRequestHandler.java -------------------------------------------------------------------------------- /java/start.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/start.jar -------------------------------------------------------------------------------- /java/webapps/solr.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/java/webapps/solr.war -------------------------------------------------------------------------------- /modules/ezfind/elevate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/modules/ezfind/elevate.php -------------------------------------------------------------------------------- /modules/ezfind/elevation_detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/modules/ezfind/elevation_detail.php -------------------------------------------------------------------------------- /modules/ezfind/function_definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/modules/ezfind/function_definition.php -------------------------------------------------------------------------------- /modules/ezfind/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/modules/ezfind/module.php -------------------------------------------------------------------------------- /modules/ezfind/remove_elevation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/modules/ezfind/remove_elevation.php -------------------------------------------------------------------------------- /search/plugins/ezsolr/ezsolr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/search/plugins/ezsolr/ezsolr.php -------------------------------------------------------------------------------- /settings/admininterface.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/admininterface.ini.append.php -------------------------------------------------------------------------------- /settings/block.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/block.ini.append.php -------------------------------------------------------------------------------- /settings/cronjob.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/cronjob.ini.append.php -------------------------------------------------------------------------------- /settings/datetime.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/datetime.ini.append.php -------------------------------------------------------------------------------- /settings/dbschema.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/dbschema.ini.append.php -------------------------------------------------------------------------------- /settings/debug.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/debug.ini.append.php -------------------------------------------------------------------------------- /settings/design.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/design.ini.append.php -------------------------------------------------------------------------------- /settings/ezfind.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/ezfind.ini -------------------------------------------------------------------------------- /settings/ezjscore.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/ezjscore.ini.append.php -------------------------------------------------------------------------------- /settings/menu.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/menu.ini.append.php -------------------------------------------------------------------------------- /settings/module.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/module.ini.append.php -------------------------------------------------------------------------------- /settings/site.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/site.ini.append.php -------------------------------------------------------------------------------- /settings/solr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/solr.ini -------------------------------------------------------------------------------- /settings/template.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/settings/template.ini.append.php -------------------------------------------------------------------------------- /share/db_schema.dba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/share/db_schema.dba -------------------------------------------------------------------------------- /share/ezfind_elevate_configuration.dba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/share/ezfind_elevate_configuration.dba -------------------------------------------------------------------------------- /sql/mysql/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/mysql/mysql.sql -------------------------------------------------------------------------------- /sql/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/mysql/schema.sql -------------------------------------------------------------------------------- /sql/oracle/oracle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/oracle/oracle.sql -------------------------------------------------------------------------------- /sql/oracle/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/oracle/schema.sql -------------------------------------------------------------------------------- /sql/postgresql/postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/postgresql/postgresql.sql -------------------------------------------------------------------------------- /sql/postgresql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/sql/postgresql/schema.sql -------------------------------------------------------------------------------- /tests/classes/ezcontentobject_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezcontentobject_tester.php -------------------------------------------------------------------------------- /tests/classes/ezcontentobjectattribute_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezcontentobjectattribute_tester.php -------------------------------------------------------------------------------- /tests/classes/ezfezpsolrquerybuilder_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfezpsolrquerybuilder_test.php -------------------------------------------------------------------------------- /tests/classes/ezfezpsolrquerybuilder_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfezpsolrquerybuilder_tester.php -------------------------------------------------------------------------------- /tests/classes/ezfindelevateconfiguration_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfindelevateconfiguration_test.php -------------------------------------------------------------------------------- /tests/classes/ezfindelevateconfiguration_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfindelevateconfiguration_tester.php -------------------------------------------------------------------------------- /tests/classes/ezfindfetch_regression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfindfetch_regression.php -------------------------------------------------------------------------------- /tests/classes/ezfsolrdocumentfieldbase_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfsolrdocumentfieldbase_test.php -------------------------------------------------------------------------------- /tests/classes/ezfsolrdocumentfieldname_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfsolrdocumentfieldname_test.php -------------------------------------------------------------------------------- /tests/classes/ezfsolrdocumentfieldname_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfsolrdocumentfieldname_tester.php -------------------------------------------------------------------------------- /tests/classes/ezfsolrdocumentfieldobjectrelation_tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezfsolrdocumentfieldobjectrelation_tester.php -------------------------------------------------------------------------------- /tests/classes/ezsolr_regression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezsolr_regression.php -------------------------------------------------------------------------------- /tests/classes/ezsolr_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezsolr_test.php -------------------------------------------------------------------------------- /tests/classes/ezsolrbase_regression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezsolrbase_regression.php -------------------------------------------------------------------------------- /tests/classes/ezsolrmulticorebase_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/classes/ezsolrmulticorebase_test.php -------------------------------------------------------------------------------- /tests/suite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/tests/suite.php -------------------------------------------------------------------------------- /translations/cat-ES/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/cat-ES/translation.ts -------------------------------------------------------------------------------- /translations/chi-TW/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/chi-TW/translation.ts -------------------------------------------------------------------------------- /translations/cro-HR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/cro-HR/translation.ts -------------------------------------------------------------------------------- /translations/dan-DK/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/dan-DK/translation.ts -------------------------------------------------------------------------------- /translations/dut-NL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/dut-NL/translation.ts -------------------------------------------------------------------------------- /translations/esl-ES/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/esl-ES/translation.ts -------------------------------------------------------------------------------- /translations/fre-FR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/fre-FR/translation.ts -------------------------------------------------------------------------------- /translations/ger-DE/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/ger-DE/translation.ts -------------------------------------------------------------------------------- /translations/ita-IT/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/ita-IT/translation.ts -------------------------------------------------------------------------------- /translations/jpn-JP/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/jpn-JP/translation.ts -------------------------------------------------------------------------------- /translations/nor-NO/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/nor-NO/translation.ts -------------------------------------------------------------------------------- /translations/pol-PL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/pol-PL/translation.ts -------------------------------------------------------------------------------- /translations/por-BR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/por-BR/translation.ts -------------------------------------------------------------------------------- /translations/swe-SE/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/swe-SE/translation.ts -------------------------------------------------------------------------------- /translations/untranslated/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezfind/HEAD/translations/untranslated/translation.ts --------------------------------------------------------------------------------