Ignore:
Timestamp:
2008-11-05T14:03:24+13:00 (15 years ago)
Author:
oranfry
Message:

uninstaller now uses the unified language bundle strings, has the buttons in the right order, and repaints using a dialog box which will be replaced with a call to repaint() or similar

Location:
release-kits/shared/uninstaller
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/uninstaller

    • Property svn:ignore
      •  

        old new  
        11startmenu
        22gsdl
        3 
         3resources
  • release-kits/shared/uninstaller/compile.sh

    r17456 r17685  
    1 javac Uninstaller.java
    2 jar -cmf manifest.mf gsdl-template/uninst.jar *.class *.properties
     1rk_home=$1
     2if [ "$rk_home" = "" ]; then
     3    echo "usage: ./compile.sh <rk_home>"
     4    exit
     5fi
     6
     7#setup language string bundle
     8rm -rf resources
     9mkdir resources
     10cp $rk_home/language-strings/*.properties resources
     11
     12#java compile
     13javac Uninstaller.java -Xlint:unchecked
     14jar -cmf manifest.mf gsdl-template/uninst.jar *.class resources
     15
     16#setup a fake greenstone installation
    317cp Uninstall.bat gsdl-template
    418cp Uninstall.sh gsdl-template
Note: See TracChangeset for help on using the changeset viewer.