Index: openacs-4/contrib/obsolete-packages/bboard/bboard.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/bboard/bboard.info,v
diff -u -r1.4 -r1.5
--- openacs-4/contrib/obsolete-packages/bboard/bboard.info 21 Nov 2001 01:26:11 -0000 1.4
+++ openacs-4/contrib/obsolete-packages/bboard/bboard.info 16 Jan 2003 13:43:29 -0000 1.5
@@ -111,7 +111,6 @@
-
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs-postgres.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs.tcl,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs.tcl 3 Aug 2001 21:09:20 -0000 1.2
+++ openacs-4/packages/acs-subsite/tcl/plpgsql-utility-procs.tcl 16 Jan 2003 13:38:14 -0000 1.3
@@ -29,6 +29,12 @@
return [generate_attribute_parameter_call -prepend $prepend $function_name $the_list]
}
+ ad_proc -private get_function_args {function_name} {
+ uncached version returns list of lists args
+ called from generate_attribute_parameter_call
+ } {
+ return [db_list_of_lists get_function_args {}]
+ }
ad_proc -public generate_attribute_parameter_call {
{ -prepend "" }
@@ -41,14 +47,8 @@
@creation-date 07/2001
} {
- ns_log Notice "*** $function_name [join $pairs "\n"]"
# Get the list of real args to the function
- set real_args [db_list_of_lists get_function_args "
- select arg_name, arg_default
- from acs_function_args
- where function = upper(:function_name)
- order by arg_seq
- "]
+ set real_args [util_memoize [list plpgsql_utility::get_function_args $function_name]]
foreach row $pairs {
set attr [string trim [lindex $row 0]]
@@ -84,12 +84,7 @@
@creation-date 07/2001
} {
- return [db_string fetch_type "
- select data_type
- from user_tab_columns
- where table_name = upper(:table)
- and column_name = upper(:column)
- "]
+ return [db_string fetch_type {}]
}
ad_proc -public generate_attribute_parameters {
Index: openacs-4/packages/acs-subsite/www/index-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/Attic/index-oracle.xql,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-subsite/www/index-oracle.xql 30 Apr 2001 20:07:31 -0000 1.1
+++ openacs-4/packages/acs-subsite/www/index-oracle.xql 16 Jan 2003 13:38:49 -0000 1.2
@@ -19,6 +19,7 @@
from site_nodes n
where n.parent_id = :node_id
and n.object_id is not null
+ order by name
Index: openacs-4/packages/acs-subsite/www/index-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/Attic/index-postgresql.xql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/acs-subsite/www/index-postgresql.xql 30 Apr 2001 20:07:31 -0000 1.3
+++ openacs-4/packages/acs-subsite/www/index-postgresql.xql 16 Jan 2003 13:38:49 -0000 1.4
@@ -19,6 +19,7 @@
from site_nodes n
where n.parent_id = :node_id
and n.object_id is not null
+ order by name
Index: openacs-4/packages/acs-subsite/www/index.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/index.adp,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-subsite/www/index.adp 16 Sep 2002 12:58:04 -0000 1.4
+++ openacs-4/packages/acs-subsite/www/index.adp 16 Jan 2003 13:38:49 -0000 1.5
@@ -13,9 +13,11 @@
- Administration
+
+
@subsite_name@ Administration
+
-login
-logout
+Login
+Logout
Index: openacs-4/packages/acs-subsite/www/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/index.tcl,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/acs-subsite/www/index.tcl 16 Sep 2002 12:58:04 -0000 1.5
+++ openacs-4/packages/acs-subsite/www/index.tcl 16 Jan 2003 13:38:49 -0000 1.6
@@ -28,11 +28,8 @@
set node_id [ad_conn node_id]
-db_multirow nodes site_nodes {
- select site_node.url(n.node_id) as url, acs_object.name(n.object_id) as name
- from site_nodes n
- where n.parent_id = :node_id
- and n.object_id is not null
-}
+db_multirow nodes site_nodes {}
+set login_url "register/?[export_vars { { return_url {[ad_conn url]}} }]"
+
ad_return_template
Index: openacs-4/packages/acs-subsite/www/admin/host-node-map/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/admin/host-node-map/index.tcl,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-subsite/www/admin/host-node-map/index.tcl 18 Sep 2002 14:54:50 -0000 1.4
+++ openacs-4/packages/acs-subsite/www/admin/host-node-map/index.tcl 16 Jan 2003 13:39:35 -0000 1.5
@@ -29,6 +29,7 @@
db_foreach node_list {
select name, node_id
from site_nodes
+ order by name
} {
append nodes " /$name
"
}
Index: openacs-4/packages/acs-subsite/www/admin/host-node-map/index.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/admin/host-node-map/index.xql,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-subsite/www/admin/host-node-map/index.xql 10 Oct 2001 18:15:13 -0000 1.1
+++ openacs-4/packages/acs-subsite/www/admin/host-node-map/index.xql 16 Jan 2003 13:39:35 -0000 1.2
@@ -7,6 +7,7 @@
select name, node_id
from site_nodes
+ order by name
Index: openacs-4/packages/acs-subsite/www/admin/site-map/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/admin/site-map/index.tcl,v
diff -u -r1.10 -r1.11
--- openacs-4/packages/acs-subsite/www/admin/site-map/index.tcl 4 Dec 2002 16:41:17 -0000 1.10
+++ openacs-4/packages/acs-subsite/www/admin/site-map/index.tcl 16 Jan 2003 13:40:07 -0000 1.11
@@ -202,6 +202,11 @@
doc_body_append "\n"
}
+ # If this is a site-wide admin, offer a link to the package manager
+ if { [ad_permission_p 0 admin] } {
+ doc_body_append "\n"
+ }
+
doc_body_append "
Index: openacs-4/packages/acs-subsite/www/admin/site-map/package-new.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/admin/site-map/package-new.tcl,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/acs-subsite/www/admin/site-map/package-new.tcl 20 Dec 2002 13:58:16 -0000 1.5
+++ openacs-4/packages/acs-subsite/www/admin/site-map/package-new.tcl 16 Jan 2003 13:40:07 -0000 1.6
@@ -15,6 +15,11 @@
root_id:integer,optional
}
+if { [string equal $package_key "/new"] } {
+ ad_returnredirect "/acs-admin/apm/packages-install"
+ ad_script_abort
+}
+
set context_id [db_string context_id {
select parent.object_id as context_id
from site_nodes parent, site_nodes child
Index: openacs-4/packages/acs-subsite/www/permissions/index-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/permissions/index-oracle.xql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-subsite/www/permissions/index-oracle.xql 28 Nov 2001 18:39:39 -0000 1.2
+++ openacs-4/packages/acs-subsite/www/permissions/index-oracle.xql 16 Jan 2003 13:40:36 -0000 1.3
@@ -5,15 +5,20 @@
-
- select distinct o.object_id, acs_object.name(o.object_id) as name
- from acs_objects o, all_object_party_privilege_map map
- where map.object_id = o.object_id
- and map.party_id = :user_id
- and map.privilege = 'admin'
-
+ select o.object_id, acs_object.name(o.object_id) as name, context_id, object_type,
+ (case when o.object_id = :root then 0 else 1 end) as child
+ from acs_objects o
+ where exists (
+ SELECT 1
+ FROM all_object_party_privilege_map map
+ WHERE map.object_id = o.object_id
+ and map.party_id = :user_id
+ and map.privilege = 'admin')
+ and (o.object_id = :root or o.context_id = :root)
+ order by child, object_type, name
+
Index: openacs-4/packages/acs-subsite/www/permissions/index-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/permissions/index-postgresql.xql,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-subsite/www/permissions/index-postgresql.xql 13 Dec 2001 02:00:01 -0000 1.4
+++ openacs-4/packages/acs-subsite/www/permissions/index-postgresql.xql 16 Jan 2003 13:40:36 -0000 1.5
@@ -5,13 +5,16 @@
-
- select distinct o.object_id, acs_object__name(o.object_id) as name
- from acs_objects o, all_object_party_privilege_map map
- where map.object_id = o.object_id
- and map.party_id = :user_id
- and map.privilege = 'admin'
-
+ select o.object_id, acs_object__name(o.object_id) as name, context_id, object_type,
+ (case when o.object_id = :root then 0 else 1 end) as child
+ from acs_objects o
+ where exists ( SELECT 1
+ FROM acs_permissions_all map
+ WHERE map.object_id = o.object_id
+ and map.grantee_id = :user_id
+ and map.privilege = 'admin')
+ and (o.object_id = :root or o.context_id = :root)
+ order by child, object_type, name
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-subsite/www/permissions/index.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/acs-subsite/www/permissions/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/permissions/index.tcl,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-subsite/www/permissions/index.tcl 13 Mar 2001 22:59:26 -0000 1.1
+++ openacs-4/packages/acs-subsite/www/permissions/index.tcl 16 Jan 2003 13:40:37 -0000 1.2
@@ -1,46 +1,28 @@
# packages/acs-core-ui/www/permissions/index.tcl
-
ad_page_contract {
- Display all objects that the user has admin on.
-
- @author rhs@mit.edu
- @creation-date 2000-08-29
- @cvs-id $Id$
+ Display all objects that the user has admin on.
+
+ Templated and changed to browse heirarchy by davis@xarg.net
+ since all objects can be a *lot* of objects.
+
+ @author rhs@mit.edu
+ @creation-date 2000-08-29
+ @cvs-id $Id$
+} {
+ root:trim,integer,optional
}
set user_id [ad_maybe_redirect_for_registration]
-doc_body_append "[ad_header "Permissions"]
+set context "Permissions"
-Permissions
-
-[ad_context_bar "Permissions"]
-
-
-
-
-You have admin on the following objects:
-
-
-"
-
-db_foreach adminable_objects {
- select o.object_id, acs_object.name(o.object_id) as name
- from acs_objects o, acs_object_party_privilege_map map
- where map.object_id = o.object_id
- and map.party_id = :user_id
- and map.privilege = 'admin'
-} {
- doc_body_append " - $name
\n"
-} if_no_rows {
- doc_body_append " - (none)
\n"
+if {![exists_and_not_null root]} {
+ set root [ad_conn package_id]
}
-doc_body_append "
-
+db_multirow objects adminable_objects { *SQL* }
-[ad_footer]
-"
+set security_context_root [acs_magic_object security_context_root]
+set default_context [acs_magic_object default_context]
+set admin_p [permission::permission_p -object_id $security_context_root -party_id $user_id -privilege admin]
+set subsite [ad_conn package_id]
Index: openacs-4/packages/acs-subsite/www/permissions/one-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/permissions/one-oracle.xql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/acs-subsite/www/permissions/one-oracle.xql 7 Dec 2001 22:45:41 -0000 1.3
+++ openacs-4/packages/acs-subsite/www/permissions/one-oracle.xql 16 Jan 2003 13:40:37 -0000 1.4
@@ -45,9 +45,9 @@
- select acs_object.name(context_id)
- from acs_objects
- where object_id = :object_id
+SELECT acs_object.name(context_id) as context_name, context_id, security_inherit_p
+ FROM acs_objects
+ WHERE object_id = :object_id
@@ -56,7 +56,7 @@
- select object_id as c_object_id,acs_object.name(object_id) as c_name
+ select object_id as c_object_id,acs_object.name(object_id) as c_name, object_type as c_type
from acs_objects o
where context_id = :object_id
and exists (select 1
Index: openacs-4/packages/acs-subsite/www/permissions/one-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/permissions/one-postgresql.xql,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-subsite/www/permissions/one-postgresql.xql 7 Dec 2001 22:46:40 -0000 1.4
+++ openacs-4/packages/acs-subsite/www/permissions/one-postgresql.xql 16 Jan 2003 13:40:37 -0000 1.5
@@ -44,27 +44,26 @@
-
- select acs_object__name(context_id)
- from acs_objects
- where object_id = :object_id
+SELECT acs_object__name(context_id) as context_name, context_id, security_inherit_p
+ FROM acs_objects
+ WHERE object_id = :object_id
+
- select object_id as c_object_id,acs_object__name(object_id) as c_name
+ select object_id as c_object_id,acs_object__name(object_id) as c_name, object_type as c_type
from acs_objects o
where context_id = :object_id
and exists (select 1
- from all_object_party_privilege_map
+ from acs_permissions_all
where object_id = o.object_id
- and party_id = :user_id
+ and grantee_id = :user_id
and privilege = 'admin')
-
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-subsite/www/permissions/one.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/acs-subsite/www/pvt/unsubscribe-2-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/pvt/Attic/unsubscribe-2-postgresql.xql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/acs-subsite/www/pvt/unsubscribe-2-postgresql.xql 15 May 2001 16:59:01 -0000 1.3
+++ openacs-4/packages/acs-subsite/www/pvt/unsubscribe-2-postgresql.xql 16 Jan 2003 13:41:15 -0000 1.4
@@ -15,11 +15,7 @@
- FIX ME PLSQL
-
-begin
- membership_rel__deleted( rel_id => :rel_id );
-end;
+ begin return membership_rel__deleted(:rel_id); end;
Index: openacs-4/packages/acs-tcl/acs-tcl.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/acs-tcl.info,v
diff -u -r1.23 -r1.24
--- openacs-4/packages/acs-tcl/acs-tcl.info 19 Jul 2002 23:17:15 -0000 1.23
+++ openacs-4/packages/acs-tcl/acs-tcl.info 16 Jan 2003 13:41:42 -0000 1.24
@@ -25,6 +25,7 @@
+
Index: openacs-4/packages/acs-tcl/tcl/community-core-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/community-core-procs.tcl,v
diff -u -r1.12 -r1.13
--- openacs-4/packages/acs-tcl/tcl/community-core-procs.tcl 13 Sep 2002 10:43:57 -0000 1.12
+++ openacs-4/packages/acs-tcl/tcl/community-core-procs.tcl 16 Jan 2003 13:41:57 -0000 1.13
@@ -171,7 +171,7 @@
set person(person_id) $person_id
set person(first_names) $first_names
- set person(last_name) $last_names
+ set person(last_name) $last_name
return [array get person]
}
Index: openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl,v
diff -u -r1.29 -r1.30
--- openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 11 Jan 2003 10:43:23 -0000 1.29
+++ openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 16 Jan 2003 13:41:57 -0000 1.30
@@ -672,7 +672,7 @@
set error_url [ad_conn url]
if { [llength [info procs ds_collection_enabled_p]] == 1 && [ds_collection_enabled_p] } {
- ds_add conn error $message
+ ad_call_proc_if_exists ds_add conn error $message
}
if {![ad_parameter -package_id [ad_acs_kernel_id] "RestrictErrorsToAdminsP" dummy 0] || \
Index: openacs-4/packages/acs-tcl/tcl/site-nodes-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/site-nodes-procs.tcl,v
diff -u -r1.17 -r1.18
--- openacs-4/packages/acs-tcl/tcl/site-nodes-procs.tcl 15 Sep 2002 22:10:50 -0000 1.17
+++ openacs-4/packages/acs-tcl/tcl/site-nodes-procs.tcl 16 Jan 2003 13:41:57 -0000 1.18
@@ -112,6 +112,9 @@
returns an array representing the site node that matches the given url
either url or node_id is required, if both are passed url is ignored
+
+ The array elements are: package_id, package_key, object_type, directory_p,
+ instance_namem, pattern_p, parent_id, node_id, object_id, url.
} {
if {[empty_string_p $url] && [empty_string_p $node_id]} {
error "site_node::get \"must pass in either url or node_id\""
@@ -131,6 +134,8 @@
{-node_id:required}
} {
returns an array representing the site node for the given node_id
+
+ @see site_node::get
} {
return [get_from_url -url [get_url -node_id $node_id]]
}
@@ -139,6 +144,8 @@
{-url:required}
} {
returns an array representing the site node that matches the given url
+
+ @see site_node::get
} {
# attempt an exact match
if {[nsv_exists site_nodes $url]} {
@@ -332,9 +339,9 @@
{-sync_p "t"}
{-return "package_id"}
parent_node_id
- instance_name
+ url_path_component
package_key
- package_name
+ instance_name
} {
Creates a new instance of the specified package and mounts it
beneath parent_node_id.
@@ -343,17 +350,16 @@
@creation-date 2001-02-05
@param sync_p If "t", we flush the in-memory site map
- @param return You can specify what is returned: the package_id or node_id
- (now ignored, always return package_id)
+ @param return (now ignored, always return package_id)
@param parent_node_id The node under which we are mounting this
application
- @param instance_name The instance name for the new site node
+ @param url_path_component the url for the mounted instance (appended to the parent_node
+ url)
@param package_key The type of package we are mounting
- @param package_name The name we want to give the package we are
- mounting.
- @return The package id of the newly mounted package or the new
- node id, based on the value of $return
+ @param instance_name The name we want to give the package we are
+ mounting (used for the context bar string etc).
+ @return The package id of the newly mounted package
} {
# if there is an object mounted at the parent_node_id then use that
# object_id, instead of the parent_node_id, as the context_id
@@ -365,11 +371,11 @@
}
return [site_node_apm_integration::new_site_node_and_package \
- -name $instance_name \
- -parent_id $parent_node_id \
- -package_key $package_key \
- -instance_name $package_name \
- -context_id $context_id \
+ -name $url_path_component \
+ -parent_id $parent_node_id \
+ -package_key $package_key \
+ -instance_name $instance_name \
+ -context_id $context_id \
]
}
Index: openacs-4/packages/acs-tcl/tcl/user-extensions-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/user-extensions-procs.tcl,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-tcl/tcl/user-extensions-procs.tcl 10 Sep 2002 22:22:14 -0000 1.2
+++ openacs-4/packages/acs-tcl/tcl/user-extensions-procs.tcl 16 Jan 2003 13:41:57 -0000 1.3
@@ -1,7 +1,9 @@
ad_library {
- Procs to manage extensions to user data
+ Procs to manage extensions to user data.
+ This calls the UserData service contract for allowing packages to be notified
+ of changes in user information.
@author ben@openforce.net
@creation-date 2002-01-22
@@ -16,6 +18,11 @@
{-list_of_args:required}
{-impl ""}
} {
+
+ Dispatches (calls the service contract routines) the requested
+ method so that the operation gets executed.
+
+ } {
if {[empty_string_p $impl]} {
set extensions [list_extensions]
} else {
Index: openacs-4/packages/acs-tcl/tcl/user-extensions-procs.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/user-extensions-procs.xql,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-tcl/tcl/user-extensions-procs.xql 23 Jan 2002 02:06:53 -0000 1.1
+++ openacs-4/packages/acs-tcl/tcl/user-extensions-procs.xql 16 Jan 2003 13:41:57 -0000 1.2
@@ -5,11 +5,14 @@
-select impl_name from acs_sc_impls, acs_sc_bindings, acs_sc_contracts
-where
-acs_sc_impls.impl_id = acs_sc_bindings.impl_id and
-acs_sc_contracts.contract_id= acs_sc_bindings.contract_id and
-acs_sc_contracts.contract_name='UserData'
+ select
+ impl_name from acs_sc_impls, acs_sc_bindings, acs_sc_contracts
+ where
+ acs_sc_impls.impl_id = acs_sc_bindings.impl_id
+ and
+ acs_sc_contracts.contract_id = acs_sc_bindings.contract_id
+ and
+ acs_sc_contracts.contract_name = 'UserData'
Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v
diff -u -r1.24 -r1.25
--- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 10 Jan 2003 13:13:07 -0000 1.24
+++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 16 Jan 2003 13:41:57 -0000 1.25
@@ -3280,7 +3280,6 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id$
# Version 1.0 implemented Base64_Encode, Bae64_Decode
# Version 2.0 uses the base64 namespace
Index: openacs-4/packages/acs-templating/resources/forms/wizard.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/resources/forms/wizard.adp,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-templating/resources/forms/wizard.adp 13 Jan 2003 15:23:30 -0000 1.4
+++ openacs-4/packages/acs-templating/resources/forms/wizard.adp 16 Jan 2003 13:42:09 -0000 1.5
@@ -96,8 +96,6 @@
-
-
Index: openacs-4/packages/adserver/adserver.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/adserver/adserver.info,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/adserver/adserver.info 23 Sep 2002 23:32:07 -0000 1.3
+++ openacs-4/packages/adserver/adserver.info 16 Jan 2003 13:42:37 -0000 1.4
@@ -18,7 +18,7 @@
2001-07-09
furfly.net, LLC
-
+
@@ -68,7 +68,6 @@
-
@@ -91,7 +90,6 @@
-
Index: openacs-4/packages/attachments/attachments.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/attachments.info,v
diff -u -r1.7 -r1.8
--- openacs-4/packages/attachments/attachments.info 17 Sep 2002 21:08:37 -0000 1.7
+++ openacs-4/packages/attachments/attachments.info 16 Jan 2003 13:42:58 -0000 1.8
@@ -53,8 +53,6 @@
-
-
Index: openacs-4/packages/attachments/www/go-to-attachment.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/go-to-attachment.tcl,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/attachments/www/go-to-attachment.tcl 7 Nov 2002 15:11:50 -0000 1.3
+++ openacs-4/packages/attachments/www/go-to-attachment.tcl 16 Jan 2003 13:43:15 -0000 1.4
@@ -26,7 +26,8 @@
}
content_item {
- ad_returnredirect "download/$object_id?object_id=$object_id&attachment_id=$attachment_id"
+ set title [db_string select_attachment_title {}]
+ ad_returnredirect "download/[ad_urlencode $title]?object_id=$object_id&attachment_id=$attachment_id"
ad_script_abort
return
}
Index: openacs-4/packages/attachments/www/go-to-attachment.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/go-to-attachment.xql,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/attachments/www/go-to-attachment.xql 2 Jul 2002 19:41:20 -0000 1.1
+++ openacs-4/packages/attachments/www/go-to-attachment.xql 16 Jan 2003 13:43:15 -0000 1.2
@@ -23,5 +23,14 @@
+
+
+
+ select r.title
+ from cr_revisions r, cr_items i
+ where i.item_id = :attachment_id
+ and r.revision_id = i.live_revision
+
+
Index: openacs-4/packages/bug-tracker/www/bug-submission-instructions.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/www/bug-submission-instructions.html,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/bug-tracker/www/bug-submission-instructions.html 20 Sep 2002 15:08:57 -0000 1.1
+++ openacs-4/packages/bug-tracker/www/bug-submission-instructions.html 16 Jan 2003 13:43:58 -0000 1.2
@@ -60,11 +60,11 @@
like.
- Jeff
+ Jeff
Davis
-Last modified: Fri Mar 2 10:24:36 EST 2001
+Last modified: Fri Dec 13 06:36:53 EST 2002