From: <jhe...@us...> - 2002-11-28 14:56:27
|
Update of /cvsroot/upcase-project/UpCase/templates/en In directory sc8-pr-cvs1:/tmp/cvs-serv26330 Added Files: configure.mxt preinstall.mxt Log Message: template for preinstall and configure steps --- NEW FILE: configure.mxt --- <html> <head> <title>Package Configuration</title> </head> <body> <h1>Configuration of <mx:text id="pkgname" /></h1> Please fill in the following form to configure your new package. Some values maybe defined by default. <form mXattribut="action:installer"> <mx:hidden id="params" /> <table> <mx:bloc id="inputs"> <tr> <td><mx:text id="label" /> : </td> <td colspan="2"> <mx:bloc id="fields"> <mx:formField id="field" /> </mx:bloc id="fields"> <mx:bloc id="enums"> <mx:select id="enum" /> </mx:bloc id="enums"> <mx:bloc id="booleans"> <mx:checker id="boolean" /> </mx:bloc id="booleans"> <td> </tr> </mx:bloc id="inputs"> <tr> <td><input type="submit" value="Install"></td> <td><input type="reset"></td> </tr> </table> </form> </body> </html> --- NEW FILE: preinstall.mxt --- <html> <head> <title>Package pre-installation</title> </head> <body> <h1>Pre-installation of <mx:text id="pkgname" /></h1> <div> This step will unpack the archive in the place you specify here. If you want to cancel the installation procedure, point your browser back to the page where you selected the package for installation and click on "uninstall" for the instance you want to remove. </div> <form mXattribut="action:installer"> <mx:hidden id="params" /> <table> <tr> <td>Installation Path : </td> <td><mx:text id="siteurl" />/<input type="text" name="pkgpath"></td> </tr> <tr> <td>Database tables prefix : </td> <td><input type="text" name="tblprefix"></td> </tr> <tr> <td><input type="submit" value="Continue"></td> </tr> </table> </form> </body> </html> |