[Carbon-dev] svn commit r23022 - in trunk/carbon/org.wso2.carbon.ui.menu: . org.wso2.carbon.ui.menu.general org.wso2.carbon.ui.menu.general/src org.wso2.carbon.ui.menu.general/src/main org.wso2.carbon.ui.menu.general/src/main/resources org.wso2.carbon.ui.menu.general/src/main/resources/META-INF org.wso2.carbon.ui.menu.registry org.wso2.carbon.ui.menu.registry/src org.wso2.carbon.ui.menu.registry/src/main org.wso2.carbon.ui.menu.registry/src/main/resources org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF org.wso2.carbon.ui.menu.tools org.wso2.carbon.ui.menu.tools/src org.wso2.carbon.ui.menu.tools/src/main org.wso2.carbon.ui.menu.tools/src/main/resources org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF src
isuru at wso2.com
isuru at wso2.com
Tue Oct 28 05:33:16 PDT 2008
Author: isuru
Date: Tue Oct 28 05:33:16 2008
New Revision: 23022
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=23022
Log:
Adding different top level menu components
Added:
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/pom.xml
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/META-INF/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/META-INF/component.xml
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/pom.xml
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF/component.xml
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/pom.xml
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF/
trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF/component.xml
trunk/carbon/org.wso2.carbon.ui.menu/pom.xml
Removed:
trunk/carbon/org.wso2.carbon.ui.menu/src/
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/pom.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/pom.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,62 @@
+<!--
+ ~ Copyright 2005-2007 WSO2, Inc. (http://wso2.com)
+ ~
+ ~ 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.
+ -->
+
+<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">
+
+ <parent>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>carbon-parent</artifactId>
+ <version>SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.ui.menu.general</artifactId>
+ <packaging>bundle</packaging>
+ <version>SNAPSHOT</version>
+ <name>WSO2 Carbon - default tree menu structure</name>
+ <description>core tree menu structure</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.0</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ <Bundle-Name>${pom.artifactId}</Bundle-Name>
+ <Bundle-Version>1.0.0</Bundle-Version>
+ <Export-Package>*</Export-Package>
+ <Bundle-ClassPath>.</Bundle-ClassPath>
+ <Fragment-Host>org.wso2.carbon.component</Fragment-Host>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/META-INF/component.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/META-INF/component.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.general/src/main/resources/META-INF/component.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,35 @@
+<component xmlns="http://products.wso2.org/carbon">
+ <menus>
+ <menu>
+ <id>configure_menu</id>
+ <i18n-key>component.configure</i18n-key>
+ <i18n-bundle>org.wso2.carbon.i18n.Resources</i18n-bundle>
+ <parent-menu></parent-menu>
+ <link>#</link>
+ <region>region1</region>
+ <order>5</order>
+ <style-class>home</style-class>
+ </menu>
+ <menu>
+ <id>manage_menu</id>
+ <i18n-key>component.manage</i18n-key>
+ <i18n-bundle>org.wso2.carbon.i18n.Resources</i18n-bundle>
+ <parent-menu></parent-menu>
+ <link></link>
+ <region>region1</region>
+ <order>10</order>
+ <style-class>home</style-class>
+ </menu>
+ <menu>
+ <id>monitor_menu</id>
+ <i18n-key>component.monitor</i18n-key>
+ <i18n-bundle>org.wso2.carbon.i18n.Resources</i18n-bundle>
+ <parent-menu></parent-menu>
+ <link>#</link>
+ <region>region1</region>
+ <order>15</order>
+ <style-class>home</style-class>
+ </menu>
+ </menus>
+</component>
+
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/pom.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/pom.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,62 @@
+<!--
+ ~ Copyright 2005-2007 WSO2, Inc. (http://wso2.com)
+ ~
+ ~ 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.
+ -->
+
+<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">
+
+ <parent>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>carbon-parent</artifactId>
+ <version>SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.ui.menu.registry</artifactId>
+ <packaging>bundle</packaging>
+ <version>SNAPSHOT</version>
+ <name>WSO2 Carbon - registry tree menu structure</name>
+ <description>core tree menu structure</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.0</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ <Bundle-Name>${pom.artifactId}</Bundle-Name>
+ <Bundle-Version>1.0.0</Bundle-Version>
+ <Export-Package>*</Export-Package>
+ <Bundle-ClassPath>.</Bundle-ClassPath>
+ <Fragment-Host>org.wso2.carbon.component</Fragment-Host>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF/component.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF/component.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.registry/src/main/resources/META-INF/component.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,14 @@
+<component xmlns="http://products.wso2.org/carbon">
+ <menus>
+ <menu>
+ <id>registry_menu</id>
+ <i18n-key>component.registry</i18n-key>
+ <i18n-bundle>org.wso2.carbon.i18n.Resources</i18n-bundle>
+ <parent-menu></parent-menu>
+ <link>#</link>
+ <region>region3</region>
+ <order>25</order>
+ <style-class>home</style-class>
+ </menu>
+ </menus>
+</component>
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/pom.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/pom.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,62 @@
+<!--
+ ~ Copyright 2005-2007 WSO2, Inc. (http://wso2.com)
+ ~
+ ~ 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.
+ -->
+
+<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">
+
+ <parent>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>carbon-parent</artifactId>
+ <version>SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.ui.menu.tools</artifactId>
+ <packaging>bundle</packaging>
+ <version>SNAPSHOT</version>
+ <name>WSO2 Carbon - tools tree menu structure</name>
+ <description>core tree menu structure</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.0</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ <Bundle-Name>${pom.artifactId}</Bundle-Name>
+ <Bundle-Version>1.0.0</Bundle-Version>
+ <Export-Package>*</Export-Package>
+ <Bundle-ClassPath>.</Bundle-ClassPath>
+ <Fragment-Host>org.wso2.carbon.component</Fragment-Host>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF/component.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF/component.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/org.wso2.carbon.ui.menu.tools/src/main/resources/META-INF/component.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,16 @@
+<component xmlns="http://products.wso2.org/carbon">
+ <menus>
+ <menu>
+ <id>tools_menu</id>
+ <i18n-key>component.tools</i18n-key>
+ <i18n-bundle>org.wso2.carbon.i18n.Resources</i18n-bundle>
+ <parent-menu></parent-menu>
+ <link>#</link>
+ <region>region3</region>
+ <order>30</order>
+ <style-class>home</style-class>
+ </menu>
+ </menus>
+</component>
+
+
Added: trunk/carbon/org.wso2.carbon.ui.menu/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/org.wso2.carbon.ui.menu/pom.xml?pathrev=23022
==============================================================================
--- (empty file)
+++ trunk/carbon/org.wso2.carbon.ui.menu/pom.xml Tue Oct 28 05:33:16 2008
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+ <parent>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>carbon-parent</artifactId>
+ <version>SNAPSHOT</version>
+ </parent>
+
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>menu-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>SNAPSHOT</version>
+ <name>menu-parent</name>
+ <url>http://wso2.org</url>
+
+
+ <modules>
+ <module>org.wso2.carbon.ui.menu.general</module>
+ <module>org.wso2.carbon.ui.menu.registry</module>
+ <module>org.wso2.carbon.ui.menu.tools</module>
+ </modules>
+
+</project>
+
More information about the Carbon-dev
mailing list