Index: openacs-4/packages/acs-core-docs/www/tutorial-advanced.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/tutorial-advanced.html,v diff -u -r1.19.2.3 -r1.19.2.4 --- openacs-4/packages/acs-core-docs/www/tutorial-advanced.html 1 Nov 2004 23:40:15 -0000 1.19.2.3 +++ openacs-4/packages/acs-core-docs/www/tutorial-advanced.html 27 Dec 2004 20:38:03 -0000 1.19.2.4 @@ -1,4 +1,4 @@ -
Table of Contents
Table of Contents
This tutorial covers topics which are not essential to Index: openacs-4/packages/acs-core-docs/www/tutorial-future-topics.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/tutorial-future-topics.html,v diff -u -r1.2.2.3 -r1.2.2.4 --- openacs-4/packages/acs-core-docs/www/tutorial-future-topics.html 1 Nov 2004 23:40:17 -0000 1.2.2.3 +++ openacs-4/packages/acs-core-docs/www/tutorial-future-topics.html 27 Dec 2004 20:38:03 -0000 1.2.2.4 @@ -1,6 +1,6 @@ -
How to enforce security so that users can't +
How to enforce security so that users can't change other users records
How to use the content management tables so that ... what?
How to change the default stylesheets for Form Builder HTML forms.
How to make your package searchable with OpenFTS/Oracle
How to prepare pagelets for inclusion in other pages
How and when to put procedures in a tcl procedure library
More on ad_form - data validation, other stuff. (plan to draw from Jon Griffin's doc)
partialquery in xql
How to use the html/text entry widget to get the - "does this look right" confirm page
APM package dependencies
See also the OpenACS Programming FAQ
APM package dependencies
See also the OpenACS Programming FAQ
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:
ad_schedule_proc 60 myfirstpackage::my_proc +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:
ad_schedule_proc 60 myfirstpackage::my_procThis executes once a day, at midnight:
ad_schedule_proc \ -schedule_proc ns_schedule_daily \ [list 0 0] \ myfirstpackage::my_proc -See ad_schedule_proc for more information.
View comments on this page at openacs.org +
See ad_schedule_proc for more information.