[Yanel-commits] rev 20750 - in public/yanel/trunk/src/realms: . test test/yanel test/yanel/ac-identities test/yanel/ac-policies test/yanel/config test/yanel/data test/yanel/data-paths test/yanel/data-paths/index.html test/yanel/rti

michi at wyona.com michi at wyona.com
Tue Dec 12 11:31:23 CET 2006


Author: michi
Date: 2006-12-12 11:31:21 +0100 (Tue, 12 Dec 2006)
New Revision: 20750

Added:
   public/yanel/trunk/src/realms/test/
   public/yanel/trunk/src/realms/test/yanel/
   public/yanel/trunk/src/realms/test/yanel/ac-identities/
   public/yanel/trunk/src/realms/test/yanel/ac-identities/lenya.iml
   public/yanel/trunk/src/realms/test/yanel/ac-policies/
   public/yanel/trunk/src/realms/test/yanel/ac-policies/.policy
   public/yanel/trunk/src/realms/test/yanel/config/
   public/yanel/trunk/src/realms/test/yanel/config/ac-identities-repository.xml
   public/yanel/trunk/src/realms/test/yanel/config/ac-policies-repository.xml
   public/yanel/trunk/src/realms/test/yanel/config/data-repository.xml
   public/yanel/trunk/src/realms/test/yanel/config/rti-repository.xml
   public/yanel/trunk/src/realms/test/yanel/config/yanel-realm-config.xml
   public/yanel/trunk/src/realms/test/yanel/data-paths/
   public/yanel/trunk/src/realms/test/yanel/data-paths/.yarep-uid
   public/yanel/trunk/src/realms/test/yanel/data-paths/index.html/
   public/yanel/trunk/src/realms/test/yanel/data-paths/index.html/.yarep-uid
   public/yanel/trunk/src/realms/test/yanel/data/
   public/yanel/trunk/src/realms/test/yanel/data/welcome.xhtml
   public/yanel/trunk/src/realms/test/yanel/rti/
   public/yanel/trunk/src/realms/test/yanel/rti/.yanel-rti
Log:
test realm added

Added: public/yanel/trunk/src/realms/test/yanel/ac-identities/lenya.iml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/ac-identities/lenya.iml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/ac-identities/lenya.iml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+
+<identity id="lenya" xmlns="http://www.wyona.org/security/1.0">
+  <name>Michael Wechner</name>
+  <description></description>
+  <email>michi at wyona.org</email>
+  <password type="md5">8e07dafd13495561db9063ebe4db4b27</password>
+
+  <groups>
+    <group>editor</group>
+    <group>admin</group>
+  </groups>
+</identity>

Added: public/yanel/trunk/src/realms/test/yanel/ac-policies/.policy
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/ac-policies/.policy	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/ac-policies/.policy	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+
+<policy xmlns="http://www.wyona.org/security/1.0">
+
+  <role id="view">
+    <world permission="true"/>
+  </role>
+
+  <role id="open">
+    <user id="lenya" permission="true"/>
+  </role>
+
+  <role id="write">
+    <user id="lenya" permission="true"/>
+  </role>
+
+  <role id="create">
+    <user id="lenya" permission="true"/>
+  </role>
+
+</policy>

Added: public/yanel/trunk/src/realms/test/yanel/config/ac-identities-repository.xml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/config/ac-identities-repository.xml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/config/ac-identities-repository.xml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,11 @@
+<?xml version="1.0"?>
+
+<repository>
+  <name>Test Access Control Identities</name>
+
+  <paths class="org.wyona.yarep.impl.VFileSystemMapImpl" src="../ac-identities"/>
+
+  <storage class="org.wyona.yarep.core.impl.vfs.VFileSystemStorage">
+    <content src="../ac-identities"/>
+  </storage>
+</repository>

Added: public/yanel/trunk/src/realms/test/yanel/config/ac-policies-repository.xml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/config/ac-policies-repository.xml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/config/ac-policies-repository.xml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,11 @@
+<?xml version="1.0"?>
+
+<repository>
+  <name>Test Access Control Policies</name>
+
+  <paths class="org.wyona.yarep.impl.VFileSystemMapImpl" src="../ac-policies"/>
+
+  <storage class="org.wyona.yarep.core.impl.vfs.VFileSystemStorage">
+    <content src="../ac-policies"/>
+  </storage>
+</repository>

Added: public/yanel/trunk/src/realms/test/yanel/config/data-repository.xml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/config/data-repository.xml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/config/data-repository.xml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,11 @@
+<?xml version="1.0"?>
+
+<repository>
+  <name>Test Data Repository</name>
+
+  <paths src="../data-paths" fallback="true"/>
+
+  <storage class="org.wyona.yarep.core.impl.fs.FileSystemStorage">
+    <content src="../../../../../local/test"/>
+  </storage>
+</repository>

Added: public/yanel/trunk/src/realms/test/yanel/config/rti-repository.xml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/config/rti-repository.xml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/config/rti-repository.xml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,11 @@
+<?xml version="1.0"?>
+
+<repository>
+  <name>Test RTI Repository</name>
+
+  <paths class="org.wyona.yarep.impl.VFileSystemMapImpl" src="../rti"/>
+
+  <storage class="org.wyona.yarep.core.impl.vfs.VFileSystemStorage">
+    <content src="../rti"/>
+  </storage>
+</repository>

Added: public/yanel/trunk/src/realms/test/yanel/config/yanel-realm-config.xml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/config/yanel-realm-config.xml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/config/yanel-realm-config.xml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,9 @@
+<?xml version="1.0"?>
+
+<realm-config xmlns="http://www.wyona.org/yanel/realm/1.0">
+  <name>Test Realm</name>
+  <rti>rti-repository.xml</rti>
+  <data>data-repository.xml</data>
+  <ac-policies>ac-policies-repository.xml</ac-policies>
+  <ac-identities>ac-identities-repository.xml</ac-identities>
+</realm-config>

Added: public/yanel/trunk/src/realms/test/yanel/data/welcome.xhtml
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/data/welcome.xhtml	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/data/welcome.xhtml	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+
+<!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>
+  <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8"/>
+  <title>From Scratch</title>
+  <!-- TODO: This page should be generated dynamically! -->
+  <!--
+  <link rel="neutron-introspection" type="application/neutron+xml" href="introspection-homepage.xml"/>
+  -->
+</head>
+<body>
+<h1>From Scratch</h1>
+
+<a href="?yanel.usecase=create">Create a new Wiki Page</a>
+</body>
+</html>

Added: public/yanel/trunk/src/realms/test/yanel/data-paths/.yarep-uid
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/data-paths/.yarep-uid	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/data-paths/.yarep-uid	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1 @@
+welcome.xhtml

Added: public/yanel/trunk/src/realms/test/yanel/data-paths/index.html/.yarep-uid
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/data-paths/index.html/.yarep-uid	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/data-paths/index.html/.yarep-uid	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1 @@
+welcome.xhtml

Added: public/yanel/trunk/src/realms/test/yanel/rti/.yanel-rti
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/rti/.yanel-rti	2006-12-12 10:28:17 UTC (rev 20749)
+++ public/yanel/trunk/src/realms/test/yanel/rti/.yanel-rti	2006-12-12 10:31:21 UTC (rev 20750)
@@ -0,0 +1,2 @@
+<{http://www.wyona.org/yanel/resource/1.0}file/>
+mime-type: application/xhtml+xml




More information about the Yanel-commits mailing list