├── .gitignore ├── .travis.yml ├── LICENCE.txt ├── README.md ├── ZONE-extractor ├── .gitignore ├── LICENSE.txt ├── README ├── ZONE-RSSreader │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── rssreader │ │ │ ├── App.java │ │ │ ├── DBpediaRequest.java │ │ │ ├── DownloadLastsNewsThread.java │ │ │ ├── DownloadNewsThread.java │ │ │ ├── InseeSparqlRequest.java.old │ │ │ ├── RSSGetter.java │ │ │ └── SparqlRequestWithJena_OLD.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── rssreader │ │ │ ├── AppTest.java │ │ │ ├── DBpediaRequestTest.java │ │ │ └── RSSGetterTest.java │ │ └── resources │ │ └── europe1.rss ├── ZONE-TwitterReader │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── twitterreader │ │ │ ├── App.java │ │ │ └── TwitterApi.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── twitterreader │ │ ├── AppTest.java │ │ └── TwitterApiTest.java ├── ZONE-extractor-start │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ ├── App.java │ │ │ └── ThreadApp.java │ │ └── test │ │ └── java │ │ └── zone │ │ └── zoneextractorstart │ │ └── AppTest.java ├── ZONE-plugin-DBPedia │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── dbpedia │ │ │ ├── App.java │ │ │ └── DbpediaSparqlRequest.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── dbpedia │ │ └── geo │ │ └── AppTest.java ├── ZONE-plugin-ExtractArticlesContent │ ├── LICENSE.txt │ ├── boilerpipe-1.2.0.jar │ ├── local-repo │ │ └── de │ │ │ └── l3s │ │ │ └── boilerpipe │ │ │ └── boilerpipe │ │ │ ├── 1.2.0 │ │ │ ├── boilerpipe-1.2.0.jar │ │ │ ├── boilerpipe-1.2.0.jar.md5 │ │ │ ├── boilerpipe-1.2.0.jar.sha1 │ │ │ ├── boilerpipe-1.2.0.pom │ │ │ ├── boilerpipe-1.2.0.pom.md5 │ │ │ └── boilerpipe-1.2.0.pom.sha1 │ │ │ ├── maven-metadata.xml │ │ │ ├── maven-metadata.xml.md5 │ │ │ └── maven-metadata.xml.sha1 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── extractarticlescontent │ │ │ ├── App.java │ │ │ ├── ExtractArticleContent.java │ │ │ └── Test.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── extractarticlescontent │ │ └── AppTest.java ├── ZONE-plugin-INSEEGeo │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── inseegeo │ │ │ ├── App.java │ │ │ ├── InseeSparqlRequest.java │ │ │ ├── Install.java │ │ │ └── Uninstall.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── inseegeo │ │ └── AppTest.java ├── ZONE-plugin-LangDetect │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── langdetect │ │ │ ├── App.java │ │ │ └── LangDetect.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── spotlight │ │ ├── AppTest.java │ │ └── LangDetectTest.java ├── ZONE-plugin-OpenCalais │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── opencalais │ │ │ ├── App.java │ │ │ └── openCalaisExtractor.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── opencalais │ │ └── AppTest.java ├── ZONE-plugin-Spotlight │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── spotlight │ │ │ ├── Annotation.java │ │ │ ├── App.java │ │ │ └── SpotlightRequest.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── spotlight │ │ └── SpotlightRequestTest.java ├── ZONE-plugin-WikiMeta │ ├── LICENSE.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── wikimeta │ │ │ ├── App.java │ │ │ ├── WikiMetaRequest.java │ │ │ ├── WikiMetaRequestThread.java │ │ │ └── WikiMetaRequest_API.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── wikimeta │ │ │ └── WikiMetaRequestTest.java │ │ └── resources │ │ ├── WikiMetaOutput.txt │ │ ├── WikiMetaOutput.xml │ │ ├── WikiMetaOutput_1.txt │ │ ├── WikiMetaOutput_mars.txt │ │ └── WikiMetaOutput_pip.json ├── ZONE-plugin-categorization_SVM │ ├── Corpus │ ├── Dic │ ├── LICENSE.txt │ ├── hs_err_pid11149.log │ ├── hs_err_pid1512.log │ ├── hs_err_pid2944.log │ ├── hs_err_pid3506.log │ ├── hs_err_pid3658.log │ ├── hs_err_pid3746.log │ ├── hs_err_pid6998.log │ ├── jnisvmlight.jar │ ├── jnisvmlight.jar.sav │ ├── libs │ │ ├── jnisvmlight.jar │ │ ├── libsvmlight.jnilib │ │ ├── libsvmlight.so │ │ ├── libsvmlight.so_sav │ │ ├── origin │ │ │ ├── Algorithm-SVMLight-0.09.tar.gz │ │ │ ├── Algorithm-SVMLight-0.09 │ │ │ │ ├── Build.PL │ │ │ │ ├── Changes │ │ │ │ ├── MANIFEST │ │ │ │ ├── META.yml │ │ │ │ ├── Makefile.PL │ │ │ │ ├── README │ │ │ │ ├── SVMLight.patch │ │ │ │ ├── lib │ │ │ │ │ └── Algorithm │ │ │ │ │ │ ├── SVMLight.pm │ │ │ │ │ │ ├── SVMLight.xs │ │ │ │ │ │ └── param_set.c.PL │ │ │ │ └── t │ │ │ │ │ ├── 01-basic.t │ │ │ │ │ └── 02-custom.t │ │ │ ├── JNI_SVM-light-6.01.zip │ │ │ ├── JNI_SVM-light-6.01 │ │ │ │ ├── JNI-SVMLight_Test.sh │ │ │ │ ├── JNI_SVMLight_Test.bat │ │ │ │ ├── JNI_SVMLight_Test.class │ │ │ │ ├── JNI_SVMLight_Test.java │ │ │ │ ├── classes │ │ │ │ │ └── jnisvmlight │ │ │ │ │ │ ├── ExtendedKernel.class │ │ │ │ │ │ ├── FeatureVector.class │ │ │ │ │ │ ├── Kernel.class │ │ │ │ │ │ ├── KernelParam.class │ │ │ │ │ │ ├── LabeledFeatureVector.class │ │ │ │ │ │ ├── LearnParam.class │ │ │ │ │ │ ├── LinearKernel.class │ │ │ │ │ │ ├── PolynomialKernel.class │ │ │ │ │ │ ├── RadialBaseKernel.class │ │ │ │ │ │ ├── SVMLightInterface.class │ │ │ │ │ │ ├── SVMLightModel.class │ │ │ │ │ │ ├── SigmoidKernel.class │ │ │ │ │ │ └── TrainingParameters.class │ │ │ │ ├── doc │ │ │ │ │ ├── allclasses-frame.html │ │ │ │ │ ├── allclasses-noframe.html │ │ │ │ │ ├── constant-values.html │ │ │ │ │ ├── deprecated-list.html │ │ │ │ │ ├── help-doc.html │ │ │ │ │ ├── index-all.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jnisvmlight │ │ │ │ │ │ ├── ExtendedKernel.html │ │ │ │ │ │ ├── FeatureVector.html │ │ │ │ │ │ ├── Kernel.html │ │ │ │ │ │ ├── KernelParam.html │ │ │ │ │ │ ├── LabeledFeatureVector.html │ │ │ │ │ │ ├── LearnParam.html │ │ │ │ │ │ ├── LinearKernel.html │ │ │ │ │ │ ├── PolynomialKernel.html │ │ │ │ │ │ ├── RadialBaseKernel.html │ │ │ │ │ │ ├── SVMLightInterface.html │ │ │ │ │ │ ├── SVMLightModel.html │ │ │ │ │ │ ├── SigmoidKernel.html │ │ │ │ │ │ ├── TrainingParameters.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── overview-tree.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── resources │ │ │ │ │ │ └── inherit.gif │ │ │ │ │ ├── serialized-form.html │ │ │ │ │ ├── src-html │ │ │ │ │ │ └── jnisvmlight │ │ │ │ │ │ │ ├── ExtendedKernel.html │ │ │ │ │ │ │ ├── FeatureVector.html │ │ │ │ │ │ │ ├── Kernel.html │ │ │ │ │ │ │ ├── KernelParam.html │ │ │ │ │ │ │ ├── LabeledFeatureVector.html │ │ │ │ │ │ │ ├── LearnParam.html │ │ │ │ │ │ │ ├── LinearKernel.html │ │ │ │ │ │ │ ├── PolynomialKernel.html │ │ │ │ │ │ │ ├── RadialBaseKernel.html │ │ │ │ │ │ │ ├── SVMLightInterface.html │ │ │ │ │ │ │ ├── SVMLightModel.html │ │ │ │ │ │ │ ├── SigmoidKernel.html │ │ │ │ │ │ │ └── TrainingParameters.html │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── jni_model.dat │ │ │ │ ├── lib │ │ │ │ │ ├── jnisvmlight.jar │ │ │ │ │ ├── libsvmlight.jnilib │ │ │ │ │ ├── libsvmlight.so │ │ │ │ │ └── svmlight.dll │ │ │ │ └── src │ │ │ │ │ ├── jnisvmlight │ │ │ │ │ ├── ExtendedKernel.java │ │ │ │ │ ├── FeatureVector.java │ │ │ │ │ ├── Kernel.java │ │ │ │ │ ├── KernelParam.java │ │ │ │ │ ├── LabeledFeatureVector.java │ │ │ │ │ ├── LearnParam.java │ │ │ │ │ ├── LinearKernel.java │ │ │ │ │ ├── PolynomialKernel.java │ │ │ │ │ ├── RadialBaseKernel.java │ │ │ │ │ ├── SVMLightInterface.java │ │ │ │ │ ├── SVMLightModel.java │ │ │ │ │ ├── SigmoidKernel.java │ │ │ │ │ ├── TrainingParameters.java │ │ │ │ │ └── build.xml │ │ │ │ │ └── svmlight-6.01 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile-linux │ │ │ │ │ ├── Makefile-org │ │ │ │ │ ├── Makefile-osx │ │ │ │ │ ├── Makefile-windows │ │ │ │ │ ├── jnisvmlight_SVMLightInterface.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── libsvmlight.so │ │ │ │ │ ├── linux-svm_classify │ │ │ │ │ ├── linux-svm_learn │ │ │ │ │ ├── sl_svm_classify.o │ │ │ │ │ ├── sl_svm_common.o │ │ │ │ │ ├── sl_svm_hideo.o │ │ │ │ │ ├── sl_svm_jni.o │ │ │ │ │ ├── sl_svm_learn.o │ │ │ │ │ ├── sl_svm_learn_main.o │ │ │ │ │ ├── svm_classify.c │ │ │ │ │ ├── svm_classify.o │ │ │ │ │ ├── svm_common.c │ │ │ │ │ ├── svm_common.h │ │ │ │ │ ├── svm_common.o │ │ │ │ │ ├── svm_hideo.c │ │ │ │ │ ├── svm_hideo.o │ │ │ │ │ ├── svm_jni.c │ │ │ │ │ ├── svm_jni.h │ │ │ │ │ ├── svm_learn.c │ │ │ │ │ ├── svm_learn.h │ │ │ │ │ ├── svm_learn.o │ │ │ │ │ ├── svm_learn_main.c │ │ │ │ │ ├── svm_learn_main.o │ │ │ │ │ └── svm_loqo.c │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── kernel.h │ │ │ ├── svm_classify │ │ │ ├── svm_classify.c │ │ │ ├── svm_classify.o │ │ │ ├── svm_common.c │ │ │ ├── svm_common.h │ │ │ ├── svm_common.o │ │ │ ├── svm_hideo.c │ │ │ ├── svm_hideo.o │ │ │ ├── svm_learn │ │ │ ├── svm_learn.c │ │ │ ├── svm_learn.h │ │ │ ├── svm_learn.o │ │ │ ├── svm_learn_main.c │ │ │ ├── svm_learn_main.o │ │ │ ├── svm_light.tar.gz │ │ │ └── svm_loqo.c │ │ ├── svmlight.dll │ │ ├── svmlight.jnilib │ │ └── svmlight.so │ ├── local-repo │ │ ├── jnisvmlight │ │ │ └── jnisvmlight │ │ │ │ ├── 1.0 │ │ │ │ ├── jnisvmlight-1.0.jar.md5 │ │ │ │ ├── jnisvmlight-1.0.jar.sha1 │ │ │ │ ├── jnisvmlight-1.0.pom │ │ │ │ ├── jnisvmlight-1.0.pom.md5 │ │ │ │ ├── jnisvmlight-1.0.pom.sha1 │ │ │ │ ├── jnisvmlight.ja.tar.gz │ │ │ │ ├── libsvmlight-1.0.jnilib │ │ │ │ ├── libsvmlight-1.0.so │ │ │ │ ├── libsvmlight.jnilib │ │ │ │ └── libsvmlight.so │ │ │ │ ├── 2.0 │ │ │ │ ├── jnisvmlight-2.0.jar │ │ │ │ ├── jnisvmlight-2.0.jar.md5 │ │ │ │ ├── jnisvmlight-2.0.jar.sha1 │ │ │ │ ├── jnisvmlight-2.0.pom │ │ │ │ ├── jnisvmlight-2.0.pom.md5 │ │ │ │ └── jnisvmlight-2.0.pom.sha1 │ │ │ │ ├── maven-metadata.xml │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ └── maven-metadata.xml.sha1 │ │ ├── stanford-corenlp-models │ │ │ └── stanford-corenlp-models │ │ │ │ ├── 1.3.4 │ │ │ │ ├── stanford-corenlp-models-1.3.4.jar │ │ │ │ ├── stanford-corenlp-models-1.3.4.jar.md5 │ │ │ │ ├── stanford-corenlp-models-1.3.4.jar.sha1 │ │ │ │ ├── stanford-corenlp-models-1.3.4.pom │ │ │ │ ├── stanford-corenlp-models-1.3.4.pom.md5 │ │ │ │ └── stanford-corenlp-models-1.3.4.pom.sha1 │ │ │ │ ├── maven-metadata.xml │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ └── maven-metadata.xml.sha1 │ │ └── stanford-corenlp │ │ │ └── stanford-corenlp │ │ │ ├── 1.3.4 │ │ │ ├── stanford-corenlp-1.3.4.jar │ │ │ ├── stanford-corenlp-1.3.4.jar.md5 │ │ │ ├── stanford-corenlp-1.3.4.jar.sha1 │ │ │ ├── stanford-corenlp-1.3.4.pom │ │ │ ├── stanford-corenlp-1.3.4.pom.md5 │ │ │ └── stanford-corenlp-1.3.4.pom.sha1 │ │ │ ├── maven-metadata.xml │ │ │ ├── maven-metadata.xml.md5 │ │ │ └── maven-metadata.xml.sha1 │ ├── pom.xml │ ├── resources │ │ ├── Corpus │ │ ├── Dic │ │ ├── french.tagger │ │ ├── french.tagger.props │ │ ├── french_lemmas.txt │ │ └── french_stopwords.txt │ └── src │ │ ├── main │ │ ├── assembly │ │ │ └── dep.xml │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── plugin │ │ │ └── categorization_svm │ │ │ ├── App.java │ │ │ ├── Install.java │ │ │ ├── model │ │ │ ├── Corpus.java │ │ │ ├── Dictionnaire.java │ │ │ ├── LemmeDictionnaire.java │ │ │ ├── Mot.java │ │ │ ├── StopWords.java │ │ │ └── Text.java │ │ │ ├── preprocessing │ │ │ ├── TextExtraction.java │ │ │ └── weight │ │ │ │ ├── TF.java │ │ │ │ └── TF_IDF.java │ │ │ └── svm │ │ │ ├── SVMClassify.java │ │ │ ├── SVMLearn.java │ │ │ ├── TrainingDataPreparation.java │ │ │ └── Verification.java │ │ └── test │ │ └── java │ │ └── org │ │ └── zoneproject │ │ └── extractor │ │ └── plugin │ │ └── categorization_svm │ │ ├── AppTest.java │ │ └── coreNlpTest.java ├── ZONE-utils │ ├── LICENSE.txt │ ├── dbExtract.rdf │ ├── dbExtract_monde.rdf │ ├── local-repo │ │ ├── virt_jena │ │ │ └── virt_jena │ │ │ │ ├── 1.6 │ │ │ │ ├── virt_jena-1.6.jar │ │ │ │ ├── virt_jena-1.6.jar.md5 │ │ │ │ ├── virt_jena-1.6.jar.sha1 │ │ │ │ ├── virt_jena-1.6.pom │ │ │ │ ├── virt_jena-1.6.pom.md5 │ │ │ │ └── virt_jena-1.6.pom.sha1 │ │ │ │ ├── maven-metadata.xml │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ └── maven-metadata.xml.sha1 │ │ └── virtjdbc3 │ │ │ └── virtjdbc3 │ │ │ ├── 1.6 │ │ │ ├── virtjdbc3-1.6.jar │ │ │ ├── virtjdbc3-1.6.jar.md5 │ │ │ ├── virtjdbc3-1.6.jar.sha1 │ │ │ ├── virtjdbc3-1.6.pom │ │ │ ├── virtjdbc3-1.6.pom.md5 │ │ │ └── virtjdbc3-1.6.pom.sha1 │ │ │ ├── maven-metadata.xml │ │ │ ├── maven-metadata.xml.md5 │ │ │ └── maven-metadata.xml.sha1 │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── zoneproject │ │ │ │ └── extractor │ │ │ │ └── utils │ │ │ │ ├── App.java │ │ │ │ ├── Config.java │ │ │ │ ├── Database.java │ │ │ │ ├── FourStore │ │ │ │ ├── EncodedStringWriter.java │ │ │ │ └── Store.java │ │ │ │ ├── FourStoreDatabase.java │ │ │ │ ├── Item.java │ │ │ │ ├── Prop.java │ │ │ │ ├── TestLogger.java │ │ │ │ ├── VirtuosoDatabase.java │ │ │ │ └── ZoneOntology.java │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── zoneproject │ │ │ └── extractor │ │ │ └── utils │ │ │ ├── FourStoreDatabaseTest.java │ │ │ └── VirtuosoStoreDatabaseTest.java │ └── virt_jena2.jar ├── config │ ├── .gitignore │ ├── app.properties │ ├── log4j.properties │ └── zone.properties.sample └── pom.xml ├── ZONE-watcher ├── .gitignore ├── .ruby-version ├── Capfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ ├── auth-icons.png │ │ │ ├── backgroundFB.png │ │ │ ├── backgroundGoogle.png │ │ │ ├── backgroundPinterest.png │ │ │ ├── backgroundRSS.png │ │ │ ├── backgroundTwitter.png │ │ │ ├── dino-contacts.png │ │ │ ├── dino.png │ │ │ ├── favicon.png │ │ │ ├── foregroundFB.png │ │ │ ├── foregroundFBGray.png │ │ │ ├── foregroundGoogle.png │ │ │ ├── foregroundGoogleGray.png │ │ │ ├── foregroundPinterest.png │ │ │ ├── foregroundRSS.png │ │ │ ├── foregroundTwitter.png │ │ │ ├── foregroundTwitterGray.png │ │ │ ├── langs │ │ │ │ ├── ad.png │ │ │ │ ├── ae.png │ │ │ │ ├── af.png │ │ │ │ ├── ag.png │ │ │ │ ├── ai.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── an.png │ │ │ │ ├── ao.png │ │ │ │ ├── aq.png │ │ │ │ ├── ar.png │ │ │ │ ├── as.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── ax.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bl.loc.png │ │ │ │ ├── bl.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bv.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── cc.png │ │ │ │ ├── cd.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cs.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cx.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dj.png │ │ │ │ ├── dk.png │ │ │ │ ├── dm.png │ │ │ │ ├── do.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── eh.png │ │ │ │ ├── en.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fk.png │ │ │ │ ├── fm.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── fx.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb.png │ │ │ │ ├── gd.png │ │ │ │ ├── ge.png │ │ │ │ ├── gf.png │ │ │ │ ├── gg.png │ │ │ │ ├── gh.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gm.png │ │ │ │ ├── gn.png │ │ │ │ ├── gp.loc1.png │ │ │ │ ├── gp.loc2.png │ │ │ │ ├── gp.png │ │ │ │ ├── gq.png │ │ │ │ ├── gr.png │ │ │ │ ├── gs.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gw.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hm.png │ │ │ │ ├── hn.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── in.png │ │ │ │ ├── io.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── je.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── km.png │ │ │ │ ├── kn.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── kw.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── la.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── li.png │ │ │ │ ├── lk.png │ │ │ │ ├── lr.png │ │ │ │ ├── ls.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── me.png │ │ │ │ ├── mf.loc1.png │ │ │ │ ├── mf.loc2.png │ │ │ │ ├── mf.png │ │ │ │ ├── mg.png │ │ │ │ ├── mh.png │ │ │ │ ├── mk.png │ │ │ │ ├── ml.png │ │ │ │ ├── mm.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── mq.png │ │ │ │ ├── mq.snake1.png │ │ │ │ ├── mq.snake2.png │ │ │ │ ├── mr.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mu.png │ │ │ │ ├── mv.png │ │ │ │ ├── mw.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── ne.png │ │ │ │ ├── nf.png │ │ │ │ ├── ng.png │ │ │ │ ├── ni.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nu.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── pg.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.loc.png │ │ │ │ ├── pm.png │ │ │ │ ├── pn.png │ │ │ │ ├── pr.png │ │ │ │ ├── ps.png │ │ │ │ ├── pt.png │ │ │ │ ├── pw.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── re.png │ │ │ │ ├── ro.png │ │ │ │ ├── rs.png │ │ │ │ ├── rs.woa.png │ │ │ │ ├── ru.png │ │ │ │ ├── rw.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sc.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── sh.png │ │ │ │ ├── si.png │ │ │ │ ├── sj.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── sm.png │ │ │ │ ├── sn.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── st.png │ │ │ │ ├── sv.png │ │ │ │ ├── sy.png │ │ │ │ ├── sz.png │ │ │ │ ├── tc.png │ │ │ │ ├── td.png │ │ │ │ ├── tf.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tj.png │ │ │ │ ├── tk.png │ │ │ │ ├── tl.png │ │ │ │ ├── tm.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tp.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── um.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── uz.png │ │ │ │ ├── va.png │ │ │ │ ├── vc.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── vu.png │ │ │ │ ├── wf.png │ │ │ │ ├── ws.png │ │ │ │ ├── xt.png │ │ │ │ ├── ye.png │ │ │ │ ├── yt.loc.png │ │ │ │ ├── yt.png │ │ │ │ ├── yu.png │ │ │ │ ├── za.png │ │ │ │ ├── zm.png │ │ │ │ └── zw.png │ │ │ ├── logo-small.png │ │ │ ├── rails.png │ │ │ ├── sign-in-with-twitter.png │ │ │ ├── timeline │ │ │ │ ├── left.png │ │ │ │ ├── leftright.png │ │ │ │ └── right.png │ │ │ └── twitter.png │ │ ├── javascripts │ │ │ ├── URI.min.js │ │ │ ├── application.js │ │ │ ├── authentications.js.coffee │ │ │ ├── bootstrapx-clickover.js │ │ │ ├── bootstrapx-clickoverx.js │ │ │ ├── dino.js │ │ │ ├── favorites.js.coffee │ │ │ ├── filters.js.coffee │ │ │ ├── home.js.coffee │ │ │ ├── items.js.coffee │ │ │ ├── items_show.js │ │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ │ ├── jqcloud.js │ │ │ ├── jquery.URI.js │ │ │ ├── jquery.inview.js │ │ │ ├── jquery.masonry.ordered.js │ │ │ ├── reminder_panel.js │ │ │ ├── search-dino.js.coffee │ │ │ ├── searches.js │ │ │ ├── sources.js.coffee │ │ │ ├── tags_managment.js.coffee │ │ │ └── twitter_timelines.js.coffee │ │ └── stylesheets │ │ │ ├── _jquery.tagit.css │ │ │ ├── advanced_search_box.css.scss │ │ │ ├── application.css │ │ │ ├── auth-buttons.css │ │ │ ├── authentications.css.scss │ │ │ ├── bulle.css.scss │ │ │ ├── dino.css │ │ │ ├── favorites.css.scss │ │ │ ├── filters.css.scss │ │ │ ├── home.css.scss │ │ │ ├── items.css │ │ │ ├── items_card.css.scss │ │ │ ├── items_list.css.scss │ │ │ ├── items_time.css │ │ │ ├── jQDateRangeSlider-ithing.css │ │ │ ├── jqcloud.css │ │ │ ├── lang.css.scss │ │ │ ├── scaffolds.css.scss │ │ │ ├── search-dino.css.scss │ │ │ ├── search_box.css.scss │ │ │ ├── searches.css.scss │ │ │ ├── tags_managment.css.scss │ │ │ ├── twitter_timelines.css.scss │ │ │ └── users.css.scss │ ├── controllers │ │ ├── application_controller.rb │ │ ├── favorites_controller.rb │ │ ├── filters_controller.rb │ │ ├── home_controller.rb │ │ ├── items_controller.rb │ │ ├── linked_words_controller.rb │ │ ├── search_filters_controller.rb │ │ ├── searches_controller.rb │ │ ├── sources_controller.rb │ │ ├── stats_controller.rb │ │ ├── twitter_controller.rb │ │ └── users │ │ │ └── omniauth_callbacks_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── authentications_helper.rb │ │ ├── devise_helper.rb │ │ ├── filters_helper.rb │ │ ├── home_helper.rb │ │ ├── items_helper.rb │ │ ├── linked_words_helper.rb │ │ ├── searches_helper.rb │ │ └── twitter_timelines_helper.rb │ ├── mailers │ │ └── .gitkeep │ ├── models │ │ ├── .gitkeep │ │ ├── favorite.rb │ │ ├── filter.rb │ │ ├── item.rb │ │ ├── linked_word.rb │ │ ├── search.rb │ │ ├── search_filter.rb │ │ ├── search_source.rb │ │ ├── source.rb │ │ ├── sparql_request.rb │ │ ├── stat.rb │ │ ├── twitter.rb │ │ ├── user.rb │ │ └── zone_ontology.rb │ └── views │ │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations │ │ │ ├── _new_twitter.html.erb │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── shared │ │ │ └── _links.erb │ │ └── unlocks │ │ │ └── new.html.erb │ │ ├── errors │ │ └── noBD.html │ │ ├── favorites │ │ ├── create.html.erb │ │ └── index.html.erb │ │ ├── home │ │ ├── _search_dino.html.erb │ │ └── index.html.erb │ │ ├── items │ │ ├── _items.html.erb │ │ ├── _show_tool_bar.html.erb │ │ ├── addTag.html.erb │ │ ├── index.html.erb │ │ ├── index.js │ │ ├── index.rss.builder │ │ ├── show.html.erb │ │ └── widget.html.erb │ │ ├── layouts │ │ ├── _footer.html.erb │ │ ├── _lang.html.erb │ │ ├── _login.html.erb │ │ ├── _maillinglist.html.erb │ │ ├── _messages.html.erb │ │ ├── application.html.erb │ │ ├── empty.html.erb │ │ └── emptyWithJS.html.erb │ │ ├── search_filters │ │ └── index.html.erb │ │ ├── searches │ │ ├── _form.html.erb │ │ ├── _left_menu.html.erb │ │ ├── _reminder_panel.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── selectSources.erb │ │ └── tagsCloud.html.erb │ │ ├── sources │ │ ├── _form.html.erb │ │ ├── changeCategory.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── uploadopml.js.erb │ │ └── stats │ │ └── index.html.erb ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── config.yml.example │ ├── database.yml.example │ ├── deploy.rb │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── backtrace_silencers.rb │ │ ├── devise.rb │ │ ├── devise_mailchimp.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── secret_token.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── devise.en.yml │ │ ├── devise.fr.yml │ │ ├── en.yml │ │ └── fr.yml │ ├── routes.rb │ ├── schedule.rb │ └── setup_load_paths.rb ├── db │ ├── migrate │ │ ├── 20130108102213_devise_create_users.rb │ │ ├── 20130108112456_add_columns_to_users.rb │ │ ├── 20130109090917_add_sessions_table.rb │ │ ├── 20130109091536_add_login_to_users.rb │ │ ├── 20130416094309_add_twitter_token_to_users.rb │ │ ├── 20130704083244_create_searches.rb │ │ ├── 20130704120503_create_search_filters.rb │ │ ├── 20130704120509_create_search_sources.rb │ │ └── 20130723083014_add_uri_to_search_filters.rb │ └── seeds.rb ├── doc │ ├── README_FOR_APP │ └── follow_me.svg ├── lib │ ├── assets │ │ └── .gitkeep │ └── tasks │ │ ├── .gitkeep │ │ └── memcached.rake ├── log │ └── .gitkeep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── cerulean.css │ │ │ ├── hero.css │ │ │ ├── slate.css │ │ │ └── zone-wp.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── custom-scrollbar-plugin │ │ ├── css │ │ │ └── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.js │ │ ├── js │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ └── jquery.mCustomScrollbar.min.js │ │ └── mCSB_buttons.png │ ├── favicon.ico │ ├── imgs │ │ ├── follow_me.png │ │ ├── sign-in-with-twitter.png │ │ └── twitter.png │ ├── jquery.sexy-combo │ │ ├── css │ │ │ ├── custom │ │ │ │ ├── arrow.jpg │ │ │ │ ├── custom.css │ │ │ │ ├── custom_bak.css │ │ │ │ └── sexy-input-bg.jpg │ │ │ ├── sexy-combo.css │ │ │ ├── sexy │ │ │ │ ├── sexy.css │ │ │ │ ├── text-bg.gif │ │ │ │ └── trigger.gif │ │ │ └── style-bak.css │ │ ├── jquery.sexy-combo.js │ │ ├── jquery.sexy-combo.min.js │ │ └── jquery.sexy-combo.pack.js │ ├── jwplayer │ │ ├── jwplayer.flash.swf │ │ ├── jwplayer.html5.js │ │ └── jwplayer.js │ ├── masonry │ │ └── jquery.masonry.ordered.js │ └── robots.txt ├── script │ └── rails ├── test │ ├── fixtures │ │ ├── .gitkeep │ │ ├── authentications.yml │ │ ├── filters.yml │ │ ├── items.yml │ │ ├── search_filters.yml │ │ ├── search_sources.yml │ │ ├── searches.yml │ │ ├── sources.yml │ │ └── users.yml │ ├── functional │ │ ├── .gitkeep │ │ ├── authentications_controller_test.rb │ │ ├── filters_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── items_controller_test.rb │ │ └── sources_controller_test.rb │ ├── integration │ │ └── .gitkeep │ ├── performance │ │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ │ ├── .gitkeep │ │ ├── authentication_test.rb │ │ ├── filter_test.rb │ │ ├── helpers │ │ ├── authentications_helper_test.rb │ │ ├── filters_helper_test.rb │ │ ├── home_helper_test.rb │ │ ├── items_helper_test.rb │ │ └── sources_helper_test.rb │ │ ├── item_test.rb │ │ ├── source_test.rb │ │ └── user_test.rb └── vendor │ ├── assets │ ├── javascripts │ │ └── .gitkeep │ └── stylesheets │ │ └── .gitkeep │ └── plugins │ └── .gitkeep ├── ontology ├── ZONE-ontology.owl └── ZONE-ontology.rdfs └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /ZONE-extractor/ZONE-plugin-categorization_SVM/target/ 2 | /ZONE-extractor/ZONE-TwitterReader/target/ 3 | /log/ 4 | *~ 5 | *# 6 | *.log 7 | .project 8 | /db/schema.rb 9 | /ZONE-extractor/ZONE-plugin-DBPedia-geo/target/ 10 | /ZONE-extractor/ZONE-plugin-Spotlight/target/ 11 | /ZONE-extractor/ZONE-plugin-LangDetect/target/ 12 | /ZONE-extractor/ZONE-plugin-DBPedia/target/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: 3 | - openjdk6 4 | script: 5 | - cd ZONE-extractor 6 | - mvn test 7 | -------------------------------------------------------------------------------- /ZONE-extractor/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /ZONE-plugin-ExtractArticlesContent/target/ 3 | /ZONE-plugin-OpenCalais/target/ 4 | /ZONE-plugin-WikiMeta/target/ 5 | /ZONE-RSSreader/target/ 6 | /ZONE-RSSreader/target/ 7 | /ZONE-utils/target/ 8 | /ZONE-plugin-ExtractArticlesContent/target/ 9 | /ZONE-plugin-WikiMeta/target/ 10 | /ZONE-plugin-OpenCalais/target/ 11 | /ZONE-extractor-start/target/ 12 | /ZONE-plugin-INSEEGeo/target/ 13 | /ZONE-extractor/target/ 14 | 15 | /log/ 16 | /ZONE-RSSreader/log/ 17 | /ZONE-plugin-WikiMeta/log/ 18 | /ZONE-plugin-OpenCalais/log/ 19 | /ZONE-plugin-INSEEGeo/log/ 20 | /ZONE-utils/log/ 21 | -------------------------------------------------------------------------------- /ZONE-extractor/README: -------------------------------------------------------------------------------- 1 | In order to run the project: 2 | mvn -DskipTests install 3 | mvn exec:java -pl ZONE-extractor-start 4 | 5 | In order to add the licence headers: 6 | mvn license:update-file-header 7 | 8 | In order to have SVM classification working 9 | export LD_LIBRARY_PATH=/home/cdesclau/Work/v2/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/ 10 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/boilerpipe-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-ExtractArticlesContent/boilerpipe-1.2.0.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.jar.md5: -------------------------------------------------------------------------------- 1 | 44076ec7c3c28bddbcbaa8e307361f5b -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.jar.sha1: -------------------------------------------------------------------------------- 1 | 1231af31dffb3bae5f61958e31ceb8818c67ce24 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | de.l3s.boilerpipe 6 | boilerpipe 7 | 1.2.0 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.pom.md5: -------------------------------------------------------------------------------- 1 | e077040a16697af3cfc8bfb8703a68a2 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/1.2.0/boilerpipe-1.2.0.pom.sha1: -------------------------------------------------------------------------------- 1 | 0c849de869b154a18e43bff4729b5cb916cadb01 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | de.l3s.boilerpipe 4 | boilerpipe 5 | 6 | 1.2.0 7 | 8 | 1.2.0 9 | 10 | 20130416072453 11 | 12 | 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | f3bf4f26878900db7ab8a3dac11677e7 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-ExtractArticlesContent/local-repo/de/l3s/boilerpipe/boilerpipe/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | c8f3ea34182eed25ca8664e98f08db7e261e33ed -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-WikiMeta/src/test/resources/WikiMetaOutput.txt: -------------------------------------------------------------------------------- 1 | {"document": 2 | [ 3 | {"Account":{"user":"descl","time":"0"}}, 4 | {"words": 5 | [ 6 | {"word":".", "PartOfSPeech":"SENT"} 7 | ]}, 8 | {"Named Entities": 9 | [ 10 | {"EN":"Antibes","type":"LOC","URI":"http://www.wikimeta.com/perl/display.pl?query=Antibes&search=FR","LINKEDDATA":"http://www.dbpedia.org/resource/Antibes","position":"3","confidenceScore":"630.165047269364"},{"EN":"Toulon","type":"LOC","URI":"http://www.wikimeta.com/perl/display.pl?query=Toulon&search=FR","LINKEDDATA":"http://www.dbpedia.org/resource/Toulon","position":"7","confidenceScore":"734.067480899601"}, 11 | {"EN":"Nicolas Sarkozy","type":"PERS","URI":"http://www.wikimeta.com/perl/display.pl?query=Nicolas Sarkozy&search=FR","LINKEDDATA":"http://www.dbpedia.org/resource/Nicolas_Sarkozy","position":"9","confidenceScore":"1437.17967145975"} 12 | ]} 13 | ]} -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-WikiMeta/src/test/resources/WikiMetaOutput_1.txt: -------------------------------------------------------------------------------- 1 | {"document": 2 | [ 3 | {"Account":{"user":"descl","time":"0"}} 4 | ] 5 | } -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/Corpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/Corpus -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/Dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/Dic -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy 2 | of this software and associated documentation files (the "Software"), to deal 3 | in the Software without restriction, including without limitation the rights 4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 5 | copies of the Software, and to permit persons to whom the Software is 6 | furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in 9 | all copies or substantial portions of the Software. 10 | 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 17 | THE SOFTWARE. 18 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/jnisvmlight.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/jnisvmlight.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/jnisvmlight.jar.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/jnisvmlight.jar.sav -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/jnisvmlight.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/jnisvmlight.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.jnilib -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.so_sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/libsvmlight.so_sav -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09.tar.gz -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/Build.PL: -------------------------------------------------------------------------------- 1 | use strict; 2 | use Module::Build; 3 | 4 | my $build = Module::Build->new 5 | ( 6 | module_name => 'Algorithm::SVMLight', 7 | license => 'perl', 8 | extra_linker_flags => '-lsvmlight', 9 | extra_compiler_flags => '-Wall', 10 | create_makefile_pl => 'passthrough', 11 | build_requires => { 12 | 'Module::Build' => '0.21', 13 | 'Test::More' => 0, 14 | }, 15 | ); 16 | 17 | $build->create_build_script; 18 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/MANIFEST: -------------------------------------------------------------------------------- 1 | Build.PL 2 | Changes 3 | lib/Algorithm/param_set.c.PL 4 | lib/Algorithm/SVMLight.pm 5 | lib/Algorithm/SVMLight.xs 6 | Makefile.PL 7 | MANIFEST 8 | META.yml 9 | README 10 | SVMLight.patch 11 | t/01-basic.t 12 | t/02-custom.t 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/META.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Algorithm-SVMLight 3 | version: 0.09 4 | author: 5 | - 'Ken Williams, Ekwilliams@cpan.orgE' 6 | abstract: Perl interface to SVMLight Machine-Learning Package 7 | license: perl 8 | resources: 9 | license: http://dev.perl.org/licenses/ 10 | build_requires: 11 | Module::Build: 0.21 12 | Test::More: 0 13 | provides: 14 | Algorithm::SVMLight: 15 | file: lib/Algorithm/SVMLight.pm 16 | version: 0.09 17 | generated_by: Module::Build version 0.3 18 | meta-spec: 19 | url: http://module-build.sourceforge.net/META-spec-v1.2.html 20 | version: 1.2 21 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/SVMLight.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/SVMLight.patch -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/Algorithm-SVMLight-0.09/t/02-custom.t: -------------------------------------------------------------------------------- 1 | 2 | use strict; 3 | use vars qw($TODO); 4 | use Test::More tests => 4; 5 | BEGIN { use_ok('Algorithm::SVMLight') }; 6 | 7 | use File::Spec; 8 | 9 | ######################### 10 | 11 | my $s = new Algorithm::SVMLight(type => 3); 12 | $s->add_instance_i( 1, "My Document", [3,9], [2.7, 1234]); 13 | $s->add_instance_i(-1, "My Document2", [3,5,7], [0.7, -1234, 3.5]); 14 | $s->add_instance_i( 1, "My Document3", [3,5,9], [0.2, -1234, 3.5]); 15 | 16 | # Try a fake ranking callback 17 | my $i = 0; 18 | $s->ranking_callback( sub {$i++} ); 19 | 20 | $s->train; 21 | ok $s->is_trained, "Train model"; 22 | is $i, 3, "\$i should be updated during training"; 23 | 24 | # Try a fake ranking callback 25 | $i = 0; 26 | $s->ranking_callback( sub {my($r1, $r2) = @_; $_= abs($r1-$r2); $i += $_; $_} ); 27 | $s->train; 28 | is $i, 4; 29 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01.zip -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/JNI-SVMLight_Test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | java -Xmx128m -classpath ./lib/jnisvmlight.jar:. -Djava.library.path=./lib JNI_SVMLight_Test 3 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/JNI_SVMLight_Test.bat: -------------------------------------------------------------------------------- 1 | java -Xmx1024m -classpath .;lib/jnisvmlight.jar -Djava.library.path=lib JNI_SVMLight_Test 2 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/JNI_SVMLight_Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/JNI_SVMLight_Test.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/ExtendedKernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/ExtendedKernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/FeatureVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/FeatureVector.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/Kernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/Kernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/KernelParam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/KernelParam.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LabeledFeatureVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LabeledFeatureVector.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LearnParam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LearnParam.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LinearKernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/LinearKernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/PolynomialKernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/PolynomialKernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/RadialBaseKernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/RadialBaseKernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SVMLightInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SVMLightInterface.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SVMLightModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SVMLightModel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SigmoidKernel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/SigmoidKernel.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/TrainingParameters.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/classes/jnisvmlight/TrainingParameters.class -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/doc/package-list: -------------------------------------------------------------------------------- 1 | jnisvmlight 2 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/doc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/doc/resources/inherit.gif -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/jnisvmlight.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/jnisvmlight.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/libsvmlight.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/libsvmlight.jnilib -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/libsvmlight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/libsvmlight.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/svmlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/lib/svmlight.dll -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/LICENSE.txt -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for svm_light 3 | # 4 | # Thorsten Joachims, 2002 5 | # 6 | # Thanks to Ralf Herbrich for the initial version. 7 | # 8 | 9 | all: 10 | @echo "" 11 | @echo "USAGE make [win|linux|osx]" 12 | @echo "" 13 | 14 | linux: 15 | make -f Makefile-linux 16 | 17 | win: 18 | make -f Makefile-windows 19 | 20 | osx: 21 | make -f Makefile-osx 22 | 23 | tidy: 24 | rm -f *.o 25 | rm -f donlp2/*.o 26 | rm -f donlp2_c/*.o 27 | rm -f pr_loqo/*.o 28 | 29 | clean: tidy 30 | rm -f linux-svm_learn* 31 | rm -f linux-svm_classify* 32 | rm -f libsvmlight.* 33 | rm -f svmlight.dll 34 | rm -f win-svm_learn* 35 | rm -f win-svm_classify* 36 | 37 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/jnisvmlight_SVMLightInterface.h: -------------------------------------------------------------------------------- 1 | /* DO NOT EDIT THIS FILE - it is machine generated */ 2 | #include 3 | /* Header for class jnisvmlight_SVMLightInterface */ 4 | 5 | #ifndef _Included_jnisvmlight_SVMLightInterface 6 | #define _Included_jnisvmlight_SVMLightInterface 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | /* 11 | * Class: jnisvmlight_SVMLightInterface 12 | * Method: classifyNative 13 | * Signature: (Ljnisvmlight/FeatureVector;)D 14 | */ 15 | JNIEXPORT jdouble JNICALL Java_jnisvmlight_SVMLightInterface_classifyNative 16 | (JNIEnv *, jobject, jobject); 17 | 18 | /* 19 | * Class: jnisvmlight_SVMLightInterface 20 | * Method: trainmodel 21 | * Signature: ([Ljnisvmlight/LabeledFeatureVector;Ljnisvmlight/TrainingParameters;)Ljnisvmlight/SVMLightModel; 22 | */ 23 | JNIEXPORT jobject JNICALL Java_jnisvmlight_SVMLightInterface_trainmodel 24 | (JNIEnv *, jobject, jobjectArray, jobject); 25 | 26 | #ifdef __cplusplus 27 | } 28 | #endif 29 | #endif 30 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/libsvmlight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/libsvmlight.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/linux-svm_classify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/linux-svm_classify -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/linux-svm_learn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/linux-svm_learn -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_classify.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_classify.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_common.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_hideo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_hideo.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_jni.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_jni.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_learn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_learn.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_learn_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/sl_svm_learn_main.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_classify.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_classify.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_common.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_hideo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_hideo.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn_main.c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/JNI_SVM-light-6.01/src/svmlight-6.01/svm_learn_main.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/LICENSE.txt -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_classify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_classify -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_classify.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_classify.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_common.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_hideo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_hideo.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn_main.c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_learn_main.o -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_light.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/origin/svm_light.tar.gz -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.dll -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.jnilib -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/libs/svmlight.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight-1.0.jar.md5: -------------------------------------------------------------------------------- 1 | dc8cb646a83a1252d9d10c819ab062f2 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight-1.0.jar.sha1: -------------------------------------------------------------------------------- 1 | ab1b8308c9209b66efe844bfdffb8c026f133027 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight-1.0.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | jnisvmlight 6 | jnisvmlight 7 | 1.0 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight-1.0.pom.md5: -------------------------------------------------------------------------------- 1 | a8ed57b6ad5c63865acaddc1c31cc391 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight-1.0.pom.sha1: -------------------------------------------------------------------------------- 1 | e70e3da5c5d2d15707eadfcdc0bee0d7c5236889 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight.ja.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/jnisvmlight.ja.tar.gz -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight-1.0.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight-1.0.jnilib -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight-1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight-1.0.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight.jnilib -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/1.0/libsvmlight.so -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.jar.md5: -------------------------------------------------------------------------------- 1 | 3781cb1ff7a15ba26e2f0bee6d537bd6 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.jar.sha1: -------------------------------------------------------------------------------- 1 | b55029a72ab68afe3188cb04a59443af93c2fcd9 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | jnisvmlight 6 | jnisvmlight 7 | 2.0 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.pom.md5: -------------------------------------------------------------------------------- 1 | 61b9b307b4624954e44274b9272676cb -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/2.0/jnisvmlight-2.0.pom.sha1: -------------------------------------------------------------------------------- 1 | 6c4d66ab055d2268ff5c2c8a81d39277b1370e6c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | jnisvmlight 4 | jnisvmlight 5 | 6 | 2.0 7 | 8 | 1.0 9 | 2.0 10 | 11 | 20130116083641 12 | 13 | 14 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | e01802225b703a07e26c6b04d9d2702e -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/jnisvmlight/jnisvmlight/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 4a515e76c9216c75bf810c44b5ffda73306e72e9 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.jar.md5: -------------------------------------------------------------------------------- 1 | daef8305ece574baee8a5e134ee5ba4c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.jar.sha1: -------------------------------------------------------------------------------- 1 | 8987b7758ff084a6a6120c993caa750416dc6fb3 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | stanford-corenlp-models 6 | stanford-corenlp-models 7 | 1.3.4 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.pom.md5: -------------------------------------------------------------------------------- 1 | 64721b7c69c3cc7726c3a77dac56a183 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/1.3.4/stanford-corenlp-models-1.3.4.pom.sha1: -------------------------------------------------------------------------------- 1 | 6d0e4f84d26282003bb026297255195fb6c866f0 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | stanford-corenlp-models 4 | stanford-corenlp-models 5 | 6 | 1.3.4 7 | 8 | 1.3.4 9 | 10 | 20130103104729 11 | 12 | 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | a2cf405640c5cd08dc30373764a334b6 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp-models/stanford-corenlp-models/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 7cf0eaaefbdd002e4491dc8ef2b97853ecd37b8c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.jar.md5: -------------------------------------------------------------------------------- 1 | 03d6ef5085eae37a75f4a27bfbb61387 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.jar.sha1: -------------------------------------------------------------------------------- 1 | 3b8e17fed34c9ce1f255b74fe3026c0008882528 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | stanford-corenlp 6 | stanford-corenlp 7 | 1.3.4 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.pom.md5: -------------------------------------------------------------------------------- 1 | c92c6d01c5a08a67cff7f5c547cd5908 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/1.3.4/stanford-corenlp-1.3.4.pom.sha1: -------------------------------------------------------------------------------- 1 | 4a7189f62b04fe5767f9e1767a1d5de1af5534ac -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | stanford-corenlp 4 | stanford-corenlp 5 | 6 | 1.3.4 7 | 8 | 1.3.4 9 | 10 | 20130103104657 11 | 12 | 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 069e511029201d1f0e96962d79b19210 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/local-repo/stanford-corenlp/stanford-corenlp/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | e2a4a75e0f5522558ffc840fd2ac80f02580aed2 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/resources/Corpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/resources/Corpus -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/resources/Dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/resources/Dic -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/resources/french.tagger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/resources/french.tagger -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/resources/french_lemmas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-plugin-categorization_SVM/resources/french_lemmas.txt -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-plugin-categorization_SVM/src/main/assembly/dep.xml: -------------------------------------------------------------------------------- 1 | 2 | bin 3 | 4 | tar.gz 5 | tar.bz2 6 | zip 7 | 8 | 9 | 10 | target/natives 11 | 12 | 13 | *.so 14 | *.jnilib 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/dbExtract_monde.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-utils/dbExtract_monde.rdf -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.jar.md5: -------------------------------------------------------------------------------- 1 | 98c47c1ecbe88c62ff1f75067f77876f -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.jar.sha1: -------------------------------------------------------------------------------- 1 | 47537fce1efa1dbb0fdf1dc833ec3ed1bf917d72 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | virt_jena 6 | virt_jena 7 | 1.6 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.pom.md5: -------------------------------------------------------------------------------- 1 | 59161f8ef8cbe64950174d8643659055 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/1.6/virt_jena-1.6.pom.sha1: -------------------------------------------------------------------------------- 1 | ac6b226f6b6cf9755de5a38549e5464b85d6c592 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | virt_jena 4 | virt_jena 5 | 6 | 1.6 7 | 8 | 1.6 9 | 10 | 20121113143107 11 | 12 | 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 9126abba135cf2988a7fc3a8f6f12fa9 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virt_jena/virt_jena/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | ebfe111681fe0f51a787e694b345845a011cb417 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.jar -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.jar.md5: -------------------------------------------------------------------------------- 1 | d59fc26651f0a6a27b32608e92cc7cf6 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.jar.sha1: -------------------------------------------------------------------------------- 1 | ab3a90d4186e2fa9b33b5ffeb8294933d956389c -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | virtjdbc3 6 | virtjdbc3 7 | 1.6 8 | 9 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.pom.md5: -------------------------------------------------------------------------------- 1 | 1d49b6833c3146833c51349b2bfbc87b -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/1.6/virtjdbc3-1.6.pom.sha1: -------------------------------------------------------------------------------- 1 | 57fa13b085694b2723de48d03dc4a470add6dd8d -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | virtjdbc3 4 | virtjdbc3 5 | 6 | 1.6 7 | 8 | 1.6 9 | 10 | 20121114072440 11 | 12 | 13 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 3a26c3f725fc18f37eea6cbf9c3b6159 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/local-repo/virtjdbc3/virtjdbc3/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 1f44e0e8fe4d2cbfaaba31880badeb3fe9ef36a6 -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/src/main/java/org/zoneproject/extractor/utils/App.java: -------------------------------------------------------------------------------- 1 | package org.zoneproject.extractor.utils; 2 | 3 | /* 4 | * #%L 5 | * ZONE-utils 6 | * %% 7 | * Copyright (C) 2012 ZONE-project 8 | * %% 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as published by 11 | * the Free Software Foundation, either version 3 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * #L% 22 | */ 23 | 24 | /** 25 | * 26 | * @author Desclaux Christophe 27 | */ 28 | public class App 29 | { 30 | public static void main( String[] args ) 31 | { 32 | //logger.info( "Hello World!" ); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/src/main/java/org/zoneproject/extractor/utils/Database.java: -------------------------------------------------------------------------------- 1 | package org.zoneproject.extractor.utils; 2 | 3 | /* 4 | * #%L 5 | * ZONE-utils 6 | * %% 7 | * Copyright (C) 2012 ZONE-project 8 | * %% 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as published by 11 | * the Free Software Foundation, either version 3 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * #L% 22 | */ 23 | 24 | /** 25 | * 26 | * @author Desclaux Christophe 27 | */ 28 | public class Database extends VirtuosoDatabase{ 29 | 30 | 31 | 32 | } 33 | -------------------------------------------------------------------------------- /ZONE-extractor/ZONE-utils/virt_jena2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-extractor/ZONE-utils/virt_jena2.jar -------------------------------------------------------------------------------- /ZONE-extractor/config/.gitignore: -------------------------------------------------------------------------------- 1 | /zone.properties -------------------------------------------------------------------------------- /ZONE-extractor/config/app.properties: -------------------------------------------------------------------------------- 1 | # application.properties 2 | application.name=HTMLlog 3 | -------------------------------------------------------------------------------- /ZONE-extractor/config/zone.properties.sample: -------------------------------------------------------------------------------- 1 | #For wikiMeta key: http://my.wikimeta.com/amember/signup/index/c/ 2 | wikiMeta-key = YourWikiMetaKey 3 | 4 | #For OpenCalais key: http://www.opencalais.com/APIkey 5 | openCalais-key = YourOpenCalaisKey 6 | 7 | #FourStore database 8 | FourStore-server = http://localhost:8080 9 | Virtuoso-server-uri = jdbc:virtuoso://localhost:1111 10 | 11 | #virtuoso password and login 12 | Virtuoso-server-user = dba 13 | Virtuoso-server-pass = dba 14 | 15 | #twitter OAuth 16 | Twitter-OAuth-customer = OAuthCustomer 17 | Twitter-OAuth-customerKey = OAuthCustomerKey 18 | 19 | zone-plugins = org.zoneproject.extractor.twitterreader.App 20 | zone-plugins = org.zoneproject.extractor.rssreader.App 21 | zone-plugins = org.zoneproject.extractor.plugin.extractarticlescontent.App 22 | zone-plugins = org.zoneproject.extractor.plugin.opencalais.App 23 | zone-plugins = org.zoneproject.extractor.plugin.wikimeta.App 24 | zone-plugins = org.zoneproject.extractor.plugin.inseegeo.App -------------------------------------------------------------------------------- /ZONE-watcher/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile ~/.gitignore_global 6 | 7 | # Ignore bundler config 8 | /.bundle 9 | 10 | # Ignore the default SQLite database. 11 | /db/*.sqlite3 12 | 13 | # Ignore all logfiles and tempfiles. 14 | /log/*.log 15 | /tmp 16 | /public/assets/ 17 | 18 | /.idea 19 | /.project 20 | 21 | /config/config.yml 22 | /config/database.yml 23 | /db/schema.rb 24 | 25 | -------------------------------------------------------------------------------- /ZONE-watcher/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.0-preview1 2 | -------------------------------------------------------------------------------- /ZONE-watcher/Capfile: -------------------------------------------------------------------------------- 1 | load 'deploy' 2 | # Uncomment if you are using Rails' asset pipeline 3 | load 'deploy/assets' 4 | load 'config/deploy' # remove this line to skip loading any of the default tasks 5 | 6 | 7 | #deploy the subdir of the project 8 | require 'capistrano/recipes/deploy/strategy/remote_cache' 9 | 10 | class RemoteCacheSubdir < Capistrano::Deploy::Strategy::RemoteCache 11 | 12 | private 13 | 14 | def repository_cache_subdir 15 | if configuration[:deploy_subdir] then 16 | File.join(repository_cache, configuration[:deploy_subdir]) 17 | else 18 | repository_cache 19 | end 20 | end 21 | 22 | def copy_repository_cache 23 | logger.trace "copying the cached version to #{configuration[:release_path]}" 24 | if copy_exclude.empty? 25 | run "cp -RPp #{repository_cache_subdir} #{configuration[:release_path]} && #{mark}" 26 | else 27 | exclusions = copy_exclude.map { |e| "--exclude=\"#{e}\"" }.join(' ') 28 | run "rsync -lrpt #{exclusions} #{repository_cache_subdir}/* #{configuration[:release_path]} && #{mark}" 29 | end 30 | end 31 | 32 | end 33 | 34 | 35 | set :strategy, RemoteCacheSubdir.new(self) 36 | -------------------------------------------------------------------------------- /ZONE-watcher/Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | # Add your own tasks in files placed in lib/tasks ending in .rake, 3 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 4 | 5 | require File.expand_path('../config/application', __FILE__) 6 | 7 | ZONEWatcher::Application.load_tasks 8 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/auth-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/auth-icons.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/backgroundFB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/backgroundFB.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/backgroundGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/backgroundGoogle.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/backgroundPinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/backgroundPinterest.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/backgroundRSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/backgroundRSS.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/backgroundTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/backgroundTwitter.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/dino-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/dino-contacts.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/dino.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/favicon.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundFB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundFB.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundFBGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundFBGray.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundGoogle.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundGoogleGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundGoogleGray.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundPinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundPinterest.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundRSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundRSS.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundTwitter.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/foregroundTwitterGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/foregroundTwitterGray.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ad.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ae.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/af.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ag.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ai.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/al.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/am.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/an.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ao.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/aq.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ar.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/as.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/at.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/au.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/aw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ax.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/az.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ba.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bb.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bd.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/be.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bi.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bj.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bl.loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bl.loc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bo.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/br.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bs.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/by.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/bz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ca.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cd.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ch.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ci.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ck.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/co.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cs.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cx.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cy.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/cz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/de.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/dj.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/dk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/dm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/do.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/dz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ec.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ee.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/eg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/eh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/en.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/er.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/es.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/et.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fi.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fj.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fo.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/fx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/fx.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ga.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gb.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gd.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ge.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gi.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gp.loc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gp.loc1.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gp.loc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gp.loc2.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gp.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gq.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gs.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/gy.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/hk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/hm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/hn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/hr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ht.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/hu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/id.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ie.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/il.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/in.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/io.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/iq.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ir.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/is.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/it.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/je.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/jm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/jo.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/jp.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ke.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ki.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/km.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kp.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ky.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/kz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/la.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lb.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/li.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ls.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/lv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ly.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ma.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/md.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/me.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mf.loc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mf.loc1.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mf.loc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mf.loc2.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ml.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mo.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mp.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mq.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mq.snake1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mq.snake1.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mq.snake2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mq.snake2.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ms.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mx.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/my.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/mz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/na.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ne.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ng.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ni.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/no.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/np.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/nz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/om.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pa.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pe.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ph.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pm.loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pm.loc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ps.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/pw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/py.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/qa.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/re.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ro.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/rs.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/rs.woa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/rs.woa.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ru.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/rw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sa.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sb.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sd.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/se.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sh.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/si.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sj.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/so.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/st.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sy.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/sz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/td.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/th.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tj.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tk.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tl.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/to.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tp.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tr.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tv.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/tz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ua.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ug.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/um.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/us.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/uy.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/uz.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/va.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/vc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ve.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/vg.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/vi.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/vn.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/vu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/wf.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ws.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/xt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/xt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/ye.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/yt.loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/yt.loc.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/yt.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/yu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/yu.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/za.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/zm.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/langs/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/langs/zw.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/logo-small.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/rails.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/sign-in-with-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/sign-in-with-twitter.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/timeline/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/timeline/left.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/timeline/leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/timeline/leftright.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/timeline/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/timeline/right.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/assets/images/twitter.png -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/authentications.js.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/favorites.js.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ 4 | # require "items_show.js" 5 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/filters.js.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/home.js.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ 4 | #= require "dino.js" 5 | 6 | $ -> 7 | # $('.more-infos').click -> 8 | # if $('.infos').hasClass("infos-on") 9 | # $('.splash').addClass("splash-off") 10 | # $('.splash').removeClass("splash-on") 11 | # $('.infos').hide(); 12 | # $('.infos').removeClass("infos-on") 13 | # $('.infos').addClass("infos-off") 14 | # $('body, html').css "height", "100%" 15 | # else 16 | # $('.infos').addClass("infos-on") 17 | # $('.infos').removeClass("infos-off") 18 | # $('.infos').show(); 19 | # $('.splash').addClass("splash-on") 20 | # $('.splash').removeClass("splash-off") 21 | # $('body, html').css "height", "auto" -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/reminder_panel.js: -------------------------------------------------------------------------------- 1 | //When the document is ready, prepare and initiate different function to the object of the modal 2 | $(document).ready(function() { 3 | //Reminder box in the item page 4 | $("#reminder").hover(function() { 5 | }, function() { 6 | $("#openReminder").fadeIn(); 7 | $("#reminder").css("left", "-37%"); 8 | }); 9 | 10 | $("#openReminder").hover(function(){ 11 | $('#openReminder').popover('hide'); 12 | $("#openReminder").fadeOut(); 13 | $("#reminder").css("transition", "all 0.5s ease-in"); 14 | $("#reminder").css("left", "-1%"); 15 | },function(){}); 16 | }); 17 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/javascripts/twitter_timelines.js.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/authentications.css.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the authentications controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/dino.css: -------------------------------------------------------------------------------- 1 | /**contribution from @yellowiscool https://twitter.com/yellowiscool**/ 2 | 3 | 4 | .oeil, .pupille { 5 | position:absolute; 6 | background:white; 7 | /*background:rgba(255,0,0,0.5);*/ 8 | border-radius:50%; /* pour faire des yeux ronds */ 9 | } 10 | 11 | .pupille { 12 | background:black; 13 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/favorites.css.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the favorites controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/filters.css.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the Filters controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/items_card.css.scss: -------------------------------------------------------------------------------- 1 | .item-bloc{ 2 | width:300px; 3 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/items_list.css.scss: -------------------------------------------------------------------------------- 1 | .item-bloc{ 2 | width:100%; 3 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/lang.css.scss: -------------------------------------------------------------------------------- 1 | .lang-select > li > a { 2 | padding-left:2px !important; 3 | padding-right:2px !important; 4 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/search-dino.css.scss: -------------------------------------------------------------------------------- 1 | #reador-title{ 2 | padding-top:0px !important; 3 | padding-bottom:0px !important; 4 | 5 | 6 | font-size: 31.5px; 7 | line-height: 40px; 8 | font-family: inherit; 9 | font-weight: bold; 10 | text-rendering: optimizelegibility; 11 | 12 | 13 | } 14 | .home-input-search{ 15 | border-color:white !important; 16 | padding-top:0px !important; 17 | padding-bottom:0px !important; 18 | font-size:90% !important; 19 | background-color:transparent !important; 20 | 21 | border:none !important; 22 | height: 100% !important; 23 | box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset !important; 24 | display: inline-block !important; 25 | margin-top: 0px !important; 26 | margin-bottom: 1px !important; 27 | } 28 | 29 | .ui-autocomplete .ui-menu-item { 30 | font-size:160% !important; 31 | padding-bottom: 2px; 32 | padding-top: 2px; 33 | color:#555555; 34 | 35 | } 36 | .ui-menu .ui-menu-item { 37 | border-color: transparent #5A8F00; 38 | border-width: 0px 5px 5px 5px; 39 | border-style: solid; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/search_box.css.scss: -------------------------------------------------------------------------------- 1 | .search-zone{ 2 | min-padding-left:10px; 3 | min-padding-right:10px; 4 | min-width: 300px; 5 | margin: -5px 20px 10px 20px; 6 | padding: 25px 5px 5px 5px; 7 | } 8 | 9 | .goButton{ 10 | margin-top:20px; 11 | } 12 | 13 | .fake-input{ 14 | margin-top:20px; 15 | width: 100%; 16 | padding-left: 0px; 17 | padding-right: 0px; 18 | } 19 | 20 | .select-source-input{ 21 | background-color: #ffffff; 22 | margin-top: 0px; 23 | } 24 | 25 | .select-source-ul{ 26 | margin-top: 0px; 27 | } 28 | 29 | .tagit li.tag .close { 30 | opacity: 1; 31 | color: #808080; 32 | } 33 | 34 | #dino-logo{ 35 | padding-top:0px; 36 | } 37 | 38 | #reador-title{ 39 | min-width: 340px; 40 | } 41 | 42 | 43 | #search-form, #sources-list{ 44 | padding-left: 0px; 45 | padding-right: 0px; 46 | } 47 | 48 | .ui-helper-hidden-accessible { 49 | display:none; 50 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/searches.css.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the Searches controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | 5 | .modal-body.importOpml{ 6 | padding: 9px 15px; 7 | } 8 | 9 | #formOpml{ 10 | margin-bottom: 0; 11 | } 12 | 13 | .importRss{ 14 | padding-top: 5px; 15 | max-height: 20em; 16 | overflow: auto; 17 | } 18 | 19 | .importRss td{ 20 | word-break : break-all; 21 | } 22 | 23 | a.btn:visited{ 24 | color:white; 25 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/tags_managment.css.scss: -------------------------------------------------------------------------------- 1 | .infoPopBox{ 2 | min-height:20px; 3 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/twitter_timelines.css.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the TwitterTimelines controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | -------------------------------------------------------------------------------- /ZONE-watcher/app/assets/stylesheets/users.css.scss: -------------------------------------------------------------------------------- 1 | .help-block{ 2 | font-style:italic; 3 | } -------------------------------------------------------------------------------- /ZONE-watcher/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery 3 | before_filter :set_locale 4 | def set_locale 5 | if lang = request.env['HTTP_ACCEPT_LANGUAGE'] 6 | lang = lang[/^[a-z]{2}/] 7 | end 8 | I18n.locale = params[:locale] || lang || I18n.default_locale 9 | end 10 | # app/controllers/application_controller.rb 11 | def default_url_options(options={}) 12 | logger.debug "default_url_options is passed options: #{options.inspect}\n" 13 | { locale: I18n.locale } 14 | end 15 | 16 | unless Rails.application.config.consider_all_requests_local 17 | rescue_from Net::HTTP::Persistent::Error, :with => :render_db_error 18 | rescue_from Mysql2::Error, :with => :render_db_error 19 | end 20 | def render_db_error(exception) 21 | render :template => "/errors/noBD.html", :layout => "empty", :status => 500 and return 22 | end 23 | end 24 | -------------------------------------------------------------------------------- /ZONE-watcher/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | if flash.empty? 4 | flash[:info] = t 'index.disclaimer' 5 | end 6 | 7 | end 8 | def search 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /ZONE-watcher/app/controllers/linked_words_controller.rb: -------------------------------------------------------------------------------- 1 | class LinkedWordsController < ApplicationController 2 | #caches_page :listWords, :autoComplete, :expires_in => 5.minutes 3 | 4 | caches_action :autoComplete, :cache_path => Proc.new { |c| c.params }, :expires_in => 1.day 5 | caches_action :listWords, :cache_path => Proc.new { |c| c.params }, :expires_in => 1.day 6 | 7 | # GET /linked_words 8 | # GET /linked_words/$entity.json 9 | #TODO: imcomprehensible... 10 | def listWords 11 | @result = Array.new 12 | possibleWords = LinkedWord.complete(params[:desc]) 13 | possibleWords.each do |word| 14 | @result.concat(LinkedWord.getLinkedWords(word[:uri])) 15 | end 16 | 17 | respond_to do |format| 18 | format.json { 19 | render json: @result } 20 | end 21 | end 22 | 23 | def autoComplete 24 | puts params[:desc] 25 | #cache(params[:desc], :expires_in => 10.day) do 26 | @result = LinkedWord.complete(params[:desc]) 27 | #end 28 | 29 | respond_to do |format| 30 | format.json { 31 | render json: @result } 32 | end 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /ZONE-watcher/app/controllers/search_filters_controller.rb: -------------------------------------------------------------------------------- 1 | class SearchFiltersController < ApplicationController 2 | caches_action :index, :cache_path => Proc.new { |c| c.params }, :expires_in => 1.day 3 | 4 | def index 5 | uri = URI.unescape(params[:uri]) 6 | @search_filter = SearchFilter.new(:uri => uri) 7 | @infos = @search_filter.getInfos 8 | 9 | if @infos == nil 10 | render nothing: true 11 | else 12 | @linkedFilters = Array.new 13 | @infos[:linkedEntities].take(4).each do |entity| 14 | fi = SearchFilter.new(:uri => entity[:uri], :value => entity[:value]) 15 | fi.prop = ZoneOntology::PLUGIN_SPOTLIGHT_ENTITIES 16 | fi.type = entity[:kind] 17 | fi.item = nil 18 | @linkedFilters << fi 19 | end 20 | render :layout => 'empty' 21 | end 22 | end 23 | end -------------------------------------------------------------------------------- /ZONE-watcher/app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'rubygems' 3 | require 'stathat' 4 | 5 | class StatsController < ApplicationController 6 | # GET /stats 7 | # GET /stats.json 8 | def index 9 | 10 | @stats = Stat.all 11 | 12 | respond_to do |format| 13 | format.html # index.html.erb 14 | format.json { render json: @stats } 15 | end 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/authentications_helper.rb: -------------------------------------------------------------------------------- 1 | module AuthenticationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/devise_helper.rb: -------------------------------------------------------------------------------- 1 | module DeviseHelper 2 | def devise_error_messages! 3 | return '' if resource.errors.empty? 4 | 5 | messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join 6 | sentence = I18n.t('errors.messages.not_saved', 7 | count: resource.errors.count, 8 | resource: resource.class.model_name.human.downcase) 9 | 10 | html = <<-HTML 11 |
12 | 13 |

#{sentence}

14 | #{messages} 15 |
16 | HTML 17 | 18 | html.html_safe 19 | end 20 | end -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/filters_helper.rb: -------------------------------------------------------------------------------- 1 | module FiltersHelper 2 | end 3 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/items_helper.rb: -------------------------------------------------------------------------------- 1 | module ItemsHelper 2 | end 3 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/linked_words_helper.rb: -------------------------------------------------------------------------------- 1 | module LinkedWordsHelper 2 | def escapeText(text) 3 | return text.gsub("'","\\\\'").gsub("'","\\\\'") 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /ZONE-watcher/app/helpers/twitter_timelines_helper.rb: -------------------------------------------------------------------------------- 1 | module TwitterTimelinesHelper 2 | end 3 | -------------------------------------------------------------------------------- /ZONE-watcher/app/mailers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/mailers/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/app/models/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/models/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/app/models/sparql_request.rb: -------------------------------------------------------------------------------- 1 | require 'net/http' 2 | require 'cgi' 3 | 4 | class SparqlRequest < ActiveRecord::Base 5 | def self.query(query,endpoint) 6 | params={ 7 | "default-graph" => "", 8 | "should-sponge" => "", 9 | "query" => query, 10 | "debug" => "on", 11 | "timeout" => "", 12 | "format" => "json", 13 | "save" => "display", 14 | "fname" => "" 15 | } 16 | 17 | querypart="" 18 | 19 | params.each { |k,v| 20 | querypart+="#{k}=#{CGI.escape(v)}&" 21 | } 22 | puts query 23 | sparqlURL=endpoint+"?#{querypart}" 24 | puts sparqlURL 25 | response = Net::HTTP.get_response(URI.parse(sparqlURL)) 26 | return JSON.parse(response.body)["results"]["bindings"] 27 | end 28 | end 29 | -------------------------------------------------------------------------------- /ZONE-watcher/app/models/twitter.rb: -------------------------------------------------------------------------------- 1 | class Twitter 2 | def self.add_hashtag_to_sources(tag) 3 | source = Source.find("#{ZoneOntology::SOURCES_TYPE_TWITTER_HASHTAG}/#{tag}") 4 | if source == nil 5 | 6 | @source = Source.new( 7 | "#{ZoneOntology::SOURCES_TYPE_TWITTER_HASHTAG}/#{tag}", 8 | { 9 | :attrs => { 10 | RDF.type => ZoneOntology::SOURCES_TYPE_TWITTER_HASHTAG 11 | } 12 | } 13 | ) 14 | @source.save 15 | end 16 | end 17 | 18 | def self.add_user_to_sources(user) 19 | source = Source.find("#{ZoneOntology::SOURCES_TYPE_TWITTER_AUTHOR}/#{user}") 20 | if source == nil 21 | @source = Source.new( 22 | "#{ZoneOntology::SOURCES_TYPE_TWITTER_AUTHOR}/#{user}", 23 | { 24 | :attrs => { 25 | RDF.type => ZoneOntology::SOURCES_TYPE_TWITTER_AUTHOR 26 | } 27 | } 28 | ) 29 | @source.save 30 | end 31 | end 32 | end -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- 1 |

Resend confirmation instructions

2 | 3 | <%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %> 4 | <%= devise_error_messages! %> 5 | 6 |
<%= f.label :email %>
7 | <%= f.email_field :email %>
8 | 9 |
<%= f.submit "Resend confirmation instructions" %>
10 | <% end %> 11 | 12 | <%= render "devise/shared/links" %> 13 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome <%= @resource.email %>!

2 | 3 |

You can confirm your account email through the link below:

4 | 5 |

<%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %>

6 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- 1 |

Hello <%= @resource.email %>!

2 | 3 |

Someone has requested a link to change your password, and you can do this through the link below.

4 | 5 |

<%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %>

6 | 7 |

If you didn't request this, please ignore this email.

8 |

Your password won't change until you access the link above and create a new one.

9 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- 1 |

Hello <%= @resource.email %>!

2 | 3 |

Your account has been locked due to an excessive amount of unsuccessful sign in attempts.

4 | 5 |

Click the link below to unlock your account:

6 | 7 |

<%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %>

8 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- 1 |

Change your password

2 | 3 | <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %> 4 | <%= devise_error_messages! %> 5 | <%= f.hidden_field :reset_password_token %> 6 | 7 |
<%= f.label :password, "New password" %>
8 | <%= f.password_field :password %>
9 | 10 |
<%= f.label :password_confirmation, "Confirm new password" %>
11 | <%= f.password_field :password_confirmation %>
12 | 13 |
<%= f.submit "Change my password" %>
14 | <% end %> 15 | 16 | <%= render "devise/shared/links" %> 17 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- 1 |

Forgot your password?

2 | 3 | <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %> 4 | <%= devise_error_messages! %> 5 | 6 |
<%= f.label :email %>
7 | <%= f.email_field :email %>
8 | 9 |
<%= f.submit "Send me reset password instructions" %>
10 | <% end %> 11 | 12 | <%= render "devise/shared/links" %> 13 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- 1 |

<%= t('devise.cancelAccount')%>

2 | 3 |

<%= link_to t('devise.cancelAccount'), registration_path(resource_name), :data => { :confirm => t('devise.areYouSure') }, :method => :delete %>.

4 | 5 | 6 | <% if current_user.provider == nil || (current_user.provider.include? "reador") %> 7 | 8 | 9 |

<%= t('menu.editAccount')%>

10 | 11 | <%= bootstrap_form_for(resource, :as => resource_name, :url => registration_path(resource_name), html: { class: 'form-horizontal' , :method => :put }, help: :block) do |f| %> 12 | 13 | <%= f.email_field :email %> 14 | <%= f.password_field :password, :autocomplete => "off", help: t('devise.registrations.edit.password_instruction') %> 15 | <%= f.password_field :password_confirmation %> 16 | <%= f.password_field :current_password, help: t('devise.registrations.edit.current_password_instruction') %> 17 | 18 | <%= f.actions do %> 19 | <%= f.primary t('items.modal.edit.update') %> 20 | <% end %> 21 | <%end%> 22 | <% end %> 23 | 24 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- 1 | <% if session["devise.twitter_data"] != nil %> 2 | <%= render 'new_twitter'%> 3 | <% elsif session["devise.github_data"] != nil%> 4 | <%= render 'new_github'%> 5 | <% elsif session["devise.google_data"] != nil%> 6 | <%= render 'new_google'%> 7 | <%else%> 8 | 9 |

<%= raw t 'menu.signUp'%>

10 | 11 | <%= bootstrap_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => {:class => 'form-horizontal'}, help: :block ) do |f| %> 12 | <%= f.email_field :email %> 13 | <%= f.password_field :password %> 14 | <%= f.password_field :password_confirmation %> 15 | <%= f.control_group :join_mailing_list do %> 16 | <%= f.check_box :join_mailing_list, label: t('activerecord.attributes.user.join_mailing_list') %> 17 | <% end %> 18 | <%= f.actions do %> 19 | <%= f.primary raw t 'menu.signUp', :class=>'btn' %> 20 | <%end%> 21 | <% end %> 22 | 23 | <%= render "devise/shared/links" %> 24 | 25 | <%end%> 26 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- 1 |

<%= t('menu.signIn')%>

2 | 3 | <%= bootstrap_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %> 4 | 5 | <%= f.email_field :email %> 6 | <%= f.password_field :password %> 7 | <% if devise_mapping.rememberable? -%> 8 | <%= f.check_box :remember_me, label: t('menu.remember') %> 9 | <% end -%> 10 | 11 | <%= f.submit t('menu.signIn') %> 12 | <% end %> 13 | 14 | <%= render "devise/shared/links" %> 15 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- 1 |

Resend unlock instructions

2 | 3 | <%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %> 4 | <%= devise_error_messages! %> 5 | 6 |
<%= f.label :email %>
7 | <%= f.email_field :email %>
8 | 9 |
<%= f.submit "Resend unlock instructions" %>
10 | <% end %> 11 | 12 | <%= render "devise/shared/links" %> 13 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/favorites/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/views/favorites/create.html.erb -------------------------------------------------------------------------------- /ZONE-watcher/app/views/favorites/index.html.erb: -------------------------------------------------------------------------------- 1 |

Listing favorites

2 | 5 | 6 | 7 |
8 |
9 | <% id=0; @favorites.each do |item| %> 10 |
11 |
12 |
13 | 14 | <%= item.title%> 15 |
16 |
17 | <% id+=1; end %> 18 |
19 |
-------------------------------------------------------------------------------- /ZONE-watcher/app/views/items/_items.html.erb: -------------------------------------------------------------------------------- 1 | <% @items.each do |item| %> 2 | <% 3 | similarityColor = case item.similarity 4 | when 0 then "" 5 | when 1 then "lowSimilarity" 6 | when 2 then "mediumSimilarity" 7 | else "highSimilarity" 8 | end 9 | prettyPrintDate = "undefined" 10 | date = Time.at(item.date.to_i/1000.0) 11 | prettyPrintDate = date.strftime(t("items.dateFormat")) 12 | %> 13 |
14 |
15 |
16 | 17 | <%= item.title%> 18 |
19 |
20 |
21 | <% end %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/items/addTag.html.erb: -------------------------------------------------------------------------------- 1 | <%= raw @filter.getButtonInNews%> 2 | <%= javascript_include_tag "tags_managment" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/items/index.rss.builder: -------------------------------------------------------------------------------- 1 | xml.instruct! :xml, :version =>"1.0" 2 | xml.rss :version => "2.0" do 3 | xml.channel do 4 | xml.title "Reador.NET Search: #{@search.getName(t("leftMenu.search"))}" 5 | xml.description "news comming from Reador.NET" 6 | #xml.link formatted_posts_url(:rss) 7 | 8 | for element in @items 9 | @item = Item.find(element.uri,current_user) 10 | 11 | next if @item.title == nil 12 | next if @item.date == nil 13 | next if @item.description == nil 14 | xml.item do 15 | xml.title @item.title 16 | if @item.description != nil 17 | xml.description @item.description[0].html_safe 18 | else 19 | xml.description "" 20 | end 21 | xml.pubDate Time.parse(@item.date.to_s(:rfc822))#.to_s(:rfc822) 22 | 23 | xml.link @item.uri 24 | image = @item.props["http://purl.org/rss/1.0/image"] 25 | if image != nil 26 | xml.enclosure url:image[0], type:"image/jpeg" 27 | end 28 | @item.filters.each do |tag| 29 | xml.enclosure tag.uri 30 | 31 | end 32 | end 33 | end 34 | end 35 | end -------------------------------------------------------------------------------- /ZONE-watcher/app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /ZONE-watcher/app/views/layouts/_lang.html.erb: -------------------------------------------------------------------------------- 1 |
  • 2 | 10 |
  • -------------------------------------------------------------------------------- /ZONE-watcher/app/views/layouts/_messages.html.erb: -------------------------------------------------------------------------------- 1 | <% flash.each do |name, msg| %> 2 | <% if msg.is_a?(String) %> 3 |
    4 | × 5 | <%= content_tag :div, raw(msg), :id => "flash_#{name}" %> 6 |
    7 | <% end %> 8 | <% end %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/layouts/empty.html.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/search_filters/index.html.erb: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | <% if @infos[:thumbnail] != nil%> 4 | <%= image_tag @infos[:thumbnail], :class => "pull-left span5", :id => "imgtag", :alt => ""%> 5 | <%end%> 6 | 7 | 8 | <%= @infos[:abstract]%> 9 | 10 | 11 | <%@linkedFilters.each do |entity|%> 12 | <%= raw entity.getButtonInNews%> 13 | <%end%> 14 | 15 |
    16 |
    17 | <%= javascript_include_tag "tags_managment" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/searches/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form', :type => "edit" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/searches/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form', :type => "new", :itemId => "undefined" %> 2 | -------------------------------------------------------------------------------- /ZONE-watcher/app/views/searches/tagsCloud.html.erb: -------------------------------------------------------------------------------- 1 | 13 | 14 |
    15 |
    16 |
    17 | 18 | 19 | <%= javascript_include_tag "tags_managment" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/sources/changeCategory.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/app/views/sources/changeCategory.html.erb -------------------------------------------------------------------------------- /ZONE-watcher/app/views/sources/edit.html.erb: -------------------------------------------------------------------------------- 1 |

    <%= t("source.edit.title") %>

    2 | 3 | <%= render 'form', :type => "edit" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/sources/new.html.erb: -------------------------------------------------------------------------------- 1 |

    <%= t("source.new") %>

    2 | 3 | <%= render 'form', :type => "new" %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/sources/show.html.erb: -------------------------------------------------------------------------------- 1 |

    <%= notice %>

    2 | 3 |

    4 | <%= t("source.list.uri") %>: 5 | <%= @source.uri %> 6 |

    7 | 8 |

    9 | <%= t("source.list.label") %>: 10 | <%= @source.label %> 11 |

    12 | 13 |

    14 | <%= t("source.list.lang") %>: 15 | <%= @source.lang %> 16 |

    17 | 18 | 19 |

    20 | <%= t("source.list.owner") %>: 21 | <%= @source.owner %> 22 |

    23 | 24 | 25 | <%= link_to t("edit"), edit_source_path(@source) %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/sources/uploadopml.js.erb: -------------------------------------------------------------------------------- 1 | <%= remotipart_response do %> 2 | <% @sourcesList.each do |source|%> 3 | $("#wellSources").append("<%=source%> "); 4 | $("#addAllRSS").attr("disabled", true); 5 | <%end%> 6 | <% end %> -------------------------------------------------------------------------------- /ZONE-watcher/app/views/stats/index.html.erb: -------------------------------------------------------------------------------- 1 |

    Listing stats

    2 | 3 |
    4 |
    5 |
    6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | <% @stats.each do |entry| %> 16 | 17 | 18 | 19 | 20 | <% end %> 21 |
    kindvalue
    <%= entry[:kind] %><%= entry[:val] %>
    22 |
    23 | 24 |
    25 |
    26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /ZONE-watcher/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run ZONEWatcher::Application 5 | -------------------------------------------------------------------------------- /ZONE-watcher/config/boot.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | 3 | # Set up gems listed in the Gemfile. 4 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 5 | 6 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) 7 | -------------------------------------------------------------------------------- /ZONE-watcher/config/config.yml.example: -------------------------------------------------------------------------------- 1 | virtuosoEndpoint: "http://localhost:8890/sparql/" 2 | virtuosoLogin: "dba" 3 | virtuosoPassword: "dba" 4 | 5 | defaultRequestId: "1" 6 | 7 | zopimId: "Your zopim id" 8 | 9 | stathatId: "mail@example.com" 10 | 11 | devise: 12 | secretKey: 'YourSecretKey' 13 | mailchimp: 14 | apiKey: "" 15 | listName: "" 16 | twitter: 17 | auth: "v" 18 | pass: "v" 19 | github: 20 | auth: "v" 21 | pass: "v" 22 | google: 23 | auth: "v" 24 | pass: "v" -------------------------------------------------------------------------------- /ZONE-watcher/config/database.yml.example: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3 3 | # 4 | # Ensure the SQLite 3 gem is defined in your Gemfile 5 | # gem 'sqlite3' 6 | development: 7 | adapter: sqlite3 8 | database: db/development.sqlite3 9 | pool: 5 10 | timeout: 5000 11 | 12 | # Warning: The database defined as "test" will be erased and 13 | # re-generated from your development database when you run "rake". 14 | # Do not set this db to the same as development or production. 15 | test: 16 | adapter: sqlite3 17 | database: db/test.sqlite3 18 | pool: 5 19 | timeout: 5000 20 | 21 | production: 22 | adapter: sqlite3 23 | database: db/development.sqlite3 24 | pool: 5 25 | timeout: 5000 26 | -------------------------------------------------------------------------------- /ZONE-watcher/config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the rails application 2 | require File.expand_path('../application', __FILE__) 3 | 4 | # Initialize the rails application 5 | ZONEWatcher::Application.initialize! 6 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/devise_mailchimp.rb: -------------------------------------------------------------------------------- 1 | config_file = File.join(Rails.root,'config','config.yml') 2 | raise "#{config_file} is missing! please create it using #{config_file}.example" unless File.exists? config_file 3 | loaded_config = YAML.load_file(config_file) 4 | 5 | #mailchimp configuration 6 | Devise.mailchimp_api_key = loaded_config["devise"]["mailchimp"]["apiKey"] 7 | Devise.mailing_list_name = loaded_config["devise"]["mailchimp"]["listName"] 8 | Devise.double_opt_in = false 9 | Devise.send_welcome_email = false -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format 4 | # (all these examples are active by default): 5 | # ActiveSupport::Inflector.inflections do |inflect| 6 | # inflect.plural /^(ox)$/i, '\1en' 7 | # inflect.singular /^(ox)en/i, '\1' 8 | # inflect.irregular 'person', 'people' 9 | # inflect.uncountable %w( fish sheep ) 10 | # end 11 | # 12 | # These inflection rules are supported but not enabled by default: 13 | # ActiveSupport::Inflector.inflections do |inflect| 14 | # inflect.acronym 'RESTful' 15 | # end 16 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | # Mime::Type.register_alias "text/html", :iphone 6 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Your secret key for verifying the integrity of signed cookies. 4 | # If you change this key, all old signed cookies will become invalid! 5 | # Make sure the secret is at least 30 characters and all random, 6 | # no regular words or you'll be exposed to dictionary attacks. 7 | ZONEWatcher::Application.config.secret_token = 'd27df92122a31845e7ab52278c371907e7623e9503e8e5b92be387ee76be6c1033d7111d5a41b05a920222d3b07c6af8c8d4a641fc0e68f0bfcbb76a69ab3b55' 8 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | #ZONEWatcher::Application.config.session_store :cookie_store, key: '_ZONE-watcher_session' 4 | ZONEWatcher::Application.config.session_store :active_record_store 5 | 6 | # Use the database for sessions instead of the cookie-based default, 7 | # which shouldn't be used to store highly confidential information 8 | # (create the session table with "rails generate session_migration") 9 | # ZONEWatcher::Application.config.session_store :active_record_store 10 | -------------------------------------------------------------------------------- /ZONE-watcher/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | # 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # Disable root element in JSON by default. 12 | ActiveSupport.on_load(:active_record) do 13 | self.include_root_in_json = false 14 | end 15 | -------------------------------------------------------------------------------- /ZONE-watcher/config/schedule.rb: -------------------------------------------------------------------------------- 1 | # Use this file to easily define all of your cron jobs. 2 | # 3 | # It's helpful, but not entirely necessary to understand cron before proceeding. 4 | # http://en.wikipedia.org/wiki/Cron 5 | 6 | # Example: 7 | # 8 | set :output, "log/cron_log.log" 9 | 10 | every 1.minutes do 11 | runner "Stat.all" 12 | end -------------------------------------------------------------------------------- /ZONE-watcher/config/setup_load_paths.rb: -------------------------------------------------------------------------------- 1 | if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm') 2 | begin 3 | gems_path = ENV['MY_RUBY_HOME'].split(/@/)[0].sub(/rubies/,'gems') 4 | ENV['GEM_PATH'] = "#{gems_path}:#{gems_path}@global" 5 | require 'rvm' 6 | RVM.use_from_path! File.dirname(File.dirname(__FILE__)) 7 | rescue LoadError 8 | raise "RVM gem is currently unavailable." 9 | end 10 | end 11 | 12 | # If you're not using Bundler at all, remove lines bellow 13 | ENV['BUNDLE_GEMFILE'] = File.expand_path('../Gemfile', File.dirname(__FILE__)) 14 | require 'bundler/setup' 15 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130108112456_add_columns_to_users.rb: -------------------------------------------------------------------------------- 1 | class AddColumnsToUsers < ActiveRecord::Migration 2 | def change 3 | add_column :users, :provider, :string 4 | add_column :users, :uid, :string 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130109090917_add_sessions_table.rb: -------------------------------------------------------------------------------- 1 | class AddSessionsTable < ActiveRecord::Migration 2 | def change 3 | create_table :sessions do |t| 4 | t.string :session_id, :null => false 5 | t.text :data 6 | t.timestamps 7 | end 8 | 9 | add_index :sessions, :session_id 10 | add_index :sessions, :updated_at 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130109091536_add_login_to_users.rb: -------------------------------------------------------------------------------- 1 | class AddLoginToUsers < ActiveRecord::Migration 2 | def change 3 | add_column :users, :login, :string 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130416094309_add_twitter_token_to_users.rb: -------------------------------------------------------------------------------- 1 | class AddTwitterTokenToUsers < ActiveRecord::Migration 2 | def change 3 | add_column :users, :token, :string 4 | add_column :users, :tokenSecret, :string 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130704083244_create_searches.rb: -------------------------------------------------------------------------------- 1 | class CreateSearches < ActiveRecord::Migration 2 | def change 3 | create_table :searches do |t| 4 | t.belongs_to :user 5 | t.string :name 6 | 7 | t.timestamps 8 | end 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130704120503_create_search_filters.rb: -------------------------------------------------------------------------------- 1 | class CreateSearchFilters < ActiveRecord::Migration 2 | def change 3 | create_table :search_filters do |t| 4 | t.string :value 5 | t.string :kind 6 | t.belongs_to :search 7 | 8 | t.timestamps 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130704120509_create_search_sources.rb: -------------------------------------------------------------------------------- 1 | class CreateSearchSources < ActiveRecord::Migration 2 | def change 3 | create_table :search_sources do |t| 4 | t.string :value 5 | t.string :kind 6 | t.belongs_to :search 7 | t.timestamps 8 | end 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /ZONE-watcher/db/migrate/20130723083014_add_uri_to_search_filters.rb: -------------------------------------------------------------------------------- 1 | class AddUriToSearchFilters < ActiveRecord::Migration 2 | def change 3 | add_column :search_filters, :uri, :string 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /ZONE-watcher/db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) 7 | # Mayor.create(name: 'Emanuel', city: cities.first) 8 | -------------------------------------------------------------------------------- /ZONE-watcher/doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | Use this README file to introduce your application and point to useful places in the API for learning more. 2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. 3 | -------------------------------------------------------------------------------- /ZONE-watcher/lib/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/lib/assets/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/lib/tasks/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/lib/tasks/memcached.rake: -------------------------------------------------------------------------------- 1 | namespace :memcached do 2 | desc 'Clears the Rails cache' 3 | task :flush => :environment do 4 | Rails.cache.clear 5 | end 6 | end -------------------------------------------------------------------------------- /ZONE-watcher/log/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/log/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/public/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /ZONE-watcher/public/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /ZONE-watcher/public/custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /ZONE-watcher/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/favicon.ico -------------------------------------------------------------------------------- /ZONE-watcher/public/imgs/follow_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/imgs/follow_me.png -------------------------------------------------------------------------------- /ZONE-watcher/public/imgs/sign-in-with-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/imgs/sign-in-with-twitter.png -------------------------------------------------------------------------------- /ZONE-watcher/public/imgs/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/imgs/twitter.png -------------------------------------------------------------------------------- /ZONE-watcher/public/jquery.sexy-combo/css/custom/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/jquery.sexy-combo/css/custom/arrow.jpg -------------------------------------------------------------------------------- /ZONE-watcher/public/jquery.sexy-combo/css/custom/sexy-input-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/jquery.sexy-combo/css/custom/sexy-input-bg.jpg -------------------------------------------------------------------------------- /ZONE-watcher/public/jquery.sexy-combo/css/sexy/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/jquery.sexy-combo/css/sexy/text-bg.gif -------------------------------------------------------------------------------- /ZONE-watcher/public/jquery.sexy-combo/css/sexy/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/jquery.sexy-combo/css/sexy/trigger.gif -------------------------------------------------------------------------------- /ZONE-watcher/public/jwplayer/jwplayer.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/public/jwplayer/jwplayer.flash.swf -------------------------------------------------------------------------------- /ZONE-watcher/public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-Agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /ZONE-watcher/script/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. 3 | 4 | APP_PATH = File.expand_path('../../config/application', __FILE__) 5 | require File.expand_path('../../config/boot', __FILE__) 6 | require 'rails/commands' 7 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/test/fixtures/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/authentications.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | one: 4 | user_id: 1 5 | provider: MyString 6 | uid: MyString 7 | index: MyString 8 | create: MyString 9 | destroy: MyString 10 | 11 | two: 12 | user_id: 1 13 | provider: MyString 14 | uid: MyString 15 | index: MyString 16 | create: MyString 17 | destroy: MyString 18 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/filters.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/items.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/search_filters.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/search_sources.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/searches.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | one: 4 | sources: 5 | filters: 6 | user: 7 | 8 | two: 9 | sources: 10 | filters: 11 | user: 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/sources.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | one: 4 | uri: MyString 5 | label: MyString 6 | lang: MyString 7 | licence: MyString 8 | owner: MyString 9 | 10 | two: 11 | uri: MyString 12 | label: MyString 13 | lang: MyString 14 | licence: MyString 15 | owner: MyString 16 | -------------------------------------------------------------------------------- /ZONE-watcher/test/fixtures/users.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /ZONE-watcher/test/functional/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/test/functional/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/test/functional/home_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class HomeControllerTest < ActionController::TestCase 4 | test "should get index" do 5 | get :index 6 | assert_response :success 7 | end 8 | 9 | end 10 | -------------------------------------------------------------------------------- /ZONE-watcher/test/functional/items_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ItemsControllerTest < ActionController::TestCase 4 | setup do 5 | @item = items(:one) 6 | end 7 | 8 | test "should get index" do 9 | get :index 10 | assert_response :success 11 | assert_not_nil assigns(:items) 12 | end 13 | 14 | test "should get new" do 15 | get :new 16 | assert_response :success 17 | end 18 | 19 | test "should create item" do 20 | assert_difference('Item.count') do 21 | post :create, item: { } 22 | end 23 | 24 | assert_redirected_to item_path(assigns(:item)) 25 | end 26 | 27 | test "should show item" do 28 | get :show, id: @item 29 | assert_response :success 30 | end 31 | 32 | test "should get edit" do 33 | get :edit, id: @item 34 | assert_response :success 35 | end 36 | 37 | test "should update item" do 38 | put :update, id: @item, item: { } 39 | assert_redirected_to item_path(assigns(:item)) 40 | end 41 | 42 | test "should destroy item" do 43 | assert_difference('Item.count', -1) do 44 | delete :destroy, id: @item 45 | end 46 | 47 | assert_redirected_to items_path 48 | end 49 | end 50 | -------------------------------------------------------------------------------- /ZONE-watcher/test/functional/sources_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SourcesControllerTest < ActionController::TestCase 4 | setup do 5 | @source = sources(:one) 6 | end 7 | 8 | test "should get index" do 9 | get :index 10 | assert_response :success 11 | assert_not_nil assigns(:sources) 12 | end 13 | 14 | test "should get new" do 15 | get :new 16 | assert_response :success 17 | end 18 | 19 | test "should create source" do 20 | assert_difference('Source.count') do 21 | post :create, source: { } 22 | end 23 | 24 | assert_redirected_to source_path(assigns(:source)) 25 | end 26 | 27 | test "should show source" do 28 | get :show, id: @source 29 | assert_response :success 30 | end 31 | 32 | test "should get edit" do 33 | get :edit, id: @source 34 | assert_response :success 35 | end 36 | 37 | test "should update source" do 38 | put :update, id: @source, source: { } 39 | assert_redirected_to source_path(assigns(:source)) 40 | end 41 | 42 | test "should destroy source" do 43 | assert_difference('Source.count', -1) do 44 | delete :destroy, id: @source 45 | end 46 | 47 | assert_redirected_to sources_path 48 | end 49 | end 50 | -------------------------------------------------------------------------------- /ZONE-watcher/test/integration/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/test/integration/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | require 'rails/performance_test_help' 3 | 4 | class BrowsingTest < ActionDispatch::PerformanceTest 5 | # Refer to the documentation for all available options 6 | # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory] 7 | # :output => 'tmp/performance', :formats => [:flat] } 8 | 9 | def test_homepage 10 | get '/' 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /ZONE-watcher/test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV["RAILS_ENV"] = "test" 2 | require File.expand_path('../../config/environment', __FILE__) 3 | require 'rails/test_help' 4 | 5 | class ActiveSupport::TestCase 6 | # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. 7 | # 8 | # Note: You'll currently still have to declare fixtures explicitly in integration tests 9 | # -- they do not yet inherit this setting 10 | fixtures :all 11 | 12 | # Add more helper methods to be used by all tests here... 13 | end 14 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/test/unit/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/authentication_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AuthenticationTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/filter_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class FilterTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/helpers/authentications_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AuthenticationsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/helpers/filters_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class FiltersHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/helpers/home_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class HomeHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/helpers/items_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ItemsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/helpers/sources_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SourcesHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/item_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ItemTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/source_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SourceTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /ZONE-watcher/test/unit/user_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class UserTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /ZONE-watcher/vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/vendor/assets/javascripts/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/vendor/assets/stylesheets/.gitkeep -------------------------------------------------------------------------------- /ZONE-watcher/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descl/ZONE/7bcb2c8732536134ce9f45f4d9f3403c8625b60a/ZONE-watcher/vendor/plugins/.gitkeep -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | org.zoneproject 5 | ZONE 6 | 1.0-SNAPSHOT 7 | 8 | pom 9 | 10 | ZONE-extractor 11 | 12 | 13 | 14 | --------------------------------------------------------------------------------