1
0
Fork 0

Tie up loose ends in the iresearch documentation (#4100)

This commit is contained in:
Wilfried Goesgens 2017-12-19 13:53:57 +01:00 committed by Jan
parent 7a9bf83561
commit 34c3ee6678
6 changed files with 20 additions and 3 deletions

View File

@ -41,6 +41,11 @@
* [Persistent](Indexes/Persistent.md)
* [Geo](Indexes/Geo.md)
* [Fulltext](Indexes/Fulltext.md)
* [Views](Views/README.md)
* [Creating](Views/Creating.md)
* [Modifying](Views/Modifying.md)
* [Retrieving](Views/Getting.md)
* [IResarch Views](Views/IResearch.md)
* [Transactions](Transaction/README.md)
* [Replication](Replications/README.md)
* [Replication Dump](Replications/ReplicationDump.md)

View File

@ -58,7 +58,7 @@ are managed in this database, and their credentials are valid for all databases
of a server instance.
Similarly **databases** may also contain **view** entities. A
[View](Views/Readme.md) in its simplest form can be seen as a read-only
[View](Views/README.md) in its simplest form can be seen as a read-only
array or collection of documents. The view concept quite closely matches a
similarly named concept available in most relational database management systems
(RDBMS). Each view entity usually maps some implementation specific document

View File

@ -35,7 +35,7 @@ If no view with such a name exists, then *null* is returned.
This call will create a new view called *view-name*. This method is a database
method and is documented in detail in
[Database Methods](DatabaseMethods.md#createView)
[Database Methods](DatabaseMethods.md#create)
### View Types

View File

@ -38,6 +38,8 @@
* [Database Methods](DataModeling/Documents/DatabaseMethods.md)
* [Graphs, Vertices & Edges](DataModeling/GraphsVerticesEdges.md)
* [Views](DataModeling/Views/README.md)
* [Database Methods](DataModeling/Views/DatabaseMethods.md)
* [View Methods](DataModeling/Views/ViewMethods.md)
* [Naming Conventions](DataModeling/NamingConventions/README.md)
* [Database Names](DataModeling/NamingConventions/DatabaseNames.md)
* [Collection Names](DataModeling/NamingConventions/CollectionNames.md)
@ -69,6 +71,12 @@
* [Working with Edges](Graphs/Edges/README.md)
* [Pregel](Graphs/Pregel/README.md)
#
#
* [Views](Views/README.md)
#
* [IResearch](Views/IResearch.md)
* [Foxx Microservices](Foxx/README.md)
* [At a glance](Foxx/AtAGlance.md)
* [Getting started](Foxx/GettingStarted.md)

View File

@ -0,0 +1,4 @@
# Views available in ArangoDB
* [IResearch](IResearch.md)

View File

@ -80,7 +80,7 @@ function check-summary()
if test "$(comm -3 /tmp/is_md.txt /tmp/is_summary.txt|wc -l)" -ne 0; then
echo "${ERR_COLOR}"
echo "not all files are mapped to the summary!"
echo "not all files of ${NAME} are mapped to the summary!"
echo " files found | files in summary"
comm -3 /tmp/is_md.txt /tmp/is_summary.txt
echo "${RESET}"