Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-09-21 09:45:15 +0000
committerEike Stepper2011-09-21 09:45:15 +0000
commit68ca5b2805b4fb8669a8cc079de9e3bd6f31b88d (patch)
tree11107411695953b127b4212703d24496e7afd43c
parent3b02cb9dabbc4bf0771e2206820163a845004332 (diff)
downloadcdo-68ca5b2805b4fb8669a8cc079de9e3bd6f31b88d.tar.gz
cdo-68ca5b2805b4fb8669a8cc079de9e3bd6f31b88d.tar.xz
cdo-68ca5b2805b4fb8669a8cc079de9e3bd6f31b88d.zip
-rw-r--r--plugins/org.eclipse.emf.cdo.doc/html/application-architecture.pngbin0 -> 39170 bytes
-rw-r--r--plugins/org.eclipse.emf.cdo.doc/html/repository-architecture.pngbin0 -> 42772 bytes
-rw-r--r--plugins/org.eclipse.emf.cdo.releng.doc/src/org/eclipse/emf/cdo/releng/doc/article/impl/DocumentationImpl.java4
3 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.doc/html/application-architecture.png b/plugins/org.eclipse.emf.cdo.doc/html/application-architecture.png
new file mode 100644
index 0000000000..9bdcca1169
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.doc/html/application-architecture.png
Binary files differ
diff --git a/plugins/org.eclipse.emf.cdo.doc/html/repository-architecture.png b/plugins/org.eclipse.emf.cdo.doc/html/repository-architecture.png
new file mode 100644
index 0000000000..47eea0a762
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.doc/html/repository-architecture.png
Binary files differ
diff --git a/plugins/org.eclipse.emf.cdo.releng.doc/src/org/eclipse/emf/cdo/releng/doc/article/impl/DocumentationImpl.java b/plugins/org.eclipse.emf.cdo.releng.doc/src/org/eclipse/emf/cdo/releng/doc/article/impl/DocumentationImpl.java
index b3f2b09363..9ef2978876 100644
--- a/plugins/org.eclipse.emf.cdo.releng.doc/src/org/eclipse/emf/cdo/releng/doc/article/impl/DocumentationImpl.java
+++ b/plugins/org.eclipse.emf.cdo.releng.doc/src/org/eclipse/emf/cdo/releng/doc/article/impl/DocumentationImpl.java
@@ -163,7 +163,7 @@ public class DocumentationImpl extends StructuralElementImpl implements Document
throw new AssertionError("No default element declared in " + getTitle());
}
- setPath(defaultElement.getPath());
+ setPath(defaultElement.getFullPath());
analyzed = true;
}
@@ -716,7 +716,7 @@ public class DocumentationImpl extends StructuralElementImpl implements Document
if (!children.isEmpty())
{
StructuralElement child = children.get(0);
- File sourceFolder = child.getDoc().position().file().getParentFile().getParentFile();
+ File sourceFolder = child.getDoc().position().file().getParentFile();
copyResources(sourceFolder);
}

Back to the top