mirror of https://gitee.com/bigwinds/arangodb
Fixed error in Documentation and changed visualization of deprecated chapters
This commit is contained in:
parent
806cc26685
commit
e99a12c339
|
@ -25,17 +25,17 @@ def replaceCode(pathOfFile):
|
||||||
s=f.read()
|
s=f.read()
|
||||||
f.close()
|
f.close()
|
||||||
f=open(pathOfFile,'w')
|
f=open(pathOfFile,'w')
|
||||||
lines = s.replace("<a href=\"../Blueprint-Graphs/README.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../Blueprint-Graphs/README.html\">")
|
lines = s.replace("<a href=\"../Blueprint-Graphs/README.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../Blueprint-Graphs/README.html\">")
|
||||||
lines = lines.replace("<a href=\"../Blueprint-Graphs/VertexMethods.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../Blueprint-Graphs/VertexMethods.html\">")
|
lines = lines.replace("<a href=\"../Blueprint-Graphs/VertexMethods.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../Blueprint-Graphs/VertexMethods.html\">")
|
||||||
lines = lines.replace("<a href=\"../Blueprint-Graphs/GraphConstructor.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../Blueprint-Graphs/GraphConstructor.html\">")
|
lines = lines.replace("<a href=\"../Blueprint-Graphs/GraphConstructor.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../Blueprint-Graphs/GraphConstructor.html\">")
|
||||||
lines = lines.replace("<a href=\"../Blueprint-Graphs/EdgeMethods.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../Blueprint-Graphs/EdgeMethods.html\">")
|
lines = lines.replace("<a href=\"../Blueprint-Graphs/EdgeMethods.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../Blueprint-Graphs/EdgeMethods.html\">")
|
||||||
lines = lines.replace("<a href=\"../HttpGraphs/README.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../HttpGraphs/README.html\">")
|
lines = lines.replace("<a href=\"../HttpGraphs/README.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../HttpGraphs/README.html\">")
|
||||||
lines = lines.replace("<a href=\"../HttpGraphs/Vertex.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../HttpGraphs/Vertex.html\">")
|
lines = lines.replace("<a href=\"../HttpGraphs/Vertex.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../HttpGraphs/Vertex.html\">")
|
||||||
lines = lines.replace("<a href=\"../HttpGraphs/Edge.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../HttpGraphs/Edge.html\">")
|
lines = lines.replace("<a href=\"../HttpGraphs/Edge.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../HttpGraphs/Edge.html\">")
|
||||||
lines = lines.replace("<a href=\"../ModuleGraph/README.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../ModuleGraph/README.html\">")
|
lines = lines.replace("<a href=\"../ModuleGraph/README.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../ModuleGraph/README.html\">")
|
||||||
lines = lines.replace("<a href=\"../ModuleGraph/GraphConstructor.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../ModuleGraph/GraphConstructor.html\">")
|
lines = lines.replace("<a href=\"../ModuleGraph/GraphConstructor.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../ModuleGraph/GraphConstructor.html\">")
|
||||||
lines = lines.replace("<a href=\"../ModuleGraph/VertexMethods.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../ModuleGraph/VertexMethods.html\">")
|
lines = lines.replace("<a href=\"../ModuleGraph/VertexMethods.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../ModuleGraph/VertexMethods.html\">")
|
||||||
lines = lines.replace("<a href=\"../ModuleGraph/EdgeMethods.html\">","<a style=\"background-color:rgba(240,240,0,0.4)\" href=\"../ModuleGraph/EdgeMethods.html\">")
|
lines = lines.replace("<a href=\"../ModuleGraph/EdgeMethods.html\">","<a class=\"fa fa-exclamation-triangle\"href=\"../ModuleGraph/EdgeMethods.html\">")
|
||||||
f.write(lines)
|
f.write(lines)
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
|
|
@ -7076,7 +7076,7 @@ static v8::Handle<v8::Value> JS_PropertiesVocbaseCol (v8::Arguments const& argv)
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief removes a document
|
/// @brief removes a document
|
||||||
/// @startDocuBlock documentsDocumentRemove
|
/// @startDocuBlock documentsCollectionRemove
|
||||||
/// `collection.remove(document)`
|
/// `collection.remove(document)`
|
||||||
///
|
///
|
||||||
/// Removes a document. If there is revision mismatch, then an error is thrown.
|
/// Removes a document. If there is revision mismatch, then an error is thrown.
|
||||||
|
@ -8745,7 +8745,7 @@ static v8::Handle<v8::Value> JS_CreateEdgeCollectionVocbase (v8::Arguments const
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief removes a document
|
/// @brief removes a document
|
||||||
/// @startDocuBlock documentsCollectionRemove
|
/// @startDocuBlock documentsDocumentRemove
|
||||||
/// `db._remove(document)`
|
/// `db._remove(document)`
|
||||||
///
|
///
|
||||||
/// Removes a document. If there is revision mismatch, then an error is thrown.
|
/// Removes a document. If there is revision mismatch, then an error is thrown.
|
||||||
|
|
Loading…
Reference in New Issue