Skip to content

Commit

Permalink
README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zefhemel committed Sep 22, 2010
1 parent d714e0d commit 11dedaf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,12 +368,11 @@ should be aware of:
* `['id', 'name']`, will return an object with the id and name property of this entity
* `['*']`, will return an object with all the properties of this entity, not recursive
* `['project.name']`, will return an object with a project property which has a name
property containing the project name (hasOne relationship)
property containing the project name (hasOne relationship)
* `['project.[id, name]']`, will return an object with a project property which has an
id and name property containing the project name
(hasOne relationship)
id and name property containing the project name (hasOne relationship)
* `['tags.name']`, will return an object with an array `tags` property containing
objects each with a single property: name
objects each with a single property: name


Query collections
Expand Down
8 changes: 4 additions & 4 deletions test/test.persistence.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<script type="text/javascript" src="qunit/qunit.js"></script>

<script src="http://code.google.com/apis/gears/gears_init.js"></script>
<script src="../persistence.js" type="application/javascript"></script>
<script src="../persistence.store.sql.js" type="application/javascript"></script>
<script src="../persistence.store.websql.js" type="application/javascript"></script>
<script src="../persistence.store.memory.js" type="application/javascript"></script>
<script src="../lib/persistence.js" type="application/javascript"></script>
<script src="../lib/persistence.store.sql.js" type="application/javascript"></script>
<script src="../lib/persistence.store.websql.js" type="application/javascript"></script>
<script src="../lib/persistence.store.memory.js" type="application/javascript"></script>
<script type="text/javascript" src='util.js'></script>
<script type="text/javascript" src='test.persistence.js'></script>
</head>
Expand Down

0 comments on commit 11dedaf

Please sign in to comment.