1
0
Fork 0

Merge branch 'master' of github.com:triAGENS/ArangoDB

This commit is contained in:
Frank Celler 2012-08-31 10:04:30 +02:00
commit bffc233a8e
3 changed files with 3 additions and 2 deletions

View File

@ -32,6 +32,7 @@ publish-pdf: $(OUTPUT_FOLDER)
scp Doxygen/latex/install-manual.pdf $(OUTPUT_FOLDER)
scp Doxygen/latex/user-manual.pdf $(OUTPUT_FOLDER)
scp Doxygen/latex/ref-manual.pdf $(OUTPUT_FOLDER)
scp Doxygen/latex/imp-manual.pdf $(OUTPUT_FOLDER)
scp arangod/Documentation/arangodb_1.0_shell_reference_card.pdf $(OUTPUT_FOLDER)
$(OUTPUT_FOLDER):

View File

@ -2644,7 +2644,7 @@ ArangoEdges.prototype = new ArangoDatabase();
' edges: ArangoEdges ' + "\n" +
'Example: ' + "\n" +
' > db._collections(); list all collections ' + "\n" +
' > db.<coll_name>.all(); list all documents ' + "\n" +
' > db.<coll_name>.all().toArray(); list all documents ' + "\n" +
' > id = db.<coll_name>.save({ ... }); save a document ' + "\n" +
' > db.<coll_name>.remove(<_id>); delete a document ' + "\n" +
' > db.<coll_name>.document(<_id>); get a document ' + "\n" +

View File

@ -2645,7 +2645,7 @@ static string JS_client_client =
" ' edges: ArangoEdges ' + \"\\n\" +\n"
" 'Example: ' + \"\\n\" +\n"
" ' > db._collections(); list all collections ' + \"\\n\" +\n"
" ' > db.<coll_name>.all(); list all documents ' + \"\\n\" +\n"
" ' > db.<coll_name>.all().toArray(); list all documents ' + \"\\n\" +\n"
" ' > id = db.<coll_name>.save({ ... }); save a document ' + \"\\n\" +\n"
" ' > db.<coll_name>.remove(<_id>); delete a document ' + \"\\n\" +\n"
" ' > db.<coll_name>.document(<_id>); get a document ' + \"\\n\" +\n"