1
0
Fork 0

removed commented out lines, less verbose help

This commit is contained in:
Frank Celler 2015-10-09 12:26:02 +02:00
parent 6cc0d4d184
commit a85c44b25e
2 changed files with 0 additions and 44 deletions

View File

@ -84,38 +84,6 @@
"frontend/js/arango/templateEngine.js",
"frontend/js/shell/browser.js",
"frontend/js/config/dygraphConfig.js"
/*
"frontend/js/modules/underscore.js",
"frontend/js/modules/org/arangodb/aql/explainer.js",
"frontend/js/modules/org/arangodb/aql/functions.js",
"frontend/js/modules/org/arangodb/aql/queries.js",
"frontend/js/modules/org/arangodb/graph/traversal.js",
"frontend/js/modules/org/arangodb/arango-collection-common.js",
"frontend/js/modules/org/arangodb/arango-collection.js",
"frontend/js/modules/org/arangodb/arango-database.js",
"frontend/js/modules/org/arangodb/arango-query-cursor.js",
"frontend/js/modules/org/arangodb/arango-statement-common.js",
"frontend/js/modules/org/arangodb/arango-statement.js",
"frontend/js/modules/org/arangodb/arangosh.js",
"frontend/js/modules/org/arangodb/general-graph.js",
"frontend/js/modules/org/arangodb/graph-blueprint.js",
"frontend/js/modules/org/arangodb/graph-common.js",
"frontend/js/modules/org/arangodb/graph.js",
"frontend/js/modules/org/arangodb/is.js",
"frontend/js/modules/org/arangodb/mimetypes.js",
"frontend/js/modules/org/arangodb/replication.js",
"frontend/js/modules/org/arangodb/simple-query-common.js",
"frontend/js/modules/org/arangodb/simple-query.js",
"frontend/js/modules/org/arangodb/tutorial.js",
"frontend/js/modules/org/arangodb-common.js",
"frontend/js/modules/org/arangodb.js",
"frontend/js/bootstrap/modules/internal.js", // deps: -
"frontend/js/bootstrap/errors.js", // deps: internal
"frontend/js/bootstrap/modules/console.js", // deps: internal
"frontend/js/bootstrap/monkeypatches.js",
"frontend/js/client/bootstrap/modules/internal.js", // deps: internal
"frontend/js/client/client.js"
*/
],
js: [
"frontend/js/models/*",

View File

@ -127,19 +127,7 @@ exports.HELP = exports.createHelpHeadline("Help") +
' fm: FoxxManager ' + "\n" +
'Examples: ' + "\n" +
' > db._collections() list all collections ' + "\n" +
' > db._create(<name>) create a new collection ' + "\n" +
' > db._drop(<name>) drop a collection ' + "\n" +
' > db.<name>.toArray() list all documents ' + "\n" +
' > id = db.<name>.save({ ... }) save a document ' + "\n" +
' > db.<name>.remove(<_id>) delete a document ' + "\n" +
' > db.<name>.document(<_id>) retrieve a document ' + "\n" +
' > db.<name>.replace(<_id>, {...}) overwrite a document ' + "\n" +
' > db.<name>.update(<_id>, {...}) partially update a document' + "\n" +
' > db.<name>.exists(<_id>) check if document exists ' + "\n" +
' > db._query(<query>).toArray() execute an AQL query ' + "\n" +
' > db._useDatabase(<name>) switch database ' + "\n" +
' > db._createDatabase(<name>) create a new database ' + "\n" +
' > db._listDatabases() list existing databases ' + "\n" +
' > help show help pages ' + "\n" +
' > exit ' + "\n" +
'Note: collection names and statuses may be cached in arangosh. ' + "\n" +