You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2017/04/03 23:29:28 UTC

[14/59] [abbrv] [partial] isis-site git commit: ISIS-1521: deletes content-OLDSITE

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/eclipse.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/eclipse.md b/content-OLDSITE/intro/getting-started/ide/eclipse.md
deleted file mode 100644
index 20ddcec..0000000
--- a/content-OLDSITE/intro/getting-started/ide/eclipse.md
+++ /dev/null
@@ -1,156 +0,0 @@
-Title: Setting up Eclipse (with JDO/DataNucleus)
-
-[//]: # (content copied to _user-guide_appendices_xxx)
-
-> See also:
-> 
-> * setting up [IntelliJ IDE](./intellij.html).  
-> * setting up [Eclipse and JRebel](../../../other/jrebel.html).  
-> * [IDE templates for Eclipse](../../resources/editor-templates.html).  
-> 
-
-We highly recommend that you develop your Isis application using an IDE.  Isis is built with Maven, and all modern IDEs can import Maven projects.  The most commonly used IDE is [Eclipse](http://www.eclipse.org), which can be downloaded in various configurations, all of which are free for use.  We recommend you download the "Eclipse JEE package".
-
-If using the [JDO Objectstore](../../../components/objectstores/jdo/about.html) (the default if using the [simple](../simple-archetype.html) archetype), then the development environment must be configured such that the Java bytecode can be enhanced by a [JDO enhancer](http://db.apache.org/jdo/enhancement.html).  If working in Eclipse, then JDO enhancement is most easily done by installing the [DataNucleus' plugin](http://www.datanucleus.org/products/datanucleus/jdo/guides/eclipse.html).  This hooks the bytecode enhancement of your domain objects into Eclipse's normal incremental compilation.  This plugin needs to be configured for each of your domain modules (usually just one in any given app).
-
-The steps are therefore:
-
-* import the project into Eclipse
-* configure the DataNucleus enhancer
-* run the app from the `.launch` file
-
-## <a name="screencast"></a>Screencast
-
-The following screencast shows how to import an Apache Isis maven-based application into Eclipse and configure to use with the JDO Objectstore
-
-<iframe width="640" height="480" src="http://www.youtube.com/embed/RgcYfjQ8yJA" frameborder="0" allowfullscreen></iframe>
-
-
-## Importing the Project
-
-Use File > Import, then Maven > Existing Maven Projects.
-
-## Add DataNucleus support
-
-> note:
-> Make sure you are in the 'Java' Perspective, not the 'Java EE' Perspective.  
-
-In Eclipse, for the *domain object model* project, first add DataNucleus support:
-
-<img src="images/eclipse-100-project-support.png"  width="600px"/>
-
-Then turn on Auto-Enhancement:
-
-<img src="images/eclipse-110-project-support.png"  width="600px"/>
-
-
-#### Update the classpath
-
-DataNucleus' enhancer uses the domain object model's own classpath to reference DataNucleus JARs.  So, even though your domain objects are unlikely to depend on DataNucleus, these references must still be present.
-
-Add the following to your `pom.xml`:
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.isis.core</groupId>
-            <artifactId>isis-core-applib</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.isis.objectstore</groupId>
-            <artifactId>isis-objectstore-jdo-applib</artifactId>
-        </dependency>
-
-        <!-- DataNucleus (horrid, but needed to run the enhancer)-->
-        <dependency>
-            <groupId>javax.jdo</groupId>
-            <artifactId>jdo-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.datanucleus</groupId>
-            <artifactId>datanucleus-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.datanucleus</groupId>
-            <artifactId>datanucleus-enhancer</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.ow2.asm</groupId>
-                    <artifactId>asm</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.datanucleus</groupId>
-            <artifactId>datanucleus-api-jdo</artifactId>
-            </dependency>
-    </dependencies>
-
-Then, tell DataNucleus to use the project classpath:
-
-<img src="images/eclipse-010-windows-preferences.png" width="600px"/>
-
-When the enhancer runs, it will print out to the console:
-
-<img src="images/eclipse-120-console.png" width="500px"/>
-
-
-
-#### Workaround for path limits (the DN plugin to use the persistence.xml)
-
-If running on Windows then the DataNucleus plugin is very likely to hit the Windows path limit.
-
-To fix this, we configure the enhancer to read from the `persistence.xml` file.  (This fix is also required if [working with Maven](../../../components/objectstores/jdo/datanucleus-and-maven.html)).
-
-As a prerequisite, first make sure that your domain object has a `persistence.xml` file.  The details of how to do this can be found [here](../../../components/objectstores/jdo/persistence_xml.html).
-
-
-Then specify the `persistence-unit` in the project properties:
-
-<img src="images/eclipse-025-project-properties.png"  width="600px"/>
-
-
-#### Workaround: If the enhancer fails
-
-On occasion it appears that Eclipse can attempt to run two instances of the DataNucleus enhancer.  This is probably due to multiple Eclipse builders being defined; we've noticed multiple entries in the Eclipse's `Debug` view:
-<img src="images/eclipse-210-enhancer-fails-duplicates.png"/>
-
-At any rate, you'll know you've encountered this error if you see the following in the console:
-<img src="images/eclipse-200-enhancer-fails-duplicates.png" width="600px"/>
-
-The best solution is to remove DataNucleus support and then to re-add it:
-<img src="images/eclipse-220-enhancer-fails-duplicates.png"  width="600px"/>
-
-If you consistently hit problems, then the final recourse is to disable the automatic enhancement and to remember to manually enhance your domain object model before each run.  
-
-Not ideal, we know.  Please feel free to contribute a better solution :-)
-
-
-## Running the App
-
-The simpleapp archetype automatically provides a `.launch` configurations in the `webapp` module.  You can therefore very simply run the application by right-clicking on one of these files, and choosing "Run As..." or "Debug As...".
-
-> the screencast shows this in action.
-
-<hr/>
-## Other domain projects.
-
-There is nothing to prevent you having multiple domain projects.  You might want to do such that each domain project corresponds to a [DDD module](http://www.methodsandtools.com/archive/archive.php?id=97p2), thus guaranteeing that there are no cyclic dependencies between your modules.
-
-If you do this, make sure that each project has its own `persistence.xml` file.
-
-And, remember also to configure Eclipse's DataNucleus plugin for these other domain projects.
-
-#### JDO Applib domain projects.
-
-The JDO objectstore also defines some of its own persistable domain entities, these being used in its implementation of the [Publishing Service](../../../components/objectstores/jdo/services/publishing-service-jdo.html) and the [Settings Services](../../../components/objectstores/jdo/services/settings-services-jdo.html).   These persistable domain entities are defined in the JDO applib, and must be enhanced.
-
-If just using released versions of Isis, then there is nothing to be done.
-
-However, if building Isis from source code and in Eclipse, and if you plan to use either of these services, then you must also configure Eclipse's DataNucleus plugin.
-
-As noted in the [page describing persistence.xml](../../../components/objectstores/jdo/persistence_xml.html), the `persistence-unit` name is: `jdo-applib`.  You should therefore configure the enhance the DataNucleus enhancer for the `isis-objectstore-jdo-applib` project, and configure the plugin as shown below:
-
-<img src="images/jdo-applib-dn-project-configuration.png"  width="600px"/>
-
-

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-010-windows-preferences.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-010-windows-preferences.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-010-windows-preferences.png
deleted file mode 100644
index 149a23b..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-010-windows-preferences.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-025-project-properties.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-025-project-properties.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-025-project-properties.png
deleted file mode 100644
index 120856c..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-025-project-properties.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-100-project-support.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-100-project-support.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-100-project-support.png
deleted file mode 100644
index 7068fb4..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-100-project-support.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-110-project-support.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-110-project-support.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-110-project-support.png
deleted file mode 100644
index 49d04a8..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-110-project-support.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-120-console.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-120-console.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-120-console.png
deleted file mode 100644
index 1e77587..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-120-console.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-200-enhancer-fails-duplicates.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-200-enhancer-fails-duplicates.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-200-enhancer-fails-duplicates.png
deleted file mode 100644
index 8d7e10a..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-200-enhancer-fails-duplicates.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-210-enhancer-fails-duplicates.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-210-enhancer-fails-duplicates.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-210-enhancer-fails-duplicates.png
deleted file mode 100644
index 5350251..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-210-enhancer-fails-duplicates.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/eclipse-220-enhancer-fails-duplicates.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/eclipse-220-enhancer-fails-duplicates.png b/content-OLDSITE/intro/getting-started/ide/images/eclipse-220-enhancer-fails-duplicates.png
deleted file mode 100644
index dbe247e..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/eclipse-220-enhancer-fails-duplicates.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/intellij-010-import.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/intellij-010-import.png b/content-OLDSITE/intro/getting-started/ide/images/intellij-010-import.png
deleted file mode 100644
index d6c773f..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/intellij-010-import.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/intellij-020-maven.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/intellij-020-maven.png b/content-OLDSITE/intro/getting-started/ide/images/intellij-020-maven.png
deleted file mode 100644
index 2faf4ff..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/intellij-020-maven.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/intellij-030-run-configuration.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/intellij-030-run-configuration.png b/content-OLDSITE/intro/getting-started/ide/images/intellij-030-run-configuration.png
deleted file mode 100644
index 336c96f..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/intellij-030-run-configuration.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/intellij-035-run-configuration.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/intellij-035-run-configuration.png b/content-OLDSITE/intro/getting-started/ide/images/intellij-035-run-configuration.png
deleted file mode 100644
index a54b16a..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/intellij-035-run-configuration.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/intellij-040-run-configuration.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/intellij-040-run-configuration.png b/content-OLDSITE/intro/getting-started/ide/images/intellij-040-run-configuration.png
deleted file mode 100644
index 68bb236..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/intellij-040-run-configuration.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/images/jdo-applib-dn-project-configuration.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/images/jdo-applib-dn-project-configuration.png b/content-OLDSITE/intro/getting-started/ide/images/jdo-applib-dn-project-configuration.png
deleted file mode 100644
index 3786e3c..0000000
Binary files a/content-OLDSITE/intro/getting-started/ide/images/jdo-applib-dn-project-configuration.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/intellij.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/intellij.md b/content-OLDSITE/intro/getting-started/ide/intellij.md
deleted file mode 100644
index 3bec6ac..0000000
--- a/content-OLDSITE/intro/getting-started/ide/intellij.md
+++ /dev/null
@@ -1,64 +0,0 @@
-Title: Setting up the IntelliJ IDE
-
-> See also:
-> 
-> * setting up [Eclipse IDE](./eclipse.html).  
-> * setting up [IntelliJ and JRebel](../../../other/jrebel.html).  
-> * [IDE templates for IntelliJ](../../resources/editor-templates.html).  
-> 
-
-We highly recommend that you develop your Isis application using an IDE.  Isis is built with Maven, and all modern IDEs can import Maven projects.  One of the most popular IDEs is [IntelliJ IDEA](http://www.jetbrains.com/idea/), offering either a paid-for "Ultimate" edition or a free-to-use Community edition.  Either will do for Isis development.
-
-If using the [JDO Objectstore](../../../components/objectstores/jdo/about.html) (the default if using the [simpleapp](../simple-archetype.html) archetype), then the development environment must be configured such that the Java bytecode can be enhanced by a [JDO enhancer](http://db.apache.org/jdo/enhancement.html).  When working in IntelliJ, then JDO enhancement is most easily done by leveraging the Maven configuration.  We do this by executing the `mvn compile` goal in the dom project, prior to running the application.
-
-The steps are therefore:
-
-* import the project into IntelliJ
-* setting up a run/debug configuration to run the app
-
-## <a name="screencast"></a>Screencasts
-
-This screencast shows how to import an Isis app into IntelliJ, and then how to setup the run/debug configuration to run the app:
-
-<iframe width="640" height="360" src="//www.youtube.com/embed/gF2FRadglpk" frameborder="0" allowfullscreen></iframe>
-
-If you are a [JRebel](http://zeroturnaround.com/software/jrebel/) user, then do also look at [how to configure IntelliJ with JRebel](../../../other/jrebel.html#intellij).
-
-## Importing the Code into IntelliJ
-
-Importing the Isis as a Maven app is straightforward:
-
-<img src="images/intellij-010-import.png"  width="500px"/>
-
-and then:
-
-<img src="images/intellij-020-maven.png"  width="500px"/>
-
-
-## Setting up a Run/Debug Configuration
-
-The screenshot below shows how to setup the run/debug configuration:
-
-<img src="images/intellij-030-run-configuration.png"  width="720px"/>
-
-That is:
-
-* Main Class: `org.apache.isis.WebServer`
-* VM options: (leave blank)
-* Program arguments: `--type SERVER_PROTOTYPE --port 8080`
-* Environment variables: (leave blank)
-* Use classpath of module: (the `webapp` module)
-
-See [here](../../../reference/deployment-type.html) for other deployment types (the `--type` argument).
-
-Then - importantly - for the `Before launch` setting, first remove the default "Make" entry, and then add a new Maven goal:
-
-<img src="images/intellij-035-run-configuration.png"  width="720px"/>
-
-to execute `mvn datanucleus:enhance` for the `dom` module (adjust path as necessary):
-
-<img src="images/intellij-040-run-configuration.png"  width="600px"/>
-  
-Running `mvn datanucleus:enhance` will ensure that the domain object classes are enhanced by the DataNucleus enhancer.
-
-> *Note*: The above assumes you are using IntelliJ's background automatic builds (File > Settings > Compiler > Make project automatically).  If you have this switched off, then you probably should also run IntelliJ's regular make here.

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/00-notes.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/00-notes.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/00-notes.pdn
deleted file mode 100644
index 025f0dd..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/00-notes.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.pdn
deleted file mode 100644
index bf4f16a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.png b/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.png
deleted file mode 100644
index 138910a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/010-sign-in.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.pdn
deleted file mode 100644
index cafb5c0..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.png b/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.png
deleted file mode 100644
index ead2f45..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/020-todo-app.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.pdn
deleted file mode 100644
index 05804ef..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.png b/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.png
deleted file mode 100644
index 137a810..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/030-jdo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.pdn
deleted file mode 100644
index 9d11713..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.png b/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.png
deleted file mode 100644
index ff4b8d2..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/040-rest-api.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.pdn
deleted file mode 100644
index 673e55f..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.png b/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.png
deleted file mode 100644
index 5946b53..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/050-menu-services.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.pdn
deleted file mode 100644
index aeffdb6..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.png b/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.png
deleted file mode 100644
index 0244521..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/060-menu-class.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.pdn
deleted file mode 100644
index 25234e4..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.png b/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.png
deleted file mode 100644
index 6bab538..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/070-ToDoItem-newToDo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.pdn
deleted file mode 100644
index 4e8235e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.png b/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.png
deleted file mode 100644
index 3895474..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/080-ToDoItems-newToDo-Category-enum.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.pdn
deleted file mode 100644
index 3dd5eec..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.png b/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.png
deleted file mode 100644
index 90deaf0..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/090-ToDoItems-newToDo-Subcategory-choices.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.pdn
deleted file mode 100644
index 99a69c7..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.png b/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.png
deleted file mode 100644
index 44d8d1a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/100-ToDoItems-newToDo-datepicker.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.pdn
deleted file mode 100644
index 2ec3242..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.png b/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.png
deleted file mode 100644
index 94b5b02..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/110-ToDoItems-newToDo-defaults.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.pdn
deleted file mode 100644
index f206506..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.png b/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.png
deleted file mode 100644
index 85bec0a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/120-ToDoItems-newToDo-mandatory.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.pdn
deleted file mode 100644
index 4599cd4..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.png b/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.png
deleted file mode 100644
index 5ff75ae..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/130-ToDoItems-newToDo-regex.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.pdn
deleted file mode 100644
index 9eb4c59..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.png b/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.png
deleted file mode 100644
index f32758e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/140-ToDoItems-notYetComplete.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.pdn
deleted file mode 100644
index f4e720c..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.png b/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.png
deleted file mode 100644
index 587cd27..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/150-standalone-collection.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.pdn
deleted file mode 100644
index dbd2101..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.png b/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.png
deleted file mode 100644
index e742307..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/160-navigating-to-object.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.pdn
deleted file mode 100644
index 8c57e10..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.png b/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.png
deleted file mode 100644
index 203a3a6..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/170-object-layout.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.pdn
deleted file mode 100644
index bfb3014..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.png b/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.png
deleted file mode 100644
index b9f2109..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/180-object-layout-json.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.pdn
deleted file mode 100644
index c131e8e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.png b/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.png
deleted file mode 100644
index d30e908..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/190-download-layout.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.pdn
deleted file mode 100644
index fa5606e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.png b/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.png
deleted file mode 100644
index fbefc57..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/200-refresh-layout.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.pdn
deleted file mode 100644
index 4cf14f4..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.png b/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.png
deleted file mode 100644
index c6a385f..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/210-css-styling.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/220-title.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/220-title.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/220-title.pdn
deleted file mode 100644
index 35cb2b6..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/220-title.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/220-title.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/220-title.png b/content-OLDSITE/intro/getting-started/images/screenshots/220-title.png
deleted file mode 100644
index a5719bc..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/220-title.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.pdn
deleted file mode 100644
index ab92e2a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.png b/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.png
deleted file mode 100644
index f86911e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/230-icon.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.pdn
deleted file mode 100644
index b59a863..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.png b/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.png
deleted file mode 100644
index 3b6c5b5..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/240-editing-properties.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.pdn
deleted file mode 100644
index 05ee506..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.png b/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.png
deleted file mode 100644
index 1bdfdf9..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/250-disabled-properties.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.pdn
deleted file mode 100644
index a8f22e0..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.png b/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.png
deleted file mode 100644
index fa6799f..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/260-ToDoItem-hidden.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.pdn
deleted file mode 100644
index 588d231..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.png b/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.png
deleted file mode 100644
index ec45ab1..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/270-ToDoItem-validateDeclaratively.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.pdn
deleted file mode 100644
index 0500143..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.png b/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.png
deleted file mode 100644
index 0e4f7f8..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/280-ToDoItem-validateImperatively.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.pdn
deleted file mode 100644
index 2b0fe52..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.png b/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.png
deleted file mode 100644
index 9126041..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/290-invoke-noarg-action.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.pdn
deleted file mode 100644
index cd10273..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.png b/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.png
deleted file mode 100644
index 088849d..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/300-disable-action.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.pdn
deleted file mode 100644
index 29da309..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.png b/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.png
deleted file mode 100644
index 29b102d..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/310-action-with-args.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.pdn
deleted file mode 100644
index e8d1361..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.png b/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.png
deleted file mode 100644
index 280ce0a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/320-action-with-args-autocomplete.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.pdn
deleted file mode 100644
index 554f339..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.png b/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.png
deleted file mode 100644
index 676ef09..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/330-bulk-actions.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.pdn
deleted file mode 100644
index c72c8cb..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.png b/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.png
deleted file mode 100644
index e3c9118..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/340-contributed-action.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.pdn
deleted file mode 100644
index caaab50..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.png b/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.png
deleted file mode 100644
index 745ba7a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/350-contributed-properties.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.pdn
deleted file mode 100644
index ddff889..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.png b/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.png
deleted file mode 100644
index eaaf805..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/360-contributed-collections.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.pdn
deleted file mode 100644
index eb644fe..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.png b/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.png
deleted file mode 100644
index 8451c8c..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/370-view-models-1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.pdn
deleted file mode 100644
index b161cb6..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.png b/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.png
deleted file mode 100644
index 1cb0396..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/380-view-models-2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.pdn
deleted file mode 100644
index 4784322..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.png b/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.png
deleted file mode 100644
index 59e5a6c..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/390-view-model-rest-api.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.pdn
deleted file mode 100644
index f801cd2..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.png b/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.png
deleted file mode 100644
index b158ac2..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/400-dashboard.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.pdn
deleted file mode 100644
index 9d666d9..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.png b/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.png
deleted file mode 100644
index 5944d2b..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/410-bookmarkable.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.pdn
deleted file mode 100644
index 61814c7..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.png b/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.png
deleted file mode 100644
index d1ae802..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/420-optimistic-locking.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.pdn
deleted file mode 100644
index d4ed62d..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.png b/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.png
deleted file mode 100644
index 08c66ce..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/430-domainobjectcontainer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.pdn
deleted file mode 100644
index ff71b7e..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.png b/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.png
deleted file mode 100644
index aa22bb7..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/440-domainobjectcontainer-2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.pdn
deleted file mode 100644
index ced61de..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.png b/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.png
deleted file mode 100644
index c342c77..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/450-prototyping-actions.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.pdn
deleted file mode 100644
index f70fcc5..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.png b/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.png
deleted file mode 100644
index 1bf28c0..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/460-authorization.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.pdn
deleted file mode 100644
index 3ad01e3..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.png b/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.png
deleted file mode 100644
index ee2fc5a..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/470-publishing-service.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.pdn
deleted file mode 100644
index c407930..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.png b/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.png
deleted file mode 100644
index fd6f387..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/480-auditing-service.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.pdn b/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.pdn
deleted file mode 100644
index 6123b08..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.png b/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.png
deleted file mode 100644
index 708d35f..0000000
Binary files a/content-OLDSITE/intro/getting-started/images/screenshots/490-integtesting.png and /dev/null differ