first cut of an outline for the reference manual

This commit is contained in:
Thomas Risberg
2010-11-01 19:24:23 -04:00
parent 74cb0565e9
commit da2eefda52
4 changed files with 163 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<chapter id="cross-store">
<title>Cross-store persistence with a graph database</title>
<para>The Spring Datastore Graph project support cross-store persistence
...</para>
<section>
<title>Partial graph persistence</title>
<para>..</para>
<section>
<title>@NodeEntity(partial = "true")</title>
<para>..</para>
</section>
<section>
<title>@GraphProperty</title>
<para>..</para>
</section>
</section>
<section>
<title>Configuring cross-store persistence</title>
<para>..</para>
</section>
</chapter>

View File

@@ -7,6 +7,14 @@
<releaseinfo>&version;</releaseinfo>
<authorgroup>
<author>
<firstname>Michael</firstname>
<surname>Hunger</surname>
</author>
<author>
<firstname>David</firstname>
<surname>Montag</surname>
</author>
<author>
<firstname>Mark</firstname>
<surname>Pollack</surname>
@@ -29,8 +37,6 @@
<toc/>
<xi:include href="preface.xml"/>
<part>
<title>Reference</title>
<partintro>
@@ -38,6 +44,9 @@
This part of the reference documentation details the ...
</para>
</partintro>
<!-- <xi:include href="neo4j.xml"/> -->
<xi:include href="preface.xml"/>
<xi:include href="neo4j.xml"/>
<xi:include href="programming-model.xml"/>
<xi:include href="cross-store.xml"/>
</part>
</book>

44
src/docbkx/neo4j.xml Normal file
View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<chapter id="neo4j-intro">
<title>Introduction to Neo4j graph database</title>
<para>The Neo4j database ...</para>
<section>
<title>What is a graph database?</title>
<para>..</para>
</section>
<section>
<title>GraphDatabaseService</title>
<para>..</para>
</section>
<section>
<title>Creating a Node</title>
<para>..</para>
</section>
<section>
<title>Creating a relationship</title>
<para>..</para>
</section>
<section>
<title>Adding attributes to a relationship</title>
<para>..</para>
</section>
<section>
<title>Graph traversal</title>
<para>..</para>
</section>
</chapter>

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<chapter id="programming-model">
<title>Programming model for a graph database</title>
<para>This chapter ...</para>
<section>
<title>Overview of the AspectJ support</title>
<para>..</para>
</section>
<section>
<title>Using annotations to define POJO entities and relationships</title>
<para>..</para>
<section>
<title>@NodeEntity</title>
<para>..</para>
</section>
<section>
<title>@RelationshipEntity</title>
<para>..</para>
</section>
<section>
<title>@RelatedTo</title>
<para>..</para>
</section>
<section>
<title>@RelatedToVia</title>
<para>..</para>
</section>
<section>
<title>@StartNode</title>
<para>..</para>
</section>
<section>
<title>@EndNode</title>
<para>..</para>
</section>
<section>
<title>@Indexed</title>
<para>..</para>
</section>
<section>
<title>@GraphTraversal</title>
<para>..</para>
</section>
</section>
<section>
<title>Configuration</title>
<para>..</para>
</section>
</chapter>