Index: openacs-4/packages/bookmarks/bookmarks.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bookmarks/bookmarks.info,v diff -u -r1.19 -r1.20 --- openacs-4/packages/bookmarks/bookmarks.info 9 Sep 2001 00:00:30 -0000 1.19 +++ openacs-4/packages/bookmarks/bookmarks.info 11 Sep 2001 19:53:11 -0000 1.20 @@ -138,6 +138,7 @@ + Index: openacs-4/packages/bookmarks/www/one-host.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bookmarks/www/one-host.xql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/bookmarks/www/one-host.xql 11 Sep 2001 19:53:11 -0000 1.1 @@ -0,0 +1,22 @@ + + + + + + + select u.first_names || ' ' || u.last_name as name, + bml.local_title, + complete_url + from cc_users u, + bm_bookmarks bml, + bm_urls bmu + where u.user_id = bml.owner_id + and bml.url_id = bmu.url_id + and bmu.host_url = :host_url + order by name + + + + + +