Index: openacs-4/packages/acs-tcl/tcl/apm-xml-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/apm-xml-procs.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-tcl/tcl/apm-xml-procs.tcl 29 Apr 2001 02:15:11 -0000 1.3 +++ openacs-4/packages/acs-tcl/tcl/apm-xml-procs.tcl 9 May 2001 22:32:25 -0000 1.4 @@ -79,7 +79,7 @@ set spec "" db_1row package_version_select { select t.package_key, t.package_uri, t.pretty_name, t.pretty_plural, t.package_type, - t.singleton_p, v.* + t.initial_install_p, t.singleton_p, v.* from apm_package_versions v, apm_package_types t where v.version_id = :version_id and v.package_key = t.package_key @@ -91,6 +91,7 @@ [ad_quotehtml $pretty_name] [ad_quotehtml $pretty_plural] + $initial_install_p $singleton_p @@ -228,6 +229,7 @@ package.url, package.type pretty-plural + initial-install-p singleton-p name (the version name, e.g., 3.3a1, url (the version URL), @@ -286,6 +288,7 @@ set properties(package.url) [apm_required_attribute_value $package url] set properties(package.type) [apm_attribute_value -default "apm_application" $package type] set properties(package-name) [apm_tag_value $package package-name] + set properties(initial-install-p) [apm_tag_value -default "f" $package initial-install-p] set properties(singleton-p) [apm_tag_value -default "f" $package singleton-p] set properties(pretty-plural) [apm_tag_value -default "$properties(package-name)s" $package pretty-plural]