You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(19) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(22) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(23) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(11) |
Mar
|
Apr
(37) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Olivier G. <og...@us...> - 2006-01-30 22:35:40
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application/draw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23722/src/osmose/application/draw Modified Files: OSMDrawingPanel.java OSMDrawingToolsPanel.java Log Message: Eraser size (1 to 32) can be set in the drawing editor Index: OSMDrawingToolsPanel.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/draw/OSMDrawingToolsPanel.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OSMDrawingToolsPanel.java 30 Aug 2005 17:44:12 -0000 1.1.1.1 --- OSMDrawingToolsPanel.java 30 Jan 2006 22:35:33 -0000 1.2 *************** *** 50,54 **** if("ERASE".equals(e.getActionCommand())) { unSelectAllButton(); - m_Size.setEnabled(false); m_Eraser.setSelected(true); m_CurrentTool = OSMDRAW_ERASE; --- 50,53 ---- *************** *** 133,137 **** v.add("1"); v.add("2"); ! v.add("3"); m_Size = new JComboBox(v); m_ColorDisp = new OSMDrawingColorComponent(null, Color.BLACK); --- 132,139 ---- v.add("1"); v.add("2"); ! v.add("4"); ! v.add("8"); ! v.add("16"); ! v.add("32"); m_Size = new JComboBox(v); m_ColorDisp = new OSMDrawingColorComponent(null, Color.BLACK); Index: OSMDrawingPanel.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/draw/OSMDrawingPanel.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OSMDrawingPanel.java 30 Aug 2005 17:44:12 -0000 1.1.1.1 --- OSMDrawingPanel.java 30 Jan 2006 22:35:33 -0000 1.2 *************** *** 131,136 **** m_ImgGraphic.setColor(Color.WHITE); g.setColor(Color.WHITE); ! g.fillRect(e.getX(), e.getY(), m_EraserSize, m_EraserSize); ! m_ImgGraphic.fillRect(e.getX(), e.getY(), m_EraserSize, m_EraserSize); } repaint(); --- 131,137 ---- m_ImgGraphic.setColor(Color.WHITE); g.setColor(Color.WHITE); ! int eraserSize = m_Tools.getPenSize(); ! g.fillRect(e.getX(), e.getY(), eraserSize, eraserSize); ! m_ImgGraphic.fillRect(e.getX(), e.getY(), eraserSize, eraserSize); } repaint(); *************** *** 202,207 **** m_ImgGraphic.setColor(Color.WHITE); g.setColor(Color.WHITE); ! g.fillRect(e.getX(), e.getY(), m_EraserSize, m_EraserSize); ! m_ImgGraphic.fillRect(e.getX(), e.getY(), m_EraserSize, m_EraserSize); } else --- 203,209 ---- m_ImgGraphic.setColor(Color.WHITE); g.setColor(Color.WHITE); ! int eraserSize = m_Tools.getPenSize(); ! g.fillRect(e.getX(), e.getY(), eraserSize, eraserSize); ! m_ImgGraphic.fillRect(e.getX(), e.getY(), eraserSize, eraserSize); } else *************** *** 334,340 **** m_DrawNeeded = false; m_TextCompo = null; - m_EraserSize = OSMApplication.Properties.getIntProp("OSM_DrawEraserSize"); - if((m_EraserSize < 1) || (m_EraserSize > 100)) - m_EraserSize = 1; } --- 336,339 ---- |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:43
|
Update of /cvsroot/osmose-dev/osmose/launchers/dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/launchers/dev Modified Files: osmose_linux osmose_windows.bat osmose_macosx Log Message: Added support for Ogg Vorbis playing Index: osmose_linux =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_linux,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_linux 13 Jan 2006 21:57:50 -0000 1.2 --- osmose_linux 15 Jan 2006 22:19:34 -0000 1.3 *************** *** 1,2 **** #!/bin/sh ! java -classpath ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication --- 1,2 ---- #!/bin/sh ! java -classpath ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./lib/ogg/jogg-0.0.7.jar:./lib/ogg/jorbis-0.0.15.jar:./lib/ogg/vorbisspi1.0.2.jar:./resources/localization/ osmose.application.OSMApplication Index: osmose_windows.bat =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_windows.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_windows.bat 13 Jan 2006 21:57:50 -0000 1.2 --- osmose_windows.bat 15 Jan 2006 22:19:34 -0000 1.3 *************** *** 1 **** ! javaw -Dsun.java2d.noddraw=true -classpath .\bin\;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication --- 1 ---- ! javaw -Dsun.java2d.noddraw=true -classpath .\bin\;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;./lib/ogg/jogg-0.0.7.jar;./lib/ogg/jorbis-0.0.15.jar;./lib/ogg/vorbisspi1.0.2.jar;.\resources\localization\ osmose.application.OSMApplication Index: osmose_macosx =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_macosx,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_macosx 13 Jan 2006 21:57:50 -0000 1.2 --- osmose_macosx 15 Jan 2006 22:19:34 -0000 1.3 *************** *** 1,2 **** #!/bin/sh ! java -Xdock:name="Osmose" -cp ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX --- 1,2 ---- #!/bin/sh ! java -Xdock:name="Osmose" -cp ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./lib/ogg/jogg-0.0.7.jar:./lib/ogg/jorbis-0.0.15.jar:./lib/ogg/vorbisspi1.0.2.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:42
|
Update of /cvsroot/osmose-dev/osmose/launchers/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/launchers/user Modified Files: osmose_linux launcher.cfg Log Message: Added support for Ogg Vorbis playing Index: launcher.cfg =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/launcher.cfg,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** launcher.cfg 13 Jan 2006 21:57:50 -0000 1.2 --- launcher.cfg 15 Jan 2006 22:19:33 -0000 1.3 *************** *** 1,3 **** . javaw ! -Dsun.java2d.noddraw=true -classpath osmose.jar;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication --- 1,3 ---- . javaw ! -Dsun.java2d.noddraw=true -classpath osmose.jar;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;./lib/ogg/jogg-0.0.7.jar;./lib/ogg/jorbis-0.0.15.jar;./lib/ogg/vorbisspi1.0.2.jar;.\resources\localization\ osmose.application.OSMApplication Index: osmose_linux =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/osmose_linux,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_linux 13 Jan 2006 21:57:50 -0000 1.2 --- osmose_linux 15 Jan 2006 22:19:33 -0000 1.3 *************** *** 1,2 **** #!/bin/sh ! java -classpath osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication --- 1,2 ---- #!/bin/sh ! java -classpath osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./lib/ogg/jogg-0.0.7.jar:./lib/ogg/jorbis-0.0.15.jar:./lib/ogg/vorbisspi1.0.2.jar:./resources/localization/ osmose.application.OSMApplication |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:42
|
Update of /cvsroot/osmose-dev/osmose/resources/localization In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/resources/localization Modified Files: osmose_local_en_US.properties osmose_local_fr_FR.properties Log Message: Added support for Ogg Vorbis playing Index: osmose_local_en_US.properties =================================================================== RCS file: /cvsroot/osmose-dev/osmose/resources/localization/osmose_local_en_US.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_local_en_US.properties 14 Nov 2005 22:15:09 -0000 1.2 --- osmose_local_en_US.properties 15 Jan 2006 22:19:34 -0000 1.3 *************** *** 114,118 **** MED_FilterImageLabel=Images (*.jpg, *.jpeg, *.gif, *.png) MED_FilterTextLabel=Texts (*.txt) ! MED_FilterSoundLabel=Sounds (*.wav,*.aiff, *.aif, *.mp3) MED_FilterVideoLabel=Videos (*.avi, *.mov) MED_MediaCheckBox=Include --- 114,118 ---- MED_FilterImageLabel=Images (*.jpg, *.jpeg, *.gif, *.png) MED_FilterTextLabel=Texts (*.txt) ! MED_FilterSoundLabel=Sounds (*.wav,*.aiff, *.aif, *.mp3, *.ogg) MED_FilterVideoLabel=Videos (*.avi, *.mov) MED_MediaCheckBox=Include Index: osmose_local_fr_FR.properties =================================================================== RCS file: /cvsroot/osmose-dev/osmose/resources/localization/osmose_local_fr_FR.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osmose_local_fr_FR.properties 14 Nov 2005 22:15:09 -0000 1.2 --- osmose_local_fr_FR.properties 15 Jan 2006 22:19:34 -0000 1.3 *************** *** 113,117 **** MED_FilterImageLabel=Images (*.jpg,*.jpeg,*.gif,*.png) MED_FilterTextLabel=Textes (*.txt) ! MED_FilterSoundLabel=Sons (*.wav,*.aiff, *.aif, *.mp3) MED_FilterVideoLabel=Vidéos (*.avi, *.mov) MED_MediaCheckBox=Inclure --- 113,117 ---- MED_FilterImageLabel=Images (*.jpg,*.jpeg,*.gif,*.png) MED_FilterTextLabel=Textes (*.txt) ! MED_FilterSoundLabel=Sons (*.wav,*.aiff, *.aif, *.mp3, *.ogg) MED_FilterVideoLabel=Vidéos (*.avi, *.mov) MED_MediaCheckBox=Inclure |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:42
|
Update of /cvsroot/osmose-dev/osmose/lib/ogg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/lib/ogg Added Files: vorbisspi1.0.2.jar jorbis-0.0.15.jar jogg-0.0.7.jar Log Message: Added support for Ogg Vorbis playing --- NEW FILE: jorbis-0.0.15.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jogg-0.0.7.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vorbisspi1.0.2.jar --- (This appears to be a binary file; contents omitted.) |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:41
|
Update of /cvsroot/osmose-dev/osmose/launchers/user/Osmose(MacOSX).app/Contents/Resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/launchers/user/Osmose(MacOSX).app/Contents/Resources Modified Files: script Log Message: Added support for Ogg Vorbis playing Index: script =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/Osmose(MacOSX).app/Contents/Resources/script,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** script 13 Jan 2006 21:57:49 -0000 1.2 --- script 15 Jan 2006 22:19:33 -0000 1.3 *************** *** 1,3 **** #!/bin/sh cd "$1/.." ! java -Xdock:name="Osmose" -cp osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX --- 1,3 ---- #!/bin/sh cd "$1/.." ! java -Xdock:name="Osmose" -cp osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./lib/ogg/jogg-0.0.7.jar:./lib/ogg/jorbis-0.0.15.jar:./lib/ogg/vorbisspi1.0.2.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:41
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application/elementeditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/src/osmose/application/elementeditor Modified Files: OSMMediaFileFilter.java Log Message: Added support for Ogg Vorbis playing Index: OSMMediaFileFilter.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/elementeditor/OSMMediaFileFilter.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OSMMediaFileFilter.java 30 Aug 2005 17:44:13 -0000 1.1.1.1 --- OSMMediaFileFilter.java 15 Jan 2006 22:19:33 -0000 1.2 *************** *** 135,139 **** if(extension.equals(WAV) || extension.equals(AIFF) || ! extension.equals(MP3) || extension.equals(AIF)) return true; break; --- 135,140 ---- if(extension.equals(WAV) || extension.equals(AIFF) || ! extension.equals(MP3) || extension.equals(AIF) || ! extension.equals(OGG)) return true; break; *************** *** 225,228 **** --- 226,235 ---- /** + * Sound file extension. + */ + public final static String OGG = "ogg"; + + + /** * The file type. */ |
From: Olivier G. <og...@us...> - 2006-01-15 22:19:34
|
Update of /cvsroot/osmose-dev/osmose/lib/ogg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5164/lib/ogg Log Message: Directory /cvsroot/osmose-dev/osmose/lib/ogg added to the repository |
From: Olivier G. <og...@us...> - 2006-01-13 21:57:58
|
Update of /cvsroot/osmose-dev/osmose/launchers/dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23033/launchers/dev Modified Files: osmose_linux osmose_windows.bat osmose_macosx Log Message: Updated libs MP3 SPI (1.8 -> 1.9.4) and JLayer (0.4->1.0). Index: osmose_linux =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_linux,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** osmose_linux 30 Aug 2005 17:45:35 -0000 1.1.1.1 --- osmose_linux 13 Jan 2006 21:57:50 -0000 1.2 *************** *** 1,2 **** #!/bin/sh ! java -classpath ./bin/:./lib/jmf.jar:./lib/mp3/jl0.4.jar:./lib/mp3/mp3spi1.8.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication --- 1,2 ---- #!/bin/sh ! java -classpath ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication Index: osmose_windows.bat =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_windows.bat,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** osmose_windows.bat 30 Aug 2005 17:45:35 -0000 1.1.1.1 --- osmose_windows.bat 13 Jan 2006 21:57:50 -0000 1.2 *************** *** 1 **** ! javaw -Dsun.java2d.noddraw=true -classpath .\bin\;.\lib\jmf.jar;.\lib\mp3\jl0.4.jar;.\lib\mp3\mp3spi1.8.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication --- 1 ---- ! javaw -Dsun.java2d.noddraw=true -classpath .\bin\;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication Index: osmose_macosx =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/dev/osmose_macosx,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** osmose_macosx 30 Aug 2005 17:45:35 -0000 1.1.1.1 --- osmose_macosx 13 Jan 2006 21:57:50 -0000 1.2 *************** *** 1,2 **** #!/bin/sh ! java -Xdock:name="Osmose" -cp ./bin/:./lib/jmf.jar:./lib/mp3/jl0.4.jar:./lib/mp3/mp3spi1.8.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX --- 1,2 ---- #!/bin/sh ! java -Xdock:name="Osmose" -cp ./bin/:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX |
From: Olivier G. <og...@us...> - 2006-01-13 21:57:58
|
Update of /cvsroot/osmose-dev/osmose/launchers/user/Osmose(MacOSX).app/Contents/Resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23033/launchers/user/Osmose(MacOSX).app/Contents/Resources Modified Files: script Log Message: Updated libs MP3 SPI (1.8 -> 1.9.4) and JLayer (0.4->1.0). Index: script =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/Osmose(MacOSX).app/Contents/Resources/script,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** script 30 Aug 2005 17:45:37 -0000 1.1.1.1 --- script 13 Jan 2006 21:57:49 -0000 1.2 *************** *** 1,3 **** #!/bin/sh cd "$1/.." ! java -Xdock:name="Osmose" -cp osmose.jar:./lib/jmf.jar:./lib/mp3/jl0.4.jar:./lib/mp3/mp3spi1.8.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX --- 1,3 ---- #!/bin/sh cd "$1/.." ! java -Xdock:name="Osmose" -cp osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplicationMacOsX |
From: Olivier G. <og...@us...> - 2006-01-13 21:57:58
|
Update of /cvsroot/osmose-dev/osmose/launchers/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23033/launchers/user Modified Files: osmose_linux launcher.cfg Log Message: Updated libs MP3 SPI (1.8 -> 1.9.4) and JLayer (0.4->1.0). Index: launcher.cfg =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/launcher.cfg,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** launcher.cfg 30 Aug 2005 17:45:35 -0000 1.1.1.1 --- launcher.cfg 13 Jan 2006 21:57:50 -0000 1.2 *************** *** 1,3 **** . javaw ! -Dsun.java2d.noddraw=true -classpath osmose.jar;.\lib\jmf.jar;.\lib\mp3\jl0.4.jar;.\lib\mp3\mp3spi1.8.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication --- 1,3 ---- . javaw ! -Dsun.java2d.noddraw=true -classpath osmose.jar;.\lib\jmf.jar;.\lib\mp3\jl1.0.jar;.\lib\mp3\mp3spi1.9.4.jar;.\lib\mp3\tritonus_share.jar;.\resources\localization\ osmose.application.OSMApplication Index: osmose_linux =================================================================== RCS file: /cvsroot/osmose-dev/osmose/launchers/user/osmose_linux,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** osmose_linux 30 Aug 2005 17:45:35 -0000 1.1.1.1 --- osmose_linux 13 Jan 2006 21:57:50 -0000 1.2 *************** *** 1,2 **** #!/bin/sh ! java -classpath osmose.jar:./lib/jmf.jar:./lib/mp3/jl0.4.jar:./lib/mp3/mp3spi1.8.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication --- 1,2 ---- #!/bin/sh ! java -classpath osmose.jar:./lib/jmf.jar:./lib/mp3/jl1.0.jar:./lib/mp3/mp3spi1.9.4.jar:./lib/mp3/tritonus_share.jar:./resources/localization/ osmose.application.OSMApplication |
From: Olivier G. <og...@us...> - 2006-01-13 21:57:57
|
Update of /cvsroot/osmose-dev/osmose/lib/mp3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23033/lib/mp3 Added Files: mp3spi1.9.4.jar jl1.0.jar Removed Files: mp3spi1.8.jar jl0.4.jar Log Message: Updated libs MP3 SPI (1.8 -> 1.9.4) and JLayer (0.4->1.0). --- jl0.4.jar DELETED --- --- NEW FILE: jl1.0.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mp3spi1.9.4.jar --- (This appears to be a binary file; contents omitted.) --- mp3spi1.8.jar DELETED --- |
From: Olivier G. <og...@us...> - 2006-01-11 21:27:13
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application/documenteditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6289/src/osmose/application/documenteditor Modified Files: OSMTreeEditorPanel.java Log Message: Shift + mouse clic unselects the element in the tree editor (feature request #1359727) Index: OSMTreeEditorPanel.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/documenteditor/OSMTreeEditorPanel.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** OSMTreeEditorPanel.java 13 Dec 2005 22:08:35 -0000 1.2 --- OSMTreeEditorPanel.java 11 Jan 2006 21:27:05 -0000 1.3 *************** *** 723,729 **** public void onComponentSelection(OSMElementComponent compo, boolean add) { if(add) { ! if(m_selectedComponents.contains(compo) == false) m_selectedComponents.add(compo); ! compo.select(); if(compo != this.m_lastSelectedComponent) this.m_Notifier.notifyComponentSelected(this, null); --- 723,733 ---- public void onComponentSelection(OSMElementComponent compo, boolean add) { if(add) { ! if(m_selectedComponents.contains(compo) == false) { m_selectedComponents.add(compo); ! compo.select(); ! } else { ! m_selectedComponents.remove(compo); ! compo.unselect(); ! } if(compo != this.m_lastSelectedComponent) this.m_Notifier.notifyComponentSelected(this, null); |
From: Olivier G. <og...@us...> - 2006-01-08 21:53:52
|
Update of /cvsroot/osmose-dev/osmose/doc/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31642/doc/install Modified Files: ReadMe.txt Log Message: Translated "et". Index: ReadMe.txt =================================================================== RCS file: /cvsroot/osmose-dev/osmose/doc/install/ReadMe.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ReadMe.txt 7 Jan 2006 10:58:01 -0000 1.2 --- ReadMe.txt 8 Jan 2006 21:53:43 -0000 1.3 *************** *** 7,11 **** *** Start Up *** ! The Osmose folder contains launchers for Mac OS X, Windows et Linux. For other systems, refer to the Linux launcher. Under Mac OS X, double-click on the following file : Osmose(MacOSX) --- 7,11 ---- *** Start Up *** ! The Osmose folder contains launchers for Mac OS X, Windows and Linux. For other systems, refer to the Linux launcher. Under Mac OS X, double-click on the following file : Osmose(MacOSX) |
From: Nicolas E. <nes...@us...> - 2006-01-07 11:02:52
|
Update of /cvsroot/osmose-dev/osmose/doc/tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8529 Modified Files: tutoriel-en.html tutoriel-fr.html Log Message: The URL of the Osmose website has been modified. Index: tutoriel-fr.html =================================================================== RCS file: /cvsroot/osmose-dev/osmose/doc/tutorial/tutoriel-fr.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tutoriel-fr.html 30 Aug 2005 17:45:38 -0000 1.1.1.1 --- tutoriel-fr.html 7 Jan 2006 11:02:38 -0000 1.2 *************** *** 217,221 **** <h1>Informations complémentaires</h1> ! <p>Vous trouverez toutes les informations concernant Osmose en allant sur le site <a href="http://www.idylle.org/osmose/">http://www.idylle.org/osmose/</a></p> </body> --- 217,221 ---- <h1>Informations complémentaires</h1> ! <p>Vous trouverez toutes les informations concernant Osmose en allant sur le site <a href="http://www.utc.fr/~idylle/osmose/">http://www.utc.fr/~idylle/osmose/</a></p> </body> Index: tutoriel-en.html =================================================================== RCS file: /cvsroot/osmose-dev/osmose/doc/tutorial/tutoriel-en.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tutoriel-en.html 30 Aug 2005 17:45:38 -0000 1.1.1.1 --- tutoriel-en.html 7 Jan 2006 11:02:38 -0000 1.2 *************** *** 18,20 **** </a> <br>Possible Result </center > ! </p> </div> <h1>Chapter 3. Advanced Features </h1> <h2>3.1 Slide Notes</h2> <p> It is possible to add a text note and a sound note to each slide. In the design windows a text field allow you to enter a note and there is a <i>Record</i> button to record a sound note. </p> <h2>3.2 Title Slide</h2> <p>It is possible to generate a title slide for the presentation. By clicking on <i>Documents/Options...</i>, it is possible to activate or deactivate the creation of this slide. Information contained in this slide can be defined by clicking on <i>Documents/Informations...</i></p> <div class="instruction" > <p>Change the presentation informations and visualize the title slide in the design window.</p> </div> <h2>3.3 Table of Contents</h2> <p> It is also possible to have an automatic table of contents slide. The slide generation and the depth of the table of contents can be defined by clicking on <i>Documents/Options...</i>. </p> <div class="instruction" > <p> Change the depth of the table of contents and display the result in the design window.</p> </div> <h2>3.4 Full Screen Visualization</h2> <p>It is possible to visualize the presentation in fullscreen mode by clicking on the menu <i>Documents/View</i>. It is also possible to visualize in fullscreen mode with the sound notes by clicking on the menu <i>Documents/View with audio comments</i>. Navigation is done either with the space bar or with keyboard arrows. The Escape (Esc) button allow you to leave the fullscreen mode. Clicking on an image or a video allows you to see it in fullscreen mode.</p> <div class="instruction" > <p> Activate the fullscreen mode and navigate.</p> </div> <h1>Additionnal Informations</h1> <p>You will find all informations related to Osmose on this website: <a href="http://www.idylle.org/osmose/">http://www.idylle.org/osmose/</a>. </p> </body> </html> --- 18,20 ---- </a> <br>Possible Result </center > ! </p> </div> <h1>Chapter 3. Advanced Features </h1> <h2>3.1 Slide Notes</h2> <p> It is possible to add a text note and a sound note to each slide. In the design windows a text field allow you to enter a note and there is a <i>Record</i> button to record a sound note. </p> <h2>3.2 Title Slide</h2> <p>It is possible to generate a title slide for the presentation. By clicking on <i>Documents/Options...</i>, it is possible to activate or deactivate the creation of this slide. Information contained in this slide can be defined by clicking on <i>Documents/Informations...</i></p> <div class="instruction" > <p>Change the presentation informations and visualize the title slide in the design window.</p> </div> <h2>3.3 Table of Contents</h2> <p> It is also possible to have an automatic table of contents slide. The slide generation and the depth of the table of contents can be defined by clicking on <i>Documents/Options...</i>. </p> <div class="instruction" > <p> Change the depth of the table of contents and display the result in the design window.</p> </div> <h2>3.4 Full Screen Visualization</h2> <p>It is possible to visualize the presentation in fullscreen mode by clicking on the menu <i>Documents/View</i>. It is also possible to visualize in fullscreen mode with the sound notes by clicking on the menu <i>Documents/View with audio comments</i>. Navigation is done either with the space bar or with keyboard arrows. The Escape (Esc) button allow you to leave the fullscreen mode. Clicking on an image or a video allows you to see it in fullscreen mode.</p> <div class="instruction" > <p> Activate the fullscreen mode and navigate.</p> </div> <h1>Additionnal Informations</h1> <p>You will find all informations related to Osmose on this website: <a href="http://www.utc.fr/~idylle/osmose/">http://www.utc.fr/~idylle/osmose/</a>. </p> </body> </html> |
From: Nicolas E. <nes...@us...> - 2006-01-07 10:58:10
|
Update of /cvsroot/osmose-dev/osmose/doc/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7808 Modified Files: LisezMoi.txt ReadMe.txt Log Message: The Mac OS X launcher name has been corrected. Index: LisezMoi.txt =================================================================== RCS file: /cvsroot/osmose-dev/osmose/doc/install/LisezMoi.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** LisezMoi.txt 30 Aug 2005 17:46:39 -0000 1.1.1.1 --- LisezMoi.txt 7 Jan 2006 10:58:01 -0000 1.2 *************** *** 9,13 **** Le dossier d'Osmose contient des lanceurs pour Mac OS X, Windows et Linux. Pour les autres systemes, se referer au lanceur pour Linux. ! Sous Mac OS X, double-cliquer sur le fichier suivant : Osmose (Mac OS X) Sous Windows, double-cliquer sur le fichier suivant : Osmose (Windows).exe --- 9,13 ---- Le dossier d'Osmose contient des lanceurs pour Mac OS X, Windows et Linux. Pour les autres systemes, se referer au lanceur pour Linux. ! Sous Mac OS X, double-cliquer sur le fichier suivant : Osmose(MacOSX) Sous Windows, double-cliquer sur le fichier suivant : Osmose (Windows).exe Index: ReadMe.txt =================================================================== RCS file: /cvsroot/osmose-dev/osmose/doc/install/ReadMe.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ReadMe.txt 30 Aug 2005 17:46:39 -0000 1.1.1.1 --- ReadMe.txt 7 Jan 2006 10:58:01 -0000 1.2 *************** *** 9,13 **** The Osmose folder contains launchers for Mac OS X, Windows et Linux. For other systems, refer to the Linux launcher. ! Under Mac OS X, double-click on the following file : Osmose (Mac OS X) Under Windows, double-click on the following file : Osmose (Windows).exe --- 9,13 ---- The Osmose folder contains launchers for Mac OS X, Windows et Linux. For other systems, refer to the Linux launcher. ! Under Mac OS X, double-click on the following file : Osmose(MacOSX) Under Windows, double-click on the following file : Osmose (Windows).exe |
From: Olivier G. <og...@us...> - 2005-12-27 21:57:23
|
Hello, Nicolas and I are happy to announce that Osmose 0.2.0 has been released today. This is a major version because it is the first one since the development has been transfered to sourceforge. To celebrate this event I decided to open the 0.2 branch. The last release was known as the 0.1.36 version. The changes between this version and 0.2.0 are the following ones : Misc: ----- * Project development has been transfered to sourceforge : https://sourceforge.net/projects/osmose-dev/ * The conception document has been translated into english (see doc/dev/Conception_en.sxw). New features: ------------- * A label has been added for the HTML title. Fixed bugs: ----------- * Use correct fonts when exporting to HTML (needs improvement). * Links are now correctly redrawn when the window is resized. * "Fin du diaporama" has been translated, and the replaceTag method has been improved. * A font was missing in the fonts list. * Bold and italic styles are allowed only for fonts who have these styles. Build features: --------------- * "clean" and "all" targets have been added in build.xml. * Zip format has been replaced by tar.gz to handle file permissions. * Javadoc warning have been fixed. * A javadoc task has been created, to generate the javadoc. Don't hesitate to submit feature requests, bugs, ideas, feelings about Osmose on these lists or on the sourceforge site ! Olivier |
From: Olivier G. <og...@us...> - 2005-12-26 22:16:46
|
Update of /cvsroot/osmose-dev/osmose/launchers/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17727/osmose/launchers/user Added Files: Osmose (Windows).exe Log Message: added launcher for Windows --- NEW FILE: Osmose (Windows).exe --- (This appears to be a binary file; contents omitted.) |
From: Olivier G. <og...@us...> - 2005-12-19 22:19:53
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3912/osmose/src/osmose/application Modified Files: OSMApplication.java Log Message: Get ready for the next release (version 0.2.0) Index: OSMApplication.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/OSMApplication.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OSMApplication.java 30 Aug 2005 17:43:58 -0000 1.1.1.1 --- OSMApplication.java 19 Dec 2005 22:19:45 -0000 1.2 *************** *** 403,407 **** * the version of the application */ ! public static final String OSM_VERSION = "0.1.36"; --- 403,407 ---- * the version of the application */ ! public static final String OSM_VERSION = "0.2.0"; |
From: Olivier G. <og...@us...> - 2005-12-19 22:19:53
|
Update of /cvsroot/osmose-dev/osmose/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3912/osmose/config Modified Files: osmose.properties Log Message: Get ready for the next release (version 0.2.0) Index: osmose.properties =================================================================== RCS file: /cvsroot/osmose-dev/osmose/config/osmose.properties,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** osmose.properties 30 Aug 2005 17:48:37 -0000 1.1.1.1 --- osmose.properties 19 Dec 2005 22:19:44 -0000 1.2 *************** *** 1,3 **** ! OSM_Version=0.1.36 OSM_Language=en --- 1,3 ---- ! OSM_Version=0.2.0 OSM_Language=en |
From: Olivier G. <og...@us...> - 2005-12-19 22:03:28
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application/export In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32404/src/osmose/application/export Modified Files: OSMExportHTML.java Log Message: Use correct fonts when exporting to HTML (bug #1277552) Index: OSMExportHTML.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/export/OSMExportHTML.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OSMExportHTML.java 20 Nov 2005 21:45:30 -0000 1.3 --- OSMExportHTML.java 19 Dec 2005 22:03:16 -0000 1.4 *************** *** 356,360 **** styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+f.getName()+";font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) --- 356,361 ---- styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+convertJavaFontToCSSFont(f)+",sans-serif;"; ! styleStr += "font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) *************** *** 456,460 **** styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+f.getName()+";font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) --- 457,462 ---- styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+convertJavaFontToCSSFont(f)+",sans-serif;"; ! styleStr += "font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) *************** *** 599,604 **** (y) + "px;"; styleStr += "width:" + (w) + "px;height:" + (h) + "px;"; ! styleStr += "font-family:" + nf.getName() + ";font-size:" + ! nf.getSize() + "pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if (nf.isBold()) --- 601,606 ---- (y) + "px;"; styleStr += "width:" + (w) + "px;height:" + (h) + "px;"; ! styleStr += "font-family:" + convertJavaFontToCSSFont(nf) + ",sans-serif;"; ! styleStr += "font-size:" + nf.getSize() + "pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if (nf.isBold()) *************** *** 717,721 **** styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+f.getName()+";font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) --- 719,724 ---- styleStr += " {position:absolute;left:"+(x)+"px;top:"+(y)+"px;"; styleStr += "width:"+(w)+"px;height:"+(h)+"px;"; ! styleStr += "font-family:"+convertJavaFontToCSSFont(f)+",sans-serif;"; ! styleStr += "font-size:"+nf.getSize()+"pt;"; styleStr += "color : #" + getHexaColor(c) + ";"; if(nf.isBold()) *************** *** 730,736 **** ! styleStr+= " .liennavig {font-family:Verdana; font-size:8pt; text-decoration: none}\n"; ! styleStr+= " .lienexterne{font-family:Verdana; font-size:8pt; text-decoration: none}\n"; ! styleStr+= " .titlenavig {font-family:Verdana; font-size:9pt;}\n"; styleStr += " #body {position:absolute;left:0;top:0;width:800;height:640;"; --- 733,739 ---- ! styleStr+= " .liennavig {font-family:Verdana,sans-serif; font-size:8pt; text-decoration: none}\n"; ! styleStr+= " .lienexterne{font-family:Verdana,sans-serif; font-size:8pt; text-decoration: none}\n"; ! styleStr+= " .titlenavig {font-family:Verdana,sans-serif; font-size:9pt;}\n"; styleStr += " #body {position:absolute;left:0;top:0;width:800;height:640;"; *************** *** 1092,1095 **** --- 1095,1132 ---- /** + * This method converts a Java font to a CSS font + * For a Java physical font, there is nothing to do. + * For a Java logical font, translate it to a CSS font. + * + * By default, Java logical fonts are mapped to Lucida fonts (in Sun JRE). + * These fonts can't be used in web browsers, so these fonts are translated. + * + * There are 5 Java logical fonts : + * serif, sansserif, monospaced, dialog, dialoginput + * and 5 generic font families in CSS : + * serif, sans-serif, monospace, cursive, fantasy + * + * Dialog and dialoginput are different from cursive and fantasy, but in Sun + * JRE they use the same font as sansserif and monospaced (respectively). + * + * Physical fonts are quoted, but not generic CSS fonts, according to CSS + * specifications. + * + * @param javaFont the Java font to be converted + * @return the CSS font corresponding to the Java font + */ + public String convertJavaFontToCSSFont(Font javaFont) + { + String javaFt = javaFont.getName(); + String cssFont = "\"" + javaFt + "\""; + if (javaFt.equals("sansserif")) cssFont = "sans-serif"; + else if (javaFt.equals("serif")) cssFont = "serif"; + else if (javaFt.equals("monospaced")) cssFont = "monospace"; + else if (javaFt.equals("dialog")) cssFont = "sans-serif"; + else if (javaFt.equals("dialoginput")) cssFont = "monospace"; + return cssFont; + } + + /** * it transforms specific caracters (for instance : é to é) * to be properly display in a html browser |
From: Olivier G. <og...@us...> - 2005-12-13 22:08:47
|
Update of /cvsroot/osmose-dev/osmose/src/osmose/application/documenteditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5435/osmose/src/osmose/application/documenteditor Modified Files: OSMTreeEditorPanel.java Log Message: Links are correctly redrawn when the window is resized (bug #1359987) Index: OSMTreeEditorPanel.java =================================================================== RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/documenteditor/OSMTreeEditorPanel.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OSMTreeEditorPanel.java 30 Aug 2005 17:44:10 -0000 1.1.1.1 --- OSMTreeEditorPanel.java 13 Dec 2005 22:08:35 -0000 1.2 *************** *** 1626,1630 **** y--; compo.setLocationButNotPosition(newxecran/* - m_Document.getDeltaView()*/, y); ! // We must also redraw the link, if exist. OSMElementComponent father = compo.getFather(); if(father != null) --- 1626,1633 ---- y--; compo.setLocationButNotPosition(newxecran/* - m_Document.getDeltaView()*/, y); ! } ! // the links have to be updated ! for (Iterator it = m_AllComponents.iterator(); it.hasNext(); ) { ! OSMElementComponent compo = (OSMElementComponent)it.next(); OSMElementComponent father = compo.getFather(); if(father != null) |
From: Olivier G. <oli...@la...> - 2005-11-28 21:38:04
|
Olivier Gauwin a =E9crit : > Hello dev-world, [...] > If this patch is correct, I propose to release a new version of Osm= ose. > I think we could name it 0.40, to notice the sourceforge transition= (the > last version was 0.36 I think). In fact the last version was 0.1.36, so I think we should name the ne= xt version 0.2.0. |
From: Olivier G. <og...@us...> - 2005-11-25 22:46:35
|
Hello dev-world, As you might have noticed I configured CVS to send all the commits to this list. I think it will be a good way for developpers to be warned of every change on CVS immediately. As the number of commits is not too high, I think it does not worth creating a new list just for that. I just sent a patch that solves the file permissions problem (bug #1277539). I chose to replace the zip format by the tar.gz one, because it is easier to solve this problem, and because it is the standard for free software releases. The only point I'm not sure about is the build process under windows (does it handle the <chmod> ant task?). If someone has the opportunity to test it, let me know. Nicolas, did you had the time to test the patch for HTML export (bug #1277552) ? The patch can be downloaded in the page of the bug. If this patch is correct, I propose to release a new version of Osmose. I think we could name it 0.40, to notice the sourceforge transition (the last version was 0.36 I think). Olivier |
From: Olivier G. <og...@us...> - 2005-11-25 22:23:21
|
Update of /cvsroot/osmose-dev/osmose In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26402/osmose Modified Files: build.xml Log Message: added a "clean" and "all" target in build.xml Index: build.xml =================================================================== RCS file: /cvsroot/osmose-dev/osmose/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 25 Nov 2005 22:15:04 -0000 1.4 --- build.xml 25 Nov 2005 22:23:13 -0000 1.5 *************** *** 7,11 **** <property name="javadoc" location="doc/dev/javadoc"/> ! <target name="init"> <!-- Create the time stamp --> <tstamp/> --- 7,20 ---- <property name="javadoc" location="doc/dev/javadoc"/> ! <target name="all" depends="dist,src-dist,javadoc"/> ! ! <target name="clean"> ! <delete dir="${build}"/> ! <delete> ! <fileset dir="." includes="Osmose-*.tar.gz"/> ! </delete> ! </target> ! ! <target name="init" depends="clean"> <!-- Create the time stamp --> <tstamp/> *************** *** 41,45 **** </target> ! <target name="zip" depends="jar" > <copy todir="${dist}/Osmose-${DSTAMP}"> <fileset dir="launchers/user"/> --- 50,54 ---- </target> ! <target name="dist" depends="jar" > <copy todir="${dist}/Osmose-${DSTAMP}"> <fileset dir="launchers/user"/> |