Index: openacs-4/packages/acs-core-docs/www/tutorial-categories.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/tutorial-categories.html,v diff -u -N -r1.5 -r1.6 --- openacs-4/packages/acs-core-docs/www/tutorial-categories.html 22 Jun 2004 12:54:10 -0000 1.5 +++ openacs-4/packages/acs-core-docs/www/tutorial-categories.html 16 Feb 2005 00:21:03 -0000 1.6 @@ -1,4 +1,7 @@ -Categories

Categories

You can associate any ACS Object with one or more categories. +Categories

Categories

extended by Nima Mazloumi

+ OpenACS docs are written by the named authors, and may be edited + by OpenACS documentation staff. +

You can associate any ACS Object with one or more categories. In this tutorial we'll show how to equip your application with user interface to take advantage of the Categories service.

@@ -28,17 +31,15 @@ /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/myfirstpackage/www/admin/index.tcl file:

-set category_map_url [export_vars -base \
-    "[site_node::get_package_url -package_key categories]cadmin/one-object" \
-        { { object_id $package_id } }]
+		  set category_map_url [export_vars -base "[site_node::get_package_url -package_key categories]cadmin/one-object" { { object_id $package_id } }]
           

and the following snippet to your /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/myfirstpackage/www/admin/index.adp file:

-<li><a href="@category_map_url@"
-      class="action_link">Site-Wide Categories</a>
-          

The link created by the above code will take the admin to the generic + <a href="@category_map_url@"<#categories.Site_wide_Categories#</a> +

The link created by the above code (category_map_url) + will take the admin to the generic admin UI where he can pick category trees that make sense for this application. The same UI also includes facilities to build and edit category trees. Notice that the only parameter in this example is @@ -60,49 +61,34 @@ To achieve this we'll need to use the -extend switch to the ad_form command. Here's the "meat" of the note-edit.tcl page:

-ad_form -name note -form {
-    {item_id:key}
-    {title:text {label Title}}
-}
+			    #extend the form to support categories
+			    set package_id [ad_conn package_id]
+			    
+    			category::ad_form::add_widgets -form_name note -container_object_id $package_id -categorized_object_id [value_if_exists item_id]
 
-set package_id [ad_conn package_id]
-
-set category_trees [category_tree::get_mapped_trees $package_id]
-
-foreach tree $category_trees {
-    foreach { tree_id name subtree_id } $tree {}
-    ad_form -extend -name note -form \
-        [list [list category_id_${tree_id}:integer(category),optional \
-                   {label $name} \
-                   {html {single single}} \
-                   {category_tree_id $tree_id} \
-                   {category_subtree_id $subtree_id} \
-                   {category_object_id {[value_if_exists entry_id]}}]]
-}
-
-ad_form -extend \
-  -name note \
-  -new_request {
-    permission::require_permission -object_id [ad_conn package_id] -privilege create
-    set page_title "Add a Note"
-    set context [list $page_title]
-} -edit_request {
-    permission::require_write_permission -object_id $item_id
-    mfp::note::get \
-    -item_id $item_id \
-    -array note_array
-
-    set title $note_array(title)
-
-    set page_title "Edit a Note"
-    set context [list $page_title]
-} -new_data {
-    mfp::note::add \
-    -title $title
-} -after_submit {
-    ad_returnredirect "."
-    ad_script_abort
-}

This page requires a + ad_form -extend -name note -on_submit { + set category_ids [category::ad_form::get_categories -container_object_id $package_id] + } -new_data { + .... + category::map_object -remove_old -object_id $item_id $category_ids + db_dml insert_asc_named_object "insert into acs_named_objects (object_id, object_name, package_id) values ( :item_id, :title, :package_id)" + } -edit_data { + .... + db_dml update_asc_named_object "update acs_named_objects set object_name = :title, package_id = :package_id where object_id = :item_id" + category::map_object -remove_old -object_id $item_id $category_ids + } -after_submit { + ad_returnredirect "." + ad_script_abort + } +

While the category::ad_form::add_widgets proc is taking + care to extend your form with associated categories you need to ensure that your items are mapped + to the corresponding category object yourself. Also since the categories package knows nothing from + your objects you have to keep the acs_named_objects table updated with + any changes taking place. We use the items title so that they are listed in the categories browser by + title.

Make sure that you also delete these entries if your item is delete. Add this to + your corresponding delete page:

+			db_dml delete_named_object "delete from acs_named_objects where object_id = :item_id"
+			

note-edit.tcl requires a note_id to determine which record should be deleted. It also looks for a confirmation variable, which should initially be absert. If it is absent, we create a form to @@ -135,4 +121,149 @@ formtemplate tag outputs the HTML form generated by the ad_form command with the matching name. Test it by adding the new files in the APM and then deleting a few - samplenotes.

View comments on this page at openacs.org
+ samplenotes.

  • We will now make categories optional on package instance level and + also add a configuration page to allow the package admin to enable/disable + categories for his package. +

    Go to the APM and create a number parameter with the name "EnableCategoriesP" + and the default value "0".

    Add the following lines to your index.tcl:

    +          set return_url [ns_conn url]
    +          set use_categories_p [parameter::get -parameter "EnableCategoriesP"]
    +          

    Change your to this:

    +			<a href=configure?<%=[export_url_vars return_url]%>>Configure</a>
    +			<if @use_categories_p@>
    +   			<a href="@category_map_url@"<#categories.Site_wide_Categories#</a>
    +   			</if>
    +          

    Now create a configure page

    +          	ad_page_contract {
    +    			This page allows an admin to change the categories usage mode.
    +			} {
    +    			{return_url ""}
    +			}
    +
    +			set title "Configure category mode"
    +			set context [list $title]
    +			set use_categories_p [parameter::get -parameter "EnableCategoriesP"]
    +
    +			ad_form -name categories_mode -form {
    +    			{enabled_p:text(radio)
    +        			{label "Enable Categories"}
    +        			{options {{Yes 1} {No 0}}}
    +        			{value $use_categories_p}
    +    			}
    +    			{return_url:text(hidden) {value $return_url}}
    +    			{submit:text(submit) {label "Set Mode"}}
    +			} -on_submit {
    +    			parameter::set_value  -parameter "EnableCategoriesP" -value $enabled_p
    +    			if {![empty_string_p $return_url]} {
    +        			ns_returnredirect $return_url
    +    			}
    +			}
    +           

    and add this to its corresponding ADP page

    +          	<master>
    +			<property name="title">@title@</property>
    +			<property name="context">@context@</property>
    +
    +			<formtemplate id="categories_mode"></formtemplate>
    +	      

    Reference this page from your admin page

    +		#TCL:
    +		set return_url [ad_conn url]
    +
    +		#ADP:
    +		<a href=configure?<%=[export_url_vars return_url]%>>Configure</a>
    +		

    Change the note-edit.tcl:

    +		# Use Categories?
    +		set use_categories_p [parameter::get -parameter "EnableCategoriesP" -default 0]
    +		if { $use_categories_p == 1 } {
    +			# YOUR NEW FORM DEFINITION
    +		} else {
    +    		# YOUR OLD FORM DEFINITION
    +		}
    +	
  • You can filter your notes using categories. The below example does not support multiple + filters and displays a category in a flat format.

    The first step is to + define the optional parameter category_id for + index.tcl:

    + 	  	ad_page_contract {
    +  		YOUR TEXT
    +		} {
    +			YOURPARAMS
    +    		{category_id:integer,optional {}}
    +		}
    + 	  

    Now you have to check whether categories are enabled or not. If this is the case and a + category id is passed you need to extend your sql select query to support filtering. One + way would be to extend the mfp::note::get proc to + support two more swiches -where_clause and + -from_clause.

    + 	  	set use_categories_p [parameter::get -parameter "EnableCategoriesP" -default 0]
    +
    +		if { $use_categories_p == 1 && [exists_and_not_null category_id] } {
    +
    +			set from_clause "category_object_map com, acs_named_objects nam"
    +			set_where_clause "com.object_id = qa.entry_id and
    +								nam.package_id = :package_id and
    +								com.object_id = nam.object_id and
    +								com.category_id = :category_id"
    +			
    +			...
    +								
    +    		mfp::note::get \
    +    		-item_id $item_id \
    +    		-array note_array \
    +    		-where_clause $where_clause \
    +    		-from_clause $from_clause
    +    		
    +    		...
    +		} else {
    +    		# OLD STUFF
    +		}
    + 	  

    Also you need to make sure that the user can see the corresponding categories. Add the following + snippet to the end of your index page:

    + 	  # Site-Wide Categories
    +		if { $use_categories_p == 1} {
    +    		set package_url [ad_conn package_url]
    +    		if { ![empty_string_p $category_id] } {
    +        		set category_name [category::get_name $category_id]
    +        		if { [empty_string_p $category_name] } {
    +            		ad_return_exception_page 404 "No such category" "Site-wide \
    +          			Category with ID $category_id doesn't exist"
    +            		return
    +        		}
    +        		# Show Category in context bar
    +        		append context_base_url /cat/$category_id
    +        		lappend context [list $context_base_url $category_name]
    +        		set type "all"
    +    		}
    +
    +    		# Cut the URL off the last item in the context bar
    +    		if { [llength $context] > 0 } {
    +        		set context [lreplace $context end end [lindex [lindex $context end] end]]
    +    		}
    +
    +    		db_multirow -unclobber -extend { category_name tree_name } categories categories {
    +        		select c.category_id as category_id, c.tree_id
    +        		from   categories c, category_tree_map ctm
    +        		where  ctm.tree_id = c.tree_id
    +        		and    ctm.object_id = :package_id
    +    		} {
    +        		set category_name [category::get_name $category_id]
    +        		set tree_name [category_tree::get_name $tree_id]
    +    		}
    +		}
    +		

    and to the corresponding index ADP page:

    +		<if @use_categories_p@>
    + 			<multiple name="categories">
    +           		<h2>@categories.tree_name@
    +           		<group column="tree_id">
    +             		<a href="@package_url@cat/@categories.category_id@?@YOURPARAMS@&category_id=@categories.category_id@">@categories.category_name@
    +           		</group>
    +         	</multiple>
    +		<a href="@package_url@view?@YOURPARAMS@">All Items</if>
    + 	  

    Finally you need a an index.vuh in your + www folder to rewrite the URLs correctly, the section called “Using .vuh files for pretty urls”:

    + 	  	set url /[ad_conn extra_url]
    +
    +		if {[regexp {^/+cat/+([^/]+)/*} $url \
    +          ignore_whole category_id]} {
    +          rp_form_put category_id $category_id
    +		}
    +		rp_internal_redirect "/packages/YOURPACKAGE/www/index" 	  
    + 	  

    Now when ever the user select a category only notes that belong to this category are displayed.

  • View comments on this page at openacs.org