/[xulu]/trunk
ViewVC logotype

Log of /trunk

View Directory Listing Directory Listing


Sticky Revision:

Revision 35 - Directory Listing
Modified Mon Jul 6 10:40:01 2009 UTC (15 years, 5 months ago) by alfonx
* Refactored   

public static String getBaseFileName(File file) {
    int extIdx = getFileExtIdx(file);
    
to 

public static String getBaseFilePath(File file) {
    int extIdx = getFileExtIdx(file);

because not only the name (as in File.getName() ) was returned, but the File.getPath() without the postfix. As i did refactoring, all references in Atlas, ISDSS, XULU and schmitzm should be changed to getBaseFilePath automatically.

* Created a method getBaseFileName(File file) that really just return the filename without it's extension.

Revision 34 - Directory Listing
Modified Mon Jun 22 10:23:25 2009 UTC (15 years, 5 months ago) by mojays
missing constructor parameter added for GeoMapPane

Revision 33 - Directory Listing
Modified Fri Jun 19 14:20:37 2009 UTC (15 years, 5 months ago) by alfonx
* Renamed classes:
LayerPanel to MapLegend (works on StyledObj)
AtlasLayerPanel to AtlasMapLegend (works on DpLayer)
LayerPanelGroup to MapLayerLegend (works on StyledObj)
AtlasLayerPanelGroup to AtlasMapLayerLegend (works on DpLayer)

Updated all JARs and committed them.

TODO: Some "ISDSS person" might want to rename:
de.isdss.util.framework.ui.panel.LayerPanelScrollPane to something like MapLegendScrollPane.java or FWMapLegendScrollPane.java

* Also committing some substitutions of "@returns" with "@return" 
* Removed testsomethong.java from xulu

Revision 32 - Directory Listing
Modified Thu May 21 13:26:24 2009 UTC (15 years, 6 months ago) by mojays


Revision 31 - Directory Listing
Modified Thu May 21 13:15:51 2009 UTC (15 years, 6 months ago) by mojays


Revision 30 - Directory Listing
Modified Thu May 21 13:12:52 2009 UTC (15 years, 6 months ago) by mojays


Revision 29 - Directory Listing
Modified Thu May 21 13:00:17 2009 UTC (15 years, 6 months ago) by mojays
new version of JFreeChart (moved from 1.0.6 to 1.0.13)

Revision 28 - Directory Listing
Modified Thu May 14 16:14:55 2009 UTC (15 years, 7 months ago) by alfonx
* All in lib/ now signed with the new certificate.
* Added support for JAR native lib for linux and windows for all possible constelltions:
GP started via JWS
GP started via .bat or .sh
Exported Atlas starting via JWS, atlas.exe, .bat or .sh

The natives are stored in lib/native and lib/natives.jar 

* Added common-beanutils to the dependencies

Revision 27 - Directory Listing
Modified Thu May 14 15:22:23 2009 UTC (15 years, 7 months ago) by alfonx
* imageio native linux lib

Revision 26 - Directory Listing
Modified Thu May 14 14:57:15 2009 UTC (15 years, 7 months ago) by alfonx
Native JAI libs


Revision 25 - Directory Listing
Modified Mon May 4 13:25:41 2009 UTC (15 years, 7 months ago) by mojays
Geotools-Update: gt2-2.4.4 to gt2-2.4.5

Revision 24 - Directory Listing
Modified Mon May 4 13:05:23 2009 UTC (15 years, 7 months ago) by mojays
Geotools-Update: gt2-2.4.4 to gt2-2.4.5

Revision 23 - Directory Listing
Modified Sat Mar 28 16:42:16 2009 UTC (15 years, 8 months ago) by alfonx
The old code must have been a mistake, because it would have led to a NullPointerException. Eclipse showed me these...

Old:
    if ( sfc != null || sfc.getFeatureCollection().size() > 0 ) {
      FeatureCollection fc = sfc.getFeatureCollection();

New:
    if ( sfc != null && sfc.getFeatureCollection().size() > 0 ) {
      FeatureCollection fc = sfc.getFeatureCollection();


Revision 22 - Directory Listing
Modified Wed Mar 11 12:29:25 2009 UTC (15 years, 9 months ago) by mojays
dependency of ADAGIOS library removed

Revision 21 - Directory Listing
Modified Thu Mar 5 17:17:15 2009 UTC (15 years, 9 months ago) by mojays
GPL, LGLP copied to source folder

Revision 20 - Directory Listing
Modified Thu Mar 5 16:42:22 2009 UTC (15 years, 9 months ago) by mojays
schmitzm.jar updated:
Bug #902 fixed: Header in FeatureTypeTableModel now localized using the same translations as FeatureTableModel:
schmitzm.geotools.feature.FeatureTableModel.AttrName
schmitzm.geotools.feature.FeatureTableModel.AttrType

Revision 19 - Directory Listing
Modified Mon Mar 2 14:56:39 2009 UTC (15 years, 9 months ago) by mojays
build.xml: new option "extJar" to create an extended JAR (including resource/icons and /resource/locales)


Revision 18 - Directory Listing
Modified Sat Feb 28 14:17:27 2009 UTC (15 years, 9 months ago) by mojays
Test commit for mailing list

Revision 17 - Directory Listing
Modified Thu Feb 26 21:06:38 2009 UTC (15 years, 9 months ago) by mojays
Linux shell script "startXULU.sh" converted to UNIX format

Revision 16 - Directory Listing
Modified Wed Feb 25 23:32:56 2009 UTC (15 years, 9 months ago) by alfonx
Set to UNIX line-ends (again) 

Revision 15 - Directory Listing
Modified Wed Feb 25 22:42:57 2009 UTC (15 years, 9 months ago) by mojays
xulu.jar.zip removed from "dist" folder

Revision 14 - Directory Listing
Modified Wed Feb 25 22:40:42 2009 UTC (15 years, 9 months ago) by mojays
new folder "dist" with latest release as jar
XuluModellingPlatform.jar in "lib" replaced by xulu.jar in "dist"
new build.xml

Revision 13 - Directory Listing
Modified Wed Feb 25 21:50:12 2009 UTC (15 years, 9 months ago) by mojays
added some Linux notes in readme.txt

Revision 12 - Directory Listing
Modified Wed Feb 25 21:44:38 2009 UTC (15 years, 9 months ago) by alfonx


Revision 11 - Directory Listing
Modified Wed Feb 25 21:31:59 2009 UTC (15 years, 9 months ago) by mojays
new initXulu.sh

Revision 10 - Directory Listing
Modified Wed Feb 25 21:31:27 2009 UTC (15 years, 9 months ago) by mojays
new startXULU.sh

Revision 9 - Directory Listing
Modified Wed Feb 25 21:25:20 2009 UTC (15 years, 9 months ago) by mojays
backslash replaced by slash in default for log4j.cfg

Revision 8 - Directory Listing
Modified Wed Feb 25 21:16:13 2009 UTC (15 years, 9 months ago) by mojays
changes in initXulu.bat

Revision 7 - Directory Listing
Modified Wed Feb 25 20:26:41 2009 UTC (15 years, 9 months ago) by mojays
InitXulu.bat renamed to initXulu.bat

Revision 6 - Directory Listing
Modified Wed Feb 25 20:25:17 2009 UTC (15 years, 9 months ago) by mojays
InitXulu.bat renamed to initXulu.bat

Revision 5 - Directory Listing
Modified Wed Feb 25 20:09:54 2009 UTC (15 years, 9 months ago) by mojays
startXulu.bat updated
XuluModellingPlatform.jar (in libs) updated
readme.txt updated
new startXulu.sh

Revision 4 - Directory Listing
Modified Wed Feb 25 18:46:53 2009 UTC (15 years, 9 months ago) by mojays
startXulu.bat removed from SVN (is in "defaults")
schmitzm.jar updated

Revision 3 - Directory Listing
Modified Wed Feb 25 14:08:13 2009 UTC (15 years, 9 months ago) by mojays
libs (from SCHMITZM) added to Xulu

Revision 2 - Directory Listing
Modified Wed Feb 25 11:54:01 2009 UTC (15 years, 9 months ago) by mojays
First Commit, corresponds to Revision 1008 of Wikisquare-SVN 

Revision 1 - Directory Listing
Added Tue Feb 24 23:27:09 2009 UTC (15 years, 9 months ago) by mojays
Create trunk

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26