Changed Meteor.Collection to Mongo.Collection

This commit is contained in:
Thaum
2015-03-18 06:18:27 +00:00
parent 6be823ad15
commit 06b0ad7eba
20 changed files with 84 additions and 80 deletions

View File

@@ -18,3 +18,4 @@ aldeed:autoform
conielo:autoform-polymer-paper
msavin:mongol
matb33:collection-hooks
sewdn:collection-behaviours

View File

@@ -1 +1 @@
METEOR@1.0.3.2
METEOR@1.0.4

View File

@@ -1,35 +1,36 @@
accounts-base@1.1.3
accounts-password@1.0.6
accounts-ui@1.1.4
accounts-ui-unstyled@1.1.6
accounts-base@1.2.0
accounts-password@1.1.0
accounts-ui@1.1.5
accounts-ui-unstyled@1.1.7
aldeed:autoform@4.2.2
aldeed:collection2@2.3.2
aldeed:simple-schema@1.3.0
application-configuration@1.0.4
autoupdate@1.1.5
base64@1.0.2
binary-heap@1.0.2
blaze@2.0.4
blaze-tools@1.0.2
boilerplate-generator@1.0.2
callback-hook@1.0.2
check@1.0.4
aldeed:template-extension@3.4.1
autoupdate@1.2.0
babrahams:editable-json@0.3.9
base64@1.0.3
binary-heap@1.0.3
blaze@2.1.0
blaze-tools@1.0.3
boilerplate-generator@1.0.3
callback-hook@1.0.3
check@1.0.5
conielo:autoform-polymer-paper@0.1.1
dburles:collection-helpers@1.0.2
dburles:mongo-collection-instances@0.3.1
ddp@1.0.14
deps@1.0.6
dburles:mongo-collection-instances@0.3.3
ddp@1.1.0
deps@1.0.7
differential:vulcanize@0.0.3
ejson@1.0.5
email@1.0.5
fastclick@1.0.2
follower-livedata@1.0.3
geojson-utils@1.0.2
html-tools@1.0.3
htmljs@1.0.3
http@1.0.10
id-map@1.0.2
insecure@1.0.2
ejson@1.0.6
email@1.0.6
fastclick@1.0.3
geojson-utils@1.0.3
gwendall:session-json@0.1.7
html-tools@1.0.4
htmljs@1.0.4
http@1.1.0
id-map@1.0.3
insecure@1.0.3
iron:controller@1.0.7
iron:core@1.0.7
iron:dynamic-template@1.0.7
@@ -38,41 +39,43 @@ iron:location@1.0.7
iron:middleware-stack@1.0.7
iron:router@1.0.7
iron:url@1.0.7
jquery@1.11.3
json@1.0.2
launch-screen@1.0.1
less@1.0.12
livedata@1.0.12
localstorage@1.0.2
logging@1.0.6
jquery@1.11.3_2
json@1.0.3
lai:collection-extensions@0.1.3
launch-screen@1.0.2
less@1.0.13
livedata@1.0.13
localstorage@1.0.3
logging@1.0.7
matb33:collection-hooks@0.7.11
meteor@1.1.4
meteor-platform@1.2.1
minifiers@1.1.3
minimongo@1.0.6
mobile-status-bar@1.0.2
meteor@1.1.5
meteor-platform@1.2.2
minifiers@1.1.4
minimongo@1.0.7
mobile-status-bar@1.0.3
momentjs:moment@2.8.4
mongo@1.0.11
msavin:mongol@0.4.4
npm-bcrypt@0.7.7
observe-sequence@1.0.4
ordered-dict@1.0.2
random@1.0.2
reactive-dict@1.0.5
reactive-var@1.0.4
reload@1.1.2
retry@1.0.2
routepolicy@1.0.4
service-configuration@1.0.3
session@1.0.5
sha@1.0.2
spacebars@1.0.5
spacebars-compiler@1.0.4
srp@1.0.2
templating@1.0.11
tracker@1.0.5
ui@1.0.5
underscore@1.0.2
url@1.0.3
webapp@1.1.6
webapp-hashing@1.0.2
mongo@1.1.0
msavin:mongol@1.0.2
npm-bcrypt@0.7.8_1
observe-sequence@1.0.5
ordered-dict@1.0.3
random@1.0.3
reactive-dict@1.1.0
reactive-var@1.0.5
reload@1.1.3
retry@1.0.3
routepolicy@1.0.5
service-configuration@1.0.4
session@1.1.0
sewdn:collection-behaviours@0.2.0
sha@1.0.3
spacebars@1.0.6
spacebars-compiler@1.0.5
srp@1.0.3
templating@1.1.0
tracker@1.0.6
ui@1.0.6
underscore@1.0.3
url@1.0.4
webapp@1.2.0
webapp-hashing@1.0.3

View File

@@ -1,4 +1,4 @@
Instances = new Meteor.Collection("instances");
Instances = new Mongo.Collection("instances");
Schemas.Instance = new SimpleSchema({
//an instance is a single flow of time all parties in an instance are in-sync time wise

View File

@@ -1,4 +1,4 @@
Parties = new Meteor.Collection("parties");
Parties = new Mongo.Collection("parties");
Schemas.Party = new SimpleSchema({
//each character/monster can only be in one party at a time

View File

@@ -1,4 +1,4 @@
Actions = new Meteor.Collection("actions");
Actions = new Mongo.Collection("actions");
/*
* Actions are given to a character by items and features

View File

@@ -1,4 +1,4 @@
Attacks = new Meteor.Collection("attacks");
Attacks = new Mongo.Collection("attacks");
/*
* Attacks are given to a character by items and features

View File

@@ -1,4 +1,4 @@
Buffs = new Meteor.Collection("buffs");
Buffs = new Mongo.Collection("buffs");
//buffs are temporary once applied and store things which expire and their expiry time
Schemas.Buff = new SimpleSchema({

View File

@@ -1,4 +1,4 @@
Classes = new Meteor.Collection("classes");
Classes = new Mongo.Collection("classes");
Schemas.Class = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,4 +1,4 @@
Effects = new Meteor.Collection("effects");
Effects = new Mongo.Collection("effects");
/*
* Effects are reason-value attached to skills and abilities

View File

@@ -1,4 +1,4 @@
Experiences = new Meteor.Collection("experience");
Experiences = new Mongo.Collection("experience");
Schemas.Experience = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,4 +1,4 @@
Features = new Meteor.Collection("features");
Features = new Mongo.Collection("features");
Schemas.Feature = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,4 +1,4 @@
Notes = new Meteor.Collection("notes");
Notes = new Mongo.Collection("notes");
Schemas.Note = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,4 +1,4 @@
Proficiencies = new Meteor.Collection("proficiencies");
Proficiencies = new Mongo.Collection("proficiencies");
Schemas.Proficiency = new SimpleSchema({
charId: {

View File

@@ -1,4 +1,4 @@
SpellLists = new Meteor.Collection("spellLists");
SpellLists = new Mongo.Collection("spellLists");
Schemas.SpellLists = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,4 +1,4 @@
Spells = new Meteor.Collection("spells");
Spells = new Mongo.Collection("spells");
Schemas.Spell = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,5 +1,5 @@
//set up the collection for characters
Characters = new Meteor.Collection("characters");
Characters = new Mongo.Collection("characters");
Schemas.Character = new SimpleSchema({
//strings

View File

@@ -1,4 +1,4 @@
TemporaryHitPoints = new Meteor.Collection("temporaryHitPoints");
TemporaryHitPoints = new Mongo.Collection("temporaryHitPoints");
Schemas.TemporaryHitPoints = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

@@ -1,5 +1,5 @@
//set up the collection for containers
Containers = new Meteor.Collection("containers");
Containers = new Mongo.Collection("containers");
Schemas.Container = new SimpleSchema({
name: { type: String, trim: false },

View File

@@ -1,4 +1,4 @@
Items = new Meteor.Collection('items');
Items = new Mongo.Collection('items');
Schemas.Item = new SimpleSchema({
name: {type: String, defaultValue: "New Item", trim: false},