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:29 UTC

[15/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/how-tos/how-to-09-040-How-to-write-a-custom-repository.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/how-tos/how-to-09-040-How-to-write-a-custom-repository.md b/content-OLDSITE/how-tos/how-to-09-040-How-to-write-a-custom-repository.md
deleted file mode 100644
index dd9f759..0000000
--- a/content-OLDSITE/how-tos/how-to-09-040-How-to-write-a-custom-repository.md
+++ /dev/null
@@ -1,141 +0,0 @@
-How to write a custom repository
---------------------------------
-
-[//]: # (content copied to _user-guide_xxx)
-
-Repositories are defined as interfaces within the domain, and their implementation will vary by object store. During prototyping and for much of development, you will probably find it easiest to use an in-memory object store or perhaps the XML object store, with only a small number of instances. The `DomainObjectContainer` provides a set of methods that make it easy to pull back all instances from the object store which can then be filtered as required. Later on, you can replace
-the implementation depending upon the specifics of the object store that you'll be using for production.
-
-If you inherit from the 
-`org.apache.isis.applib.AbstractFactoryAndRepository` adapter class then this will automatically have the `DomainObjectContainer` injected, and
-provides convenience methods that delegate to the container. Using this is not mandatory, however.
-
-The methods provided by the `DomainObjectContainer` to support
-repositories are:
-
--   `allInstances(Class<T> ofType)`
-
-    Returns all instances of the specified type. Note that this includes
-    all instances of any subtypes.
-
--   `allMatches(...)`
-
-    Returns all instances matching the provided arguments.
-
--   `firstMatch(...)`
-
-    Returns the first instance matching the provided arguments.
-
--   `uniqueMatch(...)`
-
-    Returns the one-and-only instance matching the provided arguments (else is an exception).
-
-The last three methods, `*Match(...)` are all overloaded in order to return a subset of object instances. Some of these are "naive"; all instances are returned from the object store, and the filtering is performed within the repository. Others are designed to pass the query predicate back to the object store so that only the matching rows are returned.
-
-Each of these options are discussed in more detail below.
-
-### Finding by Title
-
-The first version of finding instances is to specify the required title for the matching objects:
-
--   `allMatches(Class<T> ofType, String title)`
-
--   `firstMatch(Class<T> ofType, String title)`
-
--   `uniqueMatch(Class<T> ofType, String title)`
-
-Although easy and intuitive, this isn't generally recommended for production use because (a) the matching is performed within the repository rather than the object store, and (b) the title string can often change as business requirements are refined.
-
-That said, it is possible to eliminate the first disadvantage by using the Query API, discussed below; this provides an implementation that is equivalent to find by title.
-
-### Finding by Pattern
-
-The next technique of finding instances is to specify pattern object to match against (sometimes called "query-by-example", or QBE):
-
--   `allMatches(Class<T> ofType, Object pattern)`
-
--   `firstMatch(Class<T> ofType, Object pattern)`
-
--   `uniqueMatch(Class<T> ofType, Object pattern)`
-
-Any non-null value of the pattern object is used as the predicate.
-
-Although more robust that searching by title, this technique is also not likely to be valid for production code because the matching is still performed within the repository rather than within the object store.
-
-That said, it is possible to eliminate the first disadvantage by using the `Query` API, discussed below; this provides an implementation that is equivalent to find by pattern.
-
-> **Note**
->
-> If the pattern object is created using `newTransientInstance(...)`, then
-> any default values for properties will automatically be set <!--(see ?)-->.
-> If this isn't required, they will need to be manually cleared.
-
-### Finding using the Filter API
-
-The third overloaded version of the matching methods to find instances
-`all take an org.apache.isis.applib.Filter<T>` instance:
-
--   `allMatches(Class<T> ofType, Filter<T> filter)`
-
--   `firstMatch(Class<T> ofType, Filter<T> filter)`
-
--   `uniqueMatch(Class<T> ofType, Filter<T> filter)`
-
-The `Filter<T>` interface is very straightforward:
-
-    public interface Filter<T> {
-        public boolean accept(T obj);
-    }
-
-Every object of the given type (and subclasses) is passed into the Filter instance; only those `accept()`'ed are returned from the `*Match()` method.
-
-Although flexible, with this technique the matching is also performed within the repository rather than the object store, and so is also likely not to be suitable for production use where there are many instances of the given type.
-
-### Finding using the Query API
-
-The final overloaded version of the matching methods take an instance
-of `org.apache.isis.applib.query.Query<T>` interface:
-
--   `allMatches(Query<T> query)`
-
--   `firstMatch(Query<T> query)`
-
--   `uniqueMatch(Query<T> query)`
-
-Unlike all the other matching mechanisms, the point of the `Query` interface is for it to be passed back to the object store and evaluated there.
-
-The applib provides several implementations that implement the
-`Query<T>` interface. Probably the most important of these is
-`QueryDefault<T>`, which provides a set of factory methods for
-constructing `Query` instances that represent a named query with a map of parameter/argument pairs.
-
-For example:
-
-    public class CustomerRepositoryImpl implements CustomerRepository {
-        public List<Customer> findCustomers(
-                @Named("Last Name") String lastName,
-                @Named("Postcode")  String postCode
-            ) {
-            QueryDefault<Customer> query = 
-                QueryDefault.create(
-                    Customer.class, 
-                    "findCustomers", 
-                    "lastName", lastName, 
-                    "postCode", postCode);
-
-            return getContainer().allMatches(query);
-        }
-        ...
-    }
-
-Above it was noted that the other overloaded versions of the matching API have the disadvantage that the matching is performed within the repository. As an alternative to using "find by title" or "find by pattern", you may wish to use `QueryFindByTitle` and `QueryFindByPattern`:
-
--   `QueryFindByTitle<T>`, which corresponds to the `allMatches(...)` for searching by title
-
--   `QueryFindByPattern<T>, which corresponds to the `allMatches(...)` for searching by pattern
-
-There is also a `QueryFindAllInstances<T>`, which corresponds to the
-`allInstances()` method.
-
-The interpretation of a `Query` instance ultimately depends on the object store. All object stores will support `QueryFindAllInstances`, and most will provide a mechanism to support `QueryDefault`. Check the object store documentation to determine whether they support other `Query` implementations (ie, `QueryFindByTitle` and `QueryFindByPattern`).
-

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/how-tos/how-to-09-050-How-to-use-Factories.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/how-tos/how-to-09-050-How-to-use-Factories.md b/content-OLDSITE/how-tos/how-to-09-050-How-to-use-Factories.md
deleted file mode 100644
index b64b028..0000000
--- a/content-OLDSITE/how-tos/how-to-09-050-How-to-use-Factories.md
+++ /dev/null
@@ -1,22 +0,0 @@
-How to use Factories
---------------------
-
-[//]: # (content copied to _user-guide_xxx)
-
-Like repositories, factories are defined by interface in the domain, decoupling the domain objects from their actual implementation.
-
-Unlike repositories, there is no particular need to change the implementation when moving from one object store to another, because in all cases the factory can simply delegate to its injected `DomainObjectContainer`.
-
-The methods for `DomainObjectContainer` that are relevant for a factory are:
-
--   `<T> T newTransientInstance(final Class<T> ofClass)`
-
--   `<T> T newPersistentInstance(final Class<T> ofClass)`
-
--   `persist(Object)`
-
--   `persistIfNotAlready(Object)`
-
-<!--
-These are discussed in more detail in ?. See also ? for full coverage of
-the methods available in DomainObjectContainer.-->

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/how-tos/how-to-customize-styling-for-a-domain-object.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/how-tos/how-to-customize-styling-for-a-domain-object.md b/content-OLDSITE/how-tos/how-to-customize-styling-for-a-domain-object.md
deleted file mode 100644
index 38cfe11..0000000
--- a/content-OLDSITE/how-tos/how-to-customize-styling-for-a-domain-object.md
+++ /dev/null
@@ -1,32 +0,0 @@
-title: How to customize the styling of a domain object (1.8.0)
-
-[//]: # (content copied to _user-guide_xxx)
-
-The [Wicket viewer](../components/viewers/wicket/about.html) will query each object when being rendered to determine if
-any instance-specific CSS class name should be used to wrap the HTML representing that domain object.
-
-The object provides the class name by implementing the <tt>cssClass()</tt> method.  For example:
-
-    public String cssClass() {
-        return !isComplete() ? "todo" : "done";
-    }
-
-If the object provides a class name, this is used as a CSS class on a containing &lt;div&gt; if rendering the object on a page, or as
-a CSS class on the containing &lt;tr&gt; if rendering the object on a table.  By customizing the `application.css` file, different styling can be provided for each object instance.
-
-
-## Screenshots
-
-The [todoapp addon](https://github.com/isisaddons/isis-app-todoapp) (not ASF) uses this technique to render completed items with a strikethrough:
-
-![](images/cssclass-todoapp-example.png)
-
-This effect is accomplished with the following addition to `application.css`:
-
-    tr.todo {
-    }
-
-    tr.done {
-        text-decoration: line-through;
-        color: #d3d3d3;
-    }

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/how-tos/images/AbstractContainedObject-hierarchy.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/how-tos/images/AbstractContainedObject-hierarchy.png b/content-OLDSITE/how-tos/images/AbstractContainedObject-hierarchy.png
deleted file mode 100644
index a72ad4c..0000000
Binary files a/content-OLDSITE/how-tos/images/AbstractContainedObject-hierarchy.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/how-tos/images/cssclass-todoapp-example.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/how-tos/images/cssclass-todoapp-example.png b/content-OLDSITE/how-tos/images/cssclass-todoapp-example.png
deleted file mode 100644
index 78deb33..0000000
Binary files a/content-OLDSITE/how-tos/images/cssclass-todoapp-example.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/dotTrans.gif
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/dotTrans.gif b/content-OLDSITE/images/dotTrans.gif
deleted file mode 100644
index 1d11fa9..0000000
Binary files a/content-OLDSITE/images/dotTrans.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/edit.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/edit.png b/content-OLDSITE/images/edit.png
deleted file mode 100644
index 964d2f0..0000000
Binary files a/content-OLDSITE/images/edit.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/favicon.ico
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/favicon.ico b/content-OLDSITE/images/favicon.ico
deleted file mode 100644
index 3950c90..0000000
Binary files a/content-OLDSITE/images/favicon.ico and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/feather-50.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/feather-50.png b/content-OLDSITE/images/feather-50.png
deleted file mode 100644
index 32ee779..0000000
Binary files a/content-OLDSITE/images/feather-50.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-001.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-001.png b/content-OLDSITE/images/gradient-001.png
deleted file mode 100644
index a55f298..0000000
Binary files a/content-OLDSITE/images/gradient-001.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-002.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-002.png b/content-OLDSITE/images/gradient-002.png
deleted file mode 100644
index da572af..0000000
Binary files a/content-OLDSITE/images/gradient-002.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-003.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-003.png b/content-OLDSITE/images/gradient-003.png
deleted file mode 100644
index 628aa93..0000000
Binary files a/content-OLDSITE/images/gradient-003.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-12VRG.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-12VRG.png b/content-OLDSITE/images/gradient-12VRG.png
deleted file mode 100644
index 2cde9f5..0000000
Binary files a/content-OLDSITE/images/gradient-12VRG.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-2PZGR.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-2PZGR.png b/content-OLDSITE/images/gradient-2PZGR.png
deleted file mode 100644
index 6e3e33a..0000000
Binary files a/content-OLDSITE/images/gradient-2PZGR.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-A949X.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-A949X.png b/content-OLDSITE/images/gradient-A949X.png
deleted file mode 100644
index c1cb36a..0000000
Binary files a/content-OLDSITE/images/gradient-A949X.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-AK6T6.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-AK6T6.png b/content-OLDSITE/images/gradient-AK6T6.png
deleted file mode 100644
index 2cde9f5..0000000
Binary files a/content-OLDSITE/images/gradient-AK6T6.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-IILCV.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-IILCV.png b/content-OLDSITE/images/gradient-IILCV.png
deleted file mode 100644
index 6e3e33a..0000000
Binary files a/content-OLDSITE/images/gradient-IILCV.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-JZPTP.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-JZPTP.png b/content-OLDSITE/images/gradient-JZPTP.png
deleted file mode 100644
index 6dbcdf1..0000000
Binary files a/content-OLDSITE/images/gradient-JZPTP.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-KNWSM.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-KNWSM.png b/content-OLDSITE/images/gradient-KNWSM.png
deleted file mode 100644
index 71f054e..0000000
Binary files a/content-OLDSITE/images/gradient-KNWSM.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-QUC5C.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-QUC5C.png b/content-OLDSITE/images/gradient-QUC5C.png
deleted file mode 100644
index cbb8365..0000000
Binary files a/content-OLDSITE/images/gradient-QUC5C.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-RSUZK.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-RSUZK.png b/content-OLDSITE/images/gradient-RSUZK.png
deleted file mode 100644
index 0b3cd5a..0000000
Binary files a/content-OLDSITE/images/gradient-RSUZK.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-RX5MH.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-RX5MH.png b/content-OLDSITE/images/gradient-RX5MH.png
deleted file mode 100644
index ed131a5..0000000
Binary files a/content-OLDSITE/images/gradient-RX5MH.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/gradient-UFXJW.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/gradient-UFXJW.png b/content-OLDSITE/images/gradient-UFXJW.png
deleted file mode 100644
index e9c5624..0000000
Binary files a/content-OLDSITE/images/gradient-UFXJW.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/icons8-logo.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/icons8-logo.png b/content-OLDSITE/images/icons8-logo.png
deleted file mode 100644
index f9dc310..0000000
Binary files a/content-OLDSITE/images/icons8-logo.png and /dev/null differ

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

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

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

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.pdn b/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.pdn
deleted file mode 100644
index 2c4902d..0000000
Binary files a/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.png b/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.png
deleted file mode 100644
index 00a9cc1..0000000
Binary files a/content-OLDSITE/images/index-screenshots/030-declarative-business-rules.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.pdn b/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.pdn
deleted file mode 100644
index 086afe6..0000000
Binary files a/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.png b/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.png
deleted file mode 100644
index 35c5149..0000000
Binary files a/content-OLDSITE/images/index-screenshots/040-imperative-business-rules.png and /dev/null differ

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

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

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

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

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

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

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

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

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

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-banner.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-banner.pdn b/content-OLDSITE/images/isis-banner.pdn
deleted file mode 100644
index 4e35601..0000000
Binary files a/content-OLDSITE/images/isis-banner.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-banner.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-banner.png b/content-OLDSITE/images/isis-banner.png
deleted file mode 100644
index 9d4dfa8..0000000
Binary files a/content-OLDSITE/images/isis-banner.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-estatio-obfuscated-320x233.jpg
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-estatio-obfuscated-320x233.jpg b/content-OLDSITE/images/isis-estatio-obfuscated-320x233.jpg
deleted file mode 100644
index 70426ed..0000000
Binary files a/content-OLDSITE/images/isis-estatio-obfuscated-320x233.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-estatio-obfuscated.jpg
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-estatio-obfuscated.jpg b/content-OLDSITE/images/isis-estatio-obfuscated.jpg
deleted file mode 100644
index 1e5cde4..0000000
Binary files a/content-OLDSITE/images/isis-estatio-obfuscated.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-icon-200x200.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-icon-200x200.png b/content-OLDSITE/images/isis-icon-200x200.png
deleted file mode 100644
index 31a11b1..0000000
Binary files a/content-OLDSITE/images/isis-icon-200x200.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-icon-250x250.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-icon-250x250.png b/content-OLDSITE/images/isis-icon-250x250.png
deleted file mode 100644
index 83bc99f..0000000
Binary files a/content-OLDSITE/images/isis-icon-250x250.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-icon-300x300.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-icon-300x300.png b/content-OLDSITE/images/isis-icon-300x300.png
deleted file mode 100644
index 6043df7..0000000
Binary files a/content-OLDSITE/images/isis-icon-300x300.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-icon-32x32.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-icon-32x32.png b/content-OLDSITE/images/isis-icon-32x32.png
deleted file mode 100644
index 8ac532b..0000000
Binary files a/content-OLDSITE/images/isis-icon-32x32.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-icon-350x350.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-icon-350x350.png b/content-OLDSITE/images/isis-icon-350x350.png
deleted file mode 100644
index 95c8735..0000000
Binary files a/content-OLDSITE/images/isis-icon-350x350.png and /dev/null differ

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

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

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

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-logo-320.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-logo-320.png b/content-OLDSITE/images/isis-logo-320.png
deleted file mode 100644
index 55a8043..0000000
Binary files a/content-OLDSITE/images/isis-logo-320.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-logo-568x286.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-logo-568x286.pdn b/content-OLDSITE/images/isis-logo-568x286.pdn
deleted file mode 100644
index 13ce035..0000000
Binary files a/content-OLDSITE/images/isis-logo-568x286.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-logo-568x286.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-logo-568x286.png b/content-OLDSITE/images/isis-logo-568x286.png
deleted file mode 100644
index df3db1d..0000000
Binary files a/content-OLDSITE/images/isis-logo-568x286.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-logo-940x560.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-logo-940x560.pdn b/content-OLDSITE/images/isis-logo-940x560.pdn
deleted file mode 100644
index e62f9dc..0000000
Binary files a/content-OLDSITE/images/isis-logo-940x560.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-logo-940x560.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-logo-940x560.png b/content-OLDSITE/images/isis-logo-940x560.png
deleted file mode 100644
index bb261cb..0000000
Binary files a/content-OLDSITE/images/isis-logo-940x560.png and /dev/null differ

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

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by-128x128.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by-128x128.png b/content-OLDSITE/images/isis-powered-by-128x128.png
deleted file mode 100644
index d7abfa4..0000000
Binary files a/content-OLDSITE/images/isis-powered-by-128x128.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by-256x256.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by-256x256.png b/content-OLDSITE/images/isis-powered-by-256x256.png
deleted file mode 100644
index bf90541..0000000
Binary files a/content-OLDSITE/images/isis-powered-by-256x256.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by-32x32.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by-32x32.png b/content-OLDSITE/images/isis-powered-by-32x32.png
deleted file mode 100644
index b37914e..0000000
Binary files a/content-OLDSITE/images/isis-powered-by-32x32.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by-64x64.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by-64x64.png b/content-OLDSITE/images/isis-powered-by-64x64.png
deleted file mode 100644
index 35aba30..0000000
Binary files a/content-OLDSITE/images/isis-powered-by-64x64.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by.pdn
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by.pdn b/content-OLDSITE/images/isis-powered-by.pdn
deleted file mode 100644
index 3e2d450..0000000
Binary files a/content-OLDSITE/images/isis-powered-by.pdn and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/isis-powered-by.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/isis-powered-by.png b/content-OLDSITE/images/isis-powered-by.png
deleted file mode 100644
index 00de5b2..0000000
Binary files a/content-OLDSITE/images/isis-powered-by.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/keyboard.jpg
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/keyboard.jpg b/content-OLDSITE/images/keyboard.jpg
deleted file mode 100644
index 369dfb4..0000000
Binary files a/content-OLDSITE/images/keyboard.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/line_light.gif
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/line_light.gif b/content-OLDSITE/images/line_light.gif
deleted file mode 100644
index a988332..0000000
Binary files a/content-OLDSITE/images/line_light.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/line_sm.gif
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/line_sm.gif b/content-OLDSITE/images/line_sm.gif
deleted file mode 100644
index ee67615..0000000
Binary files a/content-OLDSITE/images/line_sm.gif and /dev/null differ

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/01-welcome-page.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/01-welcome-page.png b/content-OLDSITE/images/screenshots/01-welcome-page.png
deleted file mode 100644
index 2e806f5..0000000
Binary files a/content-OLDSITE/images/screenshots/01-welcome-page.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/02-wicket-home-page.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/02-wicket-home-page.png b/content-OLDSITE/images/screenshots/02-wicket-home-page.png
deleted file mode 100644
index 40ac978..0000000
Binary files a/content-OLDSITE/images/screenshots/02-wicket-home-page.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/03-github-source-code.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/03-github-source-code.png b/content-OLDSITE/images/screenshots/03-github-source-code.png
deleted file mode 100644
index baab4e2..0000000
Binary files a/content-OLDSITE/images/screenshots/03-github-source-code.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/04-fixture-install.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/04-fixture-install.png b/content-OLDSITE/images/screenshots/04-fixture-install.png
deleted file mode 100644
index a26f8ea..0000000
Binary files a/content-OLDSITE/images/screenshots/04-fixture-install.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/05-fixture-installed.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/05-fixture-installed.png b/content-OLDSITE/images/screenshots/05-fixture-installed.png
deleted file mode 100644
index e3312fb..0000000
Binary files a/content-OLDSITE/images/screenshots/05-fixture-installed.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/06-todos-not-yet-complete.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/06-todos-not-yet-complete.png b/content-OLDSITE/images/screenshots/06-todos-not-yet-complete.png
deleted file mode 100644
index 89aa35f..0000000
Binary files a/content-OLDSITE/images/screenshots/06-todos-not-yet-complete.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/07-todos-result.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/07-todos-result.png b/content-OLDSITE/images/screenshots/07-todos-result.png
deleted file mode 100644
index 89f16bc..0000000
Binary files a/content-OLDSITE/images/screenshots/07-todos-result.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/08-collection-action.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/08-collection-action.png b/content-OLDSITE/images/screenshots/08-collection-action.png
deleted file mode 100644
index 94c074a..0000000
Binary files a/content-OLDSITE/images/screenshots/08-collection-action.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/09-collection-action-invoked.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/09-collection-action-invoked.png b/content-OLDSITE/images/screenshots/09-collection-action-invoked.png
deleted file mode 100644
index 47ec10e..0000000
Binary files a/content-OLDSITE/images/screenshots/09-collection-action-invoked.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/10-follow-link.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/10-follow-link.png b/content-OLDSITE/images/screenshots/10-follow-link.png
deleted file mode 100644
index 1feacc0..0000000
Binary files a/content-OLDSITE/images/screenshots/10-follow-link.png and /dev/null differ

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/12-todo-entity-edit.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/12-todo-entity-edit.png b/content-OLDSITE/images/screenshots/12-todo-entity-edit.png
deleted file mode 100644
index ad35f0f..0000000
Binary files a/content-OLDSITE/images/screenshots/12-todo-entity-edit.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/13-todo-edit-enum.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/13-todo-edit-enum.png b/content-OLDSITE/images/screenshots/13-todo-edit-enum.png
deleted file mode 100644
index a61bd6e..0000000
Binary files a/content-OLDSITE/images/screenshots/13-todo-edit-enum.png and /dev/null differ

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

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

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/17-invoke-action-grouped-params.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/17-invoke-action-grouped-params.png b/content-OLDSITE/images/screenshots/17-invoke-action-grouped-params.png
deleted file mode 100644
index 6f48589..0000000
Binary files a/content-OLDSITE/images/screenshots/17-invoke-action-grouped-params.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/18-invoke-action-args.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/18-invoke-action-args.png b/content-OLDSITE/images/screenshots/18-invoke-action-args.png
deleted file mode 100644
index 862eb78..0000000
Binary files a/content-OLDSITE/images/screenshots/18-invoke-action-args.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/19-collection.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/19-collection.png b/content-OLDSITE/images/screenshots/19-collection.png
deleted file mode 100644
index 8bef1b5..0000000
Binary files a/content-OLDSITE/images/screenshots/19-collection.png and /dev/null differ

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

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/21-audit-list.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/21-audit-list.png b/content-OLDSITE/images/screenshots/21-audit-list.png
deleted file mode 100644
index 9ff4b75..0000000
Binary files a/content-OLDSITE/images/screenshots/21-audit-list.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/22-audit-records.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/22-audit-records.png b/content-OLDSITE/images/screenshots/22-audit-records.png
deleted file mode 100644
index 65596f6..0000000
Binary files a/content-OLDSITE/images/screenshots/22-audit-records.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/23-fixtures-install-for.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/23-fixtures-install-for.png b/content-OLDSITE/images/screenshots/23-fixtures-install-for.png
deleted file mode 100644
index af0163f..0000000
Binary files a/content-OLDSITE/images/screenshots/23-fixtures-install-for.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/24-fixtures-install-args.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/24-fixtures-install-args.png b/content-OLDSITE/images/screenshots/24-fixtures-install-args.png
deleted file mode 100644
index 7f0abfc..0000000
Binary files a/content-OLDSITE/images/screenshots/24-fixtures-install-args.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/25-fixtures-installed-for-guest.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/25-fixtures-installed-for-guest.png b/content-OLDSITE/images/screenshots/25-fixtures-installed-for-guest.png
deleted file mode 100644
index 1456435..0000000
Binary files a/content-OLDSITE/images/screenshots/25-fixtures-installed-for-guest.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/26-login-as-guest.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/26-login-as-guest.png b/content-OLDSITE/images/screenshots/26-login-as-guest.png
deleted file mode 100644
index 0ba4cfd..0000000
Binary files a/content-OLDSITE/images/screenshots/26-login-as-guest.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/27a-guests-todos.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/27a-guests-todos.png b/content-OLDSITE/images/screenshots/27a-guests-todos.png
deleted file mode 100644
index 29f7920..0000000
Binary files a/content-OLDSITE/images/screenshots/27a-guests-todos.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/27b-guests-todos.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/27b-guests-todos.png b/content-OLDSITE/images/screenshots/27b-guests-todos.png
deleted file mode 100644
index b03d78b..0000000
Binary files a/content-OLDSITE/images/screenshots/27b-guests-todos.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/28-restful-login.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/28-restful-login.png b/content-OLDSITE/images/screenshots/28-restful-login.png
deleted file mode 100644
index ea027cf..0000000
Binary files a/content-OLDSITE/images/screenshots/28-restful-login.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/29-restful-services.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/29-restful-services.png b/content-OLDSITE/images/screenshots/29-restful-services.png
deleted file mode 100644
index 4a0919b..0000000
Binary files a/content-OLDSITE/images/screenshots/29-restful-services.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/30-restful-todoitems-service.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/30-restful-todoitems-service.png b/content-OLDSITE/images/screenshots/30-restful-todoitems-service.png
deleted file mode 100644
index 500b217..0000000
Binary files a/content-OLDSITE/images/screenshots/30-restful-todoitems-service.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/31-restful-todoitems-notyetcomplete.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/31-restful-todoitems-notyetcomplete.png b/content-OLDSITE/images/screenshots/31-restful-todoitems-notyetcomplete.png
deleted file mode 100644
index e424f8f..0000000
Binary files a/content-OLDSITE/images/screenshots/31-restful-todoitems-notyetcomplete.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/32-restful-todoitems-notyetcomplete-invoke.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/32-restful-todoitems-notyetcomplete-invoke.png b/content-OLDSITE/images/screenshots/32-restful-todoitems-notyetcomplete-invoke.png
deleted file mode 100644
index 2e9250b..0000000
Binary files a/content-OLDSITE/images/screenshots/32-restful-todoitems-notyetcomplete-invoke.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/33-restful-todoitems-notyetcomplete-results.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/33-restful-todoitems-notyetcomplete-results.png b/content-OLDSITE/images/screenshots/33-restful-todoitems-notyetcomplete-results.png
deleted file mode 100644
index f0150d1..0000000
Binary files a/content-OLDSITE/images/screenshots/33-restful-todoitems-notyetcomplete-results.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/screenshots/screenshot-34-restful-entity.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/screenshots/screenshot-34-restful-entity.png b/content-OLDSITE/images/screenshots/screenshot-34-restful-entity.png
deleted file mode 100644
index 06d72af..0000000
Binary files a/content-OLDSITE/images/screenshots/screenshot-34-restful-entity.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/sprites.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/sprites.png b/content-OLDSITE/images/sprites.png
deleted file mode 100644
index 5edcad0..0000000
Binary files a/content-OLDSITE/images/sprites.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/template.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/template.png b/content-OLDSITE/images/template.png
deleted file mode 100644
index 4af4f1a..0000000
Binary files a/content-OLDSITE/images/template.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/tv_show-25.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/tv_show-25.png b/content-OLDSITE/images/tv_show-25.png
deleted file mode 100644
index 0d046e2..0000000
Binary files a/content-OLDSITE/images/tv_show-25.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/images/tv_show-32.png
----------------------------------------------------------------------
diff --git a/content-OLDSITE/images/tv_show-32.png b/content-OLDSITE/images/tv_show-32.png
deleted file mode 100644
index 0df061d..0000000
Binary files a/content-OLDSITE/images/tv_show-32.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/index-new.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/index-new.md b/content-OLDSITE/index-new.md
deleted file mode 100644
index 9a79c23..0000000
--- a/content-OLDSITE/index-new.md
+++ /dev/null
@@ -1,4 +0,0 @@
-Isis graduated from the Apache incubator in October 2012; we [released](download.html) Isis Core 1.0.0 plus 4 supporting components in December 2012.
-
-Our [documentation](documentation.html) page has plenty of useful content.
-

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/index.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/index.md b/content-OLDSITE/index.md
deleted file mode 100644
index 9a79c23..0000000
--- a/content-OLDSITE/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
-Isis graduated from the Apache incubator in October 2012; we [released](download.html) Isis Core 1.0.0 plus 4 supporting components in December 2012.
-
-Our [documentation](documentation.html) page has plenty of useful content.
-

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/about.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/about.md b/content-OLDSITE/intro/about.md
deleted file mode 100644
index 01a8eef..0000000
--- a/content-OLDSITE/intro/about.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Title: Intro
-
-back to: [documentation](../documentation.html) page.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/elevator-pitch/about.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/elevator-pitch/about.md b/content-OLDSITE/intro/elevator-pitch/about.md
deleted file mode 100644
index b0cc147..0000000
--- a/content-OLDSITE/intro/elevator-pitch/about.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Title: Elevator Pitch
-
-back to: [documentation](../../documentation.html) page.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/elevator-pitch/common-use-cases.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/elevator-pitch/common-use-cases.md b/content-OLDSITE/intro/elevator-pitch/common-use-cases.md
deleted file mode 100644
index e1927e1..0000000
--- a/content-OLDSITE/intro/elevator-pitch/common-use-cases.md
+++ /dev/null
@@ -1,56 +0,0 @@
-Title: Common Use Cases
-
-[//]: # (content copied to _user-guide_core-concepts_other-deployment-options)
-
-## <a name="screencast"></a>Screencast
-
-How Apache Isis builds a webapp from the underlying domain object model...
-
-<iframe width="420" height="315" src="http://www.youtube.com/embed/ludOLyi6VyY" frameborder="0" allowfullscreen></iframe>
-
-## Prototyping
-
-Isis is great for rapid prototyping, because all you need to write in order to get an application up-and-running is the domain model objects.
-
-By focussing just on the domain, you'll also find that you start to develop a ubiquitous language - a set of terms and concepts that the entire teamEnum (business and technologists alike) have a shared understanding.
-
-Once you've sketched out your domain model, you can then either start-over using your preferred framework, or you might choose to take the domain model forward into more formal specification and testing.
-
-## Deploy on your own App
-
-The programming model defined by Isis deliberately minimizes the dependencies on the rest of the framework. In fact, the only hard dependency that the domain model classes have on Isis is through the `org.apache.isis.applib` classes, mostly to pick up annotations such as `@Disabled`. The idea is to make it easy to be able to write take a domain object prototyped and/or tested using Isis, but to deploy on some other framework's runtime.
-
-If you are interested in taking this approach, note that there is one important interface that must be implemented by your own framework, namely `DomainObjectContainer`. This interface represents the one-and-only "touchpoint" between the domain objects and the runtime. If you inspect the methods then you'll see it covers such concerns as persistence, and of raising warnings or errors.
-
-Isis' own runtime injects an (implementation of this) interface into each and every domain object. You will likely need to do something similar within your own framework, (or come up with an equivalent mechanism, eg Service Locator pattern).
-
-## Deploy on Isis as an auto-generated Webapp
-
-One of the original motivations for Isis itself was to be able automatically generate a user interface for a domain object model.
-
-Isis' has a pluggable architecture allowing different user interface technologies.  The principal implementation (as configured by the [simple](../getting-started/simple-archetype.html) archetype) is the [Wicket viewer](../../components/viewers/wicket/about.html).  This provides an appealing default user interface, with the ability to customize the user interface by writing new [Apache Wicket](http://wicket.apache.org) components.  Some third-party components can be found in the Isis addons project, integrating the Wicket viewer with [google maps](https://github.com/isisaddons/isis-wicket-gmap3), [a full calendar](https://github.com/isisaddons/isis-wicket-fullcalendar2) and a [export to Excel](https://github.com/isisaddons/isis-wicket-excel) component.
-
-It is also possible to write your own viewers:
-
-* One of Isis' committers has developed a viewer based on [DHTMLX](), also available on [github](https://github.com/madytyoo/dhtmlx-isis-viewer).
-* Another of Isis' committers has a (closed source) viewer based on [Wavemaker](http://www.wavemaker.com/).
-
-Deploying on Isis means that the framework also manages object persistence.  Again this is pluggable, but the principal implementation is the [JDO objectstore](../../components/objectstores/jdo/about.html).  Because JDO supports both SQL and NoSQL databases, you can then deploy on a variety of platforms, including the [Google App Engine (GAE)](https://developers.google.com/appengine/).
-
-## Deploy on Isis as a RESTful web service
-
-REST (Representation State Transfer) is an architectural style for building highly scalable distributed systems, using the same principles as the World Wide Web. Many commercial web APIs (twitter, facebook, Amazon) are implemented as either pure REST APIs or some approximation therein.
-
-The [Restful Objects specification](http://restfulobjects.org) defines a means by a domain object model can be exposed as RESTful resources using JSON representations over HTTP.  Isis' [RestfulObjects viewer](../../components/viewers/restfulobjects/about.html) is an implementation of that spec, making any Isis domain object automatically available via REST.
-
-There are two main use cases for deploying Isis as a RESTful web service are:
-
-- to allow a custom UI to be built against the RESTful API
-
-  For example, using Javascript/JQuery, or an RIA technology such as Flex, JavaFX, Silverlight
-
-- to enable integration between systems
-
-  REST is designed to be machine-readable, and so is an excellent choice for synchronous data interchange scenarios.
-
-As for the auto-generated webapps, the framework manages object persistence, for example using the [JDO objectstore](../../components/objectstores/jdo/about.html) objectstore.  It is perfectly possible to deploy the RESTful API alongside an auto-generated webapp; both work from the same domain object model.

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/elevator-pitch/isis-in-pictures.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/elevator-pitch/isis-in-pictures.md b/content-OLDSITE/intro/elevator-pitch/isis-in-pictures.md
deleted file mode 100644
index 7a48687..0000000
--- a/content-OLDSITE/intro/elevator-pitch/isis-in-pictures.md
+++ /dev/null
@@ -1,185 +0,0 @@
-Title: Dynamically builds the UI
-
-[//]: # (content copied to _user-guide_isis-in-pictures)
-
-{isis-in-pictures
-
-Isis dynamically builds a generic UI directlyo from the underlying domain objects.  It works by building an internal metamodel that describes the structure and behaviour of the domain objects, and then uses this metamodel to render the objects.  You can think of it as akin to an object-relational mapper; however rather than projecting the domain objects into a database, it projects them onto a web page.
-
-The screenshots below are taken from the Isis Addons' [todoapp example](http://github.com/isisaddons/isis-app-todoapp) (non ASF), which you are free to fork and use as you will.   The corresponding domain classes from which this UI was built can be found [here](https://github.com/isisaddons/isis-app-todoapp/tree/0669d6e2acc5bcad1d9978a4514a17bcf7beab1f/dom/src/main/java/todoapp/dom/module/todoitem). 
-
-The todoapp also integrates with a number of other [Isis Addons](http://www.isisaddons.org) modules.  
-
-> Please note that the Isis Addons are not part of ASF, but they are all licensed under Apache License 2.0 and are maintained by the Isis committers).
-
-### Sign-in
-
-Apache Isis integrates with [Apache Shiro](http://shiro.apache.org)\u2122.  The core framework supports file-based realms, while the Isis Addons [security module](http://github.com/isisaddons/isis-module-security) (non ASF) provides a well-features subdomain of users, roles and permissions against features derived from the Isis metamodel.  The example todoapp integrates with the security module.
-
-![](https://raw.github.com/apache/isis/master/images/010-login.png)
-
-### Install Fixtures
-
-Apache Isis has lots of features to help you prototype and then fully test your application.  One such are fixture scripts, which allow pre-canned data to be installed in the running application.  This is great to act as the starting point for identifying new stories; later on when the feature is being implemented, the same fixture script can be re-used within that feature's integration tests.  (More on tests later).
-
-![](https://raw.github.com/apache/isis/master/images/020-install-fixtures.png)
-
-### Dashboard and View Models
-
-Most of the time the end-user interacts with representations of persistent domain entities, but Isis also supports view models which can aggregate data from multiple sources.  The todoapp example uses a "dashboard" view model to list todo items not yet done vs those completed.
-
-![](https://raw.github.com/apache/isis/master/images/030-dashboard-view-model.png)
-
-In general we recommend to initially focus only on domain entities; this will help drive out a good domain model.  Later on view models can be introduced in support of specific use cases.
-
-### Domain Entity
-
-The screenshot below is of the todoapp's `ToDoItem` domain entity.  Like all web pages, this UI is generated at runtime, directly from the domain object itself.  There are no controllers or HTML to write.
-
-![](https://raw.github.com/apache/isis/master/images/040-domain-entity.png)
-
-In addition to the domain entity, Apache Isis allows layout metadata hints to be provided, for example to specify the grouping of properties, the positioning of those groups into columns, the association of actions (the buttons) with properties or collections, the icons on the buttons, and so on.  This metadata can be specified either as annotations or in JSON form; the benefit of the latter is that it can be updated (and the UI redrawn) without restarting the app.
-
-Any production-ready app will require this metadata but (like the view models discussed above) this metadata can be added gradually on top of the core domain model.
-
-### Edit properties
-
-By default properties on domain entities are editable, meaning they can be changed directly.  In the todoapp example, the `ToDoItem`'s description is one such editable property:
-
-![](https://raw.github.com/apache/isis/master/images/050-edit-property.png)
-
-Note that some of the properties are read-only even in edit mode; individual properties can be made non-editable.  It is also possible to make all properties disabled and thus enforce changes only through actions (below).
-
-### Actions
-
-The other way to modify an entity is to an invoke an action.  In the screenshot below the `ToDoItem`'s category and subcategory can be updated together using an action:
-
-![](https://raw.github.com/apache/isis/master/images/060-invoke-action.png)
-
-There are no limitations on what an action can do; it might just update a single object, it could update multiple objects.  Or, it might not update any objects at all, but could instead perform some other activity, such as sending out email or printing a document.
-
-In general though, all actions are associated with some object, and are (at least initially) also implemented by that object: good old-fashioned encapsulation.  We sometimes use the term "behaviourally complete" for such domain objects.
-
-### Contributions
-
-As an alternative to placing actions (business logic) on a domain object, it can instead be placed on an (application-scoped, stateless) domain service.  When an object is rendered by Apache Isis, it will automatically render all "contributed" behaviour; rather like traits or aspect-oriented mix-ins).
-
-In the screenshot below the highlighted "export as xml" action, the "relative priority" property (and "previous" and "next" actions) and also the "similar to" collection are all contributed:
-
-![](https://raw.github.com/apache/isis/master/images/065-contributions.png)
-
-Contributions are defined by the signature of the actions on the contributing service.  The code snippet below shows how this works for the "export as xml" action:
-
-![](https://raw.github.com/apache/isis/master/images/067-contributed-action.png)
-
-## Extensible Views
-
-The Apache Isis viewer is implemented using [Apache Wicket](http://wicket.apache.org)\u2122, and has been architected to be extensible.  For example, when a collection of objects is rendered, this is just one several views, as shown in the selector drop-down:
-
-![](https://raw.github.com/apache/isis/master/images/070-pluggable-views.png)
-
-The Isis Addons' [gmap3 component](https://github.com/isisaddons/isis-wicket-gmap3) (non ASF) will render any domain entity (such as `ToDoItem`) that implements its `Locatable` interface:
-
-![](https://raw.github.com/apache/isis/master/images/080-gmap3-view.png)
-
-Simiarly the Isis Addons' [fullcalendar2 component](https://github.com/isisaddons/isis-wicket-fullcalendar2) (non ASF) will render any domain entity (such as `ToDoItem`) that implements its `Calendarable` interface:
-
-![](https://raw.github.com/apache/isis/master/images/090-fullcalendar2-view.png)
-
-Yet another "view" (though this one is rather simpler is that provided by the Isis Addons [excel component](https://github.com/isisaddons/isis-wicket-excel) (non ASF).  This provides a download button to the table as a spreadsheet:
-
-![](https://raw.github.com/apache/isis/master/images/100-excel-view-and-docx.png)
-
-The screenshot above also shows an "export to Word" action.  This is *not* a view but instead is a (contributed) action that uses the Isis Addons [docx module](https://github.com/isisaddons/isis-module-docx) (non ASF) to perform a "mail-merge":
-
-![](https://raw.github.com/apache/isis/master/images/110-docx.png)
-
-## Security, Auditing and other Services
-
-As well as providing extensions to the UI, the Isis Addons provides a rich set of modules to support various cross-cutting concerns.
-
-Under the activity menu are four sets of services which provide support for [user session logging/auditing](https://github.com/isisaddons/isis-module-sessionlogger) (non ASF), [command profiling](https://github.com/isisaddons/isis-module-command) (non ASF), [(object change) auditing](https://github.com/isisaddons/isis-module-audit) (shown, non-ASF) and (inter-system) [event publishing](https://github.com/isisaddons/isis-module-publishing) (non ASF):
-
-![](https://raw.github.com/apache/isis/master/images/120-auditing.png)
-
-In the security menu is access to the rich set of functionality provided by the Isis addons [security module](https://github.com/isisaddons/isis-module-security) (non ASF):
-
-![](https://raw.github.com/apache/isis/master/images/130-security.png)
-
-In the prototyping menu is the ability to download a GNU gettext `.po` file for translation.  This file can then be translated into multiple languages so that your app can support different locales.  Note that this feature is part of Apache Isis core (it is not in Isis Addons):
-
-![](https://raw.github.com/apache/isis/master/images/140-i18n.png)
-
-The Isis addons also provides a module for managing application and user [settings](https://github.com/isisaddons/isis-module-settings) (non ASF).  Most apps (the todoapp example included) won't expose these services directly, but will usually wrap them in their own app-specific settings service that trivially delegates to the settings module's services:
-
-![](https://raw.github.com/apache/isis/master/images/150-appsettings.png)
-
-### Multi-tenancy support
-
-Of the various Isis addons, the [security module](https://github.com/isisaddons/isis-module-security) has the most features.  One significant feature is the ability to associate users and objects with a "tenancy".  The todoapp uses this feature so that different users' list of todo items are kept separate from one another.  A user with administrator is able to switch their own "tenancy" to the tenancy of some other user, in order to access the objects in that tenancy:
-
-![](https://raw.github.com/apache/isis/master/images/160-switch-tenancy.png)
-
-For more details, see the [security module](https://github.com/isisaddons/isis-module-security) README.
-
-### Me
-
-Most of the [security module](https://github.com/isisaddons/isis-module-security)'s services are on the security module, which would normally be provided only to administrators.  Kept separate is the "me" action:
-
-![](https://raw.github.com/apache/isis/master/images/170-me.png)
-
-Assuming they have been granted permissions, this allows a user to access an entity representing their own user account:
-
-![](https://raw.github.com/apache/isis/master/images/180-app-user-entity.png)
-
-If not all of these properties are required, then they can be hidden either using security or though Isis' internal event bus (described below).  Conversely, additional properties can be "grafted onto" the user using the contributed properties/collections discussed previously.
-
-### Themes
-
-Apache Isis' Wicket viewer uses [Twitter Bootstrap](http://getbootstrap.com), which means that it can be themed.  If more than one theme has been configured for the app, then the viewer allows the end-user to switch their theme:
-
-![](https://raw.github.com/apache/isis/master/images/190-switch-theme.png)
-
-## REST API
-
-In addition to Isis' Wicket viewer, it also provides a fully fledged REST API, as an implementation of the [Restful Objects](http://restfulobjects.org) specification.  The screenshot below shows accessing this REST API using a Chrome plugin:
-
-![](https://raw.github.com/apache/isis/master/images/200-rest-api.png)
-
-Like the Wicket viewer, the REST API is generated automatically from the domain objects (entities and view models).
-
-## Integration Testing Support
-
-Earlier on we noted that Apache Isis allows fixtures to be installed through the UI.  These same fixture scripts can be reused within integration tests.  For example, the code snippet below shows how the  `FixtureScripts` service injected into an integration test can then be used to set up data:
-
-![](https://raw.github.com/apache/isis/master/images/210-fixture-scripts.png)
-
-The tests themselves are run in junit.  While these are integration tests (so talking to a real database), they are no more complex than a regular unit test:
-
-![](https://raw.github.com/apache/isis/master/images/220-testing-happy-case.png)
-
-To simulate the business rules enforced by Apache Isis, the domain object can be "wrapped" in a proxy.  For example, if using the Wicket viewer then Apache Isis will enforce the rule (implemented in the `ToDoItem` class itself) that a completed item cannot have the "completed" action invoked upon it.  The wrapper simulates this by throwing an appropriate exception:
-
-![](https://raw.github.com/apache/isis/master/images/230-testing-wrapper-factory.png)
-
-## Internal Event Bus
-
-Contributions, discussed earlier, are an important tool in ensuring that the packages within your Isis application are decoupled; by extracting out actions the order of dependency between packages can effectively be reversed.
-
-Another important tool to ensure your codebase remains maintainable is Isis' internal event bus.  It is probably best explained by example; the code below says that the "complete" action should emit a `ToDoItem.Completed` event:
-
-![](https://raw.github.com/apache/isis/master/images/240-domain-events.png)
-
-Domain service (application-scoped, stateless) can then subscribe to this event:
-
-![](https://raw.github.com/apache/isis/master/images/250-domain-event-subscriber.png)
-
-And this test verifies that completing an action causes the subscriber to be called:
-
-![](https://raw.github.com/apache/isis/master/images/260-domain-event-test.png)
-
-In fact, the domain event is fired not once, but (up to) 5 times.  It is called 3 times prior to execution, to check that the action is visible, enabled and that arguments are valid.  It is then additionally called prior to execution, and also called after execution.  What this means is that a subscriber can in either veto access to an action of some publishing object, and/or it can perform cascading updates if the action is allowed to proceed.
-
-Moreover, domain events are fired for all properties and collections, not just actions.  Thus, subscribers can therefore switch on or switch off different parts of an application.  Indeed, the example todoapp demonstrates this.
-
-}

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/about.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/about.md b/content-OLDSITE/intro/getting-started/about.md
deleted file mode 100644
index faf6848..0000000
--- a/content-OLDSITE/intro/getting-started/about.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Title: Getting started
-
-back to: [documentation](../../documentation.html) page.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/365806f1/content-OLDSITE/intro/getting-started/ide/about.md
----------------------------------------------------------------------
diff --git a/content-OLDSITE/intro/getting-started/ide/about.md b/content-OLDSITE/intro/getting-started/ide/about.md
deleted file mode 100644
index c076aac..0000000
--- a/content-OLDSITE/intro/getting-started/ide/about.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Title: IDE
-
-back to: [documentation](../../../documentation.html) page.
\ No newline at end of file