From 9d8089ef715fe9f139db5bd36f996cfe8584da1a Mon Sep 17 00:00:00 2001 From: David Montag Date: Thu, 7 Apr 2011 11:15:00 -0700 Subject: [PATCH] Reverted subtitles to old texts --- src/docbkx/tutorial/about-tutorial.xml | 4 ++-- src/docbkx/tutorial/annotations.xml | 2 +- src/docbkx/tutorial/domain.xml | 2 +- src/docbkx/tutorial/import.xml | 2 +- src/docbkx/tutorial/indexing.xml | 2 +- src/docbkx/tutorial/neo4j.xml | 2 +- src/docbkx/tutorial/recommendations.xml | 2 +- src/docbkx/tutorial/relationships.xml | 2 +- src/docbkx/tutorial/repository.xml | 2 +- src/docbkx/tutorial/running.xml | 2 +- src/docbkx/tutorial/security.xml | 2 +- src/docbkx/tutorial/setup.xml | 2 +- src/docbkx/tutorial/social.xml | 2 +- src/docbkx/tutorial/spring-data-graph.xml | 2 +- src/docbkx/tutorial/user-experience.xml | 2 +- src/docbkx/tutorial/webapp.xml | 2 +- 16 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/docbkx/tutorial/about-tutorial.xml b/src/docbkx/tutorial/about-tutorial.xml index 8960222d5..ce58c5405 100644 --- a/src/docbkx/tutorial/about-tutorial.xml +++ b/src/docbkx/tutorial/about-tutorial.xml @@ -1,8 +1,8 @@ - Introducing Cineasts.net - "- In a galaxy, far, far away..." + Introducing our project + Allow me to introduce Cineasts.net Once upon a time we wanted to build a social movie database. At first there was only the name: Cineasts, the cinema enthusiasts who have a burning passion for movies. So we went ahead and bought the domain diff --git a/src/docbkx/tutorial/annotations.xml b/src/docbkx/tutorial/annotations.xml index 55331d2da..46c5c43ad 100644 --- a/src/docbkx/tutorial/annotations.xml +++ b/src/docbkx/tutorial/annotations.xml @@ -2,7 +2,7 @@ Annotating the domain - "- Suitable quote" + Decorations Looking at the Spring Data Graph documentation, we found a simple Hello World example diff --git a/src/docbkx/tutorial/domain.xml b/src/docbkx/tutorial/domain.xml index a8e53689d..01a25fb55 100644 --- a/src/docbkx/tutorial/domain.xml +++ b/src/docbkx/tutorial/domain.xml @@ -2,7 +2,7 @@ The domain model - "- Suitable quote" + Setting the stage We wanted to outline the domain model before diving into library details. We also looked at the data model of the TheMoviedb.org data to confirm that it matched our expectations. diff --git a/src/docbkx/tutorial/import.xml b/src/docbkx/tutorial/import.xml index 5ca83131e..45b8c5e4b 100644 --- a/src/docbkx/tutorial/import.xml +++ b/src/docbkx/tutorial/import.xml @@ -2,7 +2,7 @@ Importing Data - "- Suitable quote" + The dusty archives It was now time to pull the data from themoviedb.org. Registering there and getting an API key was simple, as was using the API on the command-line with diff --git a/src/docbkx/tutorial/indexing.xml b/src/docbkx/tutorial/indexing.xml index 508259a80..3c0d017d2 100644 --- a/src/docbkx/tutorial/indexing.xml +++ b/src/docbkx/tutorial/indexing.xml @@ -2,7 +2,7 @@ Indexing - "- Find them and destroy them." + Do I know you? There is an @Indexed annotation for fields. We wanted to try this out, and use it to guide the next test. We added @Indexed to the ID field of the Movie class. This field is intended to represent diff --git a/src/docbkx/tutorial/neo4j.xml b/src/docbkx/tutorial/neo4j.xml index ef703c1ae..17bbb5494 100644 --- a/src/docbkx/tutorial/neo4j.xml +++ b/src/docbkx/tutorial/neo4j.xml @@ -2,7 +2,7 @@ Learning Neo4j - "- Welcome, to the real world." + Graphs ahead Now we needed to figure out how to store our chosen domain model in the chosen database. First we read up about graph databases, in particular our chosen one, diff --git a/src/docbkx/tutorial/recommendations.xml b/src/docbkx/tutorial/recommendations.xml index 5f78ee663..c1fe18507 100644 --- a/src/docbkx/tutorial/recommendations.xml +++ b/src/docbkx/tutorial/recommendations.xml @@ -2,7 +2,7 @@ Recommendations - "- Suitable quote" + Movies! Friends! Bargains! In the last part of this exercise we wanted to add recommendations to the app. One obvious recommendation was movies that our friends liked (and their friends too, but diff --git a/src/docbkx/tutorial/relationships.xml b/src/docbkx/tutorial/relationships.xml index 0e1079779..1cda800f5 100644 --- a/src/docbkx/tutorial/relationships.xml +++ b/src/docbkx/tutorial/relationships.xml @@ -2,7 +2,7 @@ Relationships - "- Suitable quote" + A convincing act Our application was not yet very much fun, just storing movies and actors. After all, the power is in the relationships between them. diff --git a/src/docbkx/tutorial/repository.xml b/src/docbkx/tutorial/repository.xml index e9648c35a..f4b4f5b2d 100644 --- a/src/docbkx/tutorial/repository.xml +++ b/src/docbkx/tutorial/repository.xml @@ -2,7 +2,7 @@ Repositories - "- Suitable quote" + Serving a good cause We wanted to add repositories with domain-specific operations. We started by creating a movie-specific repository, simply by creating an empty interface. It is more convenient to diff --git a/src/docbkx/tutorial/running.xml b/src/docbkx/tutorial/running.xml index f4d6fc9fb..bb82dbaa3 100644 --- a/src/docbkx/tutorial/running.xml +++ b/src/docbkx/tutorial/running.xml @@ -2,7 +2,7 @@ Get it running - "- Suitable quote" + Curtains up! Now we had a pretty complete application. It was time to put it to the test. diff --git a/src/docbkx/tutorial/security.xml b/src/docbkx/tutorial/security.xml index 3322f85c1..36b3cc02a 100644 --- a/src/docbkx/tutorial/security.xml +++ b/src/docbkx/tutorial/security.xml @@ -2,7 +2,7 @@ Adding Security - "- I love the smell of napalm in the morning." + Protecting assets To have a user in the webapp we had to put it in the session and add login and registration pages. Of course the pages that were only meant for logged-in users had to be secured as well. diff --git a/src/docbkx/tutorial/setup.xml b/src/docbkx/tutorial/setup.xml index d7e443648..391cbbad5 100644 --- a/src/docbkx/tutorial/setup.xml +++ b/src/docbkx/tutorial/setup.xml @@ -2,7 +2,7 @@ The Spring stack - "- a light from the shadows shall spring" + Being Spring developers, we naturally choose components from the Spring stack to do all the heavy lifting. After all, we have the concept etched out, so we're already halfway there. diff --git a/src/docbkx/tutorial/social.xml b/src/docbkx/tutorial/social.xml index 6aafc16e7..6d0302c4d 100644 --- a/src/docbkx/tutorial/social.xml +++ b/src/docbkx/tutorial/social.xml @@ -2,7 +2,7 @@ Adding social - "- Suitable quote" + Movies 2.0 So far, the website had only been a plain old movie database (POMD?). We now wanted to add a touch of social to it. diff --git a/src/docbkx/tutorial/spring-data-graph.xml b/src/docbkx/tutorial/spring-data-graph.xml index e476b9416..ddd1b5558 100644 --- a/src/docbkx/tutorial/spring-data-graph.xml +++ b/src/docbkx/tutorial/spring-data-graph.xml @@ -2,7 +2,7 @@ Spring Data Graph - "- Do you think that's air you're breathing now?" + Conjuring magic So far it had all been pure Spring Framework and Neo4j. However, using the Neo4j code in our domain classes polluted them with graph database details. For this application, we wanted to keep the domain diff --git a/src/docbkx/tutorial/user-experience.xml b/src/docbkx/tutorial/user-experience.xml index 8859d6844..d67c80fa4 100644 --- a/src/docbkx/tutorial/user-experience.xml +++ b/src/docbkx/tutorial/user-experience.xml @@ -2,7 +2,7 @@ More UI - "- Suitable quote" + Oh the glamour To create a nice user experience, we wanted to have a nice looking app. Not something that looked like a toddler made it. So we got some user experience people involved and the results diff --git a/src/docbkx/tutorial/webapp.xml b/src/docbkx/tutorial/webapp.xml index 0a0c07ed6..d4073fb83 100644 --- a/src/docbkx/tutorial/webapp.xml +++ b/src/docbkx/tutorial/webapp.xml @@ -2,7 +2,7 @@ Web views - "- Suitable quote" + Showing off After having put some data in the graph database, we also wanted to show it to the user. Adding the controller method to show a single movie with its attributes and cast in a JSP was