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 |
3 | <%= raw h(@sparqlRequest).gsub(/\n/, '
')%>
4 |
5 |
6 |
7 |
8 |
9 | <% id=0; @favorites.each do |item| %>
10 |
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 |
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 |
3 | -
4 | <%= link_to image_tag("/assets/langs/gb.png"), params.merge({:locale => :en}),:title=>"English", :hreflang=>"fr"%>
5 |
6 | -
7 | <%= link_to image_tag("/assets/langs/fr.png"), params.merge({:locale => :fr}),:title=>"Français", :hreflang=>"fr" %>
8 |
9 |
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 |
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(" ");
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 | kind |
12 | value |
13 |
14 |
15 | <% @stats.each do |entry| %>
16 |
17 | <%= entry[:kind] %> |
18 | <%= entry[:val] %> |
19 |
20 | <% end %>
21 |
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 |
--------------------------------------------------------------------------------