Author: tchemit Date: 2008-10-13 19:01:56 +0000 (Mon, 13 Oct 2008) New Revision: 1201 Added: lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/CreateBundle.jaxx lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx Removed: lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/CreateBundle.jaxx lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx Modified: lutini18neditor/trunk/changelog lutini18neditor/trunk/pom.xml Log: use src/main/java to store jaxx, no more use of uimodel directory Modified: lutini18neditor/trunk/changelog =================================================================== --- lutini18neditor/trunk/changelog 2008-10-13 18:57:31 UTC (rev 1200) +++ lutini18neditor/trunk/changelog 2008-10-13 19:01:56 UTC (rev 1201) @@ -1,3 +1,4 @@ 0.3 + * use src/main/java to store jaxx, no more use of uimodel directory * Update groupId to org.codelutin * Use org.codelutin:lutinproject:3.0 super-pom \ No newline at end of file Modified: lutini18neditor/trunk/pom.xml =================================================================== --- lutini18neditor/trunk/pom.xml 2008-10-13 18:57:31 UTC (rev 1200) +++ lutini18neditor/trunk/pom.xml 2008-10-13 19:01:56 UTC (rev 1201) @@ -3,7 +3,6 @@ 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"> - <!--The version of maven's project object model--> <modelVersion>4.0.0</modelVersion> <!-- ************************************************************* --> @@ -74,6 +73,9 @@ <groupId>org.codelutin</groupId> <artifactId>maven-jaxx-plugin</artifactId> <version>${jaxx.version}</version> + <configuration> + <src>${basedir}/src/main/java</src> + </configuration> <executions> <execution> <goals> Copied: lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/CreateBundle.jaxx (from rev 1183, lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/CreateBundle.jaxx) =================================================================== --- lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/CreateBundle.jaxx (rev 0) +++ lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/CreateBundle.jaxx 2008-10-13 19:01:56 UTC (rev 1201) @@ -0,0 +1,28 @@ +<JDialog modal="true" title='i18neditor.createbundle.title'> + <Table> + <row fill="horizontal" weightx="1" weighty="1"> + <cell> + <JLabel text='i18neditor.createbundle.newlocale'/> + </cell> + <cell> + <JTextField id="textFieldLocale"/> + </cell> + </row> + <row fill="horizontal" weightx="1" weighty="1"> + <cell> + <JLabel text='i18neditor.createbundle.newlanguage'/> + </cell> + <cell> + <JTextField id="textFieldLanguage"/> + </cell> + </row> + <row fill="none" weightx="1" weighty="1"> + <cell> + <JButton id="buttonCancel" text='i18neditor.createbundle.cancel'/> + </cell> + <cell> + <JButton id="buttonCreate" text='i18neditor.createbundle.create'/> + </cell> + </row> + </Table> +</JDialog> Property changes on: lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/CreateBundle.jaxx ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Name: svn:eol-style + native Copied: lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx (from rev 1183, lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx) =================================================================== --- lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx (rev 0) +++ lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx 2008-10-13 19:01:56 UTC (rev 1201) @@ -0,0 +1,31 @@ +<JFrame title='i18neditor.principal.title'> + <JMenuBar> + <JMenu text='i18neditor.principal.menu.file'> + <JMenuItem id="create" text='i18neditor.principal.menu.new'/> + <JMenuItem id="store" text='i18neditor.principal.menu.storeall'/> + <JSeparator/> + <JMenuItem id="quit" text='i18neditor.principal.menu.quit'/> + </JMenu> + <JMenu id="bundles" text='i18neditor.principal.menu.bundles'/> + <JMenu id="packages" text='i18neditor.principal.menu.packages'/> + <JMenu text='i18neditor.principal.menu.help'> + <JMenuItem text='i18neditor.principal.menu.site'/> + <JMenuItem text='i18neditor.principal.menu.about'/> + </JMenu> + </JMenuBar> + + <Table> + <row fill="both" weightx="1" weighty="1"> + <cell> + <JSplitPane orientation="horizontal" resizeWeight="0.5"> + <JScrollPane> + <JTree id="tree"/> + </JScrollPane> + <JScrollPane id="scrollPane" horizontalScrollBarPolicy="horizontal_scrollbar_never"> + <JPanel id="values"/> + </JScrollPane> + </JSplitPane> + </cell> + </row> + </Table> +</JFrame> Property changes on: lutini18neditor/trunk/src/main/java/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Name: svn:eol-style + native Deleted: lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/CreateBundle.jaxx =================================================================== --- lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/CreateBundle.jaxx 2008-10-13 18:57:31 UTC (rev 1200) +++ lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/CreateBundle.jaxx 2008-10-13 19:01:56 UTC (rev 1201) @@ -1,28 +0,0 @@ -<JDialog modal="true" title='i18neditor.createbundle.title'> - <Table> - <row fill="horizontal" weightx="1" weighty="1"> - <cell> - <JLabel text='i18neditor.createbundle.newlocale'/> - </cell> - <cell> - <JTextField id="textFieldLocale"/> - </cell> - </row> - <row fill="horizontal" weightx="1" weighty="1"> - <cell> - <JLabel text='i18neditor.createbundle.newlanguage'/> - </cell> - <cell> - <JTextField id="textFieldLanguage"/> - </cell> - </row> - <row fill="none" weightx="1" weighty="1"> - <cell> - <JButton id="buttonCancel" text='i18neditor.createbundle.cancel'/> - </cell> - <cell> - <JButton id="buttonCreate" text='i18neditor.createbundle.create'/> - </cell> - </row> - </Table> -</JDialog> Deleted: lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx =================================================================== --- lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx 2008-10-13 18:57:31 UTC (rev 1200) +++ lutini18neditor/trunk/src/main/uimodel/org/codelutin/i18n/editor/ui/I18nPrincipal.jaxx 2008-10-13 19:01:56 UTC (rev 1201) @@ -1,31 +0,0 @@ -<JFrame title='i18neditor.principal.title'> - <JMenuBar> - <JMenu text='i18neditor.principal.menu.file'> - <JMenuItem id="create" text='i18neditor.principal.menu.new'/> - <JMenuItem id="store" text='i18neditor.principal.menu.storeall'/> - <JSeparator/> - <JMenuItem id="quit" text='i18neditor.principal.menu.quit'/> - </JMenu> - <JMenu id="bundles" text='i18neditor.principal.menu.bundles'/> - <JMenu id="packages" text='i18neditor.principal.menu.packages'/> - <JMenu text='i18neditor.principal.menu.help'> - <JMenuItem text='i18neditor.principal.menu.site'/> - <JMenuItem text='i18neditor.principal.menu.about'/> - </JMenu> - </JMenuBar> - - <Table> - <row fill="both" weightx="1" weighty="1"> - <cell> - <JSplitPane orientation="horizontal" resizeWeight="0.5"> - <JScrollPane> - <JTree id="tree"/> - </JScrollPane> - <JScrollPane id="scrollPane" horizontalScrollBarPolicy="horizontal_scrollbar_never"> - <JPanel id="values"/> - </JScrollPane> - </JSplitPane> - </cell> - </row> - </Table> -</JFrame>