[Yanel-commits] rev 57118 - in public/yanel/trunk/src/resources: . registration registration/src registration/src/build registration/src/java registration/src/java/org registration/src/java/org/wyona registration/src/java/org/wyona/yanel registration/src/java/org/wyona/yanel/resources registration/src/java/org/wyona/yanel/resources/registration registration/yanel-htdocs registration/yanel-htdocs/doc registration/yanel-htdocs/icons registration/yanel-htdocs/icons/16x16 registration/yanel-htdocs/icons/22x22 registration/yanel-htdocs/icons/32x32 registration/yanel-htdocs/icons/scalable

michi at wyona.com michi at wyona.com
Thu Mar 3 19:24:54 CET 2011


Author: michi
Date: 2011-03-03 19:24:54 +0100 (Thu, 03 Mar 2011)
New Revision: 57118

Added:
   public/yanel/trunk/src/resources/registration/
   public/yanel/trunk/src/resources/registration/build.xml
   public/yanel/trunk/src/resources/registration/resource.xml
   public/yanel/trunk/src/resources/registration/src/
   public/yanel/trunk/src/resources/registration/src/build/
   public/yanel/trunk/src/resources/registration/src/build/build.properties
   public/yanel/trunk/src/resources/registration/src/build/dependencies.xml
   public/yanel/trunk/src/resources/registration/src/java/
   public/yanel/trunk/src/resources/registration/src/java/org/
   public/yanel/trunk/src/resources/registration/src/java/org/wyona/
   public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/
   public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/
   public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/registration/
   public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/registration/KonakartRegistrationSOAPInfResource.java
   public/yanel/trunk/src/resources/registration/yanel-htdocs/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/doc/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/doc/index.html
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/16x16/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/16x16/rt-icon.png
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/22x22/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/22x22/rt-icon.png
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/32x32/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/32x32/rt-icon.png
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/scalable/
   public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/scalable/rt-icon.svg
Log:
user registration added based on konakart realm, needs some refactoring

Added: public/yanel/trunk/src/resources/registration/build.xml
===================================================================
--- public/yanel/trunk/src/resources/registration/build.xml	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/build.xml	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+
+<project name="yanel-registration-RT" default="deploy-jar">
+  <import file="${yanel.source.home}/src/build/resource-types/resource-type.build.xml"/>
+</project>

Added: public/yanel/trunk/src/resources/registration/resource.xml
===================================================================
--- public/yanel/trunk/src/resources/registration/resource.xml	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/resource.xml	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+
+<resource xmlns="http://www.wyona.org/yanel/1.0"
+  name="registration"
+  namespace="http://www.wyona.com/yanel/resource/1.0"
+  class="org.wyona.yanel.resources.registration.KonakartRegistrationSOAPInfResource"
+  >
+<description>
+User registration
+</description>
+
+<rtd>
+<!--
+  <property name="foo" default-value="bar"/>
+-->
+</rtd>
+</resource>

Added: public/yanel/trunk/src/resources/registration/src/build/build.properties
===================================================================
--- public/yanel/trunk/src/resources/registration/src/build/build.properties	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/src/build/build.properties	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,2 @@
+resource.name=user-registration
+resource.version=0.0.2-dev-rXXX

Added: public/yanel/trunk/src/resources/registration/src/build/dependencies.xml
===================================================================
--- public/yanel/trunk/src/resources/registration/src/build/dependencies.xml	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/src/build/dependencies.xml	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+
+<project name="registration-dependencies" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+
+  <target name="dependencies" description="Dependencies">
+    <artifact:remoteRepository id="wyona.remote.repository" url="${maven.url}"/>
+
+    <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="wyona-org-yanel" artifactId="yanel-webapp" version="${yanel.source.version}"/>
+
+<!--
+      <dependency groupId="wyona-org-yanel" artifactId="yanel-resource-konakart-shared" version="0.0.1-dev-rXXX"/>
+      <dependency groupId="com.konakart" artifactId="konakart" version="5.0.0.0"/>
+-->
+      <dependency groupId="commons-lang" artifactId="commons-lang" version="2.4"/>
+    </artifact:dependencies>
+
+    <artifact:dependencies pathId="maven2.resource.classpath" filesetId="maven2.resource.fileset">
+      <remoteRepository refid="wyona.remote.repository"/>
+      <!-- No resource specific libs yet -->
+    </artifact:dependencies>
+
+    <property name="maven2.cp" refid="maven2.classpath"/>
+    <!--<echo>Maven2 classpath: ${maven2.cp}</echo>-->
+  </target>
+
+</project>

Added: public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/registration/KonakartRegistrationSOAPInfResource.java
===================================================================
--- public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/registration/KonakartRegistrationSOAPInfResource.java	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/src/java/org/wyona/yanel/resources/registration/KonakartRegistrationSOAPInfResource.java	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,376 @@
+/*
+ * Copyright 2010 Wyona
+ */
+
+package org.wyona.yanel.resources.registration;
+
+import org.wyona.yanel.impl.resources.BasicXMLResource;
+//import org.wyona.yanel.resources.konakart.shared.SharedResource;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.util.regex.Pattern;
+import java.util.regex.Matcher;
+
+import org.apache.log4j.Logger;
+import org.w3c.dom.Element;
+
+/*
+import com.konakart.appif.CustomerRegistrationIf;
+import com.konakart.appif.KKEngIf;
+*/
+
+/**
+ * A simple Resource which extends BasicXMLResource
+ */
+public class KonakartRegistrationSOAPInfResource extends BasicXMLResource {
+    
+    private static Logger log = Logger.getLogger(KonakartRegistrationSOAPInfResource.class);
+
+    private static String KONAKART_NAMESPACE = "http://www.konakart.com/1.0";
+    
+    /**
+     * This method overrides the method to create the InputStream called by BasicXMLResource
+     * Since you extend the BasicXMLResource this has to contain well-formed xml.
+     * Should return a InputStream which contains XML. 
+     * Use String, StingBuffer, dom, jdom, org.apache.commons.io.IOUtils and so on to generate the XML.
+     */
+    protected InputStream getContentXML(String viewId) throws Exception {
+        if (log.isDebugEnabled()) {
+            log.debug("requested viewId: " + viewId);
+        }
+
+/*
+        SharedResource shared = new SharedResource();
+        KKEngIf kkEngine = shared.getKonakartEngineImpl();
+*/
+
+        // Build document
+        org.w3c.dom.Document doc = null;
+        try {
+            doc = org.wyona.commons.xml.XMLHelper.createDocument(KONAKART_NAMESPACE, "registration");
+        } catch (Exception e) {
+            throw new Exception(e.getMessage(), e);
+        }
+
+        // Root element
+        Element rootElement = doc.getDocumentElement();
+
+        String email = getEnvironment().getRequest().getParameter("email");
+        if (email != null) {
+            boolean inputsValid = true;
+            if (!isEmailValid(email)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "email-not-valid"));
+                inputsValid = false;
+            } else {
+/*
+                if(kkEngine.doesCustomerExistForEmail(email)) {
+                    Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "email-in-use"));
+                    inputsValid = false;
+                } 
+*/
+                Element emailE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "email"));
+                emailE.appendChild(doc.createTextNode("" + email)); 
+            }
+
+            String password = getEnvironment().getRequest().getParameter("password");
+            if (!isPasswordValid(password) || password.length() < 5) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "password-not-valid"));
+                inputsValid = false;
+            }
+            String confirmedPassword = getEnvironment().getRequest().getParameter("password2");
+            if (password != null && confirmedPassword != null && !password.equals(confirmedPassword)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "passwords-do-not-match"));
+                inputsValid = false;
+            }
+
+            String firstname = getEnvironment().getRequest().getParameter("firstname");
+            if (!isFirstnameValid(firstname)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "firstname-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "firstname"));
+                fnE.appendChild(doc.createTextNode("" + firstname)); 
+            }
+
+            String lastname = getEnvironment().getRequest().getParameter("lastname");
+            if (!isLastnameValid(lastname)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "lastname-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "lastname"));
+                fnE.appendChild(doc.createTextNode("" + lastname)); 
+            }
+
+            String gender = isGenderValid(getEnvironment().getRequest().getParameter("salutation"));
+            if (gender == null) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "gender-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "gender"));
+                fnE.appendChild(doc.createTextNode("" + gender)); 
+            }
+
+            String company = isCompanyValid(getEnvironment().getRequest().getParameter("company"));
+            if (company != null && company.length() > 0) {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "company"));
+                fnE.appendChild(doc.createTextNode("" + company)); 
+            }
+
+            String fax = isFaxValid(getEnvironment().getRequest().getParameter("fax"));
+            if (fax != null && fax.length() > 0) {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "fax"));
+                fnE.appendChild(doc.createTextNode("" + fax)); 
+            }
+
+            String street = getEnvironment().getRequest().getParameter("street");
+            if (!isStreetValid(street)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "street-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "street"));
+                fnE.appendChild(doc.createTextNode("" + street)); 
+            }
+
+            String zip = getEnvironment().getRequest().getParameter("zip");
+            if (!isZipValid(zip)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "zip-not-valid"));
+                inputsValid = false;
+            } else {
+                Pattern pzip = Pattern.compile("[1-9][0-9]{3}");
+                Matcher mzip = pzip.matcher(zip);
+                if(mzip.find()) {
+                    zip = mzip.group(0);
+                    Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "zip"));
+                    fnE.appendChild(doc.createTextNode("" + mzip.group(0))); 
+                } else {
+                    Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "zip-not-valid"));
+                    inputsValid = false;
+                }
+            }
+
+            String city = getEnvironment().getRequest().getParameter("location");
+            if (!isCityValid(city)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "city-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "city"));
+                fnE.appendChild(doc.createTextNode("" + city)); 
+            }
+
+            String phone = getEnvironment().getRequest().getParameter("phone");
+            if (!isPhoneValid(phone)) {
+                Element exception = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "phone-not-valid"));
+                inputsValid = false;
+            } else {
+                Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "phone"));
+                fnE.appendChild(doc.createTextNode("" + phone)); 
+            }
+
+            if (inputsValid) {
+                Element valildE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "all-inputs-valid"));
+/*
+                CustomerRegistrationIf cr = new com.konakart.app.CustomerRegistration();
+                cr.setEmailAddr(email);
+                cr.setPassword(password);
+                cr.setFirstName(firstname);
+                cr.setLastName(lastname);
+                cr.setGender(gender);
+                cr.setBirthDate(new java.util.GregorianCalendar(1992, 1, 1, 0, 0)); // INFO: No birthday necessary, hence invent something
+                cr.setTelephoneNumber(phone);
+                if (fax != null) {
+                    cr.setFaxNumber(fax);
+                }
+                cr.setStreetAddress(street);
+                cr.setCity(city);
+                cr.setPostcode(zip);
+                cr.setState(getResourceConfigProperty("default-zone"));
+                com.konakart.appif.CountryIf cn = kkEngine.getCountryPerName("Switzerland");
+                if(cn == null) {
+                    com.konakart.appif.CountryIf[] cns = kkEngine.getAllCountries(); // We use the first country in the database.
+                    cr.setCountryId(cns[0].getId());
+                } else {
+                    cr.setCountryId(cn.getId());
+                }
+                if (company != null) {
+                    cr.setCompany(company);
+                }
+*/
+
+
+                try {
+                    // INFO: KonaKart registration
+                    //int customerID = kkEngine.registerCustomer(cr);
+                    long customerID = new java.util.Date().getTime();
+
+                    // INFO: Yanel registration
+                    org.wyona.security.core.api.User user = getRealm().getIdentityManager().getUserManager().createUser("" + customerID, firstname + " " + lastname, email, password);
+                    org.wyona.security.core.api.User alias = getRealm().getIdentityManager().getUserManager().createAlias(email, "" + customerID);
+
+                    Element ncE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "new-customer-registered"));
+                    ncE.setAttributeNS(KONAKART_NAMESPACE, "id", "" + customerID);
+
+                    javax.servlet.http.HttpSession httpSession = getEnvironment().getRequest().getSession(true);
+
+                    // Login
+/*
+                    String konakartSessionID = shared.login(email, password, getRealm(), httpSession);
+                    if (konakartSessionID != null && konakartSessionID.length() > 0) {
+                        httpSession.setAttribute(shared.KONAKART_SESSION_ID, konakartSessionID);
+                        Element succE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "login-successful"));
+                        succE.setAttributeNS(KONAKART_NAMESPACE, "username", "" + email);
+                        // TODO: Copy/paste shopping cart (???)
+                    } else {
+                        Element errE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "login-failed"));
+                        errE.setAttributeNS(KONAKART_NAMESPACE, "username", "" + email);
+                        log.error("Login failed for new user: " + email);
+                    }
+*/
+/*
+                } catch(com.konakart.app.KKUserExistsException e) { // WARN: It seems that KonaKart is using nested exceptions and hence this one is not caught!
+                    log.warn(e.getMessage());
+                    Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "user-already-exists"));
+                    fnE.appendChild(doc.createTextNode("" + e.getMessage())); 
+*/
+                } catch(Exception e) {
+                    log.error(e, e);
+                    Element fnE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "registration-failed"));
+                    fnE.appendChild(doc.createTextNode("" + e.getMessage())); 
+                }
+            } else {
+                Element invalidE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "one-or-more-inputs-not-valid"));
+            }
+        } else {
+            Element invalidE = (Element) rootElement.appendChild(doc.createElementNS(KONAKART_NAMESPACE, "no-input-yet"));
+        }
+ 
+        java.io.ByteArrayOutputStream baout = new java.io.ByteArrayOutputStream();
+        org.wyona.commons.xml.XMLHelper.writeDocument(doc, baout);
+        return new java.io.ByteArrayInputStream(baout.toByteArray());
+    }
+
+    /**
+     * Check whether email address is valid
+     */
+    private boolean isEmailValid(String email) {
+        if (email != null && email.length() > 0 && email.indexOf("@") > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether password is valid
+     */
+    private boolean isPasswordValid(String password) {
+        if (password != null && password.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether firstname is valid
+     */
+    private boolean isFirstnameValid(String firstname) {
+        if (firstname != null && firstname.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether lastname is valid
+     */
+    private boolean isLastnameValid(String lastname) {
+        if (lastname != null && lastname.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether street is valid
+     */
+    private boolean isStreetValid(String street) {
+        if (street != null && street.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether zip code is valid
+     */
+    private boolean isZipValid(String zipCode) {
+        if (zipCode != null && zipCode.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether city is valid
+     */
+    private boolean isCityValid(String city) {
+        if (city != null && city.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether phone number is valid
+     */
+    private boolean isPhoneValid(String phone) {
+        if (phone != null && phone.length() > 0) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Check whether gender is valid
+     * @return Either 'm' or 'f' and otherwise null
+     */
+    private String isGenderValid(String gender) {
+        if (gender != null && gender.length() > 0) {
+            if (gender.equals("male")) {
+                return "m";
+            } else if (gender.equals("female")) {
+                return "f";
+            }
+        }
+        log.error("No such gender: " + gender);
+        return null;
+    }
+
+    /**
+     * Check whether company is valid
+     * @return Either company name or null
+     */
+    private String isCompanyValid(String company) {
+        if (company != null && company.length() > 0) {
+            return company;
+        }
+        return null;
+    }
+
+    /**
+     * Check whether fax number is valid
+     * @return Either fax number or null
+     */
+    private String isFaxValid(String fax) {
+        if (fax != null && fax.length() > 0) {
+            return fax;
+        }
+        return null;
+    }
+
+    /**
+     * Exists?
+     */
+    public boolean exists() {
+        return true;
+    }
+}

Added: public/yanel/trunk/src/resources/registration/yanel-htdocs/doc/index.html
===================================================================
--- public/yanel/trunk/src/resources/registration/yanel-htdocs/doc/index.html	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/yanel-htdocs/doc/index.html	2011-03-03 18:24:54 UTC (rev 57118)
@@ -0,0 +1,58 @@
+<?xml version="1.0"?>
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>registration</title>
+
+<!-- TODO: Reference this style globally -->
+    <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>
+  </head>
+  <body>
+    <h1>registration</h1>
+
+    <h2>Overview</h2>
+    <dl>
+      <dt>Name:</dt>
+      <dd>registration</dd>
+      <dt>Namespace:</dt>
+      <dd>http://www.wyona.com/yanel/resource/konakart/1.0</dd>
+      <dt>Universal Name:</dt>
+      <dd><{http://www.wyona.com/yanel/resource/konakart/1.0}registration/></dd>
+      <dt>Description:</dt>
+      <dd>User registration</dd>
+      <dt>Java Class:</dt>
+      <dd>org.wyona.yanel.resources.konakart.registration.KonakartRegistrationSOAPInfResource</dd>
+    </dl>
+
+    <h2>Views</h2>
+    <p>TODO</p>
+
+    <h2>Examples</h2>
+    <p>TODO</p>
+  </body>
+</html>

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


Property changes on: public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/16x16/rt-icon.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

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


Property changes on: public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/22x22/rt-icon.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

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


Property changes on: public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/32x32/rt-icon.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/scalable/rt-icon.svg
===================================================================
--- public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/scalable/rt-icon.svg	                        (rev 0)
+++ public/yanel/trunk/src/resources/registration/yanel-htdocs/icons/scalable/rt-icon.svg	2011-03-03 18:24:54 UTC (rev 57118)
@@ -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