You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by re...@apache.org on 2015/03/23 18:03:08 UTC

[10/51] [partial] clerezza git commit: CLEREZZA-966: removed platform. prefix of folder names

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ContactConfirmRenderlet.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ContactConfirmRenderlet.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ContactConfirmRenderlet.scala
deleted file mode 100644
index bb306aa..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ContactConfirmRenderlet.scala
+++ /dev/null
@@ -1,109 +0,0 @@
-package org.apache.clerezza.platform.accountcontrolpanel.html
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-import org.apache.clerezza.platform.accountcontrolpanel.ontologies.CONTROLPANEL
-import org.apache.clerezza.rdf.core._
-import org.apache.clerezza.rdf.scala.utils._
-import org.apache.clerezza.rdf.ontologies.FOAF
-import org.apache.clerezza.rdf.ontologies.RDF
-import org.apache.clerezza.rdf.scala.utils.Preamble._
-import org.apache.clerezza.platform.typerendering.scala._
-
-
-
-/**
- * Metadata class for the person panel
- */
-class ContactConfirmRenderlet extends SRenderlet {
-  def getRdfType() = CONTROLPANEL.ContactConfirmPage
-
-
-  override def renderedPage(arguments: XmlResult.Arguments) = new XmlPerson(arguments)
-
-  /**
-   * Content class for the Person Panel
-   */
-  class XmlPerson(args: XmlResult.Arguments) extends XmlResult(args) {
-
-    import RenderingUtility._
-    
-    //
-    // the content itself.
-    // This is the piece that is closest to a pure ssp, though there is still too much code in it
-    //
-
-    override def content = {
-      val primarySubject = res/FOAF.primaryTopic
-      <div id="tx-content">
-        {
-        if (primarySubject.hasProperty(RDF.`type`, FOAF.Person)) {
-          <form action="addContact" method="post">
-            {render(primarySubject, "box-naked")}
-            <input type="hidden" name="webId" value={primarySubject*} />
-            <input type="submit" value="Add this contact" />
-          </form>
-        } else {
-          <div>
-          <span>The resource {primarySubject!} of type {primarySubject/RDF.`type`} is not known to be a Person</span>
-          {
-            import collection.JavaConversions._
-            val otherPersons = (for (t <- primarySubject.getNodeContext.filter(null, RDF.`type`, FOAF.Person))
-              yield t.getSubject).toList
-            val personsWithUri: List[UriRef] = for (otherPerson <- otherPersons;
-                if otherPerson.isInstanceOf[UriRef]) yield otherPerson.asInstanceOf[UriRef]
-            if (personsWithUri.isEmpty) {
-              <span>No person could be found</span>
-            } else {
-              <div>
-                Maybe you want to add {
-                  if (personsWithUri.size > 1) {
-                    "one of the following "+personsWithUri.size+" persons:"
-                  } else {
-                    "the person"
-                  }
-                }
-                {
-                  for (otherPerson <- personsWithUri) yield {
-                    <form action="addContact" method="post">
-                      <span>{otherPerson}</span>
-                      {render(otherPerson, "box-naked")}
-                      <input type="hidden" name="webId" value={otherPerson.getUnicodeString} />
-                      <input type="submit" value="Add this contact" />
-                    </form>
-                  }
-                }
-              </div>
-            }
-          }
-          {
-            <form action="addContact" method="post">
-            You can add {primarySubject} as contact even though it does not seem to be a person.
-            <input type="hidden" name="webId" value={primarySubject*} />
-            <input type="submit" value="Add anyway" />
-          </form>
-          } </div>
-        }
-      }
-      <a href="../profile" onclick="history.go(-1)">Cancel</a>
-      </div>
-    }
-
-  }
-}

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/PersonBox.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/PersonBox.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/PersonBox.scala
deleted file mode 100644
index 2b9913c..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/PersonBox.scala
+++ /dev/null
@@ -1,63 +0,0 @@
-package org.apache.clerezza.platform.accountcontrolpanel.html
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-import org.apache.clerezza.platform.accountcontrolpanel.ontologies.CONTROLPANEL
-import org.apache.clerezza.rdf.core._
-import org.apache.clerezza.rdf.scala.utils._
-import org.apache.clerezza.rdf.ontologies.FOAF
-import org.apache.clerezza.rdf.scala.utils.Preamble._
-import org.apache.clerezza.platform.typerendering.scala._
-import scala.xml.Text
-
-
-
-/**
- * Metadata class for the person panel
- */
-class PersonBox extends SRenderlet {
-  def getRdfType() = FOAF.Person
-
-  override def getModePattern = "box-naked"
-
-  override def renderedPage(arguments: XmlResult.Arguments) = new XmlPerson(arguments)
-
-  /**
-   * Content class for the Person Panel
-   */
-  class XmlPerson(args: XmlResult.Arguments) extends XmlResult(args) {
-
-    import RenderingUtility._
-    
-    //
-    // the content itself.
-    // This is the piece that is closest to a pure ssp, though there is still too much code in it
-    //
-
-    override def content = {
-      val pixml= getAgentPix(res)
-      <div class="personInABox">
-        <table><tr><td>{pixml}</td></tr>
-        <tr><td>{new Text(getName(res))}</td></tr>
-        </table>
-      </div>
-    }
-
-  }
-}

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ProfilePanel.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ProfilePanel.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ProfilePanel.scala
deleted file mode 100644
index 7d65dff..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/ProfilePanel.scala
+++ /dev/null
@@ -1,295 +0,0 @@
-package org.apache.clerezza.platform.accountcontrolpanel.html
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-import org.apache.clerezza.rdf.core._
-import org.apache.clerezza.rdf.scala.utils._
-import org.apache.clerezza.rdf.scala.utils.Preamble._
-import org.apache.clerezza.foafssl.ontologies.CERT
-import org.apache.clerezza.foafssl.ontologies.RSA
-import org.apache.clerezza.platform.typerendering.scala._
-import java.math.BigInteger
-import java.util.Date
-import java.text._
-import org.apache.clerezza.rdf.core.UriRef
-import org.apache.clerezza.platform.accountcontrolpanel.ontologies.CONTROLPANEL
-import org.apache.clerezza.rdf.ontologies.{RDFS, DC, FOAF}
-
-class ProfilePanel extends SRenderlet {
-
-  override def getRdfType() = CONTROLPANEL.ProfilePage
-
-  override def renderedPage(arguments: XmlResult.Arguments) = new ProfilePanelXHTML(arguments)
-
-  class ProfilePanelXHTML(arguments: XmlResult.Arguments) extends XmlResult(arguments ) {
-
-    //set header properties
-
-    resultDocModifier.addStyleSheet("/account-control-panel/style/profile.css");
-    resultDocModifier.addScriptReference("/account-control-panel/scripts/profile.js");
-    resultDocModifier.addScriptReference("/account-control-panel/scripts/IEKeygen.js");
-    resultDocModifier.setTitle("Account Control Panel");
-    resultDocModifier.addNodes2Elem("tx-module", <h1>Account Control Panel</h1>);
-    resultDocModifier.addNodes2Elem("tx-module-tabs-ol", <li class="tx-active"><a href="#">Profile</a></li>);
-    resultDocModifier.addNodes2Elem("tx-module-tabs-ol", <li><a href="control-panel">Settings</a></li>);
-
-    //constants and variables
-
-    lazy val agent: RichGraphNode = res / FOAF.primaryTopic
-
-
-    // the content itself
-    // clearly in this case there is so much more in the the methods, that one could hesitate to call this an ssp
-
-    override def content = {
-      <div id="tx-content">
-        <h2>Personal Profile</h2>{agent ! match {
-          case _: BNode => createWebId()
-          case _: UriRef => existingWebId()
-         }}
-      </div>
-
-    }
-
-    //methods used to create content
-
-    def cp(s: Any) =  new UriRef("http://clerezza.org/2009/03/controlpanel#" + s)
-    def platform(s: Any) = new UriRef("http://clerezza.org/2009/08/platform#" + s)
-
-
-    def createWebId() = {
-      <h3>Associate Profile to WebID</h3>
-      <div id="newOrExistingSelection">
-      <p>Your profile is not currently associated to a WebID. A WebID allows you
-        to link your friends as well as to log-in to many sites (supporting foaf+ssl
-        or open-id).
-      </p>
-      <p>You may either create a new WebID or associate your account to an
-        existing WebID. Only creating a WebID here will allow you to manage your
-        profile here.
-      </p>
-      <form action="#" id="associateSelection">
-        <button type="button" id="newWebIdButton">Create a new Web-Id</button>
-        <button type="button" id="existingWebIdButton">I already have a Web-ID and want to use it</button>
-      </form>
-      </div>
-      <div id="createNewWebId">
-      <p>You have chosen to create a new Web-Id.</p>
-      <p>The Web-ID will be created as follows:
-        <br/>
-        <ol>
-        <li>Web-Id:
-          {var webId = res / cp("suggestedPPDUri") *;
-          webId += "#me";
-          webId}
-        </li>
-        <li>Personal-Profile Document: {res/cp("suggestedPPDUri")*}</li>
-        </ol>
-      </p>
-      <form method="post" action="profile/create-new-web-id">
-        <input value="Create it!" type="submit"/>
-      </form>
-      </div>
-      <div id="setExistingWebId">
-      <p>Please enter your Web-Id, if your Web-Id supports Foaf+SSL you will
-        be able to use it to log in to this site.</p>
-      <form method="post" action="profile/set-existing-webid">
-        <label for="webid">WebID</label> <input type="text" name="webid" size="80" title="Web-ID"/>
-        <br/>
-        <input value="Associate Profile to Web-Id" type="submit"/>
-        <p/>
-      </form>
-      </div>
-
-    }
-
-    def existingWebId() = {
-      if ((res / cp("isLocalProfile")).as[Boolean]) {
-      existingLocalWebId()
-      } else {
-      roamingUser()
-      }
-    }
-
-
-    def existingLocalWebId() = {
-      <h3>Manage your profile</h3>
-       <p>Here you can change your public profile.</p>
-
-      <form method="post" action="profile/modify">
-      <input type="hidden" name="webId" value={agent *}/>
-      <table>
-        <tr><td class="formlabel">Name:</td>
-        <td><input type="text" name="name" value={agent / FOAF.name *}/></td>
-        </tr>
-        <tr><td class="formlabel multiline">Description:</td>
-        <td><textarea name="description" rows="3" cols="80">{agent / DC.description *}</textarea></td>
-        </tr>
-        <tr><td class="formlabel"><input value="Modify" type="submit"/></td><td/></tr>
-      </table>
-
-      <p/>
-      </form>
-
-      <h3>Contacts</h3>
-      
-      <table>{ var i =0
-        val friends = for (friend <- agent/FOAF.knows) yield {
-          <td><form method="post" action="profile/deleteContact">
-            {
-              friend! match {
-                case webId: UriRef => render(webId, "box-naked")
-                case _ => render(friend, "box-naked")
-              }
-            }
-            <br/>
-            <input type="hidden" name="contactWebId" value={friend*}/>
-            <input type="submit" value="remove contact" />
-          </form></td>
-        /*render(friend!.asInstanceOf[UriRef])
-              import PersonPanel._
-        <td class="personInABox">{personInABox(friend)}</td>*/
-       }
-       for (row <- friends.grouped(5)) yield <tr>{row}</tr>
-      }</table>
-      <form id="addContact" method="get" action="profile/addContact">
-      <label for="contactWebId">Add contact bei WebId:<br/></label>
-      <input type="text" name="contactWebId" size="80"/><input type="submit" value="add contact" />
-      </form>
-
-      <h3>Key and Certificate Creation</h3>
-
-      <script type="text/javascript"> <![CDATA[$(document).ready(  function() { configurePage(); }   ); ]]> </script>
-
-      <div id="iehelptext" style="display: none;">
-      <p>Using Internet Explorer under Windows Vista or above or Windows
-        Server 2008, you need to configure the following for this to work:</p>
-      <ul>
-        <li>Add this site to the <i>Trusted Sites</i> list: in Internet
-        Options -&gt; Security -&gt; Trusted Sites -&gt; Sites -&gt; Add ...</li>
-        <li>You may need to configure the trust level (in this tab), using
-        <i>Custom Level...</i>: enable <i>Initialize and script ActiveX
-          controls not marked as safe for scripting</i>.</li>
-        <li>If you are using Windows Vista without SP1 or above, you will
-        probably need to install <a href="cacert.crt">this certificate</a> as a
-        Trusted Root Certification Authority Certificate for your own
-        certificate installation to succeed. You should probably remove that
-        trusted root CA certificate afterwards.</li>
-      </ul>
-      </div>
-      <form id="keygenform" method="post" action="profile/keygen">
-      <input name="webId" id="webId" type="hidden" value={agent*} />
-      <table>
-        <colgroup><col width="1*"/><col/></colgroup>
-        <tr>
-        <td class="formlabel">Certificate Name:</td>
-        <td>
-          <input alt="create a certificate name that will help you distinguish it from others you may have" name="cn"
-              size="35" id="cn" type="text" value={ ((agent/FOAF.name*)+"@clerezza")}/>
-        </td>
-        </tr>
-        <tr>
-        <td class="formlabel">Key strength:</td>
-        <td id="keystrenghtd">
-          <keygen id="spkac" name="spkac" challenge="TheChallenge1"/>
-        </td>
-        </tr>
-        <tr>
-        <td class="formlabel">Valid for:</td>
-        <td>
-          <input type="text" name="days" value="365" size="4"/>
-          days <input type="text" name="hours" value="0.0" size="4"/> hours</td>
-        </tr>
-        <tr>
-        <td class="formlabel">Comment:</td>
-        <td><input type="text" name="comment" value="" size="80"/></td>
-        </tr>
-        <tr><td class="formlabel"><input id="keygensubmit" type="submit" value="create certificate" /></td><td/></tr>
-      </table>
-      </form>
-      <h3>Existing Certificates</h3>
-      <form method="post" action="profile/deletekey">
-      <table>
-        <tr><th>Delete</th><th>Certificate Details</th></tr>
-        <input name="webId" id="webId" type="hidden" value={agent*} />
-        <tbody>{
-          for (key <- agent/-CERT.identity )
-          yield { val modulus = (key/RSA.modulus).as[BigInteger]
-              if (modulus == null)  <span/> //todo: broken public key, should delete it
-              else <tr><td><input type="checkbox" name="keyhash" value={modulus.hashCode().toString()}/></td>
-            <td><table>
-              <tr><td class="propvalue">Created:</td><td>{beautifyDate(key/DC.date )}</td></tr>
-              <tr><td class="propvalue">Comment:</td><td>{ key/RDFS.comment* }</td></tr>
-              <tr><td class="propvalue multiline">Modulus:</td><td><code>{ beautifyHex(key/RSA.modulus) }</code></td></tr>
-              <tr><td class="propvalue">Exponent:</td><td><code>{ beautifyInt(key/RSA.public_exponent) }</code></td></tr>
-              </table>
-            </td>
-                </tr>}
-        }</tbody>
-      </table>
-      <input type="submit" value="Disable Keys"/>
-      </form>
-      <p></p>
-
-    }
-
-    def roamingUser() = {
-      <h3>Using remote profile</h3>
-       <p>
-      {agent / FOAF.nick *}, you have accessed this site using your WebID
-        {"<" + (agent *) + ">"}
-        which has not been
-        created on this site.To edit your profile you should visit the site issuing the
-        profile.</p>
-    }
-
-
-
-
-    def beautifyDate(dtIt: CollectedIter[RichGraphNode]) {
-      if (0 == dtIt.size) return "_"
-      DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.FULL).format(dtIt.as[Date])
-    }
-
-
-    def beautifyHex(dtIt: CollectedIter[RichGraphNode]): String = {
-      if (0 == dtIt.size) return "warning! missing. Key invalid"
-      //this is a problem, it should always be here or it is invalid, and key should be removed
-      val bigint: BigInteger = dtIt.as[BigInteger]
-      val bstr = bigint.toString(16).toUpperCase;
-      val sbuf = new StringBuffer(bstr.size + (bstr.size/2)+10)
-      var cnt = 0
-      for (c <- bstr.toCharArray) {
-      if ((cnt % 2) == 0) sbuf.append(' ')
-      sbuf.append(c)
-      cnt += 1
-      }
-      sbuf.toString
-    }
-
-
-
-    def beautifyInt(dtIt: CollectedIter[RichGraphNode] ) :String = {
-      if (0 == dtIt.size) return "warning! missing. Key invalid"
-      else return dtIt.as[BigInteger].toString
-    }
-  }
-}
-
-

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/RenderingUtility.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/RenderingUtility.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/RenderingUtility.scala
deleted file mode 100644
index 735aee0..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/RenderingUtility.scala
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.clerezza.platform.accountcontrolpanel.html
-
-
-import scala.xml.Node
-import scala.xml.NodeSeq
-import scala.xml.Text
-import java.net.URLEncoder
-import org.apache.clerezza._
-import org.apache.clerezza.rdf.core.UriRef
-import org.apache.clerezza.rdf.ontologies.FOAF
-import org.apache.clerezza.rdf.ontologies.RDFS
-import rdf.scala.utils.CollectedIter
-import rdf.scala.utils.RichGraphNode
-import rdf.scala.utils.Preamble._
-/**
- * Some utility methods for the renderlets
- */
-object RenderingUtility {
-  val emptyText = new Text("")
-
-  def ifE[T](arg:T)(template: T=>Node ):NodeSeq = {
-    def isEmpty(arg: Any): Boolean = {
-      arg match {
-        case prod: Product => prod.productIterator.forall(isEmpty(_))
-        case str: String => (str.size == 0)
-        case it: CollectedIter[RichGraphNode] => (it.size == 0)
-        case node: RichGraphNode => (null == node)
-        case other: AnyRef => (null == other)
-        case _ => false //literals can't be empty
-      }
-    }
-    if (isEmpty(arg)) return emptyText else template(arg)
-  }
-
-  def firstOf(node: RichGraphNode, uris: UriRef*):CollectedIter[RichGraphNode] = {
-    for (uri <- uris) {
-      val res : CollectedIter[RichGraphNode] = node/uri
-      if (res.size>0) return res
-    }
-    return new CollectedIter[RichGraphNode]()
-  }
-
-
-
-  /**
-   * Show a person: a picture, a link to their local profile and their name
-   * Different default icons should be shown if the agent is a person, company, group, robot...
-   *
-   * assumes the p is WebID node (can change later)
-   */
-  def getAgentPix(p: RichGraphNode) = {
-    val pix = firstOf(p, FOAF.depiction, FOAF.logo, FOAF.img).getNode match {
-      case uri: UriRef => uri.getUnicodeString
-      case _ => "http://upload.wikimedia.org/wikipedia/commons/0/0a/Gnome-stock_person.svg"
-    }
-    <a href={"/browse/person?uri="+encode(p*)}><img class="mugshot" src={pix}/></a>
-  }
-
-  private def encode(url: String): String =  URLEncoder.encode(url,"UTF8")
-
-  /**
-   * get a usable name from the properties available including nick
-   */
-  def getName(p: RichGraphNode): String =  {
-     val name = p/FOAF.name*;
-     if ("" != name ) { return name }
-     val firstNm: String = p/FOAF.firstName*;
-     val fmlyNm :String = firstOf(p, FOAF.family_name,FOAF.familyName)*;
-       if ("" != firstNm || "" != fmlyNm) { return firstNm+" "+fmlyNm }
-     return p*
-
-  }
-
-}
-

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/SettingsPanel.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/SettingsPanel.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/SettingsPanel.scala
deleted file mode 100644
index a2a58e6..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/html/SettingsPanel.scala
+++ /dev/null
@@ -1,163 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.clerezza.platform.accountcontrolpanel.html
-
-import org.apache.clerezza.rdf.scala.utils.Preamble._
-import org.apache.clerezza.platform.accountcontrolpanel.ontologies.CONTROLPANEL
-import org.apache.clerezza.platform.typerendering.scala._
-
-
-class SettingsPanel extends SRenderlet {
-
-  val getRdfType = CONTROLPANEL.SettingsPage
-
-    override def renderedPage(arguments: XmlResult.Arguments) = new XmlResult(arguments ) {
-    override def content = {
-import org.apache.clerezza.rdf.core.UriRef
-import scala.xml.NodeBuffer
-import scala.collection.mutable.ListBuffer
-def cp(s: Any) = new UriRef("http://clerezza.org/2009/03/controlpanel#"+s)
-def osgi(s: Any) = new UriRef("http://clerezza.org/2008/11/osgi#"+s)
-def platform(s: Any) = new UriRef("http://clerezza.org/2009/08/platform#" + s)
-val nodeBuff = new ListBuffer[NodeBuffer]
-resultDocModifier.setTitle("Account Control Panel");
-resultDocModifier.addNodes2Elem("tx-module", <h1>Account Control Panel</h1>);
-resultDocModifier.addNodes2Elem("tx-module-tabs-ol", <li><a href="profile">Profile</a></li>);
-resultDocModifier.addNodes2Elem("tx-module-tabs-ol", <li class="tx-active"><a href="#">Settings</a></li>);
-
-if ((res/cp("userBundlePermission")*) == "true") {
-  nodeBuff +=(<h2>Bundle Control Panel</h2>
-  <h3>Install Bundle</h3>
-
-  <form method="post" action="control-panel/install-bundle" enctype="multipart/form-data">
-    <input type="file" class="FieldText" name="bundle" size="30" title="bundle path"/><br/><br/>
-    <input style="width: 5em;" value="Install" type="submit"/><p />
-  </form>
-  <br/><br/>
-  <h3>User Bundles</h3>
-  <table border="1">
-  <tbody>
-    <tr>
-      <th>Location</th>
-      <th>Status</th>
-      <th colspan="4">Action</th>
-    </tr>
-
-    {for (renderlet <- (res/-osgi("owner")).sort((a,b) => ((a*)<(b*)))) yield
-    <tr>
-      <td>{renderlet*}</td>
-      <td>{renderlet/osgi("status")* match {
-        case "2" => "Installed"
-        case "4" => "Resolved"
-        case "8" => "Starting"
-        case "16" => "Stopping"
-        case "32" => "Active"
-        }}
-      </td>
-      {if (((renderlet/osgi("bundle_id")).length) > 0)
-      <td>
-      <form method="post" action="control-panel/start-bundle">
-      <input name="bundleId" value={(renderlet/osgi("bundle_id"))*} type="hidden"/>
-      <input value="start" type="submit"/>
-      </form>
-      </td>
-      <td>
-      <form method="post" action="control-panel/stop-bundle">
-      <input name="bundleId" value={(renderlet/osgi("bundle_id"))*} type="hidden"/>
-      <input value="stop" type="submit"/>
-      </form>
-      </td>
-      <td>
-      <form method="post" action="control-panel/uninstall-bundle">
-      <input name="bundleId" value={(renderlet/osgi("bundle_id"))*} type="hidden"/>
-      <input value="uninstall" type="submit"/>
-      </form>
-      </td>
-      else
-      <td colspan="3">Not registered as bundle</td>}
-      </tr>
-      }
-    </tbody>
-  </table>
-  <br/>)
-}
-
-if((res/cp("changePasswordPermission")*) == "true") {
-  nodeBuff +=(<h2>Change Password</h2>
-
-
-  <form action="control-panel/change-password" method="post">
-    <fieldset>
-      <ol style="display: block;">
-        <li class="tx-line" style="background-image: none;">
-          <label>Current Password:</label>
-          <span class="tx-item">
-            <input type="password" name="oldPW"/>
-          </span>
-        </li>
-        <li class="tx-line" style="background-image: none;">
-          <label>New Password:</label>
-          <span class="tx-item">
-            <input type="password" name="newPW"/>
-          </span>
-        </li>
-        <li class="tx-line" style="background-image: none;">
-          <label>Confirm new Password:</label>
-          <span class="tx-item">
-            <input type="password" name="confirmNewPW"/>
-          </span>
-        </li>
-        <br />
-        <input style="width: 5em;" type="submit" name="submit" value="Submit"/>
-      </ol>
-      <br/>
-    </fieldset>
-  </form>)
-
-
-}
-
-if((res/cp("changedPassword")).length > 0) {
-  nodeBuff +=(<br /><span>Password has not changed, either wrong current password or the
-        new password and the confirmation didn't match!<br /><br /></span>)
-}
-
-
-nodeBuff +=(<h2>Change user's default language</h2>
-  <form method="post" action="control-panel/change-language">
-    {render(context/platform("instance")/platform("languages"), "naked")}
-    <br/><br/>
-    <script type="text/javascript">$("#availablelanguages").val({"'" + (context/platform("user")/platform("preferredLangInISOCode")*) + "'"})</script>
-    <input style="width: 5em;" type="submit" name="submit" value="Submit"/>
-    <br/><br/>
-  </form>)
-
-<div id="tx-content">
-  <div class="tx-edit" style="margin-left: 0.5em;">
-  {if(nodeBuff.isEmpty)
-    <span>There are no settings you can configure for this account!</span>
-  else
-    nodeBuff
-  }
-  </div>
-</div>
-    }
-  }
-}

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/permissions.scala
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/permissions.scala b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/permissions.scala
deleted file mode 100644
index ae7953f..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/main/scala/org/apache/clerezza/platform/accountcontrolpanel/permissions.scala
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.clerezza.platform.accountcontrolpanel
-
-import java.security.Permission
-import org.slf4j.scala.Logging
-
-//note: file has lower class name, as it contains many classes
-
-
-/**
- * superclass for the permission classes, to avoid a lot of boilerplate code
- *
- * @author bblfish, reto
- */
-abstract
-class AbstractPermission(val accountName: String, val actions: String ="")
-  extends Permission(accountName) with Logging  {
-
-  if (actions != "") {
-    throw new RuntimeException(getClass.getName+": actions must be an empty String "+
-      "(second argument only in constructor for supporting building from canonical form")
-  }
-
-  def getActions: String = actions
-
-  /**
-   * A subclass implies another permission if and only if they are equals
-   */
-   override
-  def implies(permission: Permission): Boolean = {
-    logger.debug("checking for "+permission+" is implied by "+ this)
-    var result: Boolean = equals(permission)
-    return result
-  }
-
-  override
-  def equals(other: Any): Boolean =
-      other match {
-      case that:  AbstractPermission  =>  
-        (that eq this ) || ((this.getClass == that.getClass) && accountName == that.accountName )
-      case _ => false
-      }
-
-  /**
-   * For the hashCode the class and the accountName is considered
-   */
-  override
-  def hashCode: Int = {
-    return  getClass.hashCode + (if (accountName != null) accountName.hashCode else 0)
-  }
-}
-
-/**
- * Permission to change the password
- * @author ali
- *
- */
-class ChangePasswordPermission(accountName: String, actions: String ="")
-  extends AbstractPermission(accountName, actions) {
-
-}
-
-/**
- * Permission to access the account control panel
- *
- * @author ali
- *
- */
-class AccountControlPanelAppPermission(accountName: String, actions: String ="")
-  extends AbstractPermission(accountName)  {
-
-
-}
-
-/**
- * Permission for user to have own bundles
- *
- * @author mir
- *
- */
-class UserBundlePermission( accountName: String, actions: String ="")
-  extends AbstractPermission(accountName)  {
-
-
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/documentation/style/style.css
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/documentation/style/style.css b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/documentation/style/style.css
deleted file mode 100644
index ff49a4d..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/documentation/style/style.css
+++ /dev/null
@@ -1,421 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-/*---------------------------------------------------------------------------
- *  Two- and three-column layout
- */
-
-#banner {
-    top: 0px;
-    left: 0px;
-    right: 0px;
-    height: 116px;
-}
-
-#left {
-    position: absolute;
-    z-index: 2;
-    left: 8px;
-    width: 184px;
-    top: 125px;
-    bottom: 8px;
-    margin: 0px;
-    padding: 0px;
-}
-
-#right {
-    position: absolute;
-    z-index: 1;
-    right: 8px;
-    width: 184px;
-    top: 125px;
-    bottom: 8px;
-    margin: 0px;
-    padding: 0px;
-}
-
-.Content3Column {
-    position: absolute;
-    top: 125px;
-    bottom: 8px;
-    left: 208px;
-    right: 216px;
-}
-
-.Content2Column {
-    position: absolute;
-    top: 125px;
-    bottom: 8px;
-    left: 208px;
-    right: 16px;
-}
-
-#center {
-    z-index: 3;
-    margin: 0px;
-    border: none;
-    padding-bottom: 8px;
-}
-
-
-/*---------------------------------------------------------------------------
- *  Default element styles
- */
-
-body {
-    padding: 0px;
-    margin: 0px;
-    border: 0px;
-
-    font-family: helvetica, arial, sans-serif;
-    font-size: 12px;
-
-    background-color: white;
-    color: black;
-}
-
-h1, h2, h3, h4, h5, h6 {
-    margin: 0px;
-    border: 0px;
-    padding: 0px;
-    font-weight: normal;
-}
-
-a:link { color: #008DA8; }
-a:active { color: #FE5400; }
-a:hover { color: #FE5400; }
-a:visited { color: black; }
-
-iframe {
-    width:100%;
-    height: 800px;
-    border: 0px;
-}
-
-img {
-    border: 0px;
-    padding: 0px;
-    margin: 0px;
-}
-
-p {
-    border: 0px;
-    padding: 0px;
-    margin: 0px;
-    margin-bottom: 10px;
-}
-
-blockquote {
-    margin-bottom: 10px;
-}
-
-td {
-    font-size: 12px;
-    padding: 2px;
-}
-
-tr.a {
-    background-color:  #e0e0e0;
-}
-tr.b {
-    background-color: #ffffff;
-}
-
-th {
-    font-size: 12px;
-    font-weight: bold;
-    white-space: nowrap;
-    padding: 2px;
-}
-
-th.Row {
-    text-align: left;
-    vertical-align: top;
-}
-
-ul, ol {
-    border: 0px;
-    padding: 0px;
-    margin-top: 0px;
-    margin-bottom: 12px;
-    margin-left: 20px;
-}
-
-
-/*---------------------------------------------------------------------------
- *  Page banner
- */
-
-#banner {
-    margin: 0px;
-    border: 0px;
-    border-bottom: 1px solid #008DA8;
-    padding: 0px;
-    background-color: #e0e0e0;
-    color: #008DA8;
-    vertical-align: bottom;
-}
-
-#banner a { text-decoration: none; }
-#banner a:visited { color: #008DA8; }
-#banner a:hover { color: #FE5400; }
-#banner a:active { color: #FE5400; }
-
-#logo {
-    position: absolute;
-    top: 5px;
-    left: 8px;
-}
-
-#versions {
-    position: absolute;
-    width: auto;
-    right: 0px;
-    top: 0px;
-    margin: 8px;
-    font-weight: normal;
-}
-
-/*---------------------------------------------------------------------------
- *  Page content
- */
-
-#content {
-    margin: 0px;
-    background-color: white;
-    color: black;
-    height: 100%;
-}
-
-#content h1 {
-    width: 100%;
-    font-size: 18px;
-    background-color: #008DA8;
-    color: white;
-    padding: 2px;
-    padding-left: 6px;
-    margin-top: 24px;
-    margin-bottom: 12px;
-}
-
-#content .FirstChild {  /* IE doesn't understand first-child pseudoelement */
-    margin-top: 0px;
-}
-
-#content a { text-decoration: underline; }
-#content a:link { color: #008DA8; }
-#content a:visited { color: #008DA8; }
-#content a:active { color: #FE5400; }
-#content a:hover { color: #FE5400; }
-
-#content h2 {
-    margin-top: 24px;
-    border-top: 1px solid #008DA8;
-    margin-bottom: 16px;
-    font-size: 15px;
-    font-weight: bold;
-    background-color:  #e0e0e0;;
-    padding: 2px;
-}
-
-#content li {
-    margin-bottom: 6px;
-}
-
-#content th {
-    background-color:  #e0e0e0;
-}
-
-#content td {
-    
-}
-
-.Source pre {
-    padding: 4px;
-    font-family: courier new, monospace;
-    font-size: 11px;
-    border: 1px solid #008DA8;
-    background-color:  #e0e0e0;
-    color: black;
-}
-
-.Source:before {
-    margin: 0px;
-    padding: 0px;
-    border: 0px;
-    font-size: inherit;
-    line-spacing: 100%;
-}
-
-.highlight {
-    background-color:  #e0e0e0;
-    border: 1px dotted #008DA8;
-    padding: 5px;
-}
-
-/* The following are for images, but can also apply to div's containing images. */
-
-#content .Float {
-    float: right;
-    margin-left: 8px;
-    margin-right: 0px;
-    margin-top: 8px;
-    margin-bottom: 8px;
-}
-
-#content .Diagram {
-    display: block;
-    margin-left: auto;
-    margin-right: auto;
-    margin-top: 8px;
-    margin-bottom: 8px;
-}
-
-
-#content .Inline {
-    display: inline;
-}
-
-.RuleOfThumb {
-    font-weight: bold;
-}
-
-/*---------------------------------------------------------------------------
- *  Side panels
- */
-
-.SidePanel {
-    background-color: white;
-    padding: 0px;
-    font-size: 11px;
-}
-
-.SidePanel h1 {
-    margin: 0px;
-    border: 0px;
-    padding: 4px;
-
-    color: #008DA8;
-
-    font-size: 12px;
-    font-weight: bold;
-}
-
-
-.SidePanel a { text-decoration: none; }
-.SidePanel a:link { color: #000000; }
-.SidePanel a:visited { color: #000000; }
-.SidePanel a:active { color: #FE5400; }
-.SidePanel a:hover { color: #FE5400; }
-
-/*---------------------------------------------------------------------------
- *  Menus
- */
-
-.MenuGroup {
-    border-left: 1px solid #A3DAE6;
-    border-top: 1px solid #A3DAE6;
-    border-bottom: 1px solid white; /* IE work-around */
-
-    margin-bottom: 8px;
-    background-color: white;
-    color: #008DA8;
-}
-
-.MenuGroup ul {
-    margin: 0px;
-    padding-left: 4px;
-    list-style-type: none;
-}
-
-.MenuGroup li {
-    padding: 2px;
-}
-
-.MenuGroup .currentLink {
-/*    background-color: #060;*/
-    background-color:  #e0e0e0;
-    color: #008DA8;
-}
-
-
-/*---------------------------------------------------------------------------
- *  News panel
- */
-
-.NewsGroup {
-    border-left: 1px solid #A3DAE6;
-    border-top: 1px solid #A3DAE6;
-    border-bottom: 1px solid white; /* IE workaround */
-    margin-bottom: 8px;
-
-    color: #008DA8;
-}
-
-.NewsItem {
-    margin: 4px;
-}
-
-.NewsDate {
-    font-weight: bold;
-    margin: 0px;
-    padding: 0px;
-}
-
-.NewsText {
-    padding: 0px;
-    margin: 0px;
-    margin-bottom: 8px;
-}
-
-.NewsText a { text-decoration: underline; }
-.NewsText a:link { color: #008DA8; }
-.NewsText a:visited { color: #008DA8; }
-.NewsText a:active { color: #FE5400; }
-.NewsText a:hover { color: #FE5400; }
-
-.NewsMore {
-    font-size: smaller;
-    margin: 4px;
-    margin-top: 8px;
-    text-align: left;
-}
-
-.NewsGroup td {
-    font-size: 12px;
-}
-
-/*---------------------------------------------------------------------------
- *  Document meta-information
- */
-
-.Meta {
-    margin-top: 64px;
-    font-size: smaller;
-    color: #008DA8;
-    text-align: right;
-}
-
-.Meta a { text-decoration: underline; }
-.Meta a:link { color: #008DA8; }
-.Meta a:visited { color: #008DA8; }
-.Meta a:active { color: #FE5400; }
-.Meta a:hover { color: #FE5400; }

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/images/clerezza.png
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/images/clerezza.png b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/images/clerezza.png
deleted file mode 100644
index cb0efb0..0000000
Binary files a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/resources/images/clerezza.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/site.xml
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/site.xml b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/site.xml
deleted file mode 100644
index 8d5a4cb..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/site.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
--->
-
-<project>
-    <body>
-        <menu name="Documentation">
-            <item name="Usage" href="documentation/usage.xhtml"/>
-        </menu>
-    </body>
-</project>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/sitemap.xml
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/sitemap.xml b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/sitemap.xml
deleted file mode 100644
index 38be885..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/sitemap.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version='1.0'?>
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
-
--->
-
-<sitemap>
-    <section>
-        <name>Documentation</name>
-        <page>usage.xhtml</page>
-    </section>
-</sitemap>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/usage.xhtml
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/usage.xhtml b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/usage.xhtml
deleted file mode 100644
index 6c22c93..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/content/usage.xhtml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
--->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
-	<head>
-		<title>Usage: How to use the Account Control Panel</title>
-	</head>
-	<body>
-		<h1>Usage: How to use the Account Control Panel</h1>
-		<p>Author: Tsuyoshi Ito - clerezza.org</p>
-		<p>Date: January 27, 2009</p>
-		<h2 id="list">1. List installed bundles</h2>
-		<p>
-			Each user can upload and install bundles into the platform. Users and permissions can be created via <a href="http://localhost:8282/admin/user-manager" target="_blank">http://localhost:8282/admin/user-manager</a> and <a href="http://localhost:8282/admin/role-manager" target="_blank">http://localhost:8282/admin/role-manager</a>. <br />
-			Enter the following URL: <a href="http://localhost:8282/user/admin/control-panel" target="_blank">http://localhost:8282/user/admin/control-panel</a> to list all bundles from the user "admin" (when asked to authenticate use username "admin" and password "admin). If you want to list installed bundles from another user, replace "admin" in the URL with the username of the other user.
-		</p>
-		<h2 id="install">2. Install a bundle</h2>
-		<p>
-            You can upload a bundle by clicking on the link <a href="http://localhost:8282/user/admin/control-panel/install-bundle-form">Install Bundle</a> on <a href="http://localhost:8282/user/admin/control-panel" target="_blank">http://localhost:8282/user/admin/control-panel</a>. Enter the URL of your bundle (e.g. Location: http://localhost/mybundle-1.0.jar) and click on the button "install". The uploaded and installed bundles have the same permission as you have. 
-        </p>
-		<h2 id="start">3. Start, Stop and Uninstall a bundle</h2>
-        <p>
-            A user can start, stop and  uninstall a bundle on <a href="http://localhost:8282/user/admin/control-panel" target="_blank">http://localhost:8282/user/admin/control-panel</a>, whereas "admin" can be replaced by another username. Click on the appropriate button for start , stop or uninstall a bundle.
-        </p>
-        <p>
-            That's all. Enjoy.
-        </p>
-    </body>
-</html>
-

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/templates/skin.html
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/templates/skin.html b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/templates/skin.html
deleted file mode 100644
index 4b10edb..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.core/src/site/xsite/templates/skin.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
-
--->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-    <head>
-        <title>clerezza.org - ${title}</title>
-        <link rel="stylesheet" type="text/css" href="style/style.css"/>
-        ${head}
-    </head>
-    <body>
-
-        <div id="banner">
-            <a href="http://clerezza.org/">
-              <img id="logo" src="../images/clerezza.png" alt="clerezza.org"/>
-            </a><br />
-        </div>
-
-        <div id="center" class="${centerClass}">
-            <div id="content">
-                <!-- <h1 class="FirstChild">${title}</h1> -->
-                ${body}
-                <p>Copyright (c) 2008 trialox.org (trialox AG, Switzerland)</p>
-                <br /><br />
-            </div>
-        </div>
-
-        <div class="SidePanel" id="left">
-            <#list sitemap.sections as section>
-                <div class="MenuGroup">
-                    <h1>${section.name}</h1>
-                    <ul>
-                        <#list section.entries as entry>
-                            <#if entry = page>
-                                <li class="currentLink">${entry.title}</li>
-                            <#else>
-                                <li><a href="${entry.href}">${entry.title}</a></li>
-                            </#if>
-                        </#list>
-                    </ul>
-                </div>
-            </#list>
-            <div class="MenuGroup">
-                  <h1>Project Site</h1>
-                  <ul>
-
-                              <li><a href="../index.html">Back to project site</a></li>
-                  </ul>
-              </div>
-        </div>
-
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/LICENSE
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/LICENSE b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/LICENSE
deleted file mode 100644
index 261eeb9..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/pom.xml
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/pom.xml b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/pom.xml
deleted file mode 100644
index 023237b..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/pom.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
-
--->
-
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.clerezza</groupId>
-        <artifactId>platform.accountcontrolpanel</artifactId>
-        <version>0.10</version>
-    </parent>
-    <groupId>org.apache.clerezza</groupId>
-    <artifactId>platform.accountcontrolpanel.ontologies</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Clerezza - Platform Account Contral Panel Ontologies</name>
-    <description>
-        Ontologies of the Account Control Panel
-    </description>
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.clerezza</groupId>
-            <artifactId>rdf.core</artifactId>
-            <version>0.14</version>
-        </dependency>
-    </dependencies>
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.clerezza</groupId>
-                <artifactId>maven-ontologies-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <phase>generate-sources</phase>
-                        <configuration>
-                            <resourcePath>${basedir}/src/main/resources</resourcePath>
-                            <sources>
-                                <source>${basedir}/target/generated-sources/main/java</source>
-                            </sources>
-                        </configuration>
-                        <goals>
-                            <goal>generate</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <version>0.4</version>
-        </plugin>
-        </plugins>
-    </build>
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/src/main/resources/org/apache/clerezza/platform/accountcontrolpanel/ontologies/controlpanel.rdf
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/src/main/resources/org/apache/clerezza/platform/accountcontrolpanel/ontologies/controlpanel.rdf b/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/src/main/resources/org/apache/clerezza/platform/accountcontrolpanel/ontologies/controlpanel.rdf
deleted file mode 100644
index e6c76a8..0000000
--- a/platform/platform.accountcontrolpanel/platform.accountcontrolpanel.ontologies/src/main/resources/org/apache/clerezza/platform/accountcontrolpanel/ontologies/controlpanel.rdf
+++ /dev/null
@@ -1,120 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
-
--->
-
-<rdf:RDF
-	xml:base="http://clerezza.org/2009/03/controlpanel#"
-	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
-	xmlns:owl="http://www.w3.org/2002/07/owl#"
-	xmlns:dc="http://purl.org/dc/elements/1.1/"
-	xmlns:skos="http://www.w3.org/2008/05/skos#"
->
-
-<!-- Ontology -->
-
-<owl:Ontology rdf:about="http://clerezza.org/2009/03/controlpanel#">
-	<owl:versionInfo>Revision: 0.1</owl:versionInfo>
-	<dc:title xml:lang="en">
-		Clerezza Concept Manager
-	</dc:title>
-</owl:Ontology>
-
-<!-- Classes -->
-
-<rdfs:Class rdf:about="#SettingsPage">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
-	<rdfs:label xml:lang="en">account settings Page</rdfs:label>
-	<skos:definition xml:lang="en">A web page containing a list of bundles of a user. Over the page
-		bundles can be managed.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-</rdfs:Class>
-
-<rdfs:Class rdf:about="#ProfilePage">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
-	<rdfs:label xml:lang="en">personal profile management page</rdfs:label>
-	<skos:definition xml:lang="en">A web page allowing users to change  
-	their profile.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-</rdfs:Class>
-
-<rdfs:Class rdf:about="#ContactConfirmPage">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
-	<rdfs:label xml:lang="en">ContactConfirmPage</rdfs:label>
-	<skos:definition xml:lang="en">page for confiming a new contact
-	</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-</rdfs:Class>
-
-<!-- Properties -->
-
-<rdf:Property rdf:about="#userBundlePermission">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty" />
-	<rdfs:label xml:lang="en">User Bundle Permission</rdfs:label>
-	<skos:definition xml:lang="en">Points to a boolean indicating if the user has
-		the permission to install bundles over his/her account control page, which is the subject.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-	<rdfs:domain rdf:resource="#SettingsPage" />
-	<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
-</rdf:Property>
-
-<rdf:Property rdf:about="#changePasswordPermission">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty" />
-	<rdfs:label xml:lang="en">Change Password Permission</rdfs:label>
-	<skos:definition xml:lang="en">Points to a boolean indicating if the user has
-		the permission to change the password over his/her account control page, which is the subject.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-	<rdfs:domain rdf:resource="#SettingsPage" />
-	<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
-</rdf:Property>
-
-<rdf:Property rdf:about="#changedPassword">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty" />
-	<rdfs:label xml:lang="en">change password</rdfs:label>
-	<skos:definition xml:lang="en">Points from a settings page over which an attempt was made to change the password of the user owning it
-		to a boolean indicating if an attempt succeeded.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-	<rdfs:domain rdf:resource="#SettingsPage" />
-	<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
-</rdf:Property>
-
-<rdf:Property rdf:about="#isLocalProfile">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty" />
-	<rdfs:label xml:lang="en">profile local</rdfs:label>
-	<skos:definition xml:lang="en">Points from a profile page to a boolean 
-indicating if the server considers itself as authoritative for that profile.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-	<rdfs:domain rdf:resource="#SettingsPage" />
-	<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
-</rdf:Property>
-
-<rdf:Property rdf:about="#suggestedPPDUri">
-	<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty" />
-	<rdfs:label xml:lang="en">Suggested PPD URI</rdfs:label>
-	<skos:definition xml:lang="en">Points to a uri suggested for a new local 
-	personal profile document of the subject.</skos:definition>
-	<rdfs:isDefinedBy rdf:resource="http://clerezza.org/2009/03/controlpanel#" />
-	<rdfs:domain rdf:resource="#SettingsPage" />
-	<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
-</rdf:Property>
-
-</rdf:RDF>
-

http://git-wip-us.apache.org/repos/asf/clerezza/blob/70220239/platform/platform.accountcontrolpanel/pom.xml
----------------------------------------------------------------------
diff --git a/platform/platform.accountcontrolpanel/pom.xml b/platform/platform.accountcontrolpanel/pom.xml
deleted file mode 100644
index a23edbd..0000000
--- a/platform/platform.accountcontrolpanel/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
-
--->
-
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.clerezza</groupId>
-        <artifactId>clerezza</artifactId>
-        <version>0.5</version>
-        <relativePath>../parent</relativePath>
-    </parent>
-    <groupId>org.apache.clerezza</groupId>
-    <artifactId>platform.accountcontrolpanel</artifactId>
-    <packaging>pom</packaging>
-    <version>1.0.0-SNAPSHOT</version>
-    <name>Clerezza - Platform Account Control Panel</name>
-    <description>A web interface that provides functions to configure the account of a platform user.</description>
-    
-    <modules>
-        <module>platform.accountcontrolpanel.ontologies</module>
-        <module>platform.accountcontrolpanel.core</module>
-    </modules>
-</project>
\ No newline at end of file