,
+ for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
+ Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
+
+ Contributor(s):
+*#
+#*
+ Parameters:
+ modlist = List of module file names which are not yet installed.
+*#
+#header1( "Uninstall Modules" )
+Return to Previous Menu
+#if( $modlist.isEmpty() )
+ No modules are curently installed in the system.
+#else
+ The following modules are presently installed on the system. Click a module's name to uninstall it.
+
+
+ Name |
+ Description |
+
+ #foreach( $x in $modlist )
+ #set( $en = "#encodeURL( $x.name )" )
+
+ #encodeHTML( $x.name ) |
+ #encodeHTML( $x.descr ) |
+
+ #end
+
+#end
diff --git a/venice-data/velocity/sysadmin/module_uninstall_result.vm b/venice-data/velocity/sysadmin/module_uninstall_result.vm
new file mode 100644
index 0000000..5a46d3b
--- /dev/null
+++ b/venice-data/velocity/sysadmin/module_uninstall_result.vm
@@ -0,0 +1,39 @@
+#*
+ The contents of this file are subject to the Mozilla Public License Version 1.1
+ (the "License"); you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at .
+
+ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
+ WARRANTY OF ANY KIND, either express or implied. See the License for the specific
+ language governing rights and limitations under the License.
+
+ The Original Code is the Venice Web Communities System.
+
+ The Initial Developer of the Original Code is Eric J. Bowersox ,
+ for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
+ Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
+
+ Contributor(s):
+*#
+#*
+ Parameters:
+ module = The name of the module we were uninstalling
+ except = The exception that occurred if uninstall failed (null on success)
+ log = List containing log messages from the uninstallation
+*#
+#header2( "Uninstall Module:" $module )
+#if( $except )
+ The uninstallation of module #encodeHTML( $module ) failed. The following is the exception that was
+ thrown by uninstallation:
+ #stacktrace( $except )
+#else
+ The uninstallation of module #encodeHTML( $module ) was completed successfully.
+#end
+The following are the log messages generated by module uninstallation:
+
+ #foreach( $x in $log )
+ #encodeHTML( $x )
+ #end
+ |
+Uninstall more modules
+Return to previous menu