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 conielo:autoform-polymer-paper
msavin:mongol msavin:mongol
matb33:collection-hooks 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-base@1.2.0
accounts-password@1.0.6 accounts-password@1.1.0
accounts-ui@1.1.4 accounts-ui@1.1.5
accounts-ui-unstyled@1.1.6 accounts-ui-unstyled@1.1.7
aldeed:autoform@4.2.2 aldeed:autoform@4.2.2
aldeed:collection2@2.3.2 aldeed:collection2@2.3.2
aldeed:simple-schema@1.3.0 aldeed:simple-schema@1.3.0
application-configuration@1.0.4 aldeed:template-extension@3.4.1
autoupdate@1.1.5 autoupdate@1.2.0
base64@1.0.2 babrahams:editable-json@0.3.9
binary-heap@1.0.2 base64@1.0.3
blaze@2.0.4 binary-heap@1.0.3
blaze-tools@1.0.2 blaze@2.1.0
boilerplate-generator@1.0.2 blaze-tools@1.0.3
callback-hook@1.0.2 boilerplate-generator@1.0.3
check@1.0.4 callback-hook@1.0.3
check@1.0.5
conielo:autoform-polymer-paper@0.1.1 conielo:autoform-polymer-paper@0.1.1
dburles:collection-helpers@1.0.2 dburles:collection-helpers@1.0.2
dburles:mongo-collection-instances@0.3.1 dburles:mongo-collection-instances@0.3.3
ddp@1.0.14 ddp@1.1.0
deps@1.0.6 deps@1.0.7
differential:vulcanize@0.0.3 differential:vulcanize@0.0.3
ejson@1.0.5 ejson@1.0.6
email@1.0.5 email@1.0.6
fastclick@1.0.2 fastclick@1.0.3
follower-livedata@1.0.3 geojson-utils@1.0.3
geojson-utils@1.0.2 gwendall:session-json@0.1.7
html-tools@1.0.3 html-tools@1.0.4
htmljs@1.0.3 htmljs@1.0.4
http@1.0.10 http@1.1.0
id-map@1.0.2 id-map@1.0.3
insecure@1.0.2 insecure@1.0.3
iron:controller@1.0.7 iron:controller@1.0.7
iron:core@1.0.7 iron:core@1.0.7
iron:dynamic-template@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:middleware-stack@1.0.7
iron:router@1.0.7 iron:router@1.0.7
iron:url@1.0.7 iron:url@1.0.7
jquery@1.11.3 jquery@1.11.3_2
json@1.0.2 json@1.0.3
launch-screen@1.0.1 lai:collection-extensions@0.1.3
less@1.0.12 launch-screen@1.0.2
livedata@1.0.12 less@1.0.13
localstorage@1.0.2 livedata@1.0.13
logging@1.0.6 localstorage@1.0.3
logging@1.0.7
matb33:collection-hooks@0.7.11 matb33:collection-hooks@0.7.11
meteor@1.1.4 meteor@1.1.5
meteor-platform@1.2.1 meteor-platform@1.2.2
minifiers@1.1.3 minifiers@1.1.4
minimongo@1.0.6 minimongo@1.0.7
mobile-status-bar@1.0.2 mobile-status-bar@1.0.3
momentjs:moment@2.8.4 momentjs:moment@2.8.4
mongo@1.0.11 mongo@1.1.0
msavin:mongol@0.4.4 msavin:mongol@1.0.2
npm-bcrypt@0.7.7 npm-bcrypt@0.7.8_1
observe-sequence@1.0.4 observe-sequence@1.0.5
ordered-dict@1.0.2 ordered-dict@1.0.3
random@1.0.2 random@1.0.3
reactive-dict@1.0.5 reactive-dict@1.1.0
reactive-var@1.0.4 reactive-var@1.0.5
reload@1.1.2 reload@1.1.3
retry@1.0.2 retry@1.0.3
routepolicy@1.0.4 routepolicy@1.0.5
service-configuration@1.0.3 service-configuration@1.0.4
session@1.0.5 session@1.1.0
sha@1.0.2 sewdn:collection-behaviours@0.2.0
spacebars@1.0.5 sha@1.0.3
spacebars-compiler@1.0.4 spacebars@1.0.6
srp@1.0.2 spacebars-compiler@1.0.5
templating@1.0.11 srp@1.0.3
tracker@1.0.5 templating@1.1.0
ui@1.0.5 tracker@1.0.6
underscore@1.0.2 ui@1.0.6
url@1.0.3 underscore@1.0.3
webapp@1.1.6 url@1.0.4
webapp-hashing@1.0.2 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({ Schemas.Instance = new SimpleSchema({
//an instance is a single flow of time all parties in an instance are in-sync time wise //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({ Schemas.Party = new SimpleSchema({
//each character/monster can only be in one party at a time //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 * 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 * 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 //buffs are temporary once applied and store things which expire and their expiry time
Schemas.Buff = new SimpleSchema({ Schemas.Buff = new SimpleSchema({

View File

@@ -1,4 +1,4 @@
Classes = new Meteor.Collection("classes"); Classes = new Mongo.Collection("classes");
Schemas.Class = new SimpleSchema({ Schemas.Class = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, 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 * 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({ Schemas.Experience = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, 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({ Schemas.Feature = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, 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({ Schemas.Note = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, 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({ Schemas.Proficiency = new SimpleSchema({
charId: { charId: {

View File

@@ -1,4 +1,4 @@
SpellLists = new Meteor.Collection("spellLists"); SpellLists = new Mongo.Collection("spellLists");
Schemas.SpellLists = new SimpleSchema({ Schemas.SpellLists = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, 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({ Schemas.Spell = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id}, charId: {type: String, regEx: SimpleSchema.RegEx.Id},

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
//set up the collection for containers //set up the collection for containers
Containers = new Meteor.Collection("containers"); Containers = new Mongo.Collection("containers");
Schemas.Container = new SimpleSchema({ Schemas.Container = new SimpleSchema({
name: { type: String, trim: false }, 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({ Schemas.Item = new SimpleSchema({
name: {type: String, defaultValue: "New Item", trim: false}, name: {type: String, defaultValue: "New Item", trim: false},