jsxe-cvs Mailing List for jsXe (Page 5)
Status: Inactive
Brought to you by:
ian_lewis
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(29) |
Dec
(63) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(4) |
Feb
(23) |
Mar
(19) |
Apr
(102) |
May
(88) |
Jun
(30) |
Jul
(42) |
Aug
(43) |
Sep
(17) |
Oct
(19) |
Nov
(41) |
Dec
(46) |
2005 |
Jan
(32) |
Feb
(8) |
Mar
(110) |
Apr
(102) |
May
(139) |
Jun
(45) |
Jul
(5) |
Aug
(1) |
Sep
(9) |
Oct
(30) |
Nov
(18) |
Dec
|
2006 |
Jan
(10) |
Feb
(85) |
Mar
(9) |
Apr
(64) |
May
(24) |
Jun
(95) |
Jul
(107) |
Aug
(123) |
Sep
(37) |
Oct
(15) |
Nov
(1) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ian...@us...> - 2006-08-27 18:53:26
|
Revision: 1172 Author: ian_lewis Date: 2006-08-27 11:53:17 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1172&view=rev Log Message: ----------- Fixed the launch4j.xml to have the right java options Modified Paths: -------------- tags/05pre3/jsxe/launch4j.xml Modified: tags/05pre3/jsxe/launch4j.xml =================================================================== --- tags/05pre3/jsxe/launch4j.xml 2006-08-27 14:58:47 UTC (rev 1171) +++ tags/05pre3/jsxe/launch4j.xml 2006-08-27 18:53:17 UTC (rev 1172) @@ -14,6 +14,6 @@ <dontUsePrivateJres>false</dontUsePrivateJres> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <opt>-Dlaunch4j.exedir="%EXEDIR%"</opt> + <opt>-Djava.endorsed.dirs="%EXEDIR%\\lib"</opt> </jre> </launch4jConfig> \ 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: <ian...@us...> - 2006-08-27 14:58:56
|
Revision: 1171 Author: ian_lewis Date: 2006-08-27 07:58:47 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1171&view=rev Log Message: ----------- Update from 05pre3 branch Modified Paths: -------------- trunk/jsxe/Changelog trunk/jsxe/INSTALL trunk/jsxe/installer/launch4j.xml trunk/jsxe/launch4j.xml Modified: trunk/jsxe/Changelog =================================================================== --- trunk/jsxe/Changelog 2006-08-27 14:55:31 UTC (rev 1170) +++ trunk/jsxe/Changelog 2006-08-27 14:58:47 UTC (rev 1171) @@ -1,3 +1,10 @@ +08/27/2006 Ian Lewis <Ian...@me...> + + * Updated the launch4j script to set the absolute path of the lib directory + in the jre option to set the endorsed dirs. This will allow jsXe to be + launched from anywhere and still be able to find the right version of + Xerces. + 08/21/2006 Ian Lewis <Ian...@me...> * Updated russian translation. Modified: trunk/jsxe/INSTALL =================================================================== --- trunk/jsxe/INSTALL 2006-08-27 14:55:31 UTC (rev 1170) +++ trunk/jsxe/INSTALL 2006-08-27 14:58:47 UTC (rev 1171) @@ -1,8 +1,8 @@ REQUIREMENTS -Java 1.4.2 -Xerces 2.8.0 -launch4j (for building the installer from source) +Java >= 1.4.2 +Xerces >= 2.8.0 +launch4j >= 3.0.0pre1 (for building the installer from source) GETTING jsXe @@ -83,6 +83,10 @@ Unpack the distribution file wherever you like. Normally you would install it in C:\Program Files\ or /usr/local/share/ or something like that. +Or + +Run the install program and follow the prompts to install jsXe. + RUNNING jsXe You should have 1.4.2 or better of java and you need 2.8.0 of Xerces. Modified: trunk/jsxe/installer/launch4j.xml =================================================================== --- trunk/jsxe/installer/launch4j.xml 2006-08-27 14:55:31 UTC (rev 1170) +++ trunk/jsxe/installer/launch4j.xml 2006-08-27 14:58:47 UTC (rev 1171) @@ -10,11 +10,8 @@ <stayAlive>false</stayAlive> <icon>jsxe-installer.ico</icon> <jre> - <path></path> <minVersion>1.4.2</minVersion> - <maxVersion></maxVersion> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <args></args> </jre> </launch4jConfig> \ No newline at end of file Modified: trunk/jsxe/launch4j.xml =================================================================== --- trunk/jsxe/launch4j.xml 2006-08-27 14:55:31 UTC (rev 1170) +++ trunk/jsxe/launch4j.xml 2006-08-27 14:58:47 UTC (rev 1171) @@ -1,23 +1,19 @@ <launch4jConfig> <dontWrapJar>true</dontWrapJar> - <headerType>0</headerType> + <headerType>gui</headerType> <jar>jsXe.jar</jar> <outfile>build\jsXe.exe</outfile> <errTitle>jsXe</errTitle> - <jarArgs></jarArgs> + <cmdLine></cmdLine> <chdir></chdir> <customProcName>true</customProcName> <stayAlive>false</stayAlive> <icon>jsxe.ico</icon> <jre> - <path></path> <minVersion>1.4.2</minVersion> - <maxVersion></maxVersion> + <dontUsePrivateJres>false</dontUsePrivateJres> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <args>-Djava.endorsed.dirs=lib - - -</args> + <opt>-Dlaunch4j.exedir="%EXEDIR%"</opt> </jre> </launch4jConfig> \ 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: <ian...@us...> - 2006-08-27 14:55:39
|
Revision: 1170 Author: ian_lewis Date: 2006-08-27 07:55:31 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1170&view=rev Log Message: ----------- Fixed launch4j properties. We now require launch4j 3.0.0pre1 or later Modified Paths: -------------- tags/05pre3/jsxe/Changelog tags/05pre3/jsxe/INSTALL tags/05pre3/jsxe/installer/launch4j.xml tags/05pre3/jsxe/launch4j.xml Modified: tags/05pre3/jsxe/Changelog =================================================================== --- tags/05pre3/jsxe/Changelog 2006-08-27 13:57:20 UTC (rev 1169) +++ tags/05pre3/jsxe/Changelog 2006-08-27 14:55:31 UTC (rev 1170) @@ -1,3 +1,10 @@ +08/27/2006 Ian Lewis <Ian...@me...> + + * Updated the launch4j script to set the absolute path of the lib directory + in the jre option to set the endorsed dirs. This will allow jsXe to be + launched from anywhere and still be able to find the right version of + Xerces. + 08/21/2006 Ian Lewis <Ian...@me...> * Updated russian translation. Modified: tags/05pre3/jsxe/INSTALL =================================================================== --- tags/05pre3/jsxe/INSTALL 2006-08-27 13:57:20 UTC (rev 1169) +++ tags/05pre3/jsxe/INSTALL 2006-08-27 14:55:31 UTC (rev 1170) @@ -1,8 +1,8 @@ REQUIREMENTS -Java 1.4.2 -Xerces 2.8.0 -launch4j (for building the installer from source) +Java >= 1.4.2 +Xerces >= 2.8.0 +launch4j >= 3.0.0pre1 (for building the installer from source) GETTING jsXe Modified: tags/05pre3/jsxe/installer/launch4j.xml =================================================================== --- tags/05pre3/jsxe/installer/launch4j.xml 2006-08-27 13:57:20 UTC (rev 1169) +++ tags/05pre3/jsxe/installer/launch4j.xml 2006-08-27 14:55:31 UTC (rev 1170) @@ -10,11 +10,8 @@ <stayAlive>false</stayAlive> <icon>jsxe-installer.ico</icon> <jre> - <path></path> <minVersion>1.4.2</minVersion> - <maxVersion></maxVersion> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <args></args> </jre> </launch4jConfig> \ No newline at end of file Modified: tags/05pre3/jsxe/launch4j.xml =================================================================== --- tags/05pre3/jsxe/launch4j.xml 2006-08-27 13:57:20 UTC (rev 1169) +++ tags/05pre3/jsxe/launch4j.xml 2006-08-27 14:55:31 UTC (rev 1170) @@ -1,20 +1,19 @@ <launch4jConfig> <dontWrapJar>true</dontWrapJar> - <headerType>0</headerType> + <headerType>gui</headerType> <jar>jsXe.jar</jar> <outfile>build\jsXe.exe</outfile> <errTitle>jsXe</errTitle> - <jarArgs></jarArgs> + <cmdLine></cmdLine> <chdir></chdir> <customProcName>true</customProcName> <stayAlive>false</stayAlive> <icon>jsxe.ico</icon> <jre> - <path></path> <minVersion>1.4.2</minVersion> - <maxVersion></maxVersion> + <dontUsePrivateJres>false</dontUsePrivateJres> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <opt>-Djava.endorsed.dirs=%EXEDIR%\\lib</opt> + <opt>-Dlaunch4j.exedir="%EXEDIR%"</opt> </jre> </launch4jConfig> \ 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: <ian...@us...> - 2006-08-27 13:57:25
|
Revision: 1169 Author: ian_lewis Date: 2006-08-27 06:57:20 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1169&view=rev Log Message: ----------- Changed so that the endorsed.dirs option points to the absolute path to Xerces rather than a relative path Modified Paths: -------------- tags/05pre3/jsxe/launch4j.xml Modified: tags/05pre3/jsxe/launch4j.xml =================================================================== --- tags/05pre3/jsxe/launch4j.xml 2006-08-27 13:52:13 UTC (rev 1168) +++ tags/05pre3/jsxe/launch4j.xml 2006-08-27 13:57:20 UTC (rev 1169) @@ -15,9 +15,6 @@ <maxVersion></maxVersion> <initialHeapSize>16</initialHeapSize> <maxHeapSize>64</maxHeapSize> - <args>-Djava.endorsed.dirs=lib - - -</args> + <opt>-Djava.endorsed.dirs=%EXEDIR%\\lib</opt> </jre> </launch4jConfig> \ 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: <ian...@us...> - 2006-08-27 13:52:19
|
Revision: 1168 Author: ian_lewis Date: 2006-08-27 06:52:13 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1168&view=rev Log Message: ----------- Added part about installing using the install program Modified Paths: -------------- tags/05pre3/jsxe/INSTALL Modified: tags/05pre3/jsxe/INSTALL =================================================================== --- tags/05pre3/jsxe/INSTALL 2006-08-27 13:39:16 UTC (rev 1167) +++ tags/05pre3/jsxe/INSTALL 2006-08-27 13:52:13 UTC (rev 1168) @@ -83,6 +83,10 @@ Unpack the distribution file wherever you like. Normally you would install it in C:\Program Files\ or /usr/local/share/ or something like that. +Or + +Run the install program and follow the prompts to install jsXe. + RUNNING jsXe You should have 1.4.2 or better of java and you need 2.8.0 of Xerces. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-27 13:42:33
|
Revision: 1167 Author: ian_lewis Date: 2006-08-27 06:39:16 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1167&view=rev Log Message: ----------- merge from the 0.5pre3 branch Modified Paths: -------------- trunk/treeview/Changelog trunk/treeview/messages/messages.ru Modified: trunk/treeview/Changelog =================================================================== --- trunk/treeview/Changelog 2006-08-27 13:37:28 UTC (rev 1166) +++ trunk/treeview/Changelog 2006-08-27 13:39:16 UTC (rev 1167) @@ -1,3 +1,7 @@ +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + 08/08/2006 Ian Lewis <Ian...@me...> * Fixed undo when adding/editing a node that is specified in a DTD/Schema. Modified: trunk/treeview/messages/messages.ru =================================================================== --- trunk/treeview/messages/messages.ru 2006-08-27 13:37:28 UTC (rev 1166) +++ trunk/treeview/messages/messages.ru 2006-08-27 13:39:16 UTC (rev 1167) @@ -1,35 +1,35 @@ # JSXE tree view English properties file -# $Id: messages 1101 2006-08-03 15:40:34Z ian_lewis $ +# $Id: messages 1101 2006-08-03 15:40:34Z ian_lewis $ # Maintained by Alexandr Gridnev (ale...@ya...) #:mode=properties: #:tabSize=4:indentSize=4:noTabs=true: #:folding=explicit:collapseFolds=1: -TreeView.Options.Title=Отображение деревом - -TreeView.Options.Show.Comments=Показывать узлы-комментарии -TreeView.Options.Show.Comments.ToolTip=Если это выбрано - то узлы-комментарии будут отображаться в дереве -TreeView.Options.Continuous.Layout=При движении разделителей - сразу перерисовывать -TreeView.Options.Continuous.Layout.ToolTip=<html>Если выбрано - то при перемещении разделителей то что они разделяют будет сразу перерисовываться.<br>Если не выбрано - то положение линии будет отображаться черной полоской, а перерисовано все будет после того как вы отпустите мышару.</html> -TreeView.Options.Show.Attributes=Показывать элементы атрибутов в дереве: -TreeView.Options.Show.Attributes.ToolTip=<html>Эта опция определяет какие атрибуты элементов будут отображены в дереве.<ul><li><strong>Никаких</strong> - Атрибутов не покажут.</li><li><strong>только ID </strong> - Покажут только атрибут, определенный как ID.</li><li><strong>Все</strong> - Покажут все что есть.</li></ul></html> -Show.Attributes.None=Никаких -Show.Attributes.ID.Only=Только ID -Show.Attributes.All=Все - -treeview.document.root=Это корень документа - -treeview.rename.node.label=Переименовать узел -treeview.remove.node.label=Удалить узел -treeview.add.attribute.label=Добавить атрибут +TreeView.Options.Title=Отображение деревом + +TreeView.Options.Show.Comments=Показывать узлы-комментарии +TreeView.Options.Show.Comments.ToolTip=Если это выбрано - то узлы-комментарии будут отображаться в дереве +TreeView.Options.Continuous.Layout=При движении разделителей - сразу перерисовывать +TreeView.Options.Continuous.Layout.ToolTip=<html>Если выбрано - то при перемещении разделителей то что они разделяют будет сразу перерисовываться.<br>Если не выбрано - то положение линии будет отображаться черной полоской, а перерисовано все будет после того как вы отпустите мышару.</html> +TreeView.Options.Show.Attributes=Показывать элементы атрибутов в дереве: +TreeView.Options.Show.Attributes.ToolTip=<html>Эта опция определяет какие атрибуты элементов будут отображены в дереве.<ul><li><strong>Никаких</strong> - Атрибутов не покажут.</li><li><strong>только ID </strong> - Покажут только атрибут, определенный как ID.</li><li><strong>Все</strong> - Покажут все что есть.</li></ul></html> +Show.Attributes.None=Никаких +Show.Attributes.ID.Only=Только ID +Show.Attributes.All=Все + +treeview.document.root=Это корень документа + +treeview.rename.node.label=Переименовать узел +treeview.remove.node.label=Удалить узел +treeview.add.attribute.label=Добавить атрибут treeview.remove.attribute.label=Удалить атрибут -treeview.edit.node.label=Редактировать узел -TreeView.EditDocType.Title=Редактировать определение типа документа (DTD) -Edit.Node.Dialog.Title=Редактирование узла - -treeview.add.doctype.node.label=Добавить определение типа документа (DTD) -treeview.add.element.node.label=Добавить узел-элемент -treeview.add.text.node.label=Добавить узел-текст -treeview.add.cdata.node.label=Добавиь узел-CDATA -treeview.add.pi.node.label=Добавить правило обработки -treeview.add.comment.node.label=Добавить комментарий +treeview.edit.node.label=Редактировать узел +TreeView.EditDocType.Title=Редактировать определение типа документа (DTD) +Edit.Node.Dialog.Title=Редактирование узла + +treeview.add.doctype.node.label=Добавить определение типа документа (DTD) +treeview.add.element.node.label=Добавить узел-элемент +treeview.add.text.node.label=Добавить узел-текст +treeview.add.cdata.node.label=Добавиь узел-CDATA +treeview.add.pi.node.label=Добавить правило обработки +treeview.add.comment.node.label=Добавить комментарий This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-27 13:42:30
|
Revision: 1166 Author: ian_lewis Date: 2006-08-27 06:37:28 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1166&view=rev Log Message: ----------- merge from the 0.5pre3 branch Modified Paths: -------------- trunk/sourceview/Changelog trunk/sourceview/messages/messages.ru trunk/sourceview/src/sourceview/SourceView.java trunk/sourceview/src/sourceview/SourceViewDocument.java Modified: trunk/sourceview/Changelog =================================================================== --- trunk/sourceview/Changelog 2006-08-27 13:30:41 UTC (rev 1165) +++ trunk/sourceview/Changelog 2006-08-27 13:37:28 UTC (rev 1166) @@ -1,3 +1,13 @@ +08/22/2006 Ian Lewis <Ian...@me...> + + * Changing the encoding now updates the SourceViewDocument so that it + doesn't cause the SourceViewDocument to get out of sync with the + XMLDocument. + +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + 08/07/2006 Ian Lewis <Ian...@me...> * Moved the edit menu to jsXe core and added a hack so that undo will work. Modified: trunk/sourceview/messages/messages.ru =================================================================== --- trunk/sourceview/messages/messages.ru 2006-08-27 13:30:41 UTC (rev 1165) +++ trunk/sourceview/messages/messages.ru 2006-08-27 13:37:28 UTC (rev 1166) @@ -1,10 +1,10 @@ -# JSXE source view English properties file +# JSXE source view English properties file # $Id: messages 1068 2006-07-26 16:57:45Z ian_lewis $ -# Maintained by Alexandr Gridnev (ale...@ya...) -#:mode=properties: -#:tabSize=4:indentSize=4:noTabs=true: -#:folding=explicit:collapseFolds=1 - +# Maintained by Alexandr Gridnev (ale...@ya...) +#:mode=properties: +#:tabSize=4:indentSize=4:noTabs=true: +#:folding=explicit:collapseFolds=1 + #{{{ Source View Options SourceView.Options.Title=Отображение исходником SourceView.Options.EndOfLineMarker=Отображать символы конца строки @@ -29,6 +29,6 @@ SourceView.Replace.With=Заменить на: SourceView.Replace.And.Find=Найти и заменить SourceView.No.More.Matches.title=Дальше не найдено :( -SourceView.No.More.Matches.message="Ничего не найдено. Искать с начала документа?" -SourceView.Search.Error.title=Ошибка поиска 0_0 +SourceView.No.More.Matches.message="Ничего не найдено. Искать с начала документа?" +SourceView.Search.Error.title=Ошибка поиска :( #}}} Modified: trunk/sourceview/src/sourceview/SourceView.java =================================================================== --- trunk/sourceview/src/sourceview/SourceView.java 2006-08-27 13:30:41 UTC (rev 1165) +++ trunk/sourceview/src/sourceview/SourceView.java 2006-08-27 13:37:28 UTC (rev 1166) @@ -311,6 +311,15 @@ Log.log(Log.WARNING, this, e.getMessage()); } } + if (key.equals(XMLDocument.ENCODING)) { + try { + //reload the document + m_textarea.setDocument(new SourceViewDocument(m_document)); + m_textarea.setTokenMarker(new XMLTokenMarker()); + } catch (IOException e) { + Log.log(Log.ERROR, this, e); + } + } }//}}} //{{{ structureChanged Modified: trunk/sourceview/src/sourceview/SourceViewDocument.java =================================================================== --- trunk/sourceview/src/sourceview/SourceViewDocument.java 2006-08-27 13:30:41 UTC (rev 1165) +++ trunk/sourceview/src/sourceview/SourceViewDocument.java 2006-08-27 13:37:28 UTC (rev 1166) @@ -87,8 +87,6 @@ super(); m_document = document; - // document.addXMLDocumentListener(new SourceViewDocumentXMLDocumentListener()); - if (document != null) { try { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-27 13:34:54
|
Revision: 1165 Author: ian_lewis Date: 2006-08-27 06:30:41 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1165&view=rev Log Message: ----------- merge from the 0.5pre3 branch Modified Paths: -------------- trunk/jsxe/Changelog trunk/jsxe/messages/messages trunk/jsxe/messages/messages.ru trunk/jsxe/src/net/sourceforge/jsxe/ActionManager.java trunk/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java Modified: trunk/jsxe/Changelog =================================================================== --- trunk/jsxe/Changelog 2006-08-23 03:42:41 UTC (rev 1164) +++ trunk/jsxe/Changelog 2006-08-27 13:30:41 UTC (rev 1165) @@ -1,3 +1,12 @@ +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + +08/18/2006 Ian Lewis <Ian...@me...> + + * Added a hack to disable view specific actions that aren't implemented by + the view. + 08/17/2006 Ian Lewis <Ian...@me...> * Updated the German translation thanks to Dieter Steiner Modified: trunk/jsxe/messages/messages =================================================================== --- trunk/jsxe/messages/messages 2006-08-23 03:42:41 UTC (rev 1164) +++ trunk/jsxe/messages/messages 2006-08-27 13:30:41 UTC (rev 1165) @@ -20,6 +20,7 @@ common.remove=Remove common.moveUp=Move Up common.moveDown=Move Down +common.find=Find common.ctrl=Ctrl common.alt=Alt Modified: trunk/jsxe/messages/messages.ru =================================================================== --- trunk/jsxe/messages/messages.ru 2006-08-23 03:42:41 UTC (rev 1164) +++ trunk/jsxe/messages/messages.ru 2006-08-27 13:30:41 UTC (rev 1165) @@ -1,5 +1,5 @@ # JSXE English properties file -# $Id: +# $Id: messages 1158 2006-08-18 18:42:18Z ian_lewis $ # Maintained by Alexandr Gridnev (ale...@ya...) #:mode=properties: #:tabSize=4:indentSize=4:noTabs=true: @@ -20,11 +20,7 @@ common.remove=Удалить common.moveUp=Поднять common.moveDown=Опустить -common.cut=Вырезать -common.copy=Копировать -common.paste=Вставить -common.find=Искать... -common.findnext=Искать следующий +common.find=Искать common.ctrl=Ctrl common.alt=Alt @@ -73,6 +69,8 @@ Global.Options.network-always=Скачивать всегда, без спросу Global.Options.network=Скачивание DTD и схемы: Global.Options.Menu.Spill.Over=Меню выпадают после: +Global.Options.Undos.To.Remember=Запомнить действий: +Global.Options.Undos.To.Remember.ToolTip=<HTML>jsXe запомнит столько действий и потом их можно будет отменить.<BR> Однако он не может запомнить действия, выполненные после переключения видов</HTML> Shortcuts.Options.Title=Горячие клавиши Shortcuts.Options.Select.Label=Редактировать горячие клавиши: @@ -140,7 +138,10 @@ Tools.Menu=Инструменты Help.Menu=Справка -#{{{ File Menu Items + +#}}} + +#{{{ Action Labels new-file.label=Новый open-file.label=Открыть... File.Recent=Ранее открытые файлы @@ -148,16 +149,25 @@ save-file.label=Сохранить save-as.label=Сохранить как... reload-file.label=Открыть еще раз +File.Recent=Ранее открытые файлы close-file.label=Закрыть close-all.label=Закрыть все exit.label=Выход -#}}} +undo.label=Отменить +redo.label=Повторить +cut.label=Вырезать +copy.label=Копировать +paste.label=Вставить +find.label=Искать... +findnext.label=Искать далее + general-options.label=Глобальные опции... document-options.label=Опции документа... plugin-manager.label=Менеджер плагинов... validation-errors.label=Ошибки подтверждения... about-jsxe.label=О программе jsXe... + #}}} #{{{ Messages Modified: trunk/jsxe/src/net/sourceforge/jsxe/ActionManager.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/ActionManager.java 2006-08-23 03:42:41 UTC (rev 1164) +++ trunk/jsxe/src/net/sourceforge/jsxe/ActionManager.java 2006-08-27 13:30:41 UTC (rev 1165) @@ -33,6 +33,7 @@ import net.sourceforge.jsxe.util.Log; import net.sourceforge.jsxe.util.MiscUtilities; import net.sourceforge.jsxe.msg.PropertyChanged; +import net.sourceforge.jsxe.action.ViewSpecificAction; //}}} //{{{ Java classes Modified: trunk/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java 2006-08-23 03:42:41 UTC (rev 1164) +++ trunk/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java 2006-08-27 13:30:41 UTC (rev 1165) @@ -428,6 +428,7 @@ menubar.add(m_fileMenu); + createEditMenu(); menubar.add(m_editMenu); //Add View Specific Menus @@ -572,6 +573,86 @@ }//}}} + //{{{ createEditMenu() + + private void createEditMenu() { + m_editMenu = new JMenu(Messages.getMessage("Edit.Menu")); + m_editMenu.setMnemonic('E'); + + DocumentView view = getDocumentView(); + JMenuItem menuItem = new JMenuItem(ActionManager.getAction("undo")); + m_editMenu.add(menuItem); + menuItem = new JMenuItem(ActionManager.getAction("redo")); + m_editMenu.add(menuItem); + m_editMenu.addSeparator(); + Action action = ActionManager.getAction("cut"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".cut"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("copy"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".copy"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("paste"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".paste"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + m_editMenu.addSeparator(); + action = ActionManager.getAction("find"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".find"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("findnext"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".findnext"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + }//}}} + //{{{ createDefaultMenuItems() private void createDefaultMenuItems() { @@ -606,24 +687,7 @@ //}}} //{{{ Create Edit Menu - m_editMenu = new JMenu(Messages.getMessage("Edit.Menu")); - m_editMenu.setMnemonic('E'); - menuItem = new JMenuItem(ActionManager.getAction("undo")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("redo")); - m_editMenu.add(menuItem); - m_editMenu.addSeparator(); - menuItem = new JMenuItem(ActionManager.getAction("cut")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("copy")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("paste")); - m_editMenu.add(menuItem); - m_editMenu.addSeparator(); - menuItem = new JMenuItem(ActionManager.getAction("find")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("findnext")); - m_editMenu.add(menuItem); + createEditMenu(); //}}} //{{{ Create View Menu This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-23 03:42:48
|
Revision: 1164 Author: ian_lewis Date: 2006-08-22 20:42:41 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1164&view=rev Log Message: ----------- Fixed some syncing problems with the SourceViewDocument Modified Paths: -------------- tags/05pre3/sourceview/Changelog tags/05pre3/sourceview/src/sourceview/SourceView.java tags/05pre3/sourceview/src/sourceview/SourceViewDocument.java Modified: tags/05pre3/sourceview/Changelog =================================================================== --- tags/05pre3/sourceview/Changelog 2006-08-22 02:15:52 UTC (rev 1163) +++ tags/05pre3/sourceview/Changelog 2006-08-23 03:42:41 UTC (rev 1164) @@ -1,3 +1,9 @@ +08/22/2006 Ian Lewis <Ian...@me...> + + * Changing the encoding now updates the SourceViewDocument so that it + doesn't cause the SourceViewDocument to get out of sync with the + XMLDocument. + 08/21/2006 Ian Lewis <Ian...@me...> * Updated russian translation. Modified: tags/05pre3/sourceview/src/sourceview/SourceView.java =================================================================== --- tags/05pre3/sourceview/src/sourceview/SourceView.java 2006-08-22 02:15:52 UTC (rev 1163) +++ tags/05pre3/sourceview/src/sourceview/SourceView.java 2006-08-23 03:42:41 UTC (rev 1164) @@ -311,6 +311,15 @@ Log.log(Log.WARNING, this, e.getMessage()); } } + if (key.equals(XMLDocument.ENCODING)) { + try { + //reload the document + m_textarea.setDocument(new SourceViewDocument(m_document)); + m_textarea.setTokenMarker(new XMLTokenMarker()); + } catch (IOException e) { + Log.log(Log.ERROR, this, e); + } + } }//}}} //{{{ structureChanged Modified: tags/05pre3/sourceview/src/sourceview/SourceViewDocument.java =================================================================== --- tags/05pre3/sourceview/src/sourceview/SourceViewDocument.java 2006-08-22 02:15:52 UTC (rev 1163) +++ tags/05pre3/sourceview/src/sourceview/SourceViewDocument.java 2006-08-23 03:42:41 UTC (rev 1164) @@ -87,8 +87,6 @@ super(); m_document = document; - // document.addXMLDocumentListener(new SourceViewDocumentXMLDocumentListener()); - if (document != null) { try { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-22 02:15:57
|
Revision: 1163 Author: ian_lewis Date: 2006-08-21 19:15:52 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1163&view=rev Log Message: ----------- Updated russian translation Modified Paths: -------------- tags/05pre3/sourceview/Changelog tags/05pre3/sourceview/messages/messages.ru Modified: tags/05pre3/sourceview/Changelog =================================================================== --- tags/05pre3/sourceview/Changelog 2006-08-22 02:15:35 UTC (rev 1162) +++ tags/05pre3/sourceview/Changelog 2006-08-22 02:15:52 UTC (rev 1163) @@ -1,3 +1,7 @@ +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + 08/07/2006 Ian Lewis <Ian...@me...> * Moved the edit menu to jsXe core and added a hack so that undo will work. Modified: tags/05pre3/sourceview/messages/messages.ru =================================================================== --- tags/05pre3/sourceview/messages/messages.ru 2006-08-22 02:15:35 UTC (rev 1162) +++ tags/05pre3/sourceview/messages/messages.ru 2006-08-22 02:15:52 UTC (rev 1163) @@ -1,10 +1,10 @@ -# JSXE source view English properties file +# JSXE source view English properties file # $Id: messages 1068 2006-07-26 16:57:45Z ian_lewis $ -# Maintained by Alexandr Gridnev (ale...@ya...) -#:mode=properties: -#:tabSize=4:indentSize=4:noTabs=true: -#:folding=explicit:collapseFolds=1 - +# Maintained by Alexandr Gridnev (ale...@ya...) +#:mode=properties: +#:tabSize=4:indentSize=4:noTabs=true: +#:folding=explicit:collapseFolds=1 + #{{{ Source View Options SourceView.Options.Title=Отображение исходником SourceView.Options.EndOfLineMarker=Отображать символы конца строки @@ -29,6 +29,6 @@ SourceView.Replace.With=Заменить на: SourceView.Replace.And.Find=Найти и заменить SourceView.No.More.Matches.title=Дальше не найдено :( -SourceView.No.More.Matches.message="Ничего не найдено. Искать с начала документа?" -SourceView.Search.Error.title=Ошибка поиска 0_0 +SourceView.No.More.Matches.message="Ничего не найдено. Искать с начала документа?" +SourceView.Search.Error.title=Ошибка поиска :( #}}} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-22 02:15:42
|
Revision: 1162 Author: ian_lewis Date: 2006-08-21 19:15:35 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1162&view=rev Log Message: ----------- Updated russian translation Modified Paths: -------------- tags/05pre3/treeview/Changelog tags/05pre3/treeview/messages/messages.ru Modified: tags/05pre3/treeview/Changelog =================================================================== --- tags/05pre3/treeview/Changelog 2006-08-22 02:15:23 UTC (rev 1161) +++ tags/05pre3/treeview/Changelog 2006-08-22 02:15:35 UTC (rev 1162) @@ -1,3 +1,7 @@ +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + 08/08/2006 Ian Lewis <Ian...@me...> * Fixed undo when adding/editing a node that is specified in a DTD/Schema. Modified: tags/05pre3/treeview/messages/messages.ru =================================================================== --- tags/05pre3/treeview/messages/messages.ru 2006-08-22 02:15:23 UTC (rev 1161) +++ tags/05pre3/treeview/messages/messages.ru 2006-08-22 02:15:35 UTC (rev 1162) @@ -1,35 +1,35 @@ # JSXE tree view English properties file -# $Id: messages 1101 2006-08-03 15:40:34Z ian_lewis $ +# $Id: messages 1101 2006-08-03 15:40:34Z ian_lewis $ # Maintained by Alexandr Gridnev (ale...@ya...) #:mode=properties: #:tabSize=4:indentSize=4:noTabs=true: #:folding=explicit:collapseFolds=1: -TreeView.Options.Title=Отображение деревом - -TreeView.Options.Show.Comments=Показывать узлы-комментарии -TreeView.Options.Show.Comments.ToolTip=Если это выбрано - то узлы-комментарии будут отображаться в дереве -TreeView.Options.Continuous.Layout=При движении разделителей - сразу перерисовывать -TreeView.Options.Continuous.Layout.ToolTip=<html>Если выбрано - то при перемещении разделителей то что они разделяют будет сразу перерисовываться.<br>Если не выбрано - то положение линии будет отображаться черной полоской, а перерисовано все будет после того как вы отпустите мышару.</html> -TreeView.Options.Show.Attributes=Показывать элементы атрибутов в дереве: -TreeView.Options.Show.Attributes.ToolTip=<html>Эта опция определяет какие атрибуты элементов будут отображены в дереве.<ul><li><strong>Никаких</strong> - Атрибутов не покажут.</li><li><strong>только ID </strong> - Покажут только атрибут, определенный как ID.</li><li><strong>Все</strong> - Покажут все что есть.</li></ul></html> -Show.Attributes.None=Никаких -Show.Attributes.ID.Only=Только ID -Show.Attributes.All=Все - -treeview.document.root=Это корень документа - -treeview.rename.node.label=Переименовать узел -treeview.remove.node.label=Удалить узел -treeview.add.attribute.label=Добавить атрибут +TreeView.Options.Title=Отображение деревом + +TreeView.Options.Show.Comments=Показывать узлы-комментарии +TreeView.Options.Show.Comments.ToolTip=Если это выбрано - то узлы-комментарии будут отображаться в дереве +TreeView.Options.Continuous.Layout=При движении разделителей - сразу перерисовывать +TreeView.Options.Continuous.Layout.ToolTip=<html>Если выбрано - то при перемещении разделителей то что они разделяют будет сразу перерисовываться.<br>Если не выбрано - то положение линии будет отображаться черной полоской, а перерисовано все будет после того как вы отпустите мышару.</html> +TreeView.Options.Show.Attributes=Показывать элементы атрибутов в дереве: +TreeView.Options.Show.Attributes.ToolTip=<html>Эта опция определяет какие атрибуты элементов будут отображены в дереве.<ul><li><strong>Никаких</strong> - Атрибутов не покажут.</li><li><strong>только ID </strong> - Покажут только атрибут, определенный как ID.</li><li><strong>Все</strong> - Покажут все что есть.</li></ul></html> +Show.Attributes.None=Никаких +Show.Attributes.ID.Only=Только ID +Show.Attributes.All=Все + +treeview.document.root=Это корень документа + +treeview.rename.node.label=Переименовать узел +treeview.remove.node.label=Удалить узел +treeview.add.attribute.label=Добавить атрибут treeview.remove.attribute.label=Удалить атрибут -treeview.edit.node.label=Редактировать узел -TreeView.EditDocType.Title=Редактировать определение типа документа (DTD) -Edit.Node.Dialog.Title=Редактирование узла - -treeview.add.doctype.node.label=Добавить определение типа документа (DTD) -treeview.add.element.node.label=Добавить узел-элемент -treeview.add.text.node.label=Добавить узел-текст -treeview.add.cdata.node.label=Добавиь узел-CDATA -treeview.add.pi.node.label=Добавить правило обработки -treeview.add.comment.node.label=Добавить комментарий +treeview.edit.node.label=Редактировать узел +TreeView.EditDocType.Title=Редактировать определение типа документа (DTD) +Edit.Node.Dialog.Title=Редактирование узла + +treeview.add.doctype.node.label=Добавить определение типа документа (DTD) +treeview.add.element.node.label=Добавить узел-элемент +treeview.add.text.node.label=Добавить узел-текст +treeview.add.cdata.node.label=Добавиь узел-CDATA +treeview.add.pi.node.label=Добавить правило обработки +treeview.add.comment.node.label=Добавить комментарий This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-22 02:15:31
|
Revision: 1161 Author: ian_lewis Date: 2006-08-21 19:15:23 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1161&view=rev Log Message: ----------- Updated russian translation Modified Paths: -------------- tags/05pre3/jsxe/Changelog tags/05pre3/jsxe/messages/messages.ru Modified: tags/05pre3/jsxe/Changelog =================================================================== --- tags/05pre3/jsxe/Changelog 2006-08-22 02:11:41 UTC (rev 1160) +++ tags/05pre3/jsxe/Changelog 2006-08-22 02:15:23 UTC (rev 1161) @@ -1,3 +1,7 @@ +08/21/2006 Ian Lewis <Ian...@me...> + + * Updated russian translation. + 08/18/2006 Ian Lewis <Ian...@me...> * Added a hack to disable view specific actions that aren't implemented by Modified: tags/05pre3/jsxe/messages/messages.ru =================================================================== --- tags/05pre3/jsxe/messages/messages.ru 2006-08-22 02:11:41 UTC (rev 1160) +++ tags/05pre3/jsxe/messages/messages.ru 2006-08-22 02:15:23 UTC (rev 1161) @@ -1,12 +1,12 @@ -# JSXE English properties file -# $Id: -# Maintained by Alexandr Gridnev (ale...@ya...) -#:mode=properties: -#:tabSize=4:indentSize=4:noTabs=true: -#:folding=explicit:collapseFolds=1: - -#{{{ common properties - +# JSXE English properties file +# $Id: messages 1158 2006-08-18 18:42:18Z ian_lewis $ +# Maintained by Alexandr Gridnev (ale...@ya...) +#:mode=properties: +#:tabSize=4:indentSize=4:noTabs=true: +#:folding=explicit:collapseFolds=1: + +#{{{ common properties + common.ok=Принять common.cancel=Отменить common.open=Открыть @@ -20,22 +20,18 @@ common.remove=Удалить common.moveUp=Поднять common.moveDown=Опустить -common.cut=Вырезать -common.copy=Копировать -common.paste=Вставить -common.find=Искать... -common.findnext=Искать следующий - -common.ctrl=Ctrl -common.alt=Alt -common.shift=Shift -common.meta=Meta - -#}}} - -#{{{ XML Terminology - -#{{{ XML Node Types +common.find=Искать + +common.ctrl=Ctrl +common.alt=Alt +common.shift=Shift +common.meta=Meta + +#}}} + +#{{{ XML Terminology + +#{{{ XML Node Types xml.element=Элемент xml.processing.instruction=Правило обработки xml.cdata=Секция CDATA @@ -52,7 +48,7 @@ xml.attribute.value.short=Значение xml.attribute.value=Значение свойства xml.document=документ XML -xml.namespace=Пространство имен +xml.namespace=Пространство имен xml.namespace.prefix=Префикс пространства имен xml.namespace.prefix.short=Префикс xml.namespace.decl=Объявление пространства имен @@ -72,21 +68,23 @@ Global.Options.network-cache=Кешировать удаленные файлы только спросив разрешения Global.Options.network-always=Скачивать всегда, без спросу Global.Options.network=Скачивание DTD и схемы: -Global.Options.Menu.Spill.Over=Меню выпадают после: - +Global.Options.Menu.Spill.Over=Меню выпадают после: +Global.Options.Undos.To.Remember=Запомнить действий: +Global.Options.Undos.To.Remember.ToolTip=<HTML>jsXe запомнит столько действий и потом их можно будет отменить.<BR> Однако он не может запомнить действия, выполненные после переключения видов</HTML> + Shortcuts.Options.Title=Горячие клавиши Shortcuts.Options.Select.Label=Редактировать горячие клавиши: Shortcuts.Options.Shortcut=Горячая клавиша -Shortcuts.Options.Command=Команда - +Shortcuts.Options.Command=Команда + Grab.Key.title=Нажмите клавишу Grab.Key.caption=Нажмите клавишу для команды "{0}", а котом нажмите Принять. Grab.Key.keyboard-test=Input the key strokes that are causing problems. Grab.Key.assigned-to=Уже назначено для: {0} Grab.Key.assigned-to.none=<ничего> Grab.Key.clear=Очистить -Grab.Key.remove=Удалить текущее - +Grab.Key.remove=Удалить текущее + Grab.Key.remove-ask.title=Удалить клавишу? Grab.Key.remove-ask.message=\ Вы не назначили новую клавишу.\n\ @@ -111,7 +109,7 @@ Document.Options.Line.Separator=Разделитель строк: Document.Options.Line.Separator.ToolTip=Разделитель строк. По умолчанию выбирается традиционный для вашей операционной системы. Document.Options.Encoding=Кодировка: -Document.Options.Encoding.ToolTip=Кодировка, которую jsXe использует для записи текстовой инфы в файл. +Document.Options.Encoding.ToolTip=Кодировка, которую jsXe использует для записи текстовой инфы в файл. Document.Options.Indent.Width=Ширина отступа: Document.Options.Indent.Width.ToolTip=Ширина используемая при форматировании и отображении символов табуляции. Document.Options.Format.XML=Форматировать выводимый XML @@ -136,32 +134,44 @@ File.Menu=Файл Edit.Menu=Правка -View.Menu=Вид +View.Menu=Вид Tools.Menu=Инструменты -Help.Menu=Справка - -#{{{ File Menu Items +Help.Menu=Справка + + +#}}} + +#{{{ Action Labels new-file.label=Новый open-file.label=Открыть... File.Recent=Ранее открытые файлы File.Recent.None=Нэма нифигга save-file.label=Сохранить save-as.label=Сохранить как... -reload-file.label=Открыть еще раз +reload-file.label=Открыть еще раз +File.Recent=Ранее открытые файлы close-file.label=Закрыть close-all.label=Закрыть все -exit.label=Выход -#}}} - +exit.label=Выход + +undo.label=Отменить +redo.label=Повторить +cut.label=Вырезать +copy.label=Копировать +paste.label=Вставить +find.label=Искать... +findnext.label=Искать далее + general-options.label=Глобальные опции... document-options.label=Опции документа... plugin-manager.label=Менеджер плагинов... validation-errors.label=Ошибки подтверждения... -about-jsxe.label=О программе jsXe... -#}}} - -#{{{ Messages - +about-jsxe.label=О программе jsXe... + +#}}} + +#{{{ Messages + DocumentView.Open.Message="Не могу открыть буффер в каком-либо из установленных document view-ов" #{0} file name @@ -186,7 +196,7 @@ # {0} plugin name Plugin.Error.title=Ошибка плагина Plugin.Error.List.message=Следующие плагины не могут быть загружены: -Plugin.Load.Already.Loaded=Плагин {0} уже загружен. +Plugin.Load.Already.Loaded=Плагин {0} уже загружен. Plugin.Load.Wrong.Main.Class=Главный класс не является классом плагина. Plugin.Load.No.Plugin.Class=Класс плагина не был определен. Plugin.Load.No.Plugin.Name=Имя плагина не было определено. @@ -211,7 +221,7 @@ # {0} invalid version Plugin.Dependency.Invalid.jsXe.Version=Неправильный номер версии jsXe: {0} # {0} plugin name -# {1} requirement name +# {1} requirement name Plugin.Dependency.No.Version=Не могу загрузить плагин {0}, потому что у {1} не подписана версия. # {0} plugin name # {1} requirement name @@ -236,7 +246,7 @@ #{0} URL xml.download-resource.message=Этот XML-файл зависит от ресурсов, которые расколожены\n\ по следующему адресу в интернете:\n\ - \n\ + \n\ {0}\n\ \n\ Хотите ли вы чтобы плагин XML скачал ресурсы и закешировал их\n\ @@ -261,28 +271,27 @@ activity-log.label = Лог активности ActivityLogDialog.Dialog.Title = Лог активности ActivityLogDialog.Dialog.Message = Содержимое лога активности: -#}}} - -#{{{ About dialag +#}}} + +#{{{ About dialag about.title=О программе jsXe about.message=Распространяется на условиях GNU General Public License\n\n\ - Активные разработчики:\n\ - \ \ \ \ Ian Lewis <Ian...@me...>\n\ - \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ - Переводчики:\n\ - \ \ \ \ German (de) - Bianca Sh\u00f6en\n\ - \ \ \ \ German (de) - Dieter Steiner <spo...@gm...>\n\ - \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\n\ - В прошлом учавствовали в разработке:\n\ - \ \ \ \ Aaron Flatten <afl...@us...>\n\ - \ \ \ \ Bilel Remmache <rb...@us...>\n\ - \ \ \ \ SVM <svm...@us...>\n\n\ - Страница проекта: http://jsxe.sourceforge.net/ -#}}} - -#{{{ Validation Errors Dialog + Активные разработчики:\n\ + \ \ \ \ Ian Lewis <Ian...@me...>\n\ + \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ + Переводчики:\n\ + \ \ \ \ German (de) - Bianca Shöen\n\ + \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\ + \ \ \ \ Russian (ru) - Александр Гриднев <ale...@ya...>\n\n\ + Past Contributers:\n\ + \ \ \ \ Aaron Flatten <afl...@us...>\n\ + \ \ \ \ Bilel Remmache <rb...@us...>\n\n\ + Страница проекта: http://jsxe.sourceforge.net/ +#}}} + +#{{{ Validation Errors Dialog ValidationErrors.title=Ошибки подтверждения -ValidationErrors.message=Ошибки подтверждения +ValidationErrors.message=Ошибки подтверждения +#}}} + #}}} - -#}}} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-22 02:11:47
|
Revision: 1160 Author: ian_lewis Date: 2006-08-21 19:11:41 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1160&view=rev Log Message: ----------- Fixed title for project summary rss Modified Paths: -------------- trunk/web/htdocs/meta.php Modified: trunk/web/htdocs/meta.php =================================================================== --- trunk/web/htdocs/meta.php 2006-08-19 05:21:36 UTC (rev 1159) +++ trunk/web/htdocs/meta.php 2006-08-22 02:11:41 UTC (rev 1160) @@ -9,5 +9,5 @@ <link href="mailto:Ian...@me..." rev="made"/> <link rel="alternate" type="application/rss+xml" title="jsXe Project News" href="http://sourceforge.net/export/rss2_projnews.php?group_id=58584" /> <link rel="alternate" type="application/rss+xml" title="jsXe Project Releases" href="http://sourceforge.net/export/rss2_projfiles.php?group_id=58584" /> -<link rel="alternate" type="application/rss+xml" title="jsXe Project Releases" href="http://sourceforge.net/export/rss2_projsummary.php?group_id=58584" /> +<link rel="alternate" type="application/rss+xml" title="jsXe Project Summary" href="http://sourceforge.net/export/rss2_projsummary.php?group_id=58584" /> <link rel="alternate" type="application/rss+xml" title="jsXe CVS Commits" href="https://cia.navi.cx/stats/project/jsxe/.rss"/> \ 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: <ian...@us...> - 2006-08-19 05:21:43
|
Revision: 1159 Author: ian_lewis Date: 2006-08-18 22:21:36 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1159&view=rev Log Message: ----------- Fixed rss feeds Modified Paths: -------------- trunk/web/htdocs/meta.php Modified: trunk/web/htdocs/meta.php =================================================================== --- trunk/web/htdocs/meta.php 2006-08-18 18:42:18 UTC (rev 1158) +++ trunk/web/htdocs/meta.php 2006-08-19 05:21:36 UTC (rev 1159) @@ -7,5 +7,7 @@ <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" /> <link rel="stylesheet" type="text/css" media="all" href="css/main.css" /> <link href="mailto:Ian...@me..." rev="made"/> -<link rel="alternate" type="application/rss+xml" title="jsXe Project News" href="http://sourceforge.net/export/rss2_sfnews.php?group_id=1&rss_fulltext=1" /> -<link rel="alternate" type="application/rss+xml" title="jsXe CVS Commits" href="https://cia.navi.cx/stats/project/jsxe/.rss"/> +<link rel="alternate" type="application/rss+xml" title="jsXe Project News" href="http://sourceforge.net/export/rss2_projnews.php?group_id=58584" /> +<link rel="alternate" type="application/rss+xml" title="jsXe Project Releases" href="http://sourceforge.net/export/rss2_projfiles.php?group_id=58584" /> +<link rel="alternate" type="application/rss+xml" title="jsXe Project Releases" href="http://sourceforge.net/export/rss2_projsummary.php?group_id=58584" /> +<link rel="alternate" type="application/rss+xml" title="jsXe CVS Commits" href="https://cia.navi.cx/stats/project/jsxe/.rss"/> \ 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: <ian...@us...> - 2006-08-18 18:42:23
|
Revision: 1158 Author: ian_lewis Date: 2006-08-18 11:42:18 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1158&view=rev Log Message: ----------- Added back the common.find message Modified Paths: -------------- tags/05pre3/jsxe/messages/messages Modified: tags/05pre3/jsxe/messages/messages =================================================================== --- tags/05pre3/jsxe/messages/messages 2006-08-18 18:38:21 UTC (rev 1157) +++ tags/05pre3/jsxe/messages/messages 2006-08-18 18:42:18 UTC (rev 1158) @@ -20,6 +20,7 @@ common.remove=Remove common.moveUp=Move Up common.moveDown=Move Down +common.find=Find common.ctrl=Ctrl common.alt=Alt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-18 18:38:30
|
Revision: 1157 Author: ian_lewis Date: 2006-08-18 11:38:21 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1157&view=rev Log Message: ----------- Added a hack to disable actions that aren't implemented by the current view from the menus Modified Paths: -------------- tags/05pre3/jsxe/Changelog tags/05pre3/jsxe/src/net/sourceforge/jsxe/ActionManager.java tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java Modified: tags/05pre3/jsxe/Changelog =================================================================== --- tags/05pre3/jsxe/Changelog 2006-08-18 16:07:10 UTC (rev 1156) +++ tags/05pre3/jsxe/Changelog 2006-08-18 18:38:21 UTC (rev 1157) @@ -1,3 +1,8 @@ +08/18/2006 Ian Lewis <Ian...@me...> + + * Added a hack to disable view specific actions that aren't implemented by + the view. + 08/17/2006 Ian Lewis <Ian...@me...> * Updated the German translation thanks to Dieter Steiner Modified: tags/05pre3/jsxe/src/net/sourceforge/jsxe/ActionManager.java =================================================================== --- tags/05pre3/jsxe/src/net/sourceforge/jsxe/ActionManager.java 2006-08-18 16:07:10 UTC (rev 1156) +++ tags/05pre3/jsxe/src/net/sourceforge/jsxe/ActionManager.java 2006-08-18 18:38:21 UTC (rev 1157) @@ -33,6 +33,7 @@ import net.sourceforge.jsxe.util.Log; import net.sourceforge.jsxe.util.MiscUtilities; import net.sourceforge.jsxe.msg.PropertyChanged; +import net.sourceforge.jsxe.action.ViewSpecificAction; //}}} //{{{ Java classes Modified: tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java =================================================================== --- tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java 2006-08-18 16:07:10 UTC (rev 1156) +++ tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/TabbedView.java 2006-08-18 18:38:21 UTC (rev 1157) @@ -428,6 +428,7 @@ menubar.add(m_fileMenu); + createEditMenu(); menubar.add(m_editMenu); //Add View Specific Menus @@ -572,6 +573,86 @@ }//}}} + //{{{ createEditMenu() + + private void createEditMenu() { + m_editMenu = new JMenu(Messages.getMessage("Edit.Menu")); + m_editMenu.setMnemonic('E'); + + DocumentView view = getDocumentView(); + JMenuItem menuItem = new JMenuItem(ActionManager.getAction("undo")); + m_editMenu.add(menuItem); + menuItem = new JMenuItem(ActionManager.getAction("redo")); + m_editMenu.add(menuItem); + m_editMenu.addSeparator(); + Action action = ActionManager.getAction("cut"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".cut"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("copy"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".copy"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("paste"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".paste"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + m_editMenu.addSeparator(); + action = ActionManager.getAction("find"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".find"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + action = ActionManager.getAction("findnext"); + if (view != null) { + String name = jsXe.getPluginLoader().getPluginProperty(view.getViewPlugin(), JARClassLoader.PLUGIN_NAME)+".findnext"; + if (ActionManager.getLocalizedAction(name) == null) { + action.setEnabled(false); + } else { + action.setEnabled(true); + } + } else { + action.setEnabled(false); + } + menuItem = new JMenuItem(action); + m_editMenu.add(menuItem); + }//}}} + //{{{ createDefaultMenuItems() private void createDefaultMenuItems() { @@ -606,24 +687,7 @@ //}}} //{{{ Create Edit Menu - m_editMenu = new JMenu(Messages.getMessage("Edit.Menu")); - m_editMenu.setMnemonic('E'); - menuItem = new JMenuItem(ActionManager.getAction("undo")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("redo")); - m_editMenu.add(menuItem); - m_editMenu.addSeparator(); - menuItem = new JMenuItem(ActionManager.getAction("cut")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("copy")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("paste")); - m_editMenu.add(menuItem); - m_editMenu.addSeparator(); - menuItem = new JMenuItem(ActionManager.getAction("find")); - m_editMenu.add(menuItem); - menuItem = new JMenuItem(ActionManager.getAction("findnext")); - m_editMenu.add(menuItem); + createEditMenu(); //}}} //{{{ Create View Menu This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-18 16:07:21
|
Revision: 1156 Author: ian_lewis Date: 2006-08-18 09:07:10 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1156&view=rev Log Message: ----------- merge from the 0.5pre3 branch Modified Paths: -------------- trunk/jsxe/Changelog trunk/jsxe/messages/messages trunk/jsxe/messages/messages.de trunk/jsxe/messages/messages.ja trunk/jsxe/messages/messages.ru trunk/jsxe/src/net/sourceforge/jsxe/gui/Messages.java Modified: trunk/jsxe/Changelog =================================================================== --- trunk/jsxe/Changelog 2006-08-18 15:53:11 UTC (rev 1155) +++ trunk/jsxe/Changelog 2006-08-18 16:07:10 UTC (rev 1156) @@ -1,3 +1,7 @@ +08/17/2006 Ian Lewis <Ian...@me...> + + * Updated the German translation thanks to Dieter Steiner + 08/12/2006 Ian Lewis <Ian...@me...> * Added support for running jsXe in a wrapped exe using launch4j. Modified: trunk/jsxe/messages/messages =================================================================== --- trunk/jsxe/messages/messages 2006-08-18 15:53:11 UTC (rev 1155) +++ trunk/jsxe/messages/messages 2006-08-18 16:07:10 UTC (rev 1156) @@ -280,6 +280,7 @@ \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ Translators:\n\ \ \ \ \ German (de) - Bianca Shöen\n\ + \ \ \ \ German (de) - Dieter Steiner <spo...@gm...>\n\ \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\ \ \ \ \ Russian (ru) - Alexandr Gridnev <ale...@ya...>\n\n\ Past Contributers:\n\ Modified: trunk/jsxe/messages/messages.de =================================================================== (Binary files differ) Modified: trunk/jsxe/messages/messages.ja =================================================================== --- trunk/jsxe/messages/messages.ja 2006-08-18 15:53:11 UTC (rev 1155) +++ trunk/jsxe/messages/messages.ja 2006-08-18 16:07:10 UTC (rev 1156) @@ -1,23 +1,23 @@ -# JSXE Japanese properties file -# $Id$ -# Maintained by Ian Lewis -#:mode=properties: -#:tabSize=4:indentSize=4:noTabs=true: -#:folding=explicit:collapseFolds=1: - -#{{{ common properties - -common.ok=決定 -common.cancel=キャンセル +# JSXE Japanese properties file +# $Id$ +# Maintained by Ian Lewis +#:mode=properties: +#:tabSize=4:indentSize=4:noTabs=true: +#:folding=explicit:collapseFolds=1: + +#{{{ common properties + +common.ok=決定 +common.cancel=キャンセル common.open=開く common.save=保存 common.save.as=名前を付けて保存 common.close=閉じる -common.apply=適用 +common.apply=適用 common.more=次 common.insert=インサート -common.add=追加 -common.remove=削除 +common.add=追加 +common.remove=削除 common.moveUp=上げる common.moveDown=下げる @@ -25,41 +25,41 @@ #common.alt=Alt #common.shift=Shift #common.meta=Meta - + #}}} -#{{{ XML Terminology - -#{{{ XML Node Types -xml.element=要素 -xml.processing.instruction=処理命令 -xml.cdata=CDATAセクション -xml.text=テキスト +#{{{ XML Terminology + +#{{{ XML Node Types +xml.element=要素 +xml.processing.instruction=処理命令 +xml.cdata=CDATAセクション +xml.text=テキスト xml.entity.reference=エンティティ参照 -#xml.declaration=Element Declaration -xml.notation=表記法 +#xml.declaration=Element Declaration +xml.notation=表記法 xml.entity=エンティティ -#xml.entity=Entity Declaration -xml.comment=コメント -xml.attribute=属性 -xml.doctype=文書型 -#}}} - -xml.attribute.value.short=値 -xml.attribute.value=属性値 -xml.document=XMLドキュメント -xml.namespace=ネームスペース -xml.namespace.prefix=ネームスペース前置修飾子 +#xml.entity=Entity Declaration +xml.comment=コメント +xml.attribute=属性 +xml.doctype=文書型 +#}}} + +xml.attribute.value.short=値 +xml.attribute.value=属性値 +xml.document=XMLドキュメント +xml.namespace=ネームスペース +xml.namespace.prefix=ネームスペース前置修飾子 xml.namespace.prefix.short=前置修飾子 -#xml.namespace.decl=Namespace Declaration -xml.doctypedef=文書型 -xml.doctype.name=DTDの名前 -xml.doctype.public=公開識別子 -xml.doctype.system=システム識別子 -xml.schema=XMLスキーマ - -#}}} +#xml.namespace.decl=Namespace Declaration +xml.doctypedef=文書型 +xml.doctype.name=DTDの名前 +xml.doctype.public=公開識別子 +xml.doctype.system=システム識別子 +xml.schema=XMLスキーマ +#}}} + #{{{ Global Options Global.Options.Dialog.Title=Global Options Global.Options.Title=General @@ -91,20 +91,20 @@ 新しいショットカットは選択されてなかった。\n\ 今のショットカットを削除? #}}} - -#{{{ Document Options -Document.Options.Title=ドキュメント設定 -Document.Options.Encoding=エンコーディング: -#}}} - -#{{{ Menu Items - -File.Menu=ファイル -Edit.Menu=編集 -Help.Menu=ヘルプ -Tools.Menu=ツール -View.Menu=表示 - + +#{{{ Document Options +Document.Options.Title=ドキュメント設定 +Document.Options.Encoding=エンコーディング: +#}}} + +#{{{ Menu Items + +File.Menu=ファイル +Edit.Menu=編集 +Help.Menu=ヘルプ +Tools.Menu=ツール +View.Menu=表示 + #{{{ Action Labels new-file.label=新規作成 open-file.label=開く... @@ -127,28 +127,29 @@ document-options.label=ドキュメント設定... plugin-manager.label=プラグインマネジャー... -about-jsxe.label=jsXeについて... -#}}} - -#}}} - -#{{{ Dialogs - -#{{{ About dialag -about.title=jsXeについて -about.message=Released under the terms of the GNU General Public License\n\n\ - Active Contributors:\n\ - \ \ \ \ Ian Lewis <Ian...@me...>\n\ - \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ - 翻訳者:\n\ - \ \ \ \ ドイツ語 (de) - Bianca Shöen\n\ - \ \ \ \ スウェーデン語 (sv) - Patrik Johansson <pa...@it...>\n\n\ - Past Contributers:\n\ - \ \ \ \ Aaron Flatten <afl...@us...>\n\ - \ \ \ \ Bilel Remmache <rb...@us...>\n\ - \ \ \ \ SVM <svm...@us...>\n\n\ - ホームページ: http://jsxe.sourceforge.net/ -#}}} - +about-jsxe.label=jsXeについて... #}}} +#}}} + +#{{{ Dialogs + +#{{{ About dialag +about.title=jsXeについて +about.message=Released under the terms of the GNU General Public License\n\n\ + Active Contributors:\n\ + \ \ \ \ Ian Lewis <Ian...@me...>\n\ + \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ + 翻訳者:\n\ + \ \ \ \ ドイツ語 (de) - Bianca Shöen\n\ + \ \ \ \ ドイツ語 (de) - Dieter Steiner <spo...@gm...>\n\ + \ \ \ \ スウェーデン語 (sv) - Patrik Johansson <pa...@it...>\n\n\ + Past Contributers:\n\ + \ \ \ \ Aaron Flatten <afl...@us...>\n\ + \ \ \ \ Bilel Remmache <rb...@us...>\n\ + \ \ \ \ SVM <svm...@us...>\n\n\ + ホームページ: http://jsxe.sourceforge.net/ +#}}} + +#}}} + Modified: trunk/jsxe/messages/messages.ru =================================================================== --- trunk/jsxe/messages/messages.ru 2006-08-18 15:53:11 UTC (rev 1155) +++ trunk/jsxe/messages/messages.ru 2006-08-18 16:07:10 UTC (rev 1156) @@ -271,6 +271,7 @@ \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ Переводчики:\n\ \ \ \ \ German (de) - Bianca Sh\u00f6en\n\ + \ \ \ \ German (de) - Dieter Steiner <spo...@gm...>\n\ \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\n\ В прошлом учавствовали в разработке:\n\ \ \ \ \ Aaron Flatten <afl...@us...>\n\ Modified: trunk/jsxe/src/net/sourceforge/jsxe/gui/Messages.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-18 15:53:11 UTC (rev 1155) +++ trunk/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-18 16:07:10 UTC (rev 1156) @@ -94,7 +94,7 @@ // // Locale.setDefault(new Locale("sv")); // // Locale.setDefault(Locale.GERMANY); // // Locale.setDefault(Locale.JAPAN); - // Locale.setDefault(new Locale("ru", "RU")); + // // Locale.setDefault(new Locale("ru", "RU")); // } private static Locale m_locale = Locale.getDefault(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-18 15:53:16
|
Revision: 1155 Author: ian_lewis Date: 2006-08-18 08:53:11 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1155&view=rev Log Message: ----------- fixed redirects Modified Paths: -------------- trunk/web/htdocs/links.php trunk/web/htdocs/news.php Modified: trunk/web/htdocs/links.php =================================================================== --- trunk/web/htdocs/links.php 2006-08-18 15:49:55 UTC (rev 1154) +++ trunk/web/htdocs/links.php 2006-08-18 15:53:11 UTC (rev 1155) @@ -53,5 +53,5 @@ } // Do stuff here before sending headers -redirect('get-involved.php') +redirect('/get-involved.php') ?> Modified: trunk/web/htdocs/news.php =================================================================== --- trunk/web/htdocs/news.php 2006-08-18 15:49:55 UTC (rev 1154) +++ trunk/web/htdocs/news.php 2006-08-18 15:53:11 UTC (rev 1155) @@ -53,5 +53,5 @@ } // Do stuff here before sending headers -redirect('index.php') +redirect('/index.php') ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-18 15:50:02
|
Revision: 1154 Author: ian_lewis Date: 2006-08-18 08:49:55 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1154&view=rev Log Message: ----------- fixed redirects Modified Paths: -------------- trunk/web/htdocs/links.php trunk/web/htdocs/news.php Modified: trunk/web/htdocs/links.php =================================================================== --- trunk/web/htdocs/links.php 2006-08-17 22:38:36 UTC (rev 1153) +++ trunk/web/htdocs/links.php 2006-08-18 15:49:55 UTC (rev 1154) @@ -53,5 +53,5 @@ } // Do stuff here before sending headers -redirect('./get-involved.php') +redirect('get-involved.php') ?> Modified: trunk/web/htdocs/news.php =================================================================== --- trunk/web/htdocs/news.php 2006-08-17 22:38:36 UTC (rev 1153) +++ trunk/web/htdocs/news.php 2006-08-18 15:49:55 UTC (rev 1154) @@ -53,5 +53,5 @@ } // Do stuff here before sending headers -redirect('./index.php') +redirect('index.php') ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-17 22:38:41
|
Revision: 1153 Author: ian_lewis Date: 2006-08-17 15:38:36 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1153&view=rev Log Message: ----------- Moved News to the front page Modified Paths: -------------- trunk/web/htdocs/index.php trunk/web/htdocs/news.php trunk/web/htdocs/sidebar.php Modified: trunk/web/htdocs/index.php =================================================================== --- trunk/web/htdocs/index.php 2006-08-17 22:31:13 UTC (rev 1152) +++ trunk/web/htdocs/index.php 2006-08-17 22:38:36 UTC (rev 1153) @@ -29,7 +29,13 @@ if you are a developer and would like to contribute time and code check out <a href="get-involved.php">how to get involved</a></p> + <h2>News</h2> + <?php include("news.cache") ?> + <?php + //include("http://sourceforge.net/export/projnews.php?group_id=58584&limit=5&flat=FLATSETTING&show_summaries=1") + ?> + <?php include("footer.php") ?> </div> </body> Modified: trunk/web/htdocs/news.php =================================================================== --- trunk/web/htdocs/news.php 2006-08-17 22:31:13 UTC (rev 1152) +++ trunk/web/htdocs/news.php 2006-08-17 22:38:36 UTC (rev 1153) @@ -1,25 +1,57 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> - <head> - <title>jsXe: The Java Simple XML Editor</title> - <?php include("meta.php") ?> - </head> - <body> - <div id="title"><h1>jsXe: The Java Simple XML Editor</h1></div> - - <div id="sidebar"> - <?php include("sidebar.php") ?> - </div> - <div id="mainBody"> - - <h2>News</h2> - - <?php include("news.cache") ?> - <?php - //include("http://sourceforge.net/export/projnews.php?group_id=58584&limit=5&flat=FLATSETTING&show_summaries=1") - ?> - - <?php include("footer.php") ?> - </div> - </body> -</html> +<?php +// func: redirect($to,$code=307) +// spec: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html +function redirect($to,$code=301) +{ + $location = null; + $sn = $_SERVER['SCRIPT_NAME']; + $cp = dirname($sn); + if (substr($to,0,4)=='http') $location = $to; // Absolute URL + else + { + $schema = $_SERVER['SERVER_PORT']=='443'?'https':'http'; + $host = strlen($_SERVER['HTTP_HOST'])?$_SERVER['HTTP_HOST']:$_SERVER['SERVER_NAME']; + if (substr($to,0,1)=='/') $location = "$schema://$host$to"; + elseif (substr($to,0,1)=='.') // Relative Path + { + $location = "$schema://$host"; + $pu = parse_url($to); + $cd = dirname($_SERVER['SCRIPT_FILENAME']).'/'; + $np = realpath($cd.$pu['path']); + $np = str_replace($_SERVER['DOCUMENT_ROOT'],'',$np); + $location.= $np; + if ((isset($pu['query'])) && (strlen($pu['query'])>0)) $location.= '?'.$pu['query']; + } + } + + $hs = headers_sent(); + if ($hs==false) + { + if ($code==301) header("301 Moved Permanently HTTP/1.1"); // Convert to GET + elseif ($code==302) header("302 Found HTTP/1.1"); // Conform re-POST + elseif ($code==303) header("303 See Other HTTP/1.1"); // dont cache, always use GET + elseif ($code==304) header("304 Not Modified HTTP/1.1"); // use cache + elseif ($code==305) header("305 Use Proxy HTTP/1.1"); + elseif ($code==306) header("306 Not Used HTTP/1.1"); + elseif ($code==307) header("307 Temorary Redirect HTTP/1.1"); + else trigger_error("Unhandled redirect() HTTP Code: $code",E_USER_ERROR); + header("Location: $location"); + header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); + } + elseif (($hs==true) || ($code==302) || ($code==303)) + { + // todo: draw some javascript to redirect + $cover_div_style = 'background-color: #ccc; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%;'; + echo "<div style='$cover_div_style'>\n"; + $link_div_style = 'background-color: #fff; border: 2px solid #f00; left: 0px; margin: 5px; padding: 3px; '; + $link_div_style.= 'position: absolute; text-align: center; top: 0px; width: 95%; z-index: 99;'; + echo "<div style='$link_div_style'>\n"; + echo "<p>Please See: <a href='$to'>".htmlspecialchars($location)."</a></p>\n"; + echo "</div>\n</div>\n"; + } + exit(0); +} + +// Do stuff here before sending headers +redirect('./index.php') +?> Modified: trunk/web/htdocs/sidebar.php =================================================================== --- trunk/web/htdocs/sidebar.php 2006-08-17 22:31:13 UTC (rev 1152) +++ trunk/web/htdocs/sidebar.php 2006-08-17 22:38:36 UTC (rev 1153) @@ -1,6 +1,5 @@ <ul> - <li><a href="index.php">Home</a></li> - <li><a href="news.php">News</a></li> + <li><a href="index.php">News</a></li> <li><a href="features.php" >Features</a></li> <li><a href="screenshots.php">Screenshots</a></li> <li><a href="downloads.php">Downloads</a></li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-17 22:31:18
|
Revision: 1152 Author: ian_lewis Date: 2006-08-17 15:31:13 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1152&view=rev Log Message: ----------- Added info for users Modified Paths: -------------- trunk/web/htdocs/get-involved.php Modified: trunk/web/htdocs/get-involved.php =================================================================== --- trunk/web/htdocs/get-involved.php 2006-08-17 21:00:55 UTC (rev 1151) +++ trunk/web/htdocs/get-involved.php 2006-08-17 22:31:13 UTC (rev 1152) @@ -61,6 +61,14 @@ get you started. Web developers should have some knowledge of CSS and PHP.</p> + <h3>Users</h3> + + <p>Let us know what you think! + <a href="http://lists.sourceforge.net/mailman/listinfo/jsxe-users">Subscribe</a> + to the jsxe-users mailing list and let us know what you think and what + features you would like to have implemented. Or you could submit a + <a href="http://sourceforge.net/tracker/?atid=488271&group_id=58584&func=browse">feature request</a>.</p> + <h3>Mailing Lists</h3> <p>These three mailing lists will be low traffic.</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-17 21:01:02
|
Revision: 1151 Author: ian_lewis Date: 2006-08-17 14:00:55 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1151&view=rev Log Message: ----------- Added info for testers Modified Paths: -------------- trunk/web/htdocs/get-involved.php Modified: trunk/web/htdocs/get-involved.php =================================================================== --- trunk/web/htdocs/get-involved.php 2006-08-17 20:32:20 UTC (rev 1150) +++ trunk/web/htdocs/get-involved.php 2006-08-17 21:00:55 UTC (rev 1151) @@ -14,8 +14,8 @@ <h2>Getting Involved</h2> <p>jsXe needs developers to implement new features and fix bugs, - translators for translating messages and the website, and - web designers who are interested in updating the project's + testers for testing jsXe, translators for translating messages and the + website, and web designers who are interested in updating the project's website.</p> <p>Getting involved is fairly easy. There are a multitude of ways that @@ -33,6 +33,16 @@ get you started. Developers should know how to use SVN and have some experience with Java swing or XML.</p> + <h3>Testers</h3> + + <p>If you are interested in testing jsXe, please + <a href="http://lists.sourceforge.net/mailman/listinfo/jsxe-devel">subscribe</a> + and send a mail to the jsxe-devel mailing list. Testing will normally be + done on SVN and beta releases. Familiarity with + <a href="http://subversion.tigris.org/">SVN</a> and + <a href="http://ant.apache.org/">ant</a> is a plus since it will be needed + for testing code from the SVN repository.</p> + <h3>Translators</h3> <p>If you are interested in translating for the jsXe project. Please This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-17 20:32:30
|
Revision: 1150 Author: ian_lewis Date: 2006-08-17 13:32:20 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1150&view=rev Log Message: ----------- Fixed debug code Modified Paths: -------------- tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java Modified: tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java =================================================================== --- tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-17 20:31:48 UTC (rev 1149) +++ tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-17 20:32:20 UTC (rev 1150) @@ -90,12 +90,12 @@ */ private static Properties m_pluginMessages; - static { - // Locale.setDefault(new Locale("sv")); - // Locale.setDefault(Locale.GERMANY); - // Locale.setDefault(Locale.JAPAN); - Locale.setDefault(new Locale("ru", "RU")); - } + // static { + // // Locale.setDefault(new Locale("sv")); + // // Locale.setDefault(Locale.GERMANY); + // // Locale.setDefault(Locale.JAPAN); + // // Locale.setDefault(new Locale("ru", "RU")); + // } private static Locale m_locale = Locale.getDefault(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-17 20:32:05
|
Revision: 1149 Author: ian_lewis Date: 2006-08-17 13:31:48 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1149&view=rev Log Message: ----------- Updated German translation Modified Paths: -------------- tags/05pre3/jsxe/Changelog tags/05pre3/jsxe/messages/messages tags/05pre3/jsxe/messages/messages.de tags/05pre3/jsxe/messages/messages.ja tags/05pre3/jsxe/messages/messages.ru tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java Modified: tags/05pre3/jsxe/Changelog =================================================================== --- tags/05pre3/jsxe/Changelog 2006-08-14 14:24:27 UTC (rev 1148) +++ tags/05pre3/jsxe/Changelog 2006-08-17 20:31:48 UTC (rev 1149) @@ -1,3 +1,7 @@ +08/17/2006 Ian Lewis <Ian...@me...> + + * Updated the German translation thanks to Dieter Steiner + 08/12/2006 Ian Lewis <Ian...@me...> * Added support for running jsXe in a wrapped exe using launch4j. Modified: tags/05pre3/jsxe/messages/messages =================================================================== --- tags/05pre3/jsxe/messages/messages 2006-08-14 14:24:27 UTC (rev 1148) +++ tags/05pre3/jsxe/messages/messages 2006-08-17 20:31:48 UTC (rev 1149) @@ -280,6 +280,7 @@ \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ Translators:\n\ \ \ \ \ German (de) - Bianca Shöen\n\ + \ \ \ \ German (de) - Dieter Steiner <spo...@gm...>\n\ \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\ \ \ \ \ Russian (ru) - Alexandr Gridnev <ale...@ya...>\n\n\ Past Contributers:\n\ Modified: tags/05pre3/jsxe/messages/messages.de =================================================================== (Binary files differ) Modified: tags/05pre3/jsxe/messages/messages.ja =================================================================== --- tags/05pre3/jsxe/messages/messages.ja 2006-08-14 14:24:27 UTC (rev 1148) +++ tags/05pre3/jsxe/messages/messages.ja 2006-08-17 20:31:48 UTC (rev 1149) @@ -1,23 +1,23 @@ -# JSXE Japanese properties file -# $Id$ -# Maintained by Ian Lewis -#:mode=properties: -#:tabSize=4:indentSize=4:noTabs=true: -#:folding=explicit:collapseFolds=1: - -#{{{ common properties - -common.ok=決定 -common.cancel=キャンセル +# JSXE Japanese properties file +# $Id$ +# Maintained by Ian Lewis +#:mode=properties: +#:tabSize=4:indentSize=4:noTabs=true: +#:folding=explicit:collapseFolds=1: + +#{{{ common properties + +common.ok=決定 +common.cancel=キャンセル common.open=開く common.save=保存 common.save.as=名前を付けて保存 common.close=閉じる -common.apply=適用 +common.apply=適用 common.more=次 common.insert=インサート -common.add=追加 -common.remove=削除 +common.add=追加 +common.remove=削除 common.moveUp=上げる common.moveDown=下げる @@ -25,41 +25,41 @@ #common.alt=Alt #common.shift=Shift #common.meta=Meta - + #}}} -#{{{ XML Terminology - -#{{{ XML Node Types -xml.element=要素 -xml.processing.instruction=処理命令 -xml.cdata=CDATAセクション -xml.text=テキスト +#{{{ XML Terminology + +#{{{ XML Node Types +xml.element=要素 +xml.processing.instruction=処理命令 +xml.cdata=CDATAセクション +xml.text=テキスト xml.entity.reference=エンティティ参照 -#xml.declaration=Element Declaration -xml.notation=表記法 +#xml.declaration=Element Declaration +xml.notation=表記法 xml.entity=エンティティ -#xml.entity=Entity Declaration -xml.comment=コメント -xml.attribute=属性 -xml.doctype=文書型 -#}}} - -xml.attribute.value.short=値 -xml.attribute.value=属性値 -xml.document=XMLドキュメント -xml.namespace=ネームスペース -xml.namespace.prefix=ネームスペース前置修飾子 +#xml.entity=Entity Declaration +xml.comment=コメント +xml.attribute=属性 +xml.doctype=文書型 +#}}} + +xml.attribute.value.short=値 +xml.attribute.value=属性値 +xml.document=XMLドキュメント +xml.namespace=ネームスペース +xml.namespace.prefix=ネームスペース前置修飾子 xml.namespace.prefix.short=前置修飾子 -#xml.namespace.decl=Namespace Declaration -xml.doctypedef=文書型 -xml.doctype.name=DTDの名前 -xml.doctype.public=公開識別子 -xml.doctype.system=システム識別子 -xml.schema=XMLスキーマ - -#}}} +#xml.namespace.decl=Namespace Declaration +xml.doctypedef=文書型 +xml.doctype.name=DTDの名前 +xml.doctype.public=公開識別子 +xml.doctype.system=システム識別子 +xml.schema=XMLスキーマ +#}}} + #{{{ Global Options Global.Options.Dialog.Title=Global Options Global.Options.Title=General @@ -91,20 +91,20 @@ 新しいショットカットは選択されてなかった。\n\ 今のショットカットを削除? #}}} - -#{{{ Document Options -Document.Options.Title=ドキュメント設定 -Document.Options.Encoding=エンコーディング: -#}}} - -#{{{ Menu Items - -File.Menu=ファイル -Edit.Menu=編集 -Help.Menu=ヘルプ -Tools.Menu=ツール -View.Menu=表示 - + +#{{{ Document Options +Document.Options.Title=ドキュメント設定 +Document.Options.Encoding=エンコーディング: +#}}} + +#{{{ Menu Items + +File.Menu=ファイル +Edit.Menu=編集 +Help.Menu=ヘルプ +Tools.Menu=ツール +View.Menu=表示 + #{{{ Action Labels new-file.label=新規作成 open-file.label=開く... @@ -127,28 +127,29 @@ document-options.label=ドキュメント設定... plugin-manager.label=プラグインマネジャー... -about-jsxe.label=jsXeについて... -#}}} - -#}}} - -#{{{ Dialogs - -#{{{ About dialag -about.title=jsXeについて -about.message=Released under the terms of the GNU General Public License\n\n\ - Active Contributors:\n\ - \ \ \ \ Ian Lewis <Ian...@me...>\n\ - \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ - 翻訳者:\n\ - \ \ \ \ ドイツ語 (de) - Bianca Shöen\n\ - \ \ \ \ スウェーデン語 (sv) - Patrik Johansson <pa...@it...>\n\n\ - Past Contributers:\n\ - \ \ \ \ Aaron Flatten <afl...@us...>\n\ - \ \ \ \ Bilel Remmache <rb...@us...>\n\ - \ \ \ \ SVM <svm...@us...>\n\n\ - ホームページ: http://jsxe.sourceforge.net/ -#}}} - +about-jsxe.label=jsXeについて... #}}} +#}}} + +#{{{ Dialogs + +#{{{ About dialag +about.title=jsXeについて +about.message=Released under the terms of the GNU General Public License\n\n\ + Active Contributors:\n\ + \ \ \ \ Ian Lewis <Ian...@me...>\n\ + \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ + 翻訳者:\n\ + \ \ \ \ ドイツ語 (de) - Bianca Shöen\n\ + \ \ \ \ ドイツ語 (de) - Dieter Steiner <spo...@gm...>\n\ + \ \ \ \ スウェーデン語 (sv) - Patrik Johansson <pa...@it...>\n\n\ + Past Contributers:\n\ + \ \ \ \ Aaron Flatten <afl...@us...>\n\ + \ \ \ \ Bilel Remmache <rb...@us...>\n\ + \ \ \ \ SVM <svm...@us...>\n\n\ + ホームページ: http://jsxe.sourceforge.net/ +#}}} + +#}}} + Modified: tags/05pre3/jsxe/messages/messages.ru =================================================================== --- tags/05pre3/jsxe/messages/messages.ru 2006-08-14 14:24:27 UTC (rev 1148) +++ tags/05pre3/jsxe/messages/messages.ru 2006-08-17 20:31:48 UTC (rev 1149) @@ -271,6 +271,7 @@ \ \ \ \ Trish Hartnett <tri...@us...>\n\n\ Переводчики:\n\ \ \ \ \ German (de) - Bianca Sh\u00f6en\n\ + \ \ \ \ German (de) - Dieter Steiner <spo...@gm...>\n\ \ \ \ \ Swedish (sv) - Patrik Johansson <pa...@it...>\n\n\ В прошлом учавствовали в разработке:\n\ \ \ \ \ Aaron Flatten <afl...@us...>\n\ Modified: tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java =================================================================== --- tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-14 14:24:27 UTC (rev 1148) +++ tags/05pre3/jsxe/src/net/sourceforge/jsxe/gui/Messages.java 2006-08-17 20:31:48 UTC (rev 1149) @@ -90,12 +90,12 @@ */ private static Properties m_pluginMessages; - // static { - // // Locale.setDefault(new Locale("sv")); - // // Locale.setDefault(Locale.GERMANY); - // // Locale.setDefault(Locale.JAPAN); - // Locale.setDefault(new Locale("ru", "RU")); - // } + static { + // Locale.setDefault(new Locale("sv")); + // Locale.setDefault(Locale.GERMANY); + // Locale.setDefault(Locale.JAPAN); + Locale.setDefault(new Locale("ru", "RU")); + } private static Locale m_locale = Locale.getDefault(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ian...@us...> - 2006-08-14 14:24:37
|
Revision: 1148 Author: ian_lewis Date: 2006-08-14 07:24:27 -0700 (Mon, 14 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1148&view=rev Log Message: ----------- Updated planned help system feature Modified Paths: -------------- trunk/web/htdocs/features.php Modified: trunk/web/htdocs/features.php =================================================================== --- trunk/web/htdocs/features.php 2006-08-14 04:18:29 UTC (rev 1147) +++ trunk/web/htdocs/features.php 2006-08-14 14:24:27 UTC (rev 1148) @@ -73,7 +73,7 @@ <li>Support for Unlimited Undo (version 0.5 beta)</li> <li>Tag completion using DTD/Schema introspection (version 0.5 beta)</li> <li>Automatic insertion of closing tags (version 0.5 beta)</li> - <li>A help system using <a href="http://aurigadoc.sourceforge.net/">AurigaDoc</a></li> + <li>A help system using <a href="http://aurigadoc.sourceforge.net/">AurigaDoc</a> or <a href="http://docbook.sourceforge.net/">Docbook</a></li> </ul> <?php include("footer.php") ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |