├── api
├── Procfile
├── views
│ ├── img
│ │ └── neo4j-swagger.jpg
│ ├── layout.jade
│ ├── users.jade
│ ├── index.jade
│ └── user.jade
├── routes
│ ├── site.js
│ └── index.js
├── models
│ ├── neo4j
│ │ ├── domain.js
│ │ ├── role.js
│ │ ├── director.js
│ │ └── gist.js
│ └── swagger_models.js
├── listen.js
├── LICENSE
└── README.md
├── web
├── Procfile
├── dist
│ ├── assets
│ │ ├── lib
│ │ │ ├── angular
│ │ │ │ ├── version.txt
│ │ │ │ ├── version.json
│ │ │ │ ├── angular-csp.css
│ │ │ │ ├── angular-cookies.min.js
│ │ │ │ ├── angular-loader.min.js
│ │ │ │ ├── i18n
│ │ │ │ │ ├── angular-locale_ms.js
│ │ │ │ │ ├── angular-locale_ms-my.js
│ │ │ │ │ ├── angular-locale_id.js
│ │ │ │ │ ├── angular-locale_in.js
│ │ │ │ │ ├── angular-locale_id-id.js
│ │ │ │ │ ├── angular-locale_en-be.js
│ │ │ │ │ ├── angular-locale_en-bz.js
│ │ │ │ │ ├── angular-locale_en.js
│ │ │ │ │ ├── angular-locale_en-as.js
│ │ │ │ │ ├── angular-locale_en-bb.js
│ │ │ │ │ ├── angular-locale_en-bm.js
│ │ │ │ │ ├── angular-locale_en-fm.js
│ │ │ │ │ ├── angular-locale_en-gu.js
│ │ │ │ │ ├── angular-locale_en-gy.js
│ │ │ │ │ ├── angular-locale_en-hk.js
│ │ │ │ │ ├── angular-locale_en-jm.js
│ │ │ │ │ ├── angular-locale_en-mh.js
│ │ │ │ │ ├── angular-locale_en-mp.js
│ │ │ │ │ ├── angular-locale_en-mu.js
│ │ │ │ │ ├── angular-locale_en-na.js
│ │ │ │ │ ├── angular-locale_en-ph.js
│ │ │ │ │ ├── angular-locale_en-pk.js
│ │ │ │ │ ├── angular-locale_en-pr.js
│ │ │ │ │ ├── angular-locale_en-pw.js
│ │ │ │ │ ├── angular-locale_en-sg.js
│ │ │ │ │ ├── angular-locale_en-tc.js
│ │ │ │ │ ├── angular-locale_en-tt.js
│ │ │ │ │ ├── angular-locale_en-um.js
│ │ │ │ │ ├── angular-locale_en-us.js
│ │ │ │ │ ├── angular-locale_en-vg.js
│ │ │ │ │ ├── angular-locale_en-vi.js
│ │ │ │ │ ├── angular-locale_af-na.js
│ │ │ │ │ ├── angular-locale_en-au.js
│ │ │ │ │ ├── angular-locale_en-bw.js
│ │ │ │ │ ├── angular-locale_en-gb.js
│ │ │ │ │ ├── angular-locale_en-iso.js
│ │ │ │ │ ├── angular-locale_en-nz.js
│ │ │ │ │ ├── angular-locale_en-zw.js
│ │ │ │ │ ├── angular-locale_sw.js
│ │ │ │ │ ├── angular-locale_tl.js
│ │ │ │ │ ├── angular-locale_af.js
│ │ │ │ │ ├── angular-locale_en-ca.js
│ │ │ │ │ ├── angular-locale_en-mt.js
│ │ │ │ │ ├── angular-locale_fil.js
│ │ │ │ │ ├── angular-locale_sw-tz.js
│ │ │ │ │ ├── angular-locale_tr.js
│ │ │ │ │ ├── angular-locale_af-za.js
│ │ │ │ │ ├── angular-locale_en-ie.js
│ │ │ │ │ ├── angular-locale_en-za.js
│ │ │ │ │ ├── angular-locale_fil-ph.js
│ │ │ │ │ ├── angular-locale_nl.js
│ │ │ │ │ ├── angular-locale_tr-tr.js
│ │ │ │ │ ├── angular-locale_zu.js
│ │ │ │ │ ├── angular-locale_en-in.js
│ │ │ │ │ ├── angular-locale_nl-cw.js
│ │ │ │ │ ├── angular-locale_nl-nl.js
│ │ │ │ │ ├── angular-locale_nl-sx.js
│ │ │ │ │ └── angular-locale_zu-za.js
│ │ │ │ └── angular-cookies.min.js.map
│ │ │ ├── owl-carousel
│ │ │ │ ├── grabbing.png
│ │ │ │ ├── AjaxLoader.gif
│ │ │ │ └── owl.theme.css
│ │ │ └── bootstrap
│ │ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ └── config.json
│ │ ├── ico
│ │ │ ├── favicon.ico
│ │ │ ├── favicon.png
│ │ │ ├── apple-touch-icon-57-precomposed.png
│ │ │ ├── apple-touch-icon-72-precomposed.png
│ │ │ ├── apple-touch-icon-114-precomposed.png
│ │ │ └── apple-touch-icon-144-precomposed.png
│ │ ├── img
│ │ │ ├── owl-logo.png
│ │ │ ├── AjaxLoader.gif
│ │ │ ├── demo-slides
│ │ │ │ ├── css3.png
│ │ │ │ ├── grab.png
│ │ │ │ ├── tons.png
│ │ │ │ ├── modern.png
│ │ │ │ ├── multi.png
│ │ │ │ ├── touch.png
│ │ │ │ ├── zombie.png
│ │ │ │ ├── controls.png
│ │ │ │ ├── feather.png
│ │ │ │ └── responsive.png
│ │ │ ├── neo4j
│ │ │ │ └── neo4j-logo.png
│ │ │ ├── neo4j_background3.gif
│ │ │ ├── posters
│ │ │ │ ├── WineGraph.jpg
│ │ │ │ ├── Phone Store.jpg
│ │ │ │ ├── Piping Water.jpg
│ │ │ │ ├── TV Show Graph.jpg
│ │ │ │ ├── Bank Fraud Detection.jpg
│ │ │ │ ├── Chess Games and Positions.jpg
│ │ │ │ ├── FIS Alpine Skiing seasons.jpg
│ │ │ │ ├── Single Malt Scotch Whisky.jpg
│ │ │ │ ├── Credit Card Fraud Detection.jpg
│ │ │ │ ├── Options Trading As A Graph.jpg
│ │ │ │ ├── Roads, Nodes and Automobiles.jpg
│ │ │ │ ├── Time Scale Event Meta Model.jpg
│ │ │ │ ├── Finance and Asset Management1.JPG
│ │ │ │ ├── Trophic Cascade in Yellowstone.jpg
│ │ │ │ ├── Small Social Networking Website.jpg
│ │ │ │ ├── Information Flow Through a Network.jpg
│ │ │ │ ├── Pharmaceutical Drugs and their Targets.jpg
│ │ │ │ ├── Amazon Web Services Global Infrastructure Graph.jpg
│ │ │ │ └── Movie Recommendations with k-NN and Cosine Similarity.jpg
│ │ │ ├── glyphicons-halflings.png
│ │ │ ├── glyphicons-halflings-green.png
│ │ │ └── glyphicons-halflings-white.png
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── js
│ │ │ ├── .controller.js.swp
│ │ │ ├── application.js
│ │ │ ├── ga.js
│ │ │ ├── google-code-prettify
│ │ │ │ └── prettify.css
│ │ │ └── colorize.js
│ │ ├── images
│ │ │ ├── neo4j-logo-2015.png
│ │ │ └── pattern-center-100.png
│ │ ├── partials
│ │ │ ├── gist-manage-featured.html.jade
│ │ │ ├── gist-submit-thank-you.html
│ │ │ ├── gist-all-crawl.html.jade
│ │ │ ├── carouselrelateddomains.html.jade
│ │ │ ├── gist-thumbs.html.jade
│ │ │ ├── gist.html.jade
│ │ │ ├── gist-check-submission-form.html
│ │ │ ├── gist-all.html
│ │ │ ├── gist-manage.html.jade
│ │ │ ├── home.html
│ │ │ ├── gist.html
│ │ │ ├── gist-manage-gist.html.jade
│ │ │ └── domains-detail.html.jade
│ │ └── css
│ │ │ ├── d3.css
│ │ │ └── datatable.css
│ ├── gist.html.jade
│ ├── google734980214f2326b4.html
│ ├── about-escaped-fragment.html.jade
│ └── gist-escaped-fragment.html.jade
├── listen.js
├── README.md
└── helpers
│ └── utils.js
├── Procfile
├── test
├── mocha.opts
└── asset_spec.js
├── database
└── graph.db.zip
├── Gemfile
├── .agignore
├── basic_auth.js
├── .gitignore
├── listen.js
├── migrations
├── fixtures
└── generated
│ ├── d3d9510b517b46bda8b7d563d09d6453.headers
│ ├── 2314ebe8eee0641b0fca1fd061a4ada9.headers
│ ├── 71dd43c5a420dcd69e1e533fb4cf152f.headers
│ ├── 85f141d6f9fde9f244ec77e51b6a3a8f.headers
│ ├── 2a25a0060e9536f55d91c9d2a69702e9.headers
│ └── 022c46df53e1611434c21059dbb6f1f5.headers
├── schema
├── scrape.rb
├── Gemfile.lock
├── package.json
└── README.md
/api/Procfile:
--------------------------------------------------------------------------------
1 | web: node app.js
--------------------------------------------------------------------------------
/web/Procfile:
--------------------------------------------------------------------------------
1 | web: node app.js
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | web: node listen.js
2 |
3 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/version.txt:
--------------------------------------------------------------------------------
1 | 1.2.6
--------------------------------------------------------------------------------
/test/mocha.opts:
--------------------------------------------------------------------------------
1 | test/client/*_spec.js test/*_spec.js
2 |
3 |
--------------------------------------------------------------------------------
/web/dist/gist.html.jade:
--------------------------------------------------------------------------------
1 |
2 | div#gist-body
3 | | !{html}
4 |
5 |
--------------------------------------------------------------------------------
/web/dist/google734980214f2326b4.html:
--------------------------------------------------------------------------------
1 | google-site-verification: google734980214f2326b4.html
--------------------------------------------------------------------------------
/database/graph.db.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/database/graph.db.zip
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 | gem 'nokogiri'
3 | gem 'neo4j-core'
4 | gem 'selenium-webdriver'
5 |
--------------------------------------------------------------------------------
/api/views/img/neo4j-swagger.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/api/views/img/neo4j-swagger.jpg
--------------------------------------------------------------------------------
/web/dist/assets/ico/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/favicon.ico
--------------------------------------------------------------------------------
/web/dist/assets/ico/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/favicon.png
--------------------------------------------------------------------------------
/web/dist/assets/img/owl-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/owl-logo.png
--------------------------------------------------------------------------------
/api/routes/site.js:
--------------------------------------------------------------------------------
1 | /*
2 | * GET home page.
3 | */
4 |
5 | exports.index = function(req, res){
6 | res.render('index');
7 | };
--------------------------------------------------------------------------------
/web/dist/assets/img/AjaxLoader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/AjaxLoader.gif
--------------------------------------------------------------------------------
/web/dist/assets/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/web/dist/assets/js/.controller.js.swp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/js/.controller.js.swp
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/version.json:
--------------------------------------------------------------------------------
1 | {"full":"1.2.6","major":"1","minor":"2","dot":"6","codename":"taco-salsafication","cdn":"1.2.5"}
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/css3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/css3.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/grab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/grab.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/tons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/tons.png
--------------------------------------------------------------------------------
/web/dist/assets/img/neo4j/neo4j-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/neo4j/neo4j-logo.png
--------------------------------------------------------------------------------
/web/dist/assets/images/neo4j-logo-2015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/images/neo4j-logo-2015.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/modern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/modern.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/multi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/multi.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/touch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/touch.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/zombie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/zombie.png
--------------------------------------------------------------------------------
/web/dist/assets/img/neo4j_background3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/neo4j_background3.gif
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/WineGraph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/WineGraph.jpg
--------------------------------------------------------------------------------
/web/dist/assets/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/web/dist/assets/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/web/dist/assets/images/pattern-center-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/images/pattern-center-100.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/controls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/controls.png
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/feather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/feather.png
--------------------------------------------------------------------------------
/web/dist/assets/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Phone Store.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Phone Store.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Piping Water.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Piping Water.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/TV Show Graph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/TV Show Graph.jpg
--------------------------------------------------------------------------------
/web/dist/assets/lib/owl-carousel/grabbing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/lib/owl-carousel/grabbing.png
--------------------------------------------------------------------------------
/web/dist/assets/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/web/dist/assets/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/web/dist/assets/img/demo-slides/responsive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/demo-slides/responsive.png
--------------------------------------------------------------------------------
/web/dist/assets/lib/owl-carousel/AjaxLoader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/lib/owl-carousel/AjaxLoader.gif
--------------------------------------------------------------------------------
/.agignore:
--------------------------------------------------------------------------------
1 | /web/dist/assets/js/all.min.js
2 | /web/dist/assets/js/maps/all.min.js.map
3 | /web/dist/assets/js/all.js
4 | /web/dist/assets/js/maps/all.js.map
5 |
--------------------------------------------------------------------------------
/web/dist/assets/img/glyphicons-halflings-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/glyphicons-halflings-green.png
--------------------------------------------------------------------------------
/web/dist/assets/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Bank Fraud Detection.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Bank Fraud Detection.jpg
--------------------------------------------------------------------------------
/web/dist/assets/ico/apple-touch-icon-57-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/apple-touch-icon-57-precomposed.png
--------------------------------------------------------------------------------
/web/dist/assets/ico/apple-touch-icon-72-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/apple-touch-icon-72-precomposed.png
--------------------------------------------------------------------------------
/web/dist/assets/ico/apple-touch-icon-114-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/apple-touch-icon-114-precomposed.png
--------------------------------------------------------------------------------
/web/dist/assets/ico/apple-touch-icon-144-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/ico/apple-touch-icon-144-precomposed.png
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Chess Games and Positions.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Chess Games and Positions.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/FIS Alpine Skiing seasons.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/FIS Alpine Skiing seasons.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Single Malt Scotch Whisky.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Single Malt Scotch Whisky.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Credit Card Fraud Detection.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Credit Card Fraud Detection.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Options Trading As A Graph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Options Trading As A Graph.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Roads, Nodes and Automobiles.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Roads, Nodes and Automobiles.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Time Scale Event Meta Model.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Time Scale Event Meta Model.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Finance and Asset Management1.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Finance and Asset Management1.JPG
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Trophic Cascade in Yellowstone.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Trophic Cascade in Yellowstone.jpg
--------------------------------------------------------------------------------
/api/routes/index.js:
--------------------------------------------------------------------------------
1 | // convenience wrapper around all other files:
2 | exports.site = require('./site');
3 | exports.domains = require('./domains');
4 | exports.gists = require('./gists');
5 |
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Small Social Networking Website.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Small Social Networking Website.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Information Flow Through a Network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Information Flow Through a Network.jpg
--------------------------------------------------------------------------------
/web/dist/about-escaped-fragment.html.jade:
--------------------------------------------------------------------------------
1 | html
2 | head
3 | title About GraphGists for Neo4j
4 | body
5 | h1 What is a GraphGist?
6 | include ./assets/partials/gist-about.html.jade
7 |
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Pharmaceutical Drugs and their Targets.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Pharmaceutical Drugs and their Targets.jpg
--------------------------------------------------------------------------------
/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/api/models/neo4j/domain.js:
--------------------------------------------------------------------------------
1 | // extracts just the data from the query results
2 |
3 | var _ = require('underscore');
4 |
5 | var Domain = module.exports = function (_node) {
6 | _(this).extend(_node.data);
7 | };
--------------------------------------------------------------------------------
/api/models/neo4j/role.js:
--------------------------------------------------------------------------------
1 | // extracts just the data from the query results
2 |
3 | var _ = require('underscore');
4 |
5 | var Role = module.exports = function (_node) {
6 | _(this).extend(_node.data);
7 | };
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Amazon Web Services Global Infrastructure Graph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Amazon Web Services Global Infrastructure Graph.jpg
--------------------------------------------------------------------------------
/web/dist/assets/img/posters/Movie Recommendations with k-NN and Cosine Similarity.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neo4j-contrib/graphgist-cms/HEAD/web/dist/assets/img/posters/Movie Recommendations with k-NN and Cosine Similarity.jpg
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-manage-featured.html.jade:
--------------------------------------------------------------------------------
1 | div(style="font-weight: bold")
2 | | {{message}}
3 |
4 | ul(ui-sortable="sortableOptions", ng-model="gists")
5 | li(ng-repeat="gist in gists")
6 | | {{ gist.title }}
7 |
--------------------------------------------------------------------------------
/web/listen.js:
--------------------------------------------------------------------------------
1 | var port = process.env.PORT || 5000;
2 | var api_port = 3000;
3 |
4 | var app = require('./app')(require('express')(), api_port);
5 |
6 | app.listen(port, function() {
7 | console.log("Listening on " + port);
8 | });
9 |
--------------------------------------------------------------------------------
/basic_auth.js:
--------------------------------------------------------------------------------
1 | module.exports = (process.env.BASIC_AUTH_USER && process.env.BASIC_AUTH_PASS)
2 | ? require('express').basicAuth(process.env.BASIC_AUTH_USER, process.env.BASIC_AUTH_PASS)
3 | : function (req, res, next) { next() }
4 | ;
5 |
6 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-submit-thank-you.html:
--------------------------------------------------------------------------------
1 |
2 |
Thanks for submitting your GraphGist! We will look it over and put it on the site soon!
3 |
4 |
Return to site
5 |
6 |
7 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-all-crawl.html.jade:
--------------------------------------------------------------------------------
1 | html
2 | body
3 | h1 Neo4j GraphGists
4 | each gist in gists
5 | h2 #{gist.title}
6 | p
7 | a(href="/#!/gists/" + gist.id) #{gist.title}
8 | p #{gist.summary}
9 |
--------------------------------------------------------------------------------
/api/listen.js:
--------------------------------------------------------------------------------
1 | var port = process.env.PORT || 3000;
2 |
3 | var app = require('./app')(require('express')(), port);
4 |
5 | app.listen(app.get('port'), function() {
6 | console.log('Express server listening on port ' + app.get('port'));
7 | });
8 |
9 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/carouselrelateddomains.html.jade:
--------------------------------------------------------------------------------
1 | div.item(ng-repeat="gist in gists")
2 | div.thumbnail
3 | a(ng-href="#!/domains/{{gist.related.name}}")
4 | img(src="{{gist.related | actorTitleLink}}")
5 |
6 | span
7 | a(ng-href="#!/domains/{{gist.related.name}}") {{gist.related.name}}
8 |
9 |
10 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/angular-csp.css:
--------------------------------------------------------------------------------
1 | /* Include this file in your html if you are using the CSP mode. */
2 |
3 | @charset "UTF-8";
4 |
5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6 | .ng-cloak, .x-ng-cloak,
7 | .ng-hide {
8 | display: none !important;
9 | }
10 |
11 | ng\:form {
12 | display: block;
13 | }
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | wordnik*.zip
2 | .DS_STORE
3 | *.ipr
4 | *.iml
5 | *.iws
6 | lib/*.jar
7 | META-INF/
8 | index
9 | lib/*.zip
10 | dk/
11 | index_dict
12 | logs
13 | src/main/java/com/wordnik/env/Version.scala
14 | lib/*.pom
15 | version.properties
16 | reports/*
17 | .sass-cache
18 | swagger-ui.sublime-workspace
19 | .idea
20 | .project
21 | node_modules
22 |
--------------------------------------------------------------------------------
/api/models/neo4j/director.js:
--------------------------------------------------------------------------------
1 | // extracts just the data from the query results
2 |
3 | var _ = require('underscore');
4 |
5 | var Actor = module.exports = function (_node) {
6 | _(this).extend(_node.data);
7 | };
8 |
9 | Actor.prototype.friends = function (friends) {
10 | if (friends && friends.length) {
11 | this.friends = friends;
12 | }
13 | return this.friends;
14 | };
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-thumbs.html.jade:
--------------------------------------------------------------------------------
1 | div(ng-repeat="gist in gists").item
2 | a(ng-href="#!/gists/{{gist.id | encodeURIComponent | encodeURIComponent}}/summary", style="background-image: url('{{gist | gistTitleLink | encodeURI}}')").carousel-gists.thumbnail
3 | span
4 | a(ng-href="#!/gists/{{gist.id | encodeURIComponent | encodeURIComponent}}/summary") {{gist.title}}
5 |
6 |
--------------------------------------------------------------------------------
/web/dist/assets/js/application.js:
--------------------------------------------------------------------------------
1 | // application.js
2 |
3 | $(document).ready(function($) {
4 |
5 | var owlCast = $("#owl-demo-cast");
6 |
7 | if (owlCast.owlCarousel) {
8 | owlCast.owlCarousel({
9 | items : 6,
10 | itemsDesktop : [1199,6],
11 | itemsDesktopSmall : [980,4],
12 | itemsTablet: [768,3],
13 | itemsMobile: [479, 2]
14 | });
15 | }
16 | });
17 |
--------------------------------------------------------------------------------
/web/dist/assets/js/ga.js:
--------------------------------------------------------------------------------
1 | //(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
2 | //(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
3 | //m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
4 | //})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
5 |
6 | //ga('create', 'UA-1192232-28', 'neo4j.org');
7 | //ga('send', 'pageview');
8 |
--------------------------------------------------------------------------------
/web/README.md:
--------------------------------------------------------------------------------
1 | ========================
2 | Neo4j Gist Website Demo
3 | ========================
4 |
5 | This repository is a gist content browser powered by Neo4j. All gist content is consumed from a Neo4j REST API endpoint built using Neo4j Swagger.
6 |
7 | Tools:
8 |
9 | * Neo4j: http://neo4j.com/download/
10 | * Swagger: http://neo4j-swagger.tinj.com/
11 | * Node.js: http://nodejs.org/
12 | * Bootstrap: http://getbootstrap.com/
13 | * Angular.js: http://angularjs.org/
14 |
--------------------------------------------------------------------------------
/api/views/layout.jade:
--------------------------------------------------------------------------------
1 | doctype 5
2 | html
3 | head
4 | title= title
5 | link(rel='stylesheet', href='/stylesheets/style.css')
6 | body
7 | block content
8 |
9 | // GitHub ribbon! via https://github.com/blog/273-github-ribbons
10 | a(href='https://github.com/aseemk/node-neo4j-template')
11 | img(
12 | style='position: absolute; top: 0; right: 0; border: 0;'
13 | src='https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png'
14 | alt='Fork me on GitHub'
15 | )
--------------------------------------------------------------------------------
/api/views/users.jade:
--------------------------------------------------------------------------------
1 | extends layout
2 |
3 | block content
4 | h1 Users
5 |
6 | if users.length
7 | p Here are the current users:
8 | ul.users
9 | for user in users
10 | li.user
11 | a(href='/users/#{user.id}') #{user.name}
12 | else
13 | p There are no users currently.
14 |
15 | form(action='', method='POST')
16 | p Create a new user:
17 | input(type='text', name='name', placeholder='Name', required)
18 | input(type='submit', value='Create')
19 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist.html.jade:
--------------------------------------------------------------------------------
1 | .container
2 |
3 | .row
4 | div
5 | ol.breadcrumb
6 | li
7 | a(href="#!") Home
8 | li
9 | a(href="/#!/gists") GraphGists
10 | li.active.title {{gist.title}}
11 |
12 | h2
13 | {{gist.title}}
14 | a.btn.btn-success.pull-right(href="{{gist.original_url}}", target="_blank", style="color: white; margin-left: 15px")
15 | i.glyphicon.glyphicon-file
16 | span Page Source
17 |
18 | .row#content
19 | div#loading-message(style="font-size: 5em; font-weight: bold; text-align: center")
20 | | {{loading_message}}
21 |
--------------------------------------------------------------------------------
/listen.js:
--------------------------------------------------------------------------------
1 | var rollbar = require('rollbar');
2 |
3 | if (process.env.ROLLBAR_SERVER_TOKEN) {
4 | rollbar.init(process.env.ROLLBAR_SERVER_TOKEN, {
5 | environment: process.env.NODE_ENV
6 | })
7 |
8 | rollbar.handleUncaughtExceptions(process.env.ROLLBAR_SERVER_TOKEN, {
9 | exitOnUncaughtException: false
10 | });
11 | }
12 |
13 | var app = require('express')();
14 |
15 | var port = process.env.PORT || 5000;
16 | var api_port = port;
17 |
18 | web_app = require('./web/app')(app, api_port)
19 | api_app = require('./api/app')(app, api_port)
20 |
21 | app.listen(port, function() {
22 | console.log("Listening on " + port);
23 | });
24 |
25 |
--------------------------------------------------------------------------------
/api/views/index.jade:
--------------------------------------------------------------------------------
1 | extends layout
2 |
3 | block content
4 | h1= title
5 |
6 | p
7 | | This is a template app showing the use of
8 | a(href='http://www.neo4j.org/', target='_blank') Neo4j
9 | | from Node.js. It uses the
10 | a(href='https://github.com/thingdom/node-neo4j', target='_blank') node-neo4j
11 | | library, available on npm as
12 | code neo4j
13 | .
14 |
15 | p.
16 | This app is a simple social network manager: it lets you add and remove
17 | users and "follows" relationships between them.
18 |
19 | p
20 | strong
21 | | Get started:
22 | a(href='/users') View all users
23 |
--------------------------------------------------------------------------------
/web/dist/assets/js/google-code-prettify/prettify.css:
--------------------------------------------------------------------------------
1 | .com { color: #93a1a1; }
2 | .lit { color: #195f91; }
3 | .pun, .opn, .clo { color: #93a1a1; }
4 | .fun { color: #dc322f; }
5 | .str, .atv { color: #ff8a3c; }
6 | .kwd, .prettyprint .tag { color: #195f91; }
7 | .typ, .atn, .dec, .var { color: #3fbf79; }
8 | .pln { color: #48484c; }
9 | .pun{ color:#48484c; }
10 | pre.prettyprint {
11 | padding: 20px;
12 | background-color: #f3f3f3;
13 | border: 0px solid #e1e1e8;
14 | }
15 |
16 |
17 | /* Specify class=linenums on a pre to get line numbering */
18 | ol.linenums {
19 | margin: 0 0 0 40px; /* IE indents via margin-left */
20 | }
21 | ol.linenums li {
22 | padding-left: 12px;
23 | color: #bebec5;
24 | line-height: 20px;
25 | text-shadow: 0 1px 0 #fff;
26 | }
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-check-submission-form.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Enter the URL of your GraphGist below in order to preview it. If it looks good you can click on the "Submit GraphGist" button to submit it for publication on this site!
6 |
7 |
8 |
9 | If you don't know what a GraphGist is or need help creating one you can consult this guide
10 |
11 |
12 |
18 |
19 |
--------------------------------------------------------------------------------
/web/helpers/utils.js:
--------------------------------------------------------------------------------
1 | var local = process.env.LOCAL_ASSETS
2 |
3 | exports.asset = function(file) {
4 | // todo check if locally available
5 | // return "/assets"
6 | // return "https://s3.amazonaws.com/assets.neo4j.org/"+file;
7 | return (local ? "/public/" : "http://assets.neo4j.org/") + file;
8 | };
9 |
10 | exports.merge = function() {
11 | var res={};
12 | for (i in arguments) {
13 | if (arguments.hasOwnProperty(i)) {
14 | var arg=arguments[i];
15 | for (prop in arg) {
16 | if (arg.hasOwnProperty(prop)) {
17 | res[prop] = arg[prop];
18 | }
19 | }
20 | }
21 | }
22 | // console.log("merge",Object.keys(res));
23 | return res;
24 | };
25 |
26 |
--------------------------------------------------------------------------------
/web/dist/assets/css/d3.css:
--------------------------------------------------------------------------------
1 | div.visualization > svg {
2 | width: 100%;
3 | height: 100%;
4 | overflow: hidden;
5 | }
6 |
7 | .d3-shadow {
8 | stroke: #000;
9 | stroke-width: 1.5px;
10 | stroke-opacity: .8;
11 | }
12 |
13 | .d3-text, .d3-path-text {
14 | stroke: none;
15 | font-family: sans-serif;
16 | text-shadow: none;
17 | pointer-events: none;
18 | }
19 |
20 | .d3-text {
21 | font-size: 10px;
22 | z-index: 10;
23 | }
24 |
25 | .d3-path-text {
26 | font-size: 8px;
27 | text-align: center;
28 | }
29 |
30 | .selected {
31 | stroke: red;
32 | stroke-width: 1.5px;
33 | }
34 |
35 | .d3-link {
36 | stroke: #222;
37 | }
38 |
39 | .d3-marker {
40 | stroke: #222;
41 | fill: #222;
42 | }
43 |
44 | .d3-node {
45 | color: #fa8072;
46 | }
47 |
--------------------------------------------------------------------------------
/test/asset_spec.js:
--------------------------------------------------------------------------------
1 | // var fs = require('fs');
2 | //
3 | // require('should');
4 | //
5 | // describe('assets', function(){
6 | //
7 | // // IF THIS SPEC FAILS YOU SHOULD RUN: gulp scripts
8 | // it('should be the case that all.js is newer than all other non all*.js files', function(done) {
9 | // var dir_path = 'web/dist/assets/js';
10 | // var files = fs.readdirSync(dir_path);
11 | //
12 | // alljs_stat = fs.statSync(dir_path + '/all.js');
13 | //
14 | // for (file in files) {
15 | // file = files[file]
16 | // if (file.match(/\.js$/) && !file.match(/^all/)) {
17 | // stat = fs.statSync(dir_path + '/' + file)
18 | //
19 | // alljs_stat.mtime.should.be.greaterThan(stat.mtime)
20 | // }
21 | // }
22 | //
23 | // done()
24 | // });
25 | //
26 | // })
27 |
28 |
29 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/angular-cookies.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.6
3 | (c) 2010-2014 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&d.$apply())})();k=!0;d.$watch(function(){var a,e,d;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)(e=c[a],f.isString(e))?e!==g[a]&&(b.cookies(a,e),d=!0):f.isDefined(g[a])?c[a]=g[a]:delete c[a];if(d)for(a in e=b.cookies(),c)c[a]!==e[a]&&(m(e[a])?delete c[a]:c[a]=e[a])});
7 | return c}]).factory("$cookieStore",["$cookies",function(d){return{get:function(b){return(b=d[b])?f.fromJson(b):b},put:function(b,c){d[b]=f.toJson(c)},remove:function(b){delete d[b]}}}])})(window,window.angular);
8 | //# sourceMappingURL=angular-cookies.min.js.map
9 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-all.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
All Groups
7 |
8 |
9 | {{group}}
10 |
11 |
12 |
13 |
14 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/migrations:
--------------------------------------------------------------------------------
1 | MATCH (gist:Gist) SET gist.url = gist.tagline;
2 |
3 | MATCH (gist:Gist) SET gist.tagline = NULL;
4 |
5 | MATCH (n) WHERE n.duration IS NOT NULL SET n.duration = NULL
6 |
7 | MATCH (n) WHERE n.released IS NOT NULL SET n.released = NULL
8 |
9 |
10 |
11 | MATCH (gist:Gist) SET gist.status='live'
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | CREATE (d:Usecase {name: 'Relational Models', description: 'When the ridged structure of tables has become too much and you need to put your data into a graph.', list: ['Moving away entirely from a relational database', 'supplimenting part of your relational database with the power of graphs']})
20 |
21 | CREATE (d:Usecase {name: 'Impact Analysis', description: ''})
22 |
23 | CREATE (d:Usecase {name: 'Content and Asset Management', description: 'What better way to store information about everything than with a simple and flexible graph model?'})
24 |
25 | CREATE (d:Usecase {name: 'Graph Search and Insights', description: ''})
26 |
27 | MATCH (d:Usecase) WHERE NOT(d:Tag) SET d:Tag
28 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-manage.html.jade:
--------------------------------------------------------------------------------
1 |
2 | a.btn.btn-default(href="#!/gists/manage/featured")
3 | | Manage featured (front-page) gists
4 |
5 | .container
6 | div(ng-repeat="(status, gists) in gists_by_status")
7 |
8 | h1 status: {{status}}
9 |
10 | table.table.table-striped.table-bordered
11 | tr
12 | th
13 | th Gist ID
14 | th Title
15 | th Summary
16 | th Domains
17 | th Use cases
18 | th Writers
19 |
20 | tr(ng-repeat="gist in gists")
21 | td
22 | a(href="#!/gists/manage/{{gist.id}}") Edit
23 | td {{gist.id}}
24 | td {{gist.title}}
25 | td {{gist.summary}}
26 | th
27 | ul.list-group(ng-repeat="genre in gist.genres")
28 | li.list-group-item {{genre}}
29 | th
30 | ul.list-group(ng-repeat="usecase in gist.usecases")
31 | li.list-group-item {{usecase}}
32 | td
33 | ul.list-group(ng-repeat="writer in gist.writers")
34 | li.list-group-item {{writer}}
35 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/home.html:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
12 |
13 |
14 | {{gist.title}}
15 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
{{loading_message}}
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/api/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2013 tinj
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of
6 | this software and associated documentation files (the "Software"), to deal in
7 | the Software without restriction, including without limitation the rights to
8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 | the Software, and to permit persons to whom the Software is furnished to do so,
10 | subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/web/dist/gist-escaped-fragment.html.jade:
--------------------------------------------------------------------------------
1 | doctype html
2 |
3 | html(lang="en", ng-app="contentApp")
4 | head
5 |
6 | meta(charset="utf-8")
7 | meta(http-equiv="X-UA-Compatible", content="IE=edge")
8 | meta(name="viewport", content="width=device-width, initial-scale=1.0")
9 | meta(name="description", content="")
10 | meta(name="author", content="")
11 | link(rel="shortcut icon", href="assets/ico/favicon.ico?v=2")
12 |
13 | meta(name="twitter:site", content="@neo4j")
14 | meta(name="twitter:domain", content="http://graphgist.neo4j.com")
15 | if gist.submitter_twitter
16 | meta(name="twitter:creator", content="@"+ gist.submitter_twitter)
17 | if gist.title
18 | meta(name="twitter:title", content=gist.title)
19 | if gist.summary
20 | meta(name="twitter:description", content=gist.summary)
21 |
22 | meta(name="twitter:card", content=(gist.poster_image ? 'summary_large_image' : 'summary'))
23 |
24 | meta(name="twitter:image:src", content=(gist.poster_image || '/assets/img/neo4j/neo4j-logo.png'))
25 |
26 | title #{gist.title}
27 |
28 | body #{gist.title}
!{gist.html}
29 |
--------------------------------------------------------------------------------
/web/dist/assets/js/colorize.js:
--------------------------------------------------------------------------------
1 | CodeMirror.colorize = (function() {
2 |
3 | var isBlock = /^(p|li|div|h\\d|pre|blockquote|td)$/;
4 |
5 | function textContent(node, out) {
6 | if (node.nodeType == 3) return out.push(node.nodeValue);
7 | for (var ch = node.firstChild; ch; ch = ch.nextSibling) {
8 | textContent(ch, out);
9 | if (isBlock.test(node.nodeType)) out.push("\n");
10 | }
11 | }
12 |
13 | return function() {
14 | var collection = document.body.getElementsByTagName("code");
15 |
16 | for (var i = 0; i < collection.length; ++i) {
17 | var theme = " cm-s-default";
18 | var node = collection[i];
19 | var mode = node.getAttribute("data-lang");
20 | if (!mode) continue;
21 | if (mode === "cypher") {
22 | theme = " cm-s-neo";
23 | } else if (mode === "java") {
24 | mode = "text/x-java";
25 | } else if (mode === "sql") {
26 | mode = "text/x-sql";
27 | }
28 |
29 | var text = [];
30 | textContent(node, text);
31 | node.innerHTML = "";
32 | CodeMirror.runMode(text.join(""), mode, node);
33 |
34 | node.className += theme;
35 | }
36 | };
37 | })();
38 |
--------------------------------------------------------------------------------
/fixtures/generated/d3d9510b517b46bda8b7d563d09d6453.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "accept-ranges": "bytes",
5 | "cache-control": "max-age=0",
6 | "content-disposition": "inline; filename=\"BankFraudDetection.adoc.txt\"; filename*=UTF-8''BankFraudDetection.adoc.txt",
7 | "content-type": "text/plain; charset=utf-8",
8 | "date": "Fri, 01 May 2015 16:52:39 GMT",
9 | "etag": "473089n",
10 | "pragma": "public",
11 | "server": "nginx",
12 | "set-cookie": [
13 | "uc_session=jpZW5S9Wj3QrvmwzdlYtbzCxorq3JsSVtY1mceOsoww1vNhpC5uf2VEIKLj51fLV; Domain=dropboxusercontent.com; httponly; Path=/; secure"
14 | ],
15 | "x-dropbox-request-id": "ac6cd0ab328dc88dff4fca1665741097",
16 | "x-robots-tag": "noindex, nofollow, noimageindex",
17 | "x-server-response-time": "188",
18 | "content-length": "8883",
19 | "connection": "keep-alive"
20 | },
21 | "url": "https://dl.dropboxusercontent.com:443/s/vhtxfibv7ycstrv/BankFraudDetection.adoc.txt?dl=0",
22 | "time": 1193,
23 | "request": {
24 | "method": "GET",
25 | "headers": {
26 | "accept": "text/plain",
27 | "host": "dl.dropboxusercontent.com"
28 | }
29 | }
30 | }
--------------------------------------------------------------------------------
/web/dist/assets/lib/bootstrap/config.json:
--------------------------------------------------------------------------------
1 | {
2 | "vars": {},
3 | "css": [
4 | "print.less",
5 | "type.less",
6 | "code.less",
7 | "grid.less",
8 | "tables.less",
9 | "forms.less",
10 | "buttons.less",
11 | "glyphicons.less",
12 | "button-groups.less",
13 | "input-groups.less",
14 | "navs.less",
15 | "navbar.less",
16 | "breadcrumbs.less",
17 | "pagination.less",
18 | "pager.less",
19 | "labels.less",
20 | "badges.less",
21 | "jumbotron.less",
22 | "thumbnails.less",
23 | "alerts.less",
24 | "progress-bars.less",
25 | "media.less",
26 | "list-group.less",
27 | "panels.less",
28 | "wells.less",
29 | "close.less",
30 | "dropdowns.less",
31 | "tooltip.less",
32 | "popovers.less",
33 | "modals.less",
34 | "carousel.less",
35 | "utilities.less",
36 | "responsive-utilities.less",
37 | "component-animations.less"
38 | ],
39 | "js": [
40 | "alert.js",
41 | "button.js",
42 | "carousel.js",
43 | "dropdown.js",
44 | "modal.js",
45 | "tooltip.js",
46 | "popover.js",
47 | "tab.js",
48 | "affix.js",
49 | "collapse.js",
50 | "scrollspy.js",
51 | "transition.js"
52 | ]
53 | }
--------------------------------------------------------------------------------
/api/models/swagger_models.js:
--------------------------------------------------------------------------------
1 | // module.exports = {
2 | // "Envelope":{
3 | // "id":"Envelope",
4 | // "properties":{
5 | // "response":[
6 | // "Domain",
7 | // "Gist",
8 | // "List[Domain]",
9 | // "List[Gist]",
10 | // ],
11 | // "responseTime":"integer",
12 | // "name":{
13 | // "type":"string"
14 | // }
15 | // }
16 | // },
17 | // "Count":{
18 | // "id":"Count",
19 | // "properties": {
20 | // "count":{
21 | // "type":"integer"
22 | // }
23 | // }
24 | // },
25 | // "Gist":{
26 | // "id":"Gist",
27 | // "properties":{
28 | // "id":{
29 | // "type":"integer"
30 | // },
31 | // "title":{
32 | // "type":"string"
33 | // },
34 | // "released":{
35 | // "type":"integer"
36 | // },
37 | // "url":{
38 | // "type":"string"
39 | // }
40 | // }
41 | // },
42 | // "Domain":{
43 | // "id":"Domain",
44 | // // "required": ["id"],
45 | // "properties":{
46 | // "id":{
47 | // "type":"string"
48 | // },
49 | // "name":{
50 | // "type":"string"
51 | // }
52 | // }
53 | // }
54 | // };
55 |
--------------------------------------------------------------------------------
/api/models/neo4j/gist.js:
--------------------------------------------------------------------------------
1 | // extracts just the data from the query results
2 |
3 | var _ = require('underscore');
4 |
5 | var Gist = module.exports = function (_node) {
6 | _(this).extend(_node.data);
7 | };
8 |
9 |
10 | Gist.prototype.genres = function (genre) {
11 | if (genre) {
12 | if (genre.name) {
13 | this.genre = genre;
14 | } else if (genre.data) {
15 | this.genre = _.extend(genre.data);
16 | }
17 | }
18 | return this.genre;
19 | };
20 |
21 | Gist.prototype.author = function (author) {
22 | if (author) {
23 | if (author.name) {
24 | this.author = author;
25 | } else if (author.data) {
26 | this.author = _.extend(author.data);
27 | }
28 | }
29 | return this.author;
30 | };
31 |
32 | Gist.prototype.writer = function (writer) {
33 | if (writer) {
34 | if (writer.name) {
35 | this.writer = writer;
36 | } else if (writer.data) {
37 | this.writer = _.extend(writer.data);
38 | }
39 | }
40 | return this.writer;
41 | };
42 |
43 | // Gist.prototype.actors = function (actor) {
44 | // if (actor) {
45 | // if (actor.name) {
46 | // this.actor = actor;
47 | // } else if (actor.data) {
48 | // this.actor = _.extend(actor.data);
49 | // }
50 | // }
51 | // return this.actor;
52 | // };
53 |
--------------------------------------------------------------------------------
/fixtures/generated/2314ebe8eee0641b0fca1fd061a4ada9.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "server": "nginx",
5 | "content-type": "text/plain",
6 | "content-length": "6253",
7 | "connection": "keep-alive",
8 | "keep-alive": "timeout=20",
9 | "access-control-allow-origin": "*",
10 | "access-control-allow-methods": "POST, GET, PUT, PATCH, DELETE, OPTIONS",
11 | "access-control-allow-headers": "X-AUTHORIZATION-ANON, X-AUTHORIZATION, X-CLIENT-VERSION, X-CLIENT-TYPE, X-CLIENT-OSVERSION, X-CLIENT-HWID, X-CLIENT-NAME, X-API-VERSION, X-REQUESTED-WITH, X-HTTP-METHOD-OVERRIDE, CONTENT-TYPE",
12 | "access-control-max-age": "1728000",
13 | "cache-control": "must-revalidate, post-check=0, pre-check=0, private",
14 | "date": "Fri, 01 May 2015 16:52:40 GMT",
15 | "content-disposition": "inline; filename=\"analysis.txt\"",
16 | "content-transfer-encoding": "binary",
17 | "pragma": "public",
18 | "last-modified": "Sun, 07 Dec 2014 14:52:44 GMT",
19 | "etag": "\"81755a666760050f2f7570f2f6251599\"",
20 | "x-content-type-options": "nosniff",
21 | "x-frame-options": "SAMEORIGIN"
22 | },
23 | "url": "https://copy.com:443/7MuhBZKFDsCIPNLp",
24 | "time": 1242,
25 | "request": {
26 | "method": "GET",
27 | "headers": {
28 | "accept": "text/plain",
29 | "host": "copy.com"
30 | }
31 | }
32 | }
--------------------------------------------------------------------------------
/fixtures/generated/71dd43c5a420dcd69e1e533fb4cf152f.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "server": "nginx",
5 | "content-type": "text/plain",
6 | "content-length": "6253",
7 | "connection": "keep-alive",
8 | "keep-alive": "timeout=20",
9 | "access-control-allow-origin": "*",
10 | "access-control-allow-methods": "POST, GET, PUT, PATCH, DELETE, OPTIONS",
11 | "access-control-allow-headers": "X-AUTHORIZATION-ANON, X-AUTHORIZATION, X-CLIENT-VERSION, X-CLIENT-TYPE, X-CLIENT-OSVERSION, X-CLIENT-HWID, X-CLIENT-NAME, X-API-VERSION, X-REQUESTED-WITH, X-HTTP-METHOD-OVERRIDE, CONTENT-TYPE",
12 | "access-control-max-age": "1728000",
13 | "cache-control": "must-revalidate, post-check=0, pre-check=0, private",
14 | "date": "Fri, 01 May 2015 16:52:41 GMT",
15 | "content-disposition": "inline; filename=\"analysis.txt\"",
16 | "content-transfer-encoding": "binary",
17 | "pragma": "public",
18 | "last-modified": "Sun, 07 Dec 2014 14:52:44 GMT",
19 | "etag": "\"81755a666760050f2f7570f2f6251599\"",
20 | "x-content-type-options": "nosniff",
21 | "x-frame-options": "SAMEORIGIN"
22 | },
23 | "url": "https://copy.com:443/7MuhBZKFDsCIPNLp/analysis.txt",
24 | "time": 1023,
25 | "request": {
26 | "method": "GET",
27 | "headers": {
28 | "accept": "text/plain",
29 | "host": "copy.com"
30 | }
31 | }
32 | }
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/angular-loader.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.6
3 | (c) 2010-2014 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(){'use strict';function d(a){return function(){var c=arguments[0],b,c="["+(a?a+":":"")+c+"] http://errors.angularjs.org/1.2.6/"+(a?a+"/":"")+c;for(b=1;b(b:Movie) RETURN DISTINCT a.name LIMIT 15
42 |
43 | MATCH (n:Person {name:""})
44 | SET n.name = ""
45 | RETURN n.name
46 |
47 |
48 | Sci-Fi - Entertainment
49 | Action - Mass Media
50 | Adventure - Data Science
51 | Fantasy - Finance
52 | Drama - Banking
53 |
54 | Action
55 | Mystery
56 |
57 |
58 | MATCH (uc:UseCase {usecase:""}}), (gist:Gist {title:""})
59 | CREATE (gist)-[r:HAS_USECASE]->(uc)
60 | RETURN type(r)
61 |
62 |
63 | //ADD KEEYWORDS :)
64 | MERGE (n:Keyword {name:"false identities"})
65 | WITH n
66 | MATCH (n), (gist:Gist {title:"Bank Fraud Detection"})
67 | MERGE (gist)-[:HAS_KEYWORD]->(n)
68 | RETURN n.name
--------------------------------------------------------------------------------
/scrape.rb:
--------------------------------------------------------------------------------
1 |
2 | require 'neo4j-core'
3 | require 'selenium-webdriver'
4 |
5 | session = Neo4j::Session.open(:server_db, ENV['NEO4J_URL'] || 'http://localhost:7474/')
6 |
7 | browser = Selenium::WebDriver.for :firefox
8 |
9 | begin
10 | session.query.match(gist: :Gist).where(gist: {poster_image: nil}).pluck('ID(gist)', 'gist.url').each do |id, url|
11 | puts "urlurl: #{url.inspect}"
12 | browser.navigate.to(url)
13 |
14 | begin
15 | wait = Selenium::WebDriver::Wait.new(:timeout => 10)
16 | begin
17 | wait.until do
18 | begin
19 | !browser.find_element(:css, 'div#content img').attribute('src').match(/loading\.gif$/)
20 | rescue Selenium::WebDriver::Error::StaleElementReferenceError
21 | true
22 | rescue Selenium::WebDriver::Error::NoSuchElementError
23 | browser.find_element(:css, 'div#content div.alert') rescue nil
24 | end
25 | end
26 |
27 | if image = browser.find_element(:css, 'div#content img')
28 | image_src = image.attribute('src')
29 |
30 | puts "#{url}: Setting poster_image: #{image_src}"
31 | session.query.match(gist: :Gist).where(gist: {neo_id: id}).set(gist: {poster_image: image_src}).exec if image_src
32 | end
33 | rescue Selenium::WebDriver::Error::TimeOutError
34 | puts "#{url}: Couldn't find element"
35 | end
36 | rescue Selenium::WebDriver::Error::NoSuchElementError
37 | puts "#{url}: Couldn't find element"
38 | end
39 | end
40 | ensure
41 | browser.close
42 | end
43 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | activesupport (4.1.7)
5 | i18n (~> 0.6, >= 0.6.9)
6 | json (~> 1.7, >= 1.7.7)
7 | minitest (~> 5.1)
8 | thread_safe (~> 0.1)
9 | tzinfo (~> 1.1)
10 | childprocess (0.5.5)
11 | ffi (~> 1.0, >= 1.0.11)
12 | faraday (0.9.0)
13 | multipart-post (>= 1.2, < 3)
14 | faraday_middleware (0.9.1)
15 | faraday (>= 0.7.4, < 0.10)
16 | ffi (1.9.6)
17 | httparty (0.13.3)
18 | json (~> 1.8)
19 | multi_xml (>= 0.5.2)
20 | httpclient (2.5.3.3)
21 | i18n (0.6.11)
22 | json (1.8.1)
23 | mini_portile (0.6.1)
24 | minitest (5.4.3)
25 | multi_json (1.10.1)
26 | multi_xml (0.5.5)
27 | multipart-post (2.0.0)
28 | neo4j-community (2.1.5)
29 | neo4j-core (3.0.8)
30 | activesupport
31 | faraday (~> 0.9.0)
32 | faraday_middleware (~> 0.9.1)
33 | httparty
34 | httpclient
35 | json
36 | neo4j-community (~> 2.1.1)
37 | net-http-persistent
38 | os
39 | zip
40 | net-http-persistent (2.9.4)
41 | nokogiri (1.6.4.1)
42 | mini_portile (~> 0.6.0)
43 | os (0.9.6)
44 | rubyzip (1.1.6)
45 | selenium-webdriver (2.44.0)
46 | childprocess (~> 0.5)
47 | multi_json (~> 1.0)
48 | rubyzip (~> 1.0)
49 | websocket (~> 1.0)
50 | thread_safe (0.3.4)
51 | tzinfo (1.2.2)
52 | thread_safe (~> 0.1)
53 | websocket (1.2.1)
54 | zip (2.0.2)
55 |
56 | PLATFORMS
57 | ruby
58 |
59 | DEPENDENCIES
60 | neo4j-core
61 | nokogiri
62 | selenium-webdriver
63 |
--------------------------------------------------------------------------------
/api/views/user.jade:
--------------------------------------------------------------------------------
1 | extends layout
2 |
3 | block content
4 | h1 #{user.name}
5 |
6 | p
7 | a(href='/users') Back to everyone
8 |
9 | if following.length
10 | p #{user.name} is following #{following.length} users:
11 | // TODO should say 'user' if only one! ;)
12 | ul.users
13 | for other in following
14 | li.user
15 | form(action='/users/#{user.id}/unfollow', method='POST')
16 | a(href='/users/#{other.id}') #{other.name}
17 | input(type='hidden', name='user[id]', value='#{other.id}')
18 | input(type='submit', class='unfollow', value='x')
19 | else
20 | p #{user.name} isn't following anyone currently.
21 |
22 | if others.length
23 | form(action='/users/#{user.id}/follow', method='POST')
24 | p Add someone for #{user.name} to follow:
25 | label
26 | select(name='user[id]', required)
27 | option(value='')
28 | for user in others
29 | option(value='#{user.id}') #{user.name}
30 | input(type='submit', value='Follow')
31 | else
32 | p There's no one else left for #{user.name} to follow!
33 |
34 | form(action='/users/#{user.id}', method='POST')
35 | p Edit this user:
36 | input(type='text', name='name', placeholder='#{user.name}', required)
37 | input(type='submit', value='Update')
38 |
39 | form(action='/users/#{user.id}', method='POST', onsubmit='return confirm("Are you sure?");')
40 | p And if you're feeling destructive…
41 | input(type='hidden', name='_method', value='DELETE')
42 | input(type='submit', value='Delete User')
--------------------------------------------------------------------------------
/web/dist/assets/partials/gist-manage-gist.html.jade:
--------------------------------------------------------------------------------
1 | a.btn.btn-default(ng-href="/#!/gists/{{gist.id}}/summary") Summary
2 | a.btn.btn-default(ng-href="/#!/gists/{{gist.id}}") Content
3 | a.btn.btn-default(ng-href="http://graphgist-meta-model.herokuapp.com/gists/{{gist.id}}", target="_blank") Meta Model
4 |
5 | form(ng-submit="submit()", role="form").form-horizontal
6 |
7 | div.form-group
8 | label(for="title").col-sm-2.control-label Title
9 | div.col-sm-10
10 | input(type="text", id="title", ng-model="gist.title").form-control
11 |
12 | div.form-group
13 | label(for="url").col-sm-2.control-label URL
14 | div.col-sm-10
15 | input(type="text", id="url", ng-model="gist.url").form-control
16 |
17 | div.form-group
18 | label(for="poster_image").col-sm-2.control-label Poster Image URL
19 | div.col-sm-8
20 | input(type="text", id="poster_image", ng-model="gist.poster_image").form-control
21 | div.col-sm-2
22 | img(ng-src="{{gist.poster_image}}", style="max-height: 50px")
23 |
24 | div.form-group
25 | label(for="summary").col-sm-2.control-label Summary
26 | div.col-sm-10
27 | textarea(id="summary", ng-model="gist.summary", rows=5).form-control
28 |
29 | div.form-group
30 | label(for="status").col-sm-2.control-label Status
31 | div.col-sm-10
32 | select(id="status", ng-model="gist.status", ng-options="option for option in ['live', 'disabled', 'candidate']", rows=5).form-control
33 |
34 | div.form-group
35 | label(for="featured").col-sm-2.control-label Featured?
36 | div.col-sm-10
37 | input(type="checkbox", ng-model="gist.featured").form-control
38 |
39 |
40 | div.form-group
41 | label(for="status").col-sm-2.control-label
42 | div.col-sm-10
43 | input(type="submit" value="Update")
44 |
45 |
--------------------------------------------------------------------------------
/fixtures/generated/85f141d6f9fde9f244ec77e51b6a3a8f.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "server": "GitHub.com",
5 | "date": "Fri, 01 May 2015 16:52:37 GMT",
6 | "content-type": "application/json; charset=utf-8",
7 | "content-length": "56899",
8 | "status": "200 OK",
9 | "x-ratelimit-limit": "5000",
10 | "x-ratelimit-remaining": "4987",
11 | "x-ratelimit-reset": "1430502150",
12 | "cache-control": "private, max-age=60, s-maxage=60",
13 | "last-modified": "Wed, 29 Apr 2015 16:31:21 GMT",
14 | "etag": "\"636ca132fdf2138a249d9b82da97437a\"",
15 | "x-oauth-scopes": "",
16 | "x-accepted-oauth-scopes": "",
17 | "vary": "Accept, Authorization, Cookie, X-GitHub-OTP",
18 | "x-github-media-type": "github.v3",
19 | "x-xss-protection": "1; mode=block",
20 | "x-frame-options": "deny",
21 | "content-security-policy": "default-src 'none'",
22 | "access-control-allow-credentials": "true",
23 | "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval",
24 | "access-control-allow-origin": "*",
25 | "x-github-request-id": "6C3DE20C:0BFE:7E1751:5543AF54",
26 | "strict-transport-security": "max-age=31536000; includeSubdomains; preload",
27 | "x-content-type-options": "nosniff",
28 | "x-served-by": "d594a23ec74671eba905bf91ef329026"
29 | },
30 | "url": "https://api.github.com:443/gists/6009066",
31 | "time": 1393,
32 | "request": {
33 | "method": "GET",
34 | "headers": {
35 | "User-Agent": "neo4j.org",
36 | "host": "api.github.com",
37 | "authorization": "Basic Mjc5NTgxZjM5NzAxZGRiZDVhZTIzNGZlMmVmZTk4NDBjY2ZjOTliMzp4LW9hdXRoLWJhc2lj",
38 | "accept": "application/json"
39 | }
40 | }
41 | }
--------------------------------------------------------------------------------
/fixtures/generated/2a25a0060e9536f55d91c9d2a69702e9.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "server": "GitHub.com",
5 | "date": "Fri, 01 May 2015 16:52:38 GMT",
6 | "content-type": "application/json; charset=utf-8",
7 | "content-length": "30609",
8 | "status": "200 OK",
9 | "x-ratelimit-limit": "5000",
10 | "x-ratelimit-remaining": "4986",
11 | "x-ratelimit-reset": "1430502150",
12 | "cache-control": "private, max-age=60, s-maxage=60",
13 | "last-modified": "Mon, 30 Jun 2014 18:17:57 GMT",
14 | "etag": "\"91b2fa079e7b59da8d51b36563fee58c\"",
15 | "x-oauth-scopes": "",
16 | "x-accepted-oauth-scopes": "",
17 | "vary": "Accept, Authorization, Cookie, X-GitHub-OTP",
18 | "x-github-media-type": "github.v3",
19 | "x-xss-protection": "1; mode=block",
20 | "x-frame-options": "deny",
21 | "content-security-policy": "default-src 'none'",
22 | "access-control-allow-credentials": "true",
23 | "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval",
24 | "access-control-allow-origin": "*",
25 | "x-github-request-id": "6C3DE20C:0C0B:708387D:5543AF55",
26 | "strict-transport-security": "max-age=31536000; includeSubdomains; preload",
27 | "x-content-type-options": "nosniff",
28 | "x-served-by": "8dd185e423974a7e13abbbe6e060031e"
29 | },
30 | "url": "https://api.github.com:443/repos/whatSocks/jobSNV/contents/socialNetworks.adoc?ref=master",
31 | "time": 967,
32 | "request": {
33 | "method": "GET",
34 | "headers": {
35 | "User-Agent": "neo4j.org",
36 | "host": "api.github.com",
37 | "authorization": "Basic Mjc5NTgxZjM5NzAxZGRiZDVhZTIzNGZlMmVmZTk4NDBjY2ZjOTliMzp4LW9hdXRoLWJhc2lj",
38 | "accept": "application/json"
39 | }
40 | }
41 | }
--------------------------------------------------------------------------------
/fixtures/generated/022c46df53e1611434c21059dbb6f1f5.headers:
--------------------------------------------------------------------------------
1 | {
2 | "statusCode": 200,
3 | "headers": {
4 | "server": "GitHub.com",
5 | "date": "Fri, 01 May 2015 16:52:42 GMT",
6 | "content-type": "application/json; charset=utf-8",
7 | "content-length": "20660",
8 | "status": "200 OK",
9 | "x-ratelimit-limit": "5000",
10 | "x-ratelimit-remaining": "4985",
11 | "x-ratelimit-reset": "1430502150",
12 | "cache-control": "private, max-age=60, s-maxage=60",
13 | "last-modified": "Mon, 25 Nov 2013 21:55:45 GMT",
14 | "etag": "\"2d0019f8f385529f01e9695f511db6a7\"",
15 | "x-oauth-scopes": "",
16 | "x-accepted-oauth-scopes": "",
17 | "vary": "Accept, Authorization, Cookie, X-GitHub-OTP",
18 | "x-github-media-type": "github.v3",
19 | "x-xss-protection": "1; mode=block",
20 | "x-frame-options": "deny",
21 | "content-security-policy": "default-src 'none'",
22 | "access-control-allow-credentials": "true",
23 | "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval",
24 | "access-control-allow-origin": "*",
25 | "x-github-request-id": "6C3DE20C:0C0A:6B78781:5543AF5A",
26 | "strict-transport-security": "max-age=31536000; includeSubdomains; preload",
27 | "x-content-type-options": "nosniff",
28 | "x-served-by": "13d09b732ebe76f892093130dc088652"
29 | },
30 | "url": "https://api.github.com:443/repos/kbastani/gists/contents/meta/TimeScaleEventMetaModel.adoc?ref=master",
31 | "time": 963,
32 | "request": {
33 | "method": "GET",
34 | "headers": {
35 | "User-Agent": "neo4j.org",
36 | "host": "api.github.com",
37 | "authorization": "Basic Mjc5NTgxZjM5NzAxZGRiZDVhZTIzNGZlMmVmZTk4NDBjY2ZjOTliMzp4LW9hdXRoLWJhc2lj",
38 | "accept": "application/json"
39 | }
40 | }
41 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "neo4j-graphgist-cms",
3 | "version": "0.1.0",
4 | "author": {
5 | "name": "Kenny Bastani",
6 | "email": "kenny.bastani@neotechnology.com",
7 | "url": "https://github.com/kbastani"
8 | },
9 | "description": "Node neo4j api server using express and swagger, created by Mat Tyndal @theflipside",
10 | "repository": {
11 | "type": "git",
12 | "url": "https://github.com/neo4j-contrib/graphgist-cms"
13 | },
14 | "keywords": [
15 | "node",
16 | "neo4j",
17 | "express",
18 | "jade",
19 | "api",
20 | "http",
21 | "rest",
22 | "swagger",
23 | "server"
24 | ],
25 | "engines": {
26 | "node": "0.10.x",
27 | "npm": "1.2.x"
28 | },
29 | "dependencies": {
30 | "connect": ">= 3.3.x",
31 | "compression": ">= 1.4.x",
32 | "static-expiry": "0.0.10",
33 | "express": "3.x",
34 | "jade": ">=0.26.3",
35 | "neo4j": "1.1.1",
36 | "underscore": ">=1.3.1",
37 | "underscore.string": ">=2.3.3",
38 | "swagger-node-express": "mgutz/swagger-node-express#action-pipeline",
39 | "neo4j-swagger-ui": ">=0.0.11",
40 | "colors": "0.6.x",
41 | "async": ">=0.2.9",
42 | "moment": ">=2.4.0",
43 | "hat": ">=0.0.3",
44 | "mocha": ">= 1.6.0",
45 | "should": ">= 0.6.3",
46 | "random-name": ">=0.1.0",
47 | "node-phantom": "~0.2.5",
48 | "socket.io": "0.9.16",
49 | "asciidoctor.js": "1.5.x",
50 |
51 | "rollbar": "0.4.4",
52 |
53 | "request": "2.51.x",
54 | "js-base64":"2.1.5",
55 | "mocha":"2.1.0",
56 | "should":"4.6.2",
57 | "sepia":"1.0.4",
58 |
59 | "gulp":"3.8.10",
60 | "gulp-watch":"4.1.1",
61 | "gulp-concat":"2.4.3",
62 | "gulp-uglify":"1.1.0",
63 | "gulp-sourcemaps":"1.3.0",
64 |
65 | "jsdom":"3.1.x",
66 |
67 | "nodemailer":"1.10.0",
68 | "nodemailer-mandrill-transport":""
69 | },
70 | "scripts": {
71 | "test": "mocha"
72 | },
73 | "license": "MIT"
74 | }
75 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/owl-carousel/owl.theme.css:
--------------------------------------------------------------------------------
1 | /*
2 | * Owl Carousel Owl Demo Theme
3 | * v1.24
4 | */
5 |
6 | .owl-theme .owl-controls{
7 | margin-top: 10px;
8 | text-align: center;
9 | }
10 |
11 | /* Styling Next and Prev buttons */
12 |
13 | .owl-theme .owl-controls .owl-buttons div{
14 | color: #FFF;
15 | display: inline-block;
16 | zoom: 1;
17 | *display: inline;/*IE7 life-saver */
18 | margin: 5px;
19 | padding: 3px 10px;
20 | font-size: 12px;
21 | -webkit-border-radius: 30px;
22 | -moz-border-radius: 30px;
23 | border-radius: 30px;
24 | background: #869791;
25 | filter: Alpha(Opacity=50);/*IE7 fix*/
26 | opacity: 0.5;
27 | }
28 | /* Clickable class fix problem with hover on touch devices */
29 | /* Use it for non-touch hover action */
30 | .owl-theme .owl-controls.clickable .owl-buttons div:hover{
31 | filter: Alpha(Opacity=100);/*IE7 fix*/
32 | opacity: 1;
33 | text-decoration: none;
34 | }
35 |
36 | /* Styling Pagination*/
37 |
38 | .owl-theme .owl-controls .owl-page{
39 | display: inline-block;
40 | zoom: 1;
41 | *display: inline;/*IE7 life-saver */
42 | }
43 | .owl-theme .owl-controls .owl-page span{
44 | display: block;
45 | width: 12px;
46 | height: 12px;
47 | margin: 5px 7px;
48 | filter: Alpha(Opacity=50);/*IE7 fix*/
49 | opacity: 0.5;
50 | -webkit-border-radius: 20px;
51 | -moz-border-radius: 20px;
52 | border-radius: 20px;
53 | background: #869791;
54 | }
55 |
56 | .owl-theme .owl-controls .owl-page.active span,
57 | .owl-theme .owl-controls.clickable .owl-page:hover span{
58 | filter: Alpha(Opacity=100);/*IE7 fix*/
59 | opacity: 1;
60 | }
61 |
62 | /* If PaginationNumbers is true */
63 |
64 | .owl-theme .owl-controls .owl-page span.owl-numbers{
65 | height: auto;
66 | width: auto;
67 | color: #FFF;
68 | padding: 2px 10px;
69 | font-size: 12px;
70 | -webkit-border-radius: 30px;
71 | -moz-border-radius: 30px;
72 | border-radius: 30px;
73 | }
74 |
75 | /* preloading images */
76 | .owl-item.loading{
77 | min-height: 150px;
78 | background: url(AjaxLoader.gif) no-repeat center center
79 | }
--------------------------------------------------------------------------------
/web/dist/assets/partials/domains-detail.html.jade:
--------------------------------------------------------------------------------
1 | .container.hidden-content(ng-model='gist')
2 | .row
3 | div
4 | ol.breadcrumb
5 | li
6 | a(href='#') Home
7 | |
8 | li
9 | a(href='#') Tags
10 | |
11 | li.active {{domain.name}}
12 |
13 | .row
14 | .row
15 | .col-md-12
16 | h3.content-title {{domain.name}}
17 | |
18 | .row
19 | .col-md-12
20 | span(ng-show='domain.heading!=null')
21 | .panel.panel-default
22 | // Default panel contents
23 | .panel-heading
24 | h4
25 | i {{domain.heading}}
26 | |
27 | |
28 | ul.list-group.list-group-details
29 | .panel-heading
30 | | {{domain.description}}
31 | br
32 | br
33 | |
34 | ul
35 | div(ng-repeat='point in domain.list')
36 | li {{point.toString()}}
37 | br
38 | | {{domain.description2}}
39 | |
40 | .row
41 | br
42 | |
43 | .item-label.col-md-12.brand
44 | a#gist-link(ng-href='{{domain.url}}') Read More >
45 | |
46 | .panel.panel-default
47 | .panel-heading GraphGists
48 | |
49 | .panel-body
50 | #gist-list
51 | a.thumbnail.gist.col-xs-12.col-sm-6.col-md-4.col-lg-3(ng-repeat="gist in domain.related_gists", href="/#!/gists/{{gist.id}}/summary")
52 | img(src="{{gist | posterImage}}")
53 | .caption
54 | h3 {{gist.title}}
55 |
56 | |
57 | .clearfix.visible-xs
58 |
59 |
60 |
--------------------------------------------------------------------------------
/api/README.md:
--------------------------------------------------------------------------------
1 | node-neo4j-swagger-api
2 | =====================
3 |
4 | This is an open source node neo4j api server based on node-neo4j-template and swagger-node-express
5 |
6 | The idea is to make it as easy as possible to create an api using node and neo4j that can be consumed by some other app. Swagger provides interactive documentation so that it is easy to interact with the API. The goal is merge swagger and neo4j gist together (vizualizations!) so developers can see how neo4j and the api calls relate to each other.
7 |
8 |
9 | Try it out at http://neo4j-swagger.tinj.com/docs
10 |
11 |
12 | node-neo4j-template
13 | https://github.com/aseemk/node-neo4j-template/
14 |
15 |
16 | Swagger-Node-Express
17 | https://github.com/wordnik/swagger-node-express
18 |
19 | Swagger
20 | https://developers.helloreverb.com/swagger/
21 |
22 | graphgist
23 | https://github.com/neo4j-contrib/graphgist/
24 |
25 |
26 | Built focusing on using Cypher and Neo4j 2.0RC1
27 |
28 | 
29 |
30 |
31 | Start
32 | clone
33 | npm install
34 | have a neo4j server up at localhost:7474 or NEO4J_URL specified in .env
35 | node app.js
36 | http://localhost:3000/docs
37 |
38 |
39 | TODO
40 |
41 | I'm using Trello for my todo list, feel free to comment!
42 |
43 | https://trello.com/b/kelJzC12/neo4j-swagger
44 |
45 | 1. Move neo4j queries and results to swagger client
46 | 2. Add graph visualization to swagger
47 | 3. improve swagger model format
48 | 4. pull out neo4j-swagger client, cypher helpers, and mixins into separate modules
49 | 5. finish implementing basic queries for users
50 | 6. add second node type (pets?)
51 | 7. add queries relating users and pets
52 | 8. TESTS!!!
53 | 9. ...
54 |
55 |
56 | More details about goals
57 | So basically, swagger creates interactive api docs, which is great but i also want to see what's going on with neo4j at the same time
58 |
59 | the idea is to pass raw query/results optionally in api responses which could be visualized on the swagger client along side the api results
60 |
61 | end result being i can see what neo4j and my api are doing side by side in the web client so i can stop debugging in the console
62 |
63 |
64 |
65 |
66 | MIT License
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_ms.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "PG",
8 | "PTG"
9 | ],
10 | "DAY": [
11 | "Ahad",
12 | "Isnin",
13 | "Selasa",
14 | "Rabu",
15 | "Khamis",
16 | "Jumaat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Mac",
23 | "April",
24 | "Mei",
25 | "Jun",
26 | "Julai",
27 | "Ogos",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Disember"
32 | ],
33 | "SHORTDAY": [
34 | "Ahd",
35 | "Isn",
36 | "Sel",
37 | "Rab",
38 | "Kha",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ogos",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd/MM/yyyy h:mm:ss a",
59 | "mediumDate": "dd/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "RM",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "ms",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_ms-my.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "PG",
8 | "PTG"
9 | ],
10 | "DAY": [
11 | "Ahad",
12 | "Isnin",
13 | "Selasa",
14 | "Rabu",
15 | "Khamis",
16 | "Jumaat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Mac",
23 | "April",
24 | "Mei",
25 | "Jun",
26 | "Julai",
27 | "Ogos",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Disember"
32 | ],
33 | "SHORTDAY": [
34 | "Ahd",
35 | "Isn",
36 | "Sel",
37 | "Rab",
38 | "Kha",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ogos",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd/MM/yyyy h:mm:ss a",
59 | "mediumDate": "dd/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "RM",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "ms-my",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_id.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Maret",
23 | "April",
24 | "Mei",
25 | "Juni",
26 | "Juli",
27 | "Agustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "Min",
35 | "Sen",
36 | "Sel",
37 | "Rab",
38 | "Kam",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Agt",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE, dd MMMM yyyy",
57 | "longDate": "d MMMM yyyy",
58 | "medium": "d MMM yyyy HH:mm:ss",
59 | "mediumDate": "d MMM yyyy",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yy HH:mm",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "Rp",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4-",
90 | "negSuf": "",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "id",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_in.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Maret",
23 | "April",
24 | "Mei",
25 | "Juni",
26 | "Juli",
27 | "Agustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "Min",
35 | "Sen",
36 | "Sel",
37 | "Rab",
38 | "Kam",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Agt",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE, dd MMMM yyyy",
57 | "longDate": "d MMMM yyyy",
58 | "medium": "d MMM yyyy HH:mm:ss",
59 | "mediumDate": "d MMM yyyy",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yy HH:mm",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "Rp",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4-",
90 | "negSuf": "",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "in",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_id-id.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Maret",
23 | "April",
24 | "Mei",
25 | "Juni",
26 | "Juli",
27 | "Agustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "Min",
35 | "Sen",
36 | "Sel",
37 | "Rab",
38 | "Kam",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Agt",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE, dd MMMM yyyy",
57 | "longDate": "d MMMM yyyy",
58 | "medium": "d MMM yyyy HH:mm:ss",
59 | "mediumDate": "d MMM yyyy",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yy HH:mm",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "Rp",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4-",
90 | "negSuf": "",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "id-id",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/angular-cookies.min.js.map:
--------------------------------------------------------------------------------
1 | {
2 | "version":3,
3 | "file":"angular-cookies.min.js",
4 | "lineCount":7,
5 | "mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAoBtCD,CAAAE,OAAA,CAAe,WAAf,CAA4B,CAAC,IAAD,CAA5B,CAAAC,QAAA,CA4BW,UA5BX,CA4BuB,CAAC,YAAD,CAAe,UAAf,CAA2B,QAAS,CAACC,CAAD,CAAaC,CAAb,CAAuB,CAAA,IACxEC,EAAU,EAD8D,CAExEC,EAAc,EAF0D,CAGxEC,CAHwE,CAIxEC,EAAU,CAAA,CAJ8D,CAKxEC,EAAOV,CAAAU,KALiE,CAMxEC,EAAcX,CAAAW,YAGlBN,EAAAO,UAAA,CAAmB,QAAQ,EAAG,CAC5B,IAAIC,EAAiBR,CAAAC,QAAA,EACjBE,EAAJ,EAA0BK,CAA1B,GACEL,CAGA,CAHqBK,CAGrB,CAFAH,CAAA,CAAKG,CAAL,CAAqBN,CAArB,CAEA,CADAG,CAAA,CAAKG,CAAL,CAAqBP,CAArB,CACA,CAAIG,CAAJ,EAAaL,CAAAU,OAAA,EAJf,CAF4B,CAA9B,CAAA,EAUAL,EAAA,CAAU,CAAA,CAKVL,EAAAW,OAAA,CASAC,QAAa,EAAG,CAAA,IACVC,CADU,CAEVC,CAFU,CAIVC,CAGJ,KAAKF,CAAL,GAAaV,EAAb,CACMI,CAAA,CAAYL,CAAA,CAAQW,CAAR,CAAZ,CAAJ,EACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBhB,CAAvB,CAKJ,KAAIgB,CAAJ,GAAYX,EAAZ,CAEE,CADAY,CACK,CADGZ,CAAA,CAAQW,CAAR,CACH,CAAAjB,CAAAoB,SAAA,CAAiBF,CAAjB,CAAL,EAMWA,CANX,GAMqBX,CAAA,CAAYU,CAAZ,CANrB,GAOEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBC,CAAvB,CACA,CAAAC,CAAA,CAAU,CAAA,CARZ,EACMnB,CAAAqB,UAAA,CAAkBd,CAAA,CAAYU,CAAZ,CAAlB,CAAJ,CACEX,CAAA,CAAQW,CAAR,CADF,CACkBV,CAAA,CAAYU,CAAZ,CADlB,CAGE,OAAOX,CAAA,CAAQW,CAAR,CASb,IAAIE,CAAJ,CAIE,IAAKF,CAAL,GAFAK,EAEahB,CAFID,CAAAC,QAAA,EAEJA,CAAAA,CAAb,CACMA,CAAA,CAAQW,CAAR,CAAJ,GAAsBK,CAAA,CAAeL,CAAf,CAAtB,GAEMN,CAAA,CAAYW,CAAA,CAAeL,CAAf,CAAZ,CAAJ,CACE,OAAOX,CAAA,CAAQW,CAAR,CADT,CAGEX,CAAA,CAAQW,CAAR,CAHF,CAGkBK,CAAA,CAAeL,CAAf,CALpB,CAlCU,CAThB,CAEA;MAAOX,EA1BqE,CAA3D,CA5BvB,CAAAH,QAAA,CA4HW,cA5HX,CA4H2B,CAAC,UAAD,CAAa,QAAQ,CAACoB,CAAD,CAAW,CAErD,MAAO,KAYAC,QAAQ,CAACC,CAAD,CAAM,CAEjB,MAAO,CADHP,CACG,CADKK,CAAA,CAASE,CAAT,CACL,EAAQzB,CAAA0B,SAAA,CAAiBR,CAAjB,CAAR,CAAkCA,CAFxB,CAZd,KA4BAS,QAAQ,CAACF,CAAD,CAAMP,CAAN,CAAa,CACxBK,CAAA,CAASE,CAAT,CAAA,CAAgBzB,CAAA4B,OAAA,CAAeV,CAAf,CADQ,CA5BrB,QA0CGW,QAAQ,CAACJ,CAAD,CAAM,CACpB,OAAOF,CAAA,CAASE,CAAT,CADa,CA1CjB,CAF8C,CAAhC,CA5H3B,CApBsC,CAArC,CAAA,CAoME1B,MApMF,CAoMUA,MAAAC,QApMV;",
6 | "sources":["angular-cookies.js"],
7 | "names":["window","angular","undefined","module","factory","$rootScope","$browser","cookies","lastCookies","lastBrowserCookies","runEval","copy","isUndefined","addPollFn","currentCookies","$apply","$watch","push","name","value","updated","isString","isDefined","browserCookies","$cookies","get","key","fromJson","put","toJson","remove"]
8 | }
9 |
--------------------------------------------------------------------------------
/web/dist/assets/css/datatable.css:
--------------------------------------------------------------------------------
1 | table.dataTable {
2 | /*
3 | clear: both;
4 | */
5 | color: black;
6 | border: 1px solid #bbbbbb;
7 | /*max-width: 75%;*/
8 | /*min-width: 50%;*/
9 | /*
10 | padding: 5px;
11 | min-width: 50%;
12 | */
13 | }
14 |
15 | table.dataTable thead {
16 | /* border-bottom: 2px dashed white;*/
17 | }
18 |
19 | table.dataTable th, .dataTable td {
20 | /* border-right: 2px dashed white;*/
21 | padding: 5px;
22 | }
23 |
24 | table.dataTable th {
25 | /* border-bottom: 2px dashed white;*/
26 | }
27 |
28 | table.dataTable .odd {
29 | background: #f2f2f2;
30 | }
31 |
32 | .dataTables_wrapper {
33 | margin: 1.5em 0;
34 | z-index: 100;
35 | }
36 |
37 | .dataTables_length {
38 | float: left;
39 | }
40 |
41 | .dataTables_filter {
42 | text-align: right;
43 | }
44 |
45 | .dataTables_info {
46 | float: left;
47 | margin: 3px;
48 | }
49 |
50 | .dataTables_paginate {
51 | margin: 3px;
52 | text-align: right;
53 | }
54 |
55 | .paging_two_button {
56 |
57 | }
58 |
59 | .paginate_disabled_previous, .paginate_disabled_next {
60 | display: none;
61 | padding: 3px;
62 | }
63 |
64 | .paginate_enabled_previous, .paginate_enabled_next {
65 | padding: 3px;
66 | color: #090
67 | }
68 |
69 | table.dataTable .css_right {
70 | float: right;
71 | }
72 |
73 | .sorting_asc {
74 | background: url('http://gist.neo4j.org/images/sort_asc.png') no-repeat center right;
75 | }
76 |
77 | .sorting_desc {
78 | background: url('http://gist.neo4j.org/images/sort_desc.png') no-repeat center right;
79 | }
80 |
81 | .sorting {
82 | background: url('http://gist.neo4j.org/images/sort_both.png') no-repeat center right;
83 | }
84 |
85 | .sorting_asc_disabled {
86 | background: url('http://gist.neo4j.org/images/sort_asc_disabled.png') no-repeat center right;
87 | }
88 |
89 | .sorting_desc_disabled {
90 | background: url('http://gist.neo4j.org/images/sort_desc_disabled.png') no-repeat center right;
91 | }
92 |
93 | .result-table input, .result-table select {
94 | width: auto !important;
95 | }
96 |
97 | .navbar .label.tooltip-below {
98 | line-height: 25px;
99 | margin-right: 5px;
100 | margin-top: 5px;
101 | }
102 |
103 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-be.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMM y",
58 | "medium": "dd MMM y HH:mm:ss",
59 | "mediumDate": "dd MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yy HH:mm",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-be",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-bz.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd-MMM-y HH:mm:ss",
59 | "mediumDate": "dd-MMM-y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yy HH:mm",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-bz",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-as.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-as",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-bb.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-bb",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-bm.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-bm",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-fm.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-fm",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-gu.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-gu",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-gy.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-gy",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-hk.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM, y",
57 | "longDate": "d MMMM, y",
58 | "medium": "d MMM, y h:mm:ss a",
59 | "mediumDate": "d MMM, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/M/yy h:mm a",
62 | "shortDate": "d/M/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-hk",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-jm.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/M/yy h:mm a",
62 | "shortDate": "d/M/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-jm",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-mh.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-mh",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-mp.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-mp",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-mu.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-mu",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-na.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-na",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-ph.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-ph",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-pk.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd-MMM-y h:mm:ss a",
59 | "mediumDate": "dd-MMM-y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yy h:mm a",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-pk",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-pr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-pr",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-pw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-pw",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-sg.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM, y",
57 | "longDate": "d MMMM, y",
58 | "medium": "d MMM, y h:mm:ss a",
59 | "mediumDate": "d MMM, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/M/yy h:mm a",
62 | "shortDate": "d/M/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-sg",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-tc.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-tc",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-tt.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-tt",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-um.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-um",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-us.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-us",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-vg.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-vg",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-vi.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, MMMM d, y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "M/d/yy h:mm a",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-vi",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ============================
2 | Neo4j GraphGist Browser
3 | ============================
4 |
5 | This repository is a GraphGist content browser powered by Neo4j. All GraphGist content is consumed from a Neo4j REST API endpoint built using Neo4j Swagger.
6 |
7 | * Neo4j: http://neo4j.com/download/
8 | * Swagger: http://neo4j-swagger.tinj.com/
9 | * Node.js: http://nodejs.org/
10 | * Bootstrap: http://getbootstrap.com/
11 | * Angular.js: http://angularjs.org/
12 |
13 | 
14 |
15 | ## Prerequisites
16 |
17 | * An instance of Neo4j (`>=2.0.3`) running locally - [http://www.neo4j.org/download](http://neo4j.com/download/)
18 | * Installed `node.js` and `npm` on your machine
19 |
20 | ## Usage
21 |
22 | Follow the directions below for each component of the platform.
23 |
24 | ### Database
25 |
26 | * Extract the Neo4j store files located in `database/graph.db.zip` to your Neo4j data directory `neo4j/data`
27 | * Start the Neo4j server (either at `http://localhost:7474` or use the `NEO4J_URL` environment variable)
28 |
29 | ### GraphGist API
30 |
31 | * From the terminal, go to the `graphgist-cms` project directory and run `npm install`. After `node_modules` are installed, run `node listen`. The GraphGist web site will be started at `http://localhost:5000`
32 |
33 | ### Development
34 |
35 | #### Codeship
36 |
37 | This project is deployed via Codeship to Heroku. To deploy, do NOT push to Heroku directly, but rather simply push to Github and Codeship will deploy (if the specs pass)
38 |
39 | #### Client-side Javascript
40 |
41 | The client side is minified and concatenated using gulp.js. If you make any changes to client-side javascripts you need to run this process for your changes to take effect. This can be done with the command:
42 |
43 | gulp scripts
44 |
45 | You may need to either add `./node_modules/.bin` to your `$PATH` or run `./node_modules/.bin/gulp scripts`
46 |
47 | #### Specs
48 |
49 | This application has some tests written with mocha.js under the `test/` directory.
50 |
51 | To run the specs:
52 |
53 | npm test
54 |
55 | Also, since some of these specs connect to various internet sites (to test the downloading of graphgists), the `sepia` package is used to record these HTTP interactions as test fixtures. Consult the `sepia` package for details
56 |
57 |
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_af-na.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "MONTH": [
20 | "Januarie",
21 | "Februarie",
22 | "Maart",
23 | "April",
24 | "Mei",
25 | "Junie",
26 | "Julie",
27 | "Augustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "So",
35 | "Ma",
36 | "Di",
37 | "Wo",
38 | "Do",
39 | "Vr",
40 | "Sa"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "yyyy-MM-dd HH:mm",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": "\u00a0",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "af-na",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-au.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd/MM/yyyy h:mm:ss a",
59 | "mediumDate": "dd/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-au",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-bw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "MMM d, y h:mm:ss a",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yy h:mm a",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-bw",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-gb.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd/MM/yyyy HH:mm",
62 | "shortDate": "dd/MM/yyyy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u00a3",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4-",
90 | "negSuf": "",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-gb",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-iso.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, y MMMM dd",
57 | "longDate": "y MMMM d",
58 | "medium": "y MMM d HH:mm:ss",
59 | "mediumDate": "y MMM d",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "yyyy-MM-dd HH:mm",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-iso",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-nz.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d/MM/yyyy h:mm:ss a",
59 | "mediumDate": "d/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-nz",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-zw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd MMM,y h:mm:ss a",
59 | "mediumDate": "dd MMM,y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/M/yyyy h:mm a",
62 | "shortDate": "d/M/yyyy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-zw",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_sw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "asubuhi",
8 | "alasiri"
9 | ],
10 | "DAY": [
11 | "Jumapili",
12 | "Jumatatu",
13 | "Jumanne",
14 | "Jumatano",
15 | "Alhamisi",
16 | "Ijumaa",
17 | "Jumamosi"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Machi",
23 | "Aprili",
24 | "Mei",
25 | "Juni",
26 | "Julai",
27 | "Agosti",
28 | "Septemba",
29 | "Oktoba",
30 | "Novemba",
31 | "Desemba"
32 | ],
33 | "SHORTDAY": [
34 | "J2",
35 | "J3",
36 | "J4",
37 | "J5",
38 | "Alh",
39 | "Ij",
40 | "J1"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ago",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y h:mm:ss a",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yyyy h:mm a",
62 | "shortDate": "dd/MM/yyyy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "TSh",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "sw",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_tl.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Linggo",
12 | "Lunes",
13 | "Martes",
14 | "Miyerkules",
15 | "Huwebes",
16 | "Biyernes",
17 | "Sabado"
18 | ],
19 | "MONTH": [
20 | "Enero",
21 | "Pebrero",
22 | "Marso",
23 | "Abril",
24 | "Mayo",
25 | "Hunyo",
26 | "Hulyo",
27 | "Agosto",
28 | "Setyembre",
29 | "Oktubre",
30 | "Nobyembre",
31 | "Disyembre"
32 | ],
33 | "SHORTDAY": [
34 | "Lin",
35 | "Lun",
36 | "Mar",
37 | "Mye",
38 | "Huw",
39 | "Bye",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Ene",
44 | "Peb",
45 | "Mar",
46 | "Abr",
47 | "May",
48 | "Hun",
49 | "Hul",
50 | "Ago",
51 | "Set",
52 | "Okt",
53 | "Nob",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, MMMM dd y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y HH:mm:ss",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "M/d/yy HH:mm",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20b1",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "tl",
97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_af.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "MONTH": [
20 | "Januarie",
21 | "Februarie",
22 | "Maart",
23 | "April",
24 | "Mei",
25 | "Junie",
26 | "Julie",
27 | "Augustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "So",
35 | "Ma",
36 | "Di",
37 | "Wo",
38 | "Do",
39 | "Vr",
40 | "Sa"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd MMM y h:mm:ss a",
59 | "mediumDate": "dd MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yyyy-MM-dd h:mm a",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": "\u00a0",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "af",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-ca.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM, y",
57 | "longDate": "d MMMM, y",
58 | "medium": "yyyy-MM-dd h:mm:ss a",
59 | "mediumDate": "yyyy-MM-dd",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yy-MM-dd h:mm a",
62 | "shortDate": "yy-MM-dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-ca",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-mt.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd MMM y h:mm:ss a",
59 | "mediumDate": "dd MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yyyy h:mm a",
62 | "shortDate": "dd/MM/yyyy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "$",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-mt",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_fil.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Linggo",
12 | "Lunes",
13 | "Martes",
14 | "Miyerkules",
15 | "Huwebes",
16 | "Biyernes",
17 | "Sabado"
18 | ],
19 | "MONTH": [
20 | "Enero",
21 | "Pebrero",
22 | "Marso",
23 | "Abril",
24 | "Mayo",
25 | "Hunyo",
26 | "Hulyo",
27 | "Agosto",
28 | "Setyembre",
29 | "Oktubre",
30 | "Nobyembre",
31 | "Disyembre"
32 | ],
33 | "SHORTDAY": [
34 | "Lin",
35 | "Lun",
36 | "Mar",
37 | "Mye",
38 | "Huw",
39 | "Bye",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Ene",
44 | "Peb",
45 | "Mar",
46 | "Abr",
47 | "May",
48 | "Hun",
49 | "Hul",
50 | "Ago",
51 | "Set",
52 | "Okt",
53 | "Nob",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, MMMM dd y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y HH:mm:ss",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "M/d/yy HH:mm",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20b1",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "fil",
97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_sw-tz.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "asubuhi",
8 | "alasiri"
9 | ],
10 | "DAY": [
11 | "Jumapili",
12 | "Jumatatu",
13 | "Jumanne",
14 | "Jumatano",
15 | "Alhamisi",
16 | "Ijumaa",
17 | "Jumamosi"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Machi",
23 | "Aprili",
24 | "Mei",
25 | "Juni",
26 | "Julai",
27 | "Agosti",
28 | "Septemba",
29 | "Oktoba",
30 | "Novemba",
31 | "Desemba"
32 | ],
33 | "SHORTDAY": [
34 | "J2",
35 | "J3",
36 | "J4",
37 | "J5",
38 | "Alh",
39 | "Ij",
40 | "J1"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ago",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y h:mm:ss a",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yyyy h:mm a",
62 | "shortDate": "dd/MM/yyyy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "TSh",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "sw-tz",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_tr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Pazar",
12 | "Pazartesi",
13 | "Sal\u0131",
14 | "\u00c7ar\u015famba",
15 | "Per\u015fembe",
16 | "Cuma",
17 | "Cumartesi"
18 | ],
19 | "MONTH": [
20 | "Ocak",
21 | "\u015eubat",
22 | "Mart",
23 | "Nisan",
24 | "May\u0131s",
25 | "Haziran",
26 | "Temmuz",
27 | "A\u011fustos",
28 | "Eyl\u00fcl",
29 | "Ekim",
30 | "Kas\u0131m",
31 | "Aral\u0131k"
32 | ],
33 | "SHORTDAY": [
34 | "Paz",
35 | "Pzt",
36 | "Sal",
37 | "\u00c7ar",
38 | "Per",
39 | "Cum",
40 | "Cmt"
41 | ],
42 | "SHORTMONTH": [
43 | "Oca",
44 | "\u015eub",
45 | "Mar",
46 | "Nis",
47 | "May",
48 | "Haz",
49 | "Tem",
50 | "A\u011fu",
51 | "Eyl",
52 | "Eki",
53 | "Kas",
54 | "Ara"
55 | ],
56 | "fullDate": "d MMMM y EEEE",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd MM yyyy HH:mm",
62 | "shortDate": "dd MM yyyy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "TL",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(",
90 | "negSuf": "\u00a0\u00a4)",
91 | "posPre": "",
92 | "posSuf": "\u00a0\u00a4"
93 | }
94 | ]
95 | },
96 | "id": "tr",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_af-za.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "MONTH": [
20 | "Januarie",
21 | "Februarie",
22 | "Maart",
23 | "April",
24 | "Mei",
25 | "Junie",
26 | "Julie",
27 | "Augustus",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Desember"
32 | ],
33 | "SHORTDAY": [
34 | "So",
35 | "Ma",
36 | "Di",
37 | "Wo",
38 | "Do",
39 | "Vr",
40 | "Sa"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Des"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd MMM y h:mm:ss a",
59 | "mediumDate": "dd MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yyyy-MM-dd h:mm a",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": "\u00a0",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "af-za",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-ie.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.m.",
8 | "p.m."
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y h:mm:ss a",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yyyy h:mm a",
62 | "shortDate": "dd/MM/yyyy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20ac",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-ie",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-za.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "dd MMMM y",
58 | "medium": "dd MMM y h:mm:ss a",
59 | "mediumDate": "dd MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yyyy/MM/dd h:mm a",
62 | "shortDate": "yyyy/MM/dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": "\u00a0",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-za",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_fil-ph.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Linggo",
12 | "Lunes",
13 | "Martes",
14 | "Miyerkules",
15 | "Huwebes",
16 | "Biyernes",
17 | "Sabado"
18 | ],
19 | "MONTH": [
20 | "Enero",
21 | "Pebrero",
22 | "Marso",
23 | "Abril",
24 | "Mayo",
25 | "Hunyo",
26 | "Hulyo",
27 | "Agosto",
28 | "Setyembre",
29 | "Oktubre",
30 | "Nobyembre",
31 | "Disyembre"
32 | ],
33 | "SHORTDAY": [
34 | "Lin",
35 | "Lun",
36 | "Mar",
37 | "Mye",
38 | "Huw",
39 | "Bye",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Ene",
44 | "Peb",
45 | "Mar",
46 | "Abr",
47 | "May",
48 | "Hun",
49 | "Hul",
50 | "Ago",
51 | "Set",
52 | "Okt",
53 | "Nob",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, MMMM dd y",
57 | "longDate": "MMMM d, y",
58 | "medium": "MMM d, y HH:mm:ss",
59 | "mediumDate": "MMM d, y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "M/d/yy HH:mm",
62 | "shortDate": "M/d/yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20b1",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "fil-ph",
97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_nl.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "zondag",
12 | "maandag",
13 | "dinsdag",
14 | "woensdag",
15 | "donderdag",
16 | "vrijdag",
17 | "zaterdag"
18 | ],
19 | "MONTH": [
20 | "januari",
21 | "februari",
22 | "maart",
23 | "april",
24 | "mei",
25 | "juni",
26 | "juli",
27 | "augustus",
28 | "september",
29 | "oktober",
30 | "november",
31 | "december"
32 | ],
33 | "SHORTDAY": [
34 | "zo",
35 | "ma",
36 | "di",
37 | "wo",
38 | "do",
39 | "vr",
40 | "za"
41 | ],
42 | "SHORTMONTH": [
43 | "jan.",
44 | "feb.",
45 | "mrt.",
46 | "apr.",
47 | "mei",
48 | "jun.",
49 | "jul.",
50 | "aug.",
51 | "sep.",
52 | "okt.",
53 | "nov.",
54 | "dec."
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd-MM-yy HH:mm",
62 | "shortDate": "dd-MM-yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20ac",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4\u00a0",
90 | "negSuf": "-",
91 | "posPre": "\u00a4\u00a0",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "nl",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_tr-tr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Pazar",
12 | "Pazartesi",
13 | "Sal\u0131",
14 | "\u00c7ar\u015famba",
15 | "Per\u015fembe",
16 | "Cuma",
17 | "Cumartesi"
18 | ],
19 | "MONTH": [
20 | "Ocak",
21 | "\u015eubat",
22 | "Mart",
23 | "Nisan",
24 | "May\u0131s",
25 | "Haziran",
26 | "Temmuz",
27 | "A\u011fustos",
28 | "Eyl\u00fcl",
29 | "Ekim",
30 | "Kas\u0131m",
31 | "Aral\u0131k"
32 | ],
33 | "SHORTDAY": [
34 | "Paz",
35 | "Pzt",
36 | "Sal",
37 | "\u00c7ar",
38 | "Per",
39 | "Cum",
40 | "Cmt"
41 | ],
42 | "SHORTMONTH": [
43 | "Oca",
44 | "\u015eub",
45 | "Mar",
46 | "Nis",
47 | "May",
48 | "Haz",
49 | "Tem",
50 | "A\u011fu",
51 | "Eyl",
52 | "Eki",
53 | "Kas",
54 | "Ara"
55 | ],
56 | "fullDate": "d MMMM y EEEE",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd MM yyyy HH:mm",
62 | "shortDate": "dd MM yyyy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "TL",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(",
90 | "negSuf": "\u00a0\u00a4)",
91 | "posPre": "",
92 | "posSuf": "\u00a0\u00a4"
93 | }
94 | ]
95 | },
96 | "id": "tr-tr",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_zu.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sonto",
12 | "Msombuluko",
13 | "Lwesibili",
14 | "Lwesithathu",
15 | "uLwesine",
16 | "Lwesihlanu",
17 | "Mgqibelo"
18 | ],
19 | "MONTH": [
20 | "Januwari",
21 | "Februwari",
22 | "Mashi",
23 | "Apreli",
24 | "Meyi",
25 | "Juni",
26 | "Julayi",
27 | "Agasti",
28 | "Septhemba",
29 | "Okthoba",
30 | "Novemba",
31 | "Disemba"
32 | ],
33 | "SHORTDAY": [
34 | "Son",
35 | "Mso",
36 | "Bil",
37 | "Tha",
38 | "Sin",
39 | "Hla",
40 | "Mgq"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mas",
46 | "Apr",
47 | "Mey",
48 | "Jun",
49 | "Jul",
50 | "Aga",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y h:mm:ss a",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yyyy-MM-dd h:mm a",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "zu",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_en-in.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sunday",
12 | "Monday",
13 | "Tuesday",
14 | "Wednesday",
15 | "Thursday",
16 | "Friday",
17 | "Saturday"
18 | ],
19 | "MONTH": [
20 | "January",
21 | "February",
22 | "March",
23 | "April",
24 | "May",
25 | "June",
26 | "July",
27 | "August",
28 | "September",
29 | "October",
30 | "November",
31 | "December"
32 | ],
33 | "SHORTDAY": [
34 | "Sun",
35 | "Mon",
36 | "Tue",
37 | "Wed",
38 | "Thu",
39 | "Fri",
40 | "Sat"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mar",
46 | "Apr",
47 | "May",
48 | "Jun",
49 | "Jul",
50 | "Aug",
51 | "Sep",
52 | "Oct",
53 | "Nov",
54 | "Dec"
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd-MMM-y h:mm:ss a",
59 | "mediumDate": "dd-MMM-y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "dd/MM/yy h:mm a",
62 | "shortDate": "dd/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20b9",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 2,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 2,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4\u00a0-",
90 | "negSuf": "",
91 | "posPre": "\u00a4\u00a0",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "en-in",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_nl-cw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "zondag",
12 | "maandag",
13 | "dinsdag",
14 | "woensdag",
15 | "donderdag",
16 | "vrijdag",
17 | "zaterdag"
18 | ],
19 | "MONTH": [
20 | "januari",
21 | "februari",
22 | "maart",
23 | "april",
24 | "mei",
25 | "juni",
26 | "juli",
27 | "augustus",
28 | "september",
29 | "oktober",
30 | "november",
31 | "december"
32 | ],
33 | "SHORTDAY": [
34 | "zo",
35 | "ma",
36 | "di",
37 | "wo",
38 | "do",
39 | "vr",
40 | "za"
41 | ],
42 | "SHORTMONTH": [
43 | "jan.",
44 | "feb.",
45 | "mrt.",
46 | "apr.",
47 | "mei",
48 | "jun.",
49 | "jul.",
50 | "aug.",
51 | "sep.",
52 | "okt.",
53 | "nov.",
54 | "dec."
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd-MM-yy HH:mm",
62 | "shortDate": "dd-MM-yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20ac",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4\u00a0",
90 | "negSuf": "-",
91 | "posPre": "\u00a4\u00a0",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "nl-cw",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_nl-nl.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "zondag",
12 | "maandag",
13 | "dinsdag",
14 | "woensdag",
15 | "donderdag",
16 | "vrijdag",
17 | "zaterdag"
18 | ],
19 | "MONTH": [
20 | "januari",
21 | "februari",
22 | "maart",
23 | "april",
24 | "mei",
25 | "juni",
26 | "juli",
27 | "augustus",
28 | "september",
29 | "oktober",
30 | "november",
31 | "december"
32 | ],
33 | "SHORTDAY": [
34 | "zo",
35 | "ma",
36 | "di",
37 | "wo",
38 | "do",
39 | "vr",
40 | "za"
41 | ],
42 | "SHORTMONTH": [
43 | "jan.",
44 | "feb.",
45 | "mrt.",
46 | "apr.",
47 | "mei",
48 | "jun.",
49 | "jul.",
50 | "aug.",
51 | "sep.",
52 | "okt.",
53 | "nov.",
54 | "dec."
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd-MM-yy HH:mm",
62 | "shortDate": "dd-MM-yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20ac",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4\u00a0",
90 | "negSuf": "-",
91 | "posPre": "\u00a4\u00a0",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "nl-nl",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_nl-sx.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "zondag",
12 | "maandag",
13 | "dinsdag",
14 | "woensdag",
15 | "donderdag",
16 | "vrijdag",
17 | "zaterdag"
18 | ],
19 | "MONTH": [
20 | "januari",
21 | "februari",
22 | "maart",
23 | "april",
24 | "mei",
25 | "juni",
26 | "juli",
27 | "augustus",
28 | "september",
29 | "oktober",
30 | "november",
31 | "december"
32 | ],
33 | "SHORTDAY": [
34 | "zo",
35 | "ma",
36 | "di",
37 | "wo",
38 | "do",
39 | "vr",
40 | "za"
41 | ],
42 | "SHORTMONTH": [
43 | "jan.",
44 | "feb.",
45 | "mrt.",
46 | "apr.",
47 | "mei",
48 | "jun.",
49 | "jul.",
50 | "aug.",
51 | "sep.",
52 | "okt.",
53 | "nov.",
54 | "dec."
55 | ],
56 | "fullDate": "EEEE d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y HH:mm:ss",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "HH:mm:ss",
61 | "short": "dd-MM-yy HH:mm",
62 | "shortDate": "dd-MM-yy",
63 | "shortTime": "HH:mm"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "\u20ac",
67 | "DECIMAL_SEP": ",",
68 | "GROUP_SEP": ".",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "\u00a4\u00a0",
90 | "negSuf": "-",
91 | "posPre": "\u00a4\u00a0",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "nl-sx",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/web/dist/assets/lib/angular/i18n/angular-locale_zu-za.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Sonto",
12 | "Msombuluko",
13 | "Lwesibili",
14 | "Lwesithathu",
15 | "uLwesine",
16 | "Lwesihlanu",
17 | "Mgqibelo"
18 | ],
19 | "MONTH": [
20 | "Januwari",
21 | "Februwari",
22 | "Mashi",
23 | "Apreli",
24 | "Meyi",
25 | "Juni",
26 | "Julayi",
27 | "Agasti",
28 | "Septhemba",
29 | "Okthoba",
30 | "Novemba",
31 | "Disemba"
32 | ],
33 | "SHORTDAY": [
34 | "Son",
35 | "Mso",
36 | "Bil",
37 | "Tha",
38 | "Sin",
39 | "Hla",
40 | "Mgq"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mas",
46 | "Apr",
47 | "Mey",
48 | "Jun",
49 | "Jul",
50 | "Aga",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE dd MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "d MMM y h:mm:ss a",
59 | "mediumDate": "d MMM y",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "yyyy-MM-dd h:mm a",
62 | "shortDate": "yyyy-MM-dd",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "R",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "zu-za",
97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------