├── .meteor
├── .gitignore
├── release
├── platforms
├── .finished-upgraders
├── .id
├── packages
└── versions
├── packages.json
├── packages
└── npm-container
│ ├── .npm
│ └── package
│ │ ├── .gitignore
│ │ ├── README
│ │ └── npm-shrinkwrap.json
│ ├── index.js
│ └── package.js
├── lib
└── neo4j.js
├── LICENSE
├── leaderboard.html
├── .gitignore
├── leaderboard.js
├── leaderboard.css
└── readme.md
/.meteor/.gitignore:
--------------------------------------------------------------------------------
1 | local
2 |
--------------------------------------------------------------------------------
/.meteor/release:
--------------------------------------------------------------------------------
1 | METEOR@1.1.0.3
2 |
--------------------------------------------------------------------------------
/.meteor/platforms:
--------------------------------------------------------------------------------
1 | server
2 | browser
3 |
--------------------------------------------------------------------------------
/packages.json:
--------------------------------------------------------------------------------
1 | {
2 | "neo4j": "1.1.1"
3 | }
--------------------------------------------------------------------------------
/packages/npm-container/.npm/package/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/lib/neo4j.js:
--------------------------------------------------------------------------------
1 | /* Allow client query execution */
2 | Meteor.neo4j.allowClientQuery = true;
3 | /* Custom URL to Neo4j should be here */
4 | Meteor.neo4j.connectionURL = 'http://neo4j:1234@localhost:7474';
5 | /* But deny all writing actions on client */
6 | Meteor.neo4j.set.deny(Meteor.neo4j.rules.write);
--------------------------------------------------------------------------------
/.meteor/.finished-upgraders:
--------------------------------------------------------------------------------
1 | # This file contains information which helps Meteor properly upgrade your
2 | # app when you run 'meteor update'. You should check it into version control
3 | # with your project.
4 |
5 | notices-for-0.9.0
6 | notices-for-0.9.1
7 | 0.9.4-platform-file
8 | notices-for-facebook-graph-api-2
9 |
--------------------------------------------------------------------------------
/.meteor/.id:
--------------------------------------------------------------------------------
1 | # This file contains a token that is unique to your project.
2 | # Check it into your repository along with the rest of this directory.
3 | # It can be used for purposes such as:
4 | # - ensuring you don't accidentally deploy one app on top of another
5 | # - providing package authors with aggregated statistics
6 |
7 | 1wrj5x8mo7orr2rtoe0
8 |
--------------------------------------------------------------------------------
/.meteor/packages:
--------------------------------------------------------------------------------
1 | # Meteor packages used by this project, one per line.
2 | # Check this file (and the other files in this directory) into your repository.
3 | #
4 | # 'meteor add' and 'meteor remove' will edit this file for you,
5 | # but you can also edit it by hand.
6 |
7 | meteor-platform
8 | ostrio:neo4jdriver
9 | ostrio:neo4jreactivity
10 | audit-argument-checks
--------------------------------------------------------------------------------
/packages/npm-container/.npm/package/README:
--------------------------------------------------------------------------------
1 | This directory and the files immediately inside it are automatically generated
2 | when you change this package's NPM dependencies. Commit the files in this
3 | directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
4 | so that others run the same versions of sub-dependencies.
5 |
6 | You should NOT check in the node_modules directory that Meteor automatically
7 | creates; if you are using git, the .gitignore file tells git to ignore it.
8 |
--------------------------------------------------------------------------------
/packages/npm-container/index.js:
--------------------------------------------------------------------------------
1 | Meteor.npmRequire = function(moduleName) { // 85
2 | var module = Npm.require(moduleName); // 86
3 | return module; // 87
4 | }; // 88
5 | // 89
6 | Meteor.require = function(moduleName) { // 90
7 | console.warn('Meteor.require is deprecated. Please use Meteor.npmRequire instead!'); // 91
8 | return Meteor.npmRequire(moduleName); // 92
9 | }; // 93
--------------------------------------------------------------------------------
/.meteor/versions:
--------------------------------------------------------------------------------
1 | audit-argument-checks@1.0.3
2 | autoupdate@1.2.1
3 | base64@1.0.3
4 | binary-heap@1.0.3
5 | blaze@2.1.2
6 | blaze-tools@1.0.3
7 | boilerplate-generator@1.0.3
8 | callback-hook@1.0.3
9 | check@1.0.5
10 | coffeescript@1.0.6
11 | ddp@1.1.0
12 | deps@1.0.7
13 | ejson@1.0.6
14 | fastclick@1.0.3
15 | geojson-utils@1.0.3
16 | html-tools@1.0.4
17 | htmljs@1.0.4
18 | http@1.1.0
19 | id-map@1.0.3
20 | jquery@1.11.3_2
21 | json@1.0.3
22 | launch-screen@1.0.2
23 | livedata@1.0.13
24 | logging@1.0.7
25 | meteor@1.1.6
26 | meteor-platform@1.2.2
27 | minifiers@1.1.5
28 | minimongo@1.0.8
29 | mobile-status-bar@1.0.3
30 | mongo@1.1.0
31 | observe-sequence@1.0.6
32 | ordered-dict@1.0.3
33 | ostrio:minimongo-extensions@1.0.1
34 | ostrio:neo4jdriver@0.2.15
35 | ostrio:neo4jreactivity@0.9.1
36 | random@1.0.3
37 | reactive-dict@1.1.0
38 | reactive-var@1.0.5
39 | reload@1.1.3
40 | retry@1.0.3
41 | routepolicy@1.0.5
42 | session@1.1.0
43 | sha@1.0.3
44 | spacebars@1.0.6
45 | spacebars-compiler@1.0.6
46 | templating@1.1.1
47 | tracker@1.0.7
48 | ui@1.0.6
49 | underscore@1.0.3
50 | url@1.0.4
51 | webapp@1.2.0
52 | webapp-hashing@1.0.3
53 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Veliov Group Inc., ostr.io, dr.dimitru, Dmitriy Aristarkhovich, Dmitry A.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, 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,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/leaderboard.html:
--------------------------------------------------------------------------------
1 |