Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml,v
diff -u -r1.35 -r1.36
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml 13 Aug 2004 15:58:49 -0000 1.35
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml 13 Aug 2004 23:34:09 -0000 1.36
@@ -1,4 +1,4 @@
-
+
@@ -1171,6 +1171,7 @@
+
Scheduled Procedures
Put this proc in a file /packages/myfirstpackage/tcl/scheduled-init.tcl. Files in /tcl with the -init.tcl ending are sourced on server startup. This one executes my_proc every 60 seconds:
@@ -1184,6 +1185,15 @@
See ad_schedule_proc for more information.
+
+
+ Distributing upgrades of your package
+
+ by Jade Rubick.
+
+ Not completed yet
+
+
Enabling WYSIWYG
@@ -1321,6 +1331,34 @@
+
+ Adding in parameters for your package
+ Each instance of a package can have paramaters associated
+ with it. These are like preferences, and they can be set by the
+ administrator for each application to change the behavior of your
+ application.
+
+ To add parameters for your package, go to the Automatic
+ Package Manager (/acs-admin/apm)
+
+ Click on your package
+
+ Under the Manage section, click on Parameters
+
+ It's fairly self-explanatory at this point. Create the
+ parameters you want, and then access them in your code using the
+ parameter::get procedure.
+
+
+
+
+ Distributing upgrades of your package
+
+ by Jade Rubick.
+
+ Not completed yet
+
+
Future Topics