From: <ri...@us...> - 2007-03-01 08:00:28
|
Revision: 90 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=90&view=rev Author: rickles Date: 2007-03-01 00:00:22 -0800 (Thu, 01 Mar 2007) Log Message: ----------- Added techne.xml config file. Added Paths: ----------- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml Added: sandbox/rickles/org.digivitality.techne.core/conf/techne.xml =================================================================== --- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml (rev 0) +++ sandbox/rickles/org.digivitality.techne.core/conf/techne.xml 2007-03-01 08:00:22 UTC (rev 90) @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<container> + <containertype value="basic"> + <bundle url="file:../bundle/org.apache.felix.shell-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.apache.felix.bundlerepository-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.apache.felix.dependencymanager-0.9.0-incubator-SNAPSHOT.jar"/> + </containertype> + + <containertype value="web" base="basic"> + <bundle url="file:../bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/javax.servlet-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.apache.felix.http.jetty-0.8.0-SNAPSHOT.jar"/> + </containertype> +</container> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <to...@us...> - 2007-03-03 01:13:07
|
Revision: 97 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=97&view=rev Author: tonit Date: 2007-03-02 17:13:06 -0800 (Fri, 02 Mar 2007) Log Message: ----------- added to show my current direction. please elaborate on this Modified Paths: -------------- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml Modified: sandbox/rickles/org.digivitality.techne.core/conf/techne.xml =================================================================== --- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml 2007-03-03 01:09:46 UTC (rev 96) +++ sandbox/rickles/org.digivitality.techne.core/conf/techne.xml 2007-03-03 01:13:06 UTC (rev 97) @@ -1,14 +1,27 @@ <?xml version="1.0" encoding="UTF-8"?> <container> +<!-- +fattened up the basic profile, maybe we split this into two: "basic" and "osgicore" +--> <containertype value="basic"> <bundle url="file:../bundle/org.apache.felix.shell-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.bundlerepository-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.dependencymanager-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.apache.felix.scr-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.apache.felix.log-0.9.0-incubator-SNAPSHOT.jar"/> </containertype> <containertype value="web" base="basic"> - <bundle url="file:../bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/javax.servlet-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.http.jetty-0.8.0-SNAPSHOT.jar"/> </containertype> + + <containertype value="audiosample" base="web"> + <!-- + Note: we support naming conventions.. + --> + <bundle url="file:../bundle/techne.sample.audio.*"/> + <bundle url="file:../bundle/techne.extender-1.0.jar"/> + </containertype> </container> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ri...@us...> - 2007-03-03 10:50:07
|
Revision: 98 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=98&view=rev Author: rickles Date: 2007-03-03 02:50:07 -0800 (Sat, 03 Mar 2007) Log Message: ----------- Changed order of bundles for web. Removed scr for time being. Modified Paths: -------------- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml Modified: sandbox/rickles/org.digivitality.techne.core/conf/techne.xml =================================================================== --- sandbox/rickles/org.digivitality.techne.core/conf/techne.xml 2007-03-03 01:13:06 UTC (rev 97) +++ sandbox/rickles/org.digivitality.techne.core/conf/techne.xml 2007-03-03 10:50:07 UTC (rev 98) @@ -1,27 +1,23 @@ <?xml version="1.0" encoding="UTF-8"?> <container> -<!-- -fattened up the basic profile, maybe we split this into two: "basic" and "osgicore" ---> <containertype value="basic"> <bundle url="file:../bundle/org.apache.felix.shell-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.bundlerepository-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.dependencymanager-0.9.0-incubator-SNAPSHOT.jar"/> - <bundle url="file:../bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar"/> - <bundle url="file:../bundle/org.apache.felix.scr-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.log-0.9.0-incubator-SNAPSHOT.jar"/> </containertype> <containertype value="web" base="basic"> <bundle url="file:../bundle/javax.servlet-0.9.0-incubator-SNAPSHOT.jar"/> + <bundle url="file:../bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar"/> <bundle url="file:../bundle/org.apache.felix.http.jetty-0.8.0-SNAPSHOT.jar"/> </containertype> - <containertype value="audiosample" base="web"> - <!-- + <containertype value="audiosample" base="web"> + <!-- Note: we support naming conventions.. - --> + --> <bundle url="file:../bundle/techne.sample.audio.*"/> <bundle url="file:../bundle/techne.extender-1.0.jar"/> </containertype> -</container> \ No newline at end of file +</container> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |