[Yanel-commits] rev 40729 - in public/yanel/contributions/resources: . xinha xinha/htdocs xinha/htdocs/css xinha/htdocs/js xinha/src xinha/src/build xinha/src/java xinha/src/java/org xinha/src/java/org/wyona xinha/src/java/org/wyona/yanel xinha/src/java/org/wyona/yanel/impl xinha/src/java/org/wyona/yanel/impl/resources xinha/src/java/org/wyona/yanel/impl/resources/xinha xinha/yanel-htdocs xinha/yanel-htdocs/doc xinha/yanel-htdocs/icons xinha/yanel-htdocs/icons/16x16 xinha/yanel-htdocs/icons/22x22 xinha/yanel-htdocs/icons/32x32 xinha/yanel-htdocs/icons/scalable

simon at wyona.com simon at wyona.com
Mon Jan 5 09:12:32 CET 2009


Author: simon
Date: 2009-01-05 09:12:31 +0100 (Mon, 05 Jan 2009)
New Revision: 40729

Added:
   public/yanel/contributions/resources/xinha/
   public/yanel/contributions/resources/xinha/build.xml
   public/yanel/contributions/resources/xinha/htdocs/
   public/yanel/contributions/resources/xinha/htdocs/css/
   public/yanel/contributions/resources/xinha/htdocs/css/xinha-resource.css
   public/yanel/contributions/resources/xinha/htdocs/js/
   public/yanel/contributions/resources/xinha/htdocs/js/ajaxlookup.js
   public/yanel/contributions/resources/xinha/htdocs/js/xinhaInit.js
   public/yanel/contributions/resources/xinha/htdocs/xinha-fix.jelly
   public/yanel/contributions/resources/xinha/htdocs/xinha-status.jelly
   public/yanel/contributions/resources/xinha/htdocs/xinha.jelly
   public/yanel/contributions/resources/xinha/htdocs/xinha/
   public/yanel/contributions/resources/xinha/resource.xml
   public/yanel/contributions/resources/xinha/src/
   public/yanel/contributions/resources/xinha/src/build/
   public/yanel/contributions/resources/xinha/src/build/build.properties
   public/yanel/contributions/resources/xinha/src/build/dependencies.xml
   public/yanel/contributions/resources/xinha/src/java/
   public/yanel/contributions/resources/xinha/src/java/org/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/xinha/
   public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/xinha/XinhaResource.java
   public/yanel/contributions/resources/xinha/src/test/
   public/yanel/contributions/resources/xinha/yanel-htdocs/
   public/yanel/contributions/resources/xinha/yanel-htdocs/doc/
   public/yanel/contributions/resources/xinha/yanel-htdocs/doc/index.html
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/16x16/
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/16x16/rt-icon.png
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/22x22/
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/22x22/rt-icon.png
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/32x32/
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/32x32/rt-icon.png
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/scalable/
   public/yanel/contributions/resources/xinha/yanel-htdocs/icons/scalable/rt-icon.svg
Log:
xinha editor (http://xinha.webfactional.com/) resource-type started

Added: public/yanel/contributions/resources/xinha/build.xml
===================================================================
--- public/yanel/contributions/resources/xinha/build.xml	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/build.xml	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,71 @@
+<?xml version="1.0"?>
+
+<project name="yanel-resource" default="compile">
+
+  <import file="src/build/dependencies.xml"/>
+
+  <target name="init" description="Initialize build" depends="dependencies">
+    <echo>Initialize build</echo>
+
+    <dirname property="resource.home.dir" file="${ant.file}"/>
+    <echo>Resource Home Directory: ${resource.home.dir}</echo>
+
+    <property file="${resource.home.dir}/src/build/local.build.properties"/>
+    <property file="${resource.home.dir}/src/build/build.properties"/>
+
+    <path id="classpath">
+      <pathelement path="${maven2.cp}"/>
+      <pathelement path="${maven2.resource.cp}"/>
+    </path>
+    <property name="resource.build.dir" value="${resource.home.dir}/build"/>
+    <property name="resource.classes.dir" value="${resource.build.dir}/classes"/>
+    <property name="resource.lib.dir" value="${resource.build.dir}/lib"/>
+    <property name="resource.java.dir" value="${resource.home.dir}/src/java"/>
+    <property name="resource.resource.xml" value="${resource.home.dir}/resource.xml"/>
+    <xmlproperty prefix="resource.resource.xml" file="${resource.resource.xml}"/>
+    
+  </target>
+
+  <target name="compile" description="Compile Java classes" depends="init">
+
+    <mkdir dir="${resource.classes.dir}"/>
+    <javac srcdir="${resource.java.dir}" destdir="${resource.classes.dir}"
+      classpathref="classpath"
+      debug="true"
+    />
+    
+    <propertyregex property="new.resource.java.classname.fs.path"
+             input="${resource.resource.xml.resource(class)}"
+             regexp="[.]"
+             replace="/"
+             global="true"
+             casesensitive="false" />
+             <echo>${new.resource.java.classname.fs.path}</echo>
+    <propertyregex property="new.resource.java.class.fs.path"
+             input="${new.resource.java.classname.fs.path}"
+             regexp="\/[^/]*$"
+             replace=""
+             global="true"
+             casesensitive="false" />
+             <echo>hilfes${resource.classes.dir}/${new.resource.java.class.fs.path}</echo>
+    <copy todir="${resource.classes.dir}/${new.resource.java.class.fs.path}">
+      <fileset dir="${resource.home.dir}" includes="resource**,htdocs/**,yanel-htdocs/**"/>
+    </copy>             
+    <mkdir dir="${resource.lib.dir}"/>
+    <jar destfile="${resource.lib.dir}/yanel-resource-${resource.name}-${resource.version}.jar"
+      basedir="${resource.classes.dir}">
+      <fileset dir="${resource.classes.dir}"/>
+    </jar>
+  </target>
+
+  <target name="clean" depends="init">
+    <delete dir="${resource.build.dir}"/>
+  </target>
+
+  <target name="copy-dependencies" depends="init">
+    <copy todir="${build.dir}/webapps/${servlet.context.prefix}/WEB-INF/lib">
+      <fileset refid="maven2.resource.fileset"/>
+      <mapper type="flatten"/>
+    </copy>
+  </target>
+</project>

Added: public/yanel/contributions/resources/xinha/htdocs/css/xinha-resource.css
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/css/xinha-resource.css	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/css/xinha-resource.css	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,13 @@
+#resourceCreatorSaveAsTable {
+  width:100%;
+}
+
+#lookupfilesTable {
+  width:100%;
+}
+
+#lookupfiles {
+  height:160px;
+  overflow:auto;
+  position:relative;
+}
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/htdocs/js/ajaxlookup.js
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/js/ajaxlookup.js	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/js/ajaxlookup.js	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,3 @@
+function ajaxlookup(lookin) {
+  new Ajax.Updater('lookup', '', { method: 'get', onLoading: createProgressBar('lookupfiles'), onComplete: sorttable.reinit, parameters: {lookup: 'true', 'yanel.resource.viewid': 'source', lookin: lookin} });
+}
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/htdocs/js/xinhaInit.js
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/js/xinhaInit.js	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/js/xinhaInit.js	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,9 @@
+        tinyMCE.init({
+            mode : "textareas",
+            theme : "advanced",
+            theme_advanced_layout_manager: "RowLayout",
+            theme_advanced_containers: "container1,mceEditor",
+            theme_advanced_container_container1: "bold,italic,underline,separator,bullist,separator,undo,redo,separator,link,unlink,separator,formatselect,image,code",
+            plugins : "fullpage",
+            entity_encoding : "raw"
+        });
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/htdocs/xinha-fix.jelly
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/xinha-fix.jelly	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/xinha-fix.jelly	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<j:jelly xmlns:j="jelly:core">
+  <html xmlns="http://www.w3.org/1999/xhtml">
+    <head>
+      <title>YUI Rich Text Editor</title>
+
+    </head>
+    <body>
+      <p class="yanel-usecase-error">${resource.getErrorMessages()}</p>
+      <p>${resource.getInfoMessages()}</p>
+      <j:choose>
+        <j:when test="${resource.getEditPath() != null &amp;&amp; !resource.getEditPath().equals('')}">
+          <div class="yui-skin-sam">
+            <form method="post" action="">
+              <input type="hidden" name="edit-path" value="${resource.getEditPath()}"/>
+              <textarea id="${resource.getEditPath()}" name="${resource.getEditPath()}" rows="15" cols="80" style="width: 100%">
+                ${resource.getEscapedContent()}
+              </textarea>
+              <br />
+              <input type="submit" id="submit" name="submit" value="Save" />
+              <input type="submit" id="submit-tidy" name="submit-tidy" value="Tidy" />
+              <input type="submit" id="submit" name="cancel" value="Cancel" />
+            </form>
+          </div>
+        </j:when>
+        <j:otherwise>
+          ${resource.getLookup()}
+        </j:otherwise>
+      </j:choose>
+      
+
+    </body>
+  </html>
+</j:jelly>
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/htdocs/xinha-status.jelly
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/xinha-status.jelly	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/xinha-status.jelly	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<j:jelly xmlns:j="jelly:core">
+  <html xmlns="http://www.w3.org/1999/xhtml">
+    <head>
+    <title>YUI Rich Text Editor</title>
+    </head>
+    <body>
+      <p class="yanel-usecase-error">${resource.getErrorMessages()}</p>
+      <p>${resource.getInfoMessages()}</p>
+      <form action="">
+        <input type="button" name="finish" value="Finish" onclick="window.location.href='${resource.getParameterAsString('continue-path')}'"/>
+      </form>
+    </body>
+  </html>
+</j:jelly>
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/htdocs/xinha.jelly
===================================================================
--- public/yanel/contributions/resources/xinha/htdocs/xinha.jelly	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/htdocs/xinha.jelly	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<j:jelly xmlns:j="jelly:core">
+  <html xmlns="http://www.w3.org/1999/xhtml">
+    <head>
+      <title>Edit ${resource.getEditPath()} with Xinha</title>
+      <link rel="stylesheet" type="text/css" href="${yanel.back2realm}${yanel.reservedPrefix}/resource-types/http://www.wyona.org/yanel/resource/1.0::xinha/css/xinha-resource.css"/>
+      <script language="javascript" type="text/javascript" src="${yanel.back2realm}${yanel.reservedPrefix}/resource-types/http://www.wyona.org/yanel/resource/1.0::xinha/xinha/jscripts/xinha/xinha.js"></script>
+      <script language="javascript" type="text/javascript" src="${yanel.back2realm}usecases/xinhainit.js"></script>
+      
+      
+      <script type="text/javascript">
+        _editor_url  = "${yanel.back2realm}${yanel.reservedPrefix}/resource-types/http://www.wyona.org/yanel/resource/1.0::xinha/xinha/"  // (preferably absolute) URL (including trailing slash) where Xinha is installed
+        _editor_lang = "en";      // And the language we need to use in the editor.
+        _editor_skin = "silva";   // If you want use a skin, add the name (of the folder) here
+      </script>
+      <script type="text/javascript" src="${yanel.back2realm}${yanel.reservedPrefix}/resource-types/http://www.wyona.org/yanel/resource/1.0::xinha/xinha/XinhaCore.js"></script>
+    </head>
+    <body>
+      <p class="yanel-usecase-error">${resource.getErrorMessages()}</p>
+      <p>${resource.getInfoMessages()}</p>
+      <j:choose>
+        <j:when test="${resource.getEditPath() != null &amp;&amp; !resource.getEditPath().equals('')}">
+          <div class="xinha">
+            <form method="post" action="">
+              <input type="hidden" name="edit-path" value="${resource.getEditPath()}"/>
+              <textarea id="${resource.getEditPath()}" name="${resource.getEditPath()}" rows="15" cols="80" style="width: 100%">
+                ${resource.getEditorFormContent()}
+              </textarea>
+              <br />
+              <input type="submit" id="submit" name="submit" value="Save" />
+              <input type="submit" id="submit" name="cancel" value="Cancel" />
+            </form>
+          </div>
+        </j:when>
+        <j:otherwise>
+          ${resource.getLookup()}
+        </j:otherwise>
+      </j:choose>
+      
+
+    </body>
+  </html>
+</j:jelly>
\ No newline at end of file

Added: public/yanel/contributions/resources/xinha/resource.xml
===================================================================
--- public/yanel/contributions/resources/xinha/resource.xml	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/resource.xml	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+
+<resource xmlns="http://www.wyona.org/yanel/1.0"
+  name="xinha"
+  namespace="http://www.wyona.org/yanel/resource/1.0"
+  class="org.wyona.yanel.impl.resources.xinha.XinhaResource"
+  >
+<description>
+xinha Editor to edit xhtml
+</description>
+
+<rtd>
+<!--
+  <property name="foo" default-value="bar"/>
+-->
+</rtd>
+</resource>

Added: public/yanel/contributions/resources/xinha/src/build/build.properties
===================================================================
--- public/yanel/contributions/resources/xinha/src/build/build.properties	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/src/build/build.properties	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,2 @@
+resource.name=xinha
+resource.version=0.0.1-dev-rXXX

Added: public/yanel/contributions/resources/xinha/src/build/dependencies.xml
===================================================================
--- public/yanel/contributions/resources/xinha/src/build/dependencies.xml	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/src/build/dependencies.xml	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+
+<project name="xinha-dependencies" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+
+  <target name="dependencies" description="Dependencies">
+    <artifact:remoteRepository id="wyona.remote.repository" url="${maven.url}"/>
+
+    
+    <!--     get xinha by maven -->    
+    <artifact:dependencies filesetId="maven2.xinha.fileset">
+      <remoteRepository refid="wyona.remote.repository"/>
+      <dependency groupId="xinha" artifactId="xinha" version="0.95" scope="provided" type="zip"/>
+    </artifact:dependencies>
+    
+    <unzip dest="htdocs/xinha">
+      <fileset refid="maven2.xinha.fileset"/>
+    </unzip>
+    <!--     get xinha by maven -->
+    
+    
+    <artifact:dependencies pathId="maven2.classpath" filesetId="maven2.fileset">
+      <remoteRepository refid="wyona.remote.repository"/>
+      <dependency groupId="wyona-org-yanel" artifactId="yanel-core" version="${yanel.source.version}"/>
+      <dependency groupId="wyona-org-yanel" artifactId="yanel-impl" version="${yanel.source.version}"/>
+      <dependency groupId="javax.servlet" artifactId="servlet-api" version="2.3"/>
+    </artifact:dependencies>
+
+    <artifact:dependencies pathId="maven2.resource.classpath" filesetId="maven2.resource.fileset">
+      <remoteRepository refid="wyona.remote.repository"/>
+      <dependency groupId="apache-jakarta-commons" artifactId="apache-jakarta-commons-lang" version="2.1"/>
+      <dependency groupId="apache-jakarta-commons" artifactId="apache-jakarta-commons-io" version="1.2"/>
+      <dependency groupId="org.hibernate" artifactId="jtidy-r8" version="20060801"/>
+      <dependency groupId="xml-resolver" artifactId="xml-resolver" version="1.1"/>
+    </artifact:dependencies>
+
+    <property name="maven2.cp" refid="maven2.classpath"/>
+    <property name="maven2.resource.cp" refid="maven2.resource.classpath"/>
+    <echo>Maven2 classpath: ${maven2.cp}</echo>
+  </target>
+
+</project>

Added: public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/xinha/XinhaResource.java
===================================================================
--- public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/xinha/XinhaResource.java	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/src/java/org/wyona/yanel/impl/resources/xinha/XinhaResource.java	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,201 @@
+/*
+ * Copyright 2006 Wyona
+ */
+
+package org.wyona.yanel.impl.resources.xinha;
+
+import java.io.BufferedInputStream;
+import java.io.BufferedReader;
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.util.Enumeration;
+import javax.servlet.http.HttpServletRequest;
+import javax.xml.transform.Source;
+import javax.xml.transform.stream.StreamSource;
+
+import org.apache.log4j.Category;
+import org.apache.log4j.Logger;
+import org.w3c.dom.Document;
+import org.w3c.tidy.Tidy;
+import org.wyona.yanel.core.Environment;
+import org.wyona.yanel.core.Resource;
+import org.wyona.yanel.core.ResourceConfiguration;
+import org.wyona.yanel.core.api.attributes.CreatableV2;
+import org.wyona.yanel.core.api.attributes.ModifiableV2;
+import org.wyona.yanel.core.api.attributes.ViewableV2;
+import org.wyona.yanel.core.attributes.viewable.View;
+import org.wyona.yanel.core.map.Realm;
+import org.wyona.yanel.core.navigation.Node;
+import org.wyona.yanel.core.navigation.Sitetree;
+import org.wyona.yanel.core.source.SourceResolver;
+import org.wyona.yanel.core.util.PathUtil;
+import org.wyona.yanel.core.util.ResourceAttributeHelper;
+
+import org.wyona.yanel.core.attributes.viewable.ViewDescriptor;
+import org.wyona.yanel.impl.resources.BasicXMLResource;
+import org.wyona.yanel.impl.resources.usecase.ExecutableUsecaseResource;
+import org.wyona.yanel.impl.resources.usecase.UsecaseException;
+import org.wyona.yanel.impl.resources.xml.ConfigurableViewDescriptor;
+import org.apache.commons.lang.StringEscapeUtils;
+import org.apache.commons.io.IOUtils;
+import org.apache.xml.resolver.tools.CatalogResolver;
+
+
+import sun.util.logging.resources.logging;
+
+/**
+ *
+ */
+public class XinhaResource extends ExecutableUsecaseResource {
+    
+    private static Logger log = Logger.getLogger(XinhaResource.class);
+    
+    private static final String PARAMETER_EDIT_PATH = "edit-path";
+    private static final String PARAMETER_CONTINUE_PATH = "continue-path";
+    private static final String PARAM_SUBMIT_TIDY = "submit-tidy";
+
+    private static final String VIEW_FIX_WELLFORMNESS = "fix-wellformness";
+    
+    private String content;
+
+    protected View processUsecase(String viewID) throws UsecaseException {
+        if (getParameter(PARAM_SUBMIT) != null) {
+            if (!isWellformed()) {
+                return generateView(VIEW_FIX_WELLFORMNESS);
+            }
+            execute();
+            return generateView(VIEW_DONE);
+        } else if (getParameter(PARAM_SUBMIT_TIDY) != null) {
+            tidy();
+            return generateView(VIEW_FIX_WELLFORMNESS);
+        } else if (getParameter(PARAM_CANCEL) != null) {
+            cancel();
+            return generateView(VIEW_CANCEL);
+        } else {
+            return generateView(viewID); // this will show the default view if the param is not set
+        }
+    }
+    
+    public void execute() throws UsecaseException {
+        final String editPath = getEditPath();
+        final String content = getContent();
+
+        if (log.isDebugEnabled()) log.debug("Content while exectuing: " + content);
+        
+        try {
+            Resource resToEdit = getYanel().getResourceManager().getResource(getEnvironment(), getRealm(), editPath);
+            if (ResourceAttributeHelper.hasAttributeImplemented(resToEdit, "Modifiable", "2")) {
+                OutputStream os = ((ModifiableV2) resToEdit).getOutputStream();
+                IOUtils.write(content, os);
+                addInfoMessage("Successfully saved.");
+                setParameter(PARAMETER_CONTINUE_PATH, PathUtil.backToRealm(getPath()) + editPath.substring(1)); // allow jelly template to show link to new event
+            } else {
+                addError("The resource you wanted to edit does not implement VieableV2 and is therefor not editable with this editor.");
+            }
+        } catch (Exception e) {
+            log.error("Exception: " + e);
+            throw new UsecaseException(e.getMessage(), e);
+        }
+    }
+    
+    private void tidy() throws UsecaseException {
+        //TODO: tidy should be configured via an external file (e.g. in htdocs)
+        ByteArrayOutputStream os = new ByteArrayOutputStream();
+        Tidy tidy = new Tidy();
+        tidy.setXHTML(true);
+        tidy.setInputEncoding("utf-8");
+        tidy.setOutputEncoding("utf-8");
+        tidy.parse(IOUtils.toInputStream(getContent()), os);
+        try {
+            content = os.toString("utf-8");
+        } catch (Exception e) {
+            throw new UsecaseException(e.getMessage(), e);
+        }
+    }
+    
+    public void cancel() throws UsecaseException {
+        addInfoMessage("Cancled.");
+        setParameter(PARAMETER_CONTINUE_PATH, PathUtil.backToRealm(getPath()) + getEditPath().substring(1)); // allow jelly template to show link to new event
+    }
+
+    public boolean isWellformed() throws UsecaseException {
+        try {
+            //TODO: code borrowed from YanelServlet.java r40436. see line 902. 1. maybe there is a better way to do so. 2. this code could maybe be refactored into a some xml.util lib. 
+            javax.xml.parsers.DocumentBuilderFactory dbf= javax.xml.parsers.DocumentBuilderFactory.newInstance();
+            javax.xml.parsers.DocumentBuilder parser = dbf.newDocumentBuilder();
+            // NOTE: DOCTYPE is being resolved/retrieved (e.g. xhtml schema from w3.org) also
+            //       if isValidating is set to false.
+            //       Hence, for performance and network reasons we use a local catalog ...
+            //       Also see http://www.xml.com/pub/a/2004/03/03/catalogs.html
+            //       resp. http://xml.apache.org/commons/components/resolver/
+            // TODO: What about a resolver factory?
+            parser.setEntityResolver(new CatalogResolver());
+            String content = getContent();
+            parser.parse(IOUtils.toInputStream(content));
+            return true;
+        } catch (org.xml.sax.SAXException e) {
+            addError(e.getMessage());
+            return false;
+        } catch (Exception e) {
+            addError(e.getMessage());
+            return false;
+        }
+    }
+    
+    public String getEditorFormContent() throws UsecaseException {
+        try {
+            if(log.isDebugEnabled()) log.debug(getEditPath());
+            Resource resToEdit = getYanel().getResourceManager().getResource(getEnvironment(), getRealm(), getEditPath());
+            if (ResourceAttributeHelper.hasAttributeImplemented(resToEdit, "Modifiable", "2")) {
+                InputStream is = ((ModifiableV2) resToEdit).getInputStream();
+                return StringEscapeUtils.escapeXml(IOUtils.toString(is));
+            } else {
+                return"The resource you wanted to edit does not implement VieableV2 and is therefor not editable with this editor.";
+            }
+        } catch (Exception e) {
+            log.error("Exception: " + e);
+            throw new UsecaseException(e.getMessage(), e);
+        }
+    }
+
+    /**
+     * TODO: no lookup resource-type yet
+     * @return
+     * @throws UsecaseException
+     */
+    public String getLookup() throws UsecaseException {
+        try {
+            SourceResolver resolver = new SourceResolver(this);
+            Source source = resolver.resolve("yanelresource:/usecases/lookup.html", null);
+            InputStream htodoc = ((StreamSource) source).getInputStream();
+            return IOUtils.toString(htodoc);
+        } catch (Exception e) {
+            return "no parameter edit-path found in the request. don't know what to edit";
+        }
+    }
+    
+    public String getEditPath() {
+        return request.getParameter(PARAMETER_EDIT_PATH);
+    }
+    
+    /**
+     * @return 
+     */
+    private String getContent() {
+        if(log.isDebugEnabled()) log.debug("Member field content: " + content);
+        if (content != null) {
+            if(log.isDebugEnabled()) log.debug("content is allready set.");
+            return content;
+        } else {
+            content = getEnvironment().getRequest().getParameter(getEditPath()); 
+        }
+        return content;
+    }
+    
+    public String getEscapedContent() {
+        return StringEscapeUtils.escapeXml(getContent());
+    }
+}

Added: public/yanel/contributions/resources/xinha/yanel-htdocs/doc/index.html
===================================================================
--- public/yanel/contributions/resources/xinha/yanel-htdocs/doc/index.html	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/yanel-htdocs/doc/index.html	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,139 @@
+<html>
+  <head>
+    <style>
+h2 {
+  font-size: 130%;
+  color:     #ffffff;
+  background-color: #525D76;
+}
+pre {
+  background-color: efefef;
+}
+td {
+  background-color: eeeeee;
+  color:            000000;
+}
+
+/* first row */
+table tr:first-child td {
+  background-color: cccccc;
+  color:            000000;
+}
+
+/* or th as first row */
+table th {
+  background-color: cccccc;
+  color:            000000;
+}
+    </style>    
+    <title>Xinha Resource</title>
+  </head>
+  <body>
+    <h1>Xinha Resource</h1>
+    <dl>
+      <dt>Name:</dt>
+      <dd>xinha</dd>
+      <dt>Namespace:</dt>
+      <dd>http://www.wyona.org/yanel/resource/1.0</dd>
+      <dt>UniversalName</dt>
+      <dd>http://www.wyona.org/yanel/resource/1.0::xinha</dd>
+      <dt>Description:</dt>
+      <dd>xinha Editor to edit xhtml</dd>
+      <dt>Java Class:</dt>
+      <dd>org.wyona.yanel.impl.resources.Xinhaesource</dd>
+    </dl>
+
+    <h2>Views</h2>
+    <table border="1">
+      <tr><th>View ID</th><th>Mime type</th><th>Type</th></tr>
+      <tr><td>DEFAULT</td><td>text/html</td><td>jelly</td></tr>
+      <tr><td>fix-wellformness</td><td>text/html</td><td>jelly</td></tr>
+      <tr><td>done</td><td>text/html</td><td>jelly</td></tr>
+      <tr><td>cancel</td><td>text/html</td><td>jelly</td></tr>
+      <tr><td>error</td><td>text/html</td><td>jelly</td></tr>
+    </table>
+    <h2>Request Parameter</h2>
+    <table border="1">
+      <tr><th>View ID</th><th>Name</th><th>Explanations</th></tr>
+      <tr><td>DEFAULT</td><td>edit-path</td><td>a data repository path. points to the document you want to edit</td></tr>
+    </table>
+        
+    <h2>Examples</h2>
+    <h3>.yanel-rc Example</h3>
+<pre>
+&lt;?xml version="1.0"?>
+&lt;yanel:resource-config xmlns:yanel="http://www.wyona.org/yanel/rti/1.0">
+  &lt;yanel:rti name="xinha" namespace="http://www.wyona.org/yanel/resource/1.0"/>
+    &lt;yanel:custom-config>
+     &lt;views>
+      &lt;view id="default" type="jelly">
+        &lt;template>rthtdocs:/xinha.jelly&lt;/template>
+        &lt;xslt>/xslt/global.xsl&lt;/xslt>
+        &lt;mime-type>text/html&lt;/mime-type>
+      &lt;/view>
+      &lt;view id="fix-wellformness" type="jelly">
+        &lt;template>rthtdocs:/xinha-fix.jelly&lt;/template>
+        &lt;xslt>/xslt/global.xsl&lt;/xslt>
+        &lt;mime-type>text/html&lt;/mime-type>
+      &lt;/view>
+      &lt;view id="done" type="jelly">
+        &lt;template>rthtdocs:/xinha-status.jelly&lt;/template>
+        &lt;xslt>/xslt/global.xsl&lt;/xslt>
+      &lt;/view>
+      &lt;view id="cancel" type="jelly">
+        &lt;template>rthtdocs:/xinha-status.jelly&lt;/template>
+        &lt;xslt>/xslt/global.xsl&lt;/xslt>
+      &lt;/view>
+      &lt;view id="error" type="jelly">
+        &lt;template>rthtdocs:/xinha-status.jelly&lt;/template>
+        &lt;xslt>/xslt/global.xsl&lt;/xslt>
+      &lt;/view>
+    &lt;/views>
+  &lt;/yanel:custom-config>
+&lt;/yanel:resource-config>
+</pre>
+
+<h2>Explanations</h2>
+
+<p>
+Once you registered the xinha resource in yanel (add &lt;resource-type src="$XINHA_RESOURCE_HOME" compile="true"/> to yanels resource-types.xml) 
+your realms resource-config (e.g. /usecases/xinha.yanel-rc) repository 
+<br/>you can access xinha via browser e.g. https://localhost:8443/yanel/$YOUR_REALM/usecases/xinha.html?edit-path=/de/ueber.html.
+</p>
+<p>you have to provide a request parameter "edith-path" in order to allow the xinha resource to know which document to edit.</p>
+
+<h3>Menu Example</h3>
+<p>an example how to add this resource to the menu</p>
+<pre>
+Index: src/realms/yanel-website/src/java/org/wyona/yanel/servlet/menu/impl/YanelWebsiteMenu.java
+===================================================================
+--- src/realms/yanel-website/src/java/org/wyona/yanel/servlet/menu/impl/YanelWebsiteMenu.java	(revision 31673)
++++ src/realms/yanel-website/src/java/org/wyona/yanel/servlet/menu/impl/YanelWebsiteMenu.java	(working copy)
+@@ -61,7 +61,15 @@
+ 
+         sb.append("&lt;ul>&lt;li>");
+         sb.append("&lt;div id=\"yaneltoolbar_menutitle\">Edit&lt;/div>&lt;ul>");
+-        sb.append("&lt;li class=\"haschild\">Open with&amp;#160;&amp;#160;&amp;#160;&lt;ul>&lt;li>Source editor&lt;/li>&lt;li>WYSIWYG editor&lt;/li>&lt;/ul>&lt;/li>");
++        sb.append("&lt;li class=\"haschild\">Open with&amp;#160;&amp;#160;&amp;#160;");
++        sb.append("&lt;ul>&lt;li>Source editor&lt;/li>");
++        sb.append("&lt;li>WYSIWYG editor&lt;/li>");
++        if (ResourceAttributeHelper.hasAttributeImplemented(resource, "Modifiable", "2")) {
++            sb.append("&lt;li>&lt;a href=\"" + backToRealm + "usecases/xinha.html?edit-path=" + resource.getPath() + "\">Edit page with Xinha&amp;#160;&amp;#160;&amp;#160;&lt;/a>&lt;/li>");
++        } else {
++            sb.append("&lt;li>&lt;a>Edit page with Xinha&amp;#160;&amp;#160;&amp;#160;&lt;/a>&lt;/li>");
++        }
++        sb.append("&lt;/ul>&lt;/li>");
+ 
+         if (ResourceAttributeHelper.hasAttributeImplemented(resource, "Versionable", "2")) {
+             RevisionInformation[] revisions = ((VersionableV2) resource).getRevisions();
+
+</pre>
+<h2>Todo</h2>
+<ul>
+<li>don't open all ModifiableV2 it could be something which Xinha doesn't like e.g. no html</li>
+<li>maybe provide a file lookup when request parameter "edit-path" is not provided</li>
+<li>integrate a lookup for inserting images and links</li>
+<li>fix line breaks/formatting</li>
+</ul>
+  </body>
+</html>

Added: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/16x16/rt-icon.png
===================================================================
(Binary files differ)


Property changes on: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/16x16/rt-icon.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/22x22/rt-icon.png
===================================================================
(Binary files differ)


Property changes on: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/22x22/rt-icon.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/32x32/rt-icon.png
===================================================================
(Binary files differ)


Property changes on: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/32x32/rt-icon.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: public/yanel/contributions/resources/xinha/yanel-htdocs/icons/scalable/rt-icon.svg
===================================================================
--- public/yanel/contributions/resources/xinha/yanel-htdocs/icons/scalable/rt-icon.svg	                        (rev 0)
+++ public/yanel/contributions/resources/xinha/yanel-htdocs/icons/scalable/rt-icon.svg	2009-01-05 08:12:31 UTC (rev 40729)
@@ -0,0 +1,526 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:export-ydpi="240.00000"
+   inkscape:export-xdpi="240.00000"
+   inkscape:export-filename="/home/jimmac/gfx/novell/pdes/trunk/docs/BIGmime-text.png"
+   sodipodi:docname="yanel-resource-type.svg"
+   sodipodi:docbase="/home/simon/office/wyona/yanel/img/icons/scalable"
+   inkscape:version="0.43"
+   sodipodi:version="0.32"
+   id="svg249"
+   height="48.000000px"
+   width="48.000000px">
+  <defs
+     id="defs3">
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5060"
+       id="radialGradient6719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
+       cx="605.71429"
+       cy="486.64789"
+       fx="605.71429"
+       fy="486.64789"
+       r="117.14286" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5060">
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0"
+         id="stop5062" />
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="1"
+         id="stop5064" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5060"
+       id="radialGradient6717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
+       cx="605.71429"
+       cy="486.64789"
+       fx="605.71429"
+       fy="486.64789"
+       r="117.14286" />
+    <linearGradient
+       id="linearGradient5048">
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="0"
+         id="stop5050" />
+      <stop
+         id="stop5056"
+         offset="0.5"
+         style="stop-color:black;stop-opacity:1;" />
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="1"
+         id="stop5052" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5048"
+       id="linearGradient6715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
+       x1="302.85715"
+       y1="366.64789"
+       x2="302.85715"
+       y2="609.50507" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3082">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3084" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3086" />
+    </linearGradient>
+    <linearGradient
+       id="aigrd1"
+       gradientUnits="userSpaceOnUse"
+       x1="99.7773"
+       y1="15.4238"
+       x2="153.0005"
+       y2="248.6311">
+      <stop
+         offset="0"
+         style="stop-color:#464646;stop-opacity:1"
+         id="stop53300" />
+      <stop
+         offset="1"
+         style="stop-color:#cdcdcd;stop-opacity:1"
+         id="stop53302" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4542">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop4544" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop4546" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient15662">
+      <stop
+         id="stop15664"
+         offset="0.0000000"
+         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+      <stop
+         id="stop15666"
+         offset="1.0000000"
+         style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       id="aigrd3"
+       cx="20.8921"
+       cy="64.5679"
+       r="5.257"
+       fx="20.8921"
+       fy="64.5679"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         style="stop-color:#F0F0F0"
+         id="stop15573" />
+      <stop
+         offset="1.0000000"
+         style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
+         id="stop15575" />
+    </radialGradient>
+    <radialGradient
+       id="aigrd2"
+       cx="20.8921"
+       cy="114.5684"
+       r="5.256"
+       fx="20.8921"
+       fy="114.5684"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         style="stop-color:#F0F0F0"
+         id="stop15566" />
+      <stop
+         offset="1.0000000"
+         style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
+         id="stop15568" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient269">
+      <stop
+         id="stop270"
+         offset="0.0000000"
+         style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
+      <stop
+         id="stop271"
+         offset="1.0000000"
+         style="stop-color:#4c4c4c;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient259">
+      <stop
+         id="stop260"
+         offset="0.0000000"
+         style="stop-color:#fafafa;stop-opacity:1.0000000;" />
+      <stop
+         id="stop261"
+         offset="1.0000000"
+         style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient269"
+       id="radialGradient15656"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.968273,0.000000,0.000000,1.032767,3.353553,0.646447)"
+       cx="8.8244190"
+       cy="3.7561285"
+       fx="8.8244190"
+       fy="3.7561285"
+       r="37.751713" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient259"
+       id="radialGradient15658"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.960493,1.041132)"
+       cx="33.966679"
+       cy="35.736916"
+       fx="33.966679"
+       fy="35.736916"
+       r="86.708450" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient15662"
+       id="radialGradient15668"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.968273,0.000000,0.000000,1.032767,3.353553,0.646447)"
+       cx="8.1435566"
+       cy="7.2678967"
+       fx="8.1435566"
+       fy="7.2678967"
+       r="38.158695" />
+    <radialGradient
+       r="5.256"
+       fy="114.5684"
+       fx="20.8921"
+       cy="114.5684"
+       cx="20.8921"
+       gradientTransform="matrix(0.229703,0.000000,0.000000,0.229703,4.613529,3.979808)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2283"
+       xlink:href="#aigrd2"
+       inkscape:collect="always" />
+    <radialGradient
+       r="5.257"
+       fy="64.5679"
+       fx="20.8921"
+       cy="64.5679"
+       cx="20.8921"
+       gradientTransform="matrix(0.229703,0.000000,0.000000,0.229703,4.613529,3.979808)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2285"
+       xlink:href="#aigrd3"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4542"
+       id="radialGradient4548"
+       cx="24.306795"
+       cy="42.07798"
+       fx="24.306795"
+       fy="42.07798"
+       r="15.821514"
+       gradientTransform="matrix(1.000000,0.000000,0.000000,0.284916,0.000000,30.08928)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3082"
+       id="linearGradient5876"
+       gradientUnits="userSpaceOnUse"
+       x1="44.592766"
+       y1="9.9124937"
+       x2="65.862885"
+       y2="43.31715"
+       gradientTransform="matrix(0.703833,0,0,0.703833,59.94701,5.314359)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#aigrd1"
+       id="linearGradient5881"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.141249,0,0,0.141249,77.77723,7.536622)"
+       x1="99.7773"
+       y1="15.4238"
+       x2="153.0005"
+       y2="248.6311" />
+  </defs>
+  <sodipodi:namedview
+     inkscape:window-y="0"
+     inkscape:window-x="0"
+     inkscape:window-height="721"
+     inkscape:window-width="1024"
+     inkscape:document-units="px"
+     inkscape:grid-bbox="true"
+     showgrid="false"
+     inkscape:current-layer="layer5"
+     inkscape:cy="24.736793"
+     inkscape:cx="47.048879"
+     inkscape:zoom="38.759927"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="0.25490196"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:showpageshadow="false" />
+  <metadata
+     id="metadata4">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>Generic Script</dc:title>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>text</rdf:li>
+            <rdf:li>plaintext</rdf:li>
+            <rdf:li>regular</rdf:li>
+            <rdf:li>script</rdf:li>
+            <rdf:li>shell</rdf:li>
+            <rdf:li>bash</rdf:li>
+            <rdf:li>python</rdf:li>
+            <rdf:li>perl</rdf:li>
+            <rdf:li>php</rdf:li>
+            <rdf:li>ruby</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Jakub Steiner</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source>http://jimmac.musichall.cz</dc:source>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by/2.0/">
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="Shadow">
+    <g
+       style="display:inline"
+       transform="matrix(2.105461e-2,0,0,2.086758e-2,42.85172,41.1536)"
+       id="g6707"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53">
+      <rect
+         style="opacity:0.40206185;color:black;fill:url(#linearGradient6715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         id="rect6709"
+         width="1339.6335"
+         height="478.35718"
+         x="-1559.2523"
+         y="-150.69685" />
+      <path
+         style="opacity:0.40206185;color:black;fill:url(#radialGradient6717);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z "
+         id="path6711"
+         sodipodi:nodetypes="cccc" />
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path6713"
+         d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z "
+         style="opacity:0.40206185;color:black;fill:url(#radialGradient6719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+    </g>
+  </g>
+  <g
+     style="display:inline"
+     inkscape:groupmode="layer"
+     inkscape:label="Base"
+     id="layer1">
+    <rect
+       style="color:#000000;fill:url(#radialGradient15658);fill-opacity:1.0000000;fill-rule:nonzero;stroke:url(#radialGradient15656);stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
+       id="rect15391"
+       width="34.875000"
+       height="40.920494"
+       x="6.6035528"
+       y="3.6464462"
+       ry="1.1490486"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53" />
+    <rect
+       style="color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:nonzero;stroke:url(#radialGradient15668);stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
+       id="rect15660"
+       width="32.775887"
+       height="38.946384"
+       x="7.6660538"
+       y="4.5839462"
+       ry="0.14904857"
+       rx="0.14904857"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53" />
+    <g
+       transform="translate(0.646447,-3.798933e-2)"
+       id="g2270"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53">
+      <g
+         id="g1440"
+         style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4.0000000"
+         transform="matrix(0.229703,0.000000,0.000000,0.229703,4.967081,4.244972)">
+        <radialGradient
+           id="radialGradient1442"
+           cx="20.892099"
+           cy="114.56840"
+           r="5.2560000"
+           fx="20.892099"
+           fy="114.56840"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             offset="0"
+             style="stop-color:#F0F0F0"
+             id="stop1444" />
+          <stop
+             offset="1"
+             style="stop-color:#474747"
+             id="stop1446" />
+        </radialGradient>
+        <path
+           style="stroke:none"
+           d="M 23.428000,113.07000 C 23.428000,115.04300 21.828000,116.64200 19.855000,116.64200 C 17.881000,116.64200 16.282000,115.04200 16.282000,113.07000 C 16.282000,111.09600 17.882000,109.49700 19.855000,109.49700 C 21.828000,109.49700 23.428000,111.09700 23.428000,113.07000 z "
+           id="path1448" />
+        <radialGradient
+           id="radialGradient1450"
+           cx="20.892099"
+           cy="64.567902"
+           r="5.2570000"
+           fx="20.892099"
+           fy="64.567902"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             offset="0"
+             style="stop-color:#F0F0F0"
+             id="stop1452" />
+          <stop
+             offset="1"
+             style="stop-color:#474747"
+             id="stop1454" />
+        </radialGradient>
+        <path
+           style="stroke:none"
+           d="M 23.428000,63.070000 C 23.428000,65.043000 21.828000,66.643000 19.855000,66.643000 C 17.881000,66.643000 16.282000,65.043000 16.282000,63.070000 C 16.282000,61.096000 17.882000,59.497000 19.855000,59.497000 C 21.828000,59.497000 23.428000,61.097000 23.428000,63.070000 z "
+           id="path1456" />
+      </g>
+      <path
+         style="fill:url(#radialGradient2283);fill-rule:nonzero;stroke:none;stroke-miterlimit:4.0000000"
+         d="M 9.9950109,29.952326 C 9.9950109,30.405530 9.6274861,30.772825 9.1742821,30.772825 C 8.7208483,30.772825 8.3535532,30.405301 8.3535532,29.952326 C 8.3535532,29.498892 8.7210780,29.131597 9.1742821,29.131597 C 9.6274861,29.131597 9.9950109,29.499122 9.9950109,29.952326 z "
+         id="path15570" />
+      <path
+         style="fill:url(#radialGradient2285);fill-rule:nonzero;stroke:none;stroke-miterlimit:4.0000000"
+         d="M 9.9950109,18.467176 C 9.9950109,18.920380 9.6274861,19.287905 9.1742821,19.287905 C 8.7208483,19.287905 8.3535532,18.920380 8.3535532,18.467176 C 8.3535532,18.013742 8.7210780,17.646447 9.1742821,17.646447 C 9.6274861,17.646447 9.9950109,18.013972 9.9950109,18.467176 z "
+         id="path15577" />
+    </g>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.98855311;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:0.017543854"
+       d="M 11.505723,5.4942766 L 11.505723,43.400869"
+       id="path15672"
+       sodipodi:nodetypes="cc"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53" />
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:0.20467831"
+       d="M 12.500000,5.0205154 L 12.500000,43.038228"
+       id="path15674"
+       sodipodi:nodetypes="cc"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="Text"
+     style="display:inline">
+    <path
+       style="opacity:0.5;fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
+       d="M 26.895946,38.363178 C 29.422384,31.930312 35.482086,27.935015 41.977118,27.725159 L 41.934871,24.080092 L 41.016584,21.974032 C 40.428479,22.013648 39.843745,22.075181 39.263207,22.160152 L 39.119403,24.7109 C 38.004047,24.902872 36.909719,25.188827 35.848036,25.563033 L 34.481543,23.404986 C 33.814696,23.659121 33.160544,23.944343 32.520821,24.259898 L 33.172061,26.729457 C 32.175292,27.25296 31.221266,27.860294 30.32146,28.546634 L 28.35437,26.916101 C 27.800352,27.361576 27.265748,27.833837 26.753454,28.332812 L 28.136346,30.48078 C 27.354598,31.281731 26.634932,32.154475 25.987988,33.093856 L 23.614092,32.150998 C 23.227799,32.743763 22.867518,33.359912 22.533981,33.996382 L 24.513063,35.612231 C 24.266219,36.113931 24.037005,36.629262 23.828996,37.158905 C 23.620903,37.688756 23.438165,38.222339 23.277622,38.757932 L 20.728118,38.594506 C 20.539223,39.288263 20.383997,39.984707 20.26387,40.682005 L 22.644649,41.606733 C 22.479426,42.735306 22.412837,43.8645!
 4 22.440592,44.983417 L 23.960937,45.101675 L 25.732051,44.329543 C 25.751284,42.341688 26.125779,40.323583 26.895657,38.363302 L 26.895946,38.363178 z "
+       id="path53363"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53"
+       sodipodi:nodetypes="csccccccccccccccccsccccccccc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="2">
+    <g
+       transform="matrix(1.789975e-2,0,0,1.930874e-2,-46.951,-203.7979)"
+       style="fill:#4682b4;fill-opacity:1;visibility:visible"
+       id="g4046"
+       inkscape:export-filename="/home/simon/office/wyona/yanel/resource-type-icon-test.png"
+       inkscape:export-xdpi="1010.53"
+       inkscape:export-ydpi="1010.53">
+      <desc
+         id="desc4048">Drawing</desc>
+      <g
+         style="fill:#4682b4;fill-opacity:1"
+         id="g4050">
+        <g
+           style="fill:#4682b4;fill-opacity:1;stroke:none"
+           id="g4052">
+          <path
+             d="M 3803,11713 L 3805,11720 L 3808,11727 L 3811,11734 L 3814,11741 L 3816,11748 L 3818,11755 L 3818,11759 L 3819,11762 L 3819,11766 L 3819,11769 L 3819,11777 L 3818,11781 L 3817,11784 L 3817,11787 L 3816,11790 L 3814,11793 L 3813,11796 L 3811,11799 L 3809,11801 L 3807,11803 L 3805,11805 L 3803,11807 L 3800,11809 L 3797,11811 L 3794,11812 L 3788,11814 L 3781,11817 L 3774,11818 L 3767,11820 L 3760,11821 L 3753,11821 L 3745,11822 L 3738,11822 L 3553,11822 L 3553,12076 L 3764,12076 L 3852,12074 L 3870,12073 L 3887,12072 L 3904,12070 L 3919,12068 L 3926,12067 L 3933,12066 L 3947,12063 L 3960,12060 L 3973,12056 L 3985,12051 L 3998,12046 L 4012,12039 L 4025,12032 L 4043,12021 L 4060,12010 L 4075,11998 L 4090,11985 L 4103,11972 L 4116,11958 L 4127,11943 L 4137,11928 L 4156,11897 L 4175,11865 L 4193,11832 L 4210,11798 L 4635,10865 L 4196,10865 L 4094,11169 L 4070,11252 L 4065,11268 L 4061,11285 L 4053,11316 L 4046,11348 L 4042,11364 L 4039,11381 L 4025,11462 L 4007,113!
 64 L 3991,11286 L 3970,11207 L 3937,11104 L 3857,10865 L 3421,10865 L 3803,11713 z "
+             style="fill:#4682b4;fill-opacity:1"
+             id="path4054" />
+        </g>
+        <g
+           style="fill:#4682b4;fill-opacity:1"
+           id="g4056" />
+      </g>
+    </g>
+  </g>
+</svg>



More information about the Yanel-commits mailing list