Index: openacs-4/packages/cms/tcl/content-method-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/cms/tcl/content-method-procs.xql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/cms/tcl/content-method-procs.xql 17 Aug 2001 04:31:38 -0000 1.3 +++ openacs-4/packages/cms/tcl/content-method-procs.xql 20 Aug 2001 04:35:41 -0000 1.4 @@ -1,39 +1,74 @@ - - - select count(*) - from cr_content_mime_type_map - where mime_type like ('%text/%') - and content_type = :content_type - - - - + + + + select count(*) + from cr_content_mime_type_map + where mime_type like ('%text/%') + and content_type = :content_type + + + + + + select + map.content_method + from + cm_content_type_method_map map, cm_content_methods m + where + map.content_method = m.content_method + and + map.content_type = :content_type + $text_entry_filter + + + + + + + + select + content_method + from + cm_content_methods m + where 1 = 1 + $text_entry_filter + + + + + + + + + select - map.content_method + label, map.content_method from - cm_content_type_method_map map, cm_content_methods m + cm_content_methods m, cm_content_type_method_map map where - map.content_method = m.content_method + m.content_method = map.content_method and map.content_type = :content_type $text_entry_filter + + + - - - - - - + + + + select - content_method + label, content_method from cm_content_methods m where 1 = 1 $text_entry_filter + + + - -