[cvs] commit: incubator/groo book_edit.php book_view.php catalog.php collections.php friends.php index.php isbn.php item.php leases.php list.php search.php search_creator.php tests.php view.php incubator/groo/config conf.xml prefs.php.dist incubator/groo/js ...
Chuck Hagenbuch
chuck at horde.org
Sat Aug 19 20:55:17 PDT 2006
chuck 2006-08-19 20:55:17 PDT
Modified files:
groo index.php search.php
groo/config conf.xml prefs.php.dist
groo/lib Book.php BookTest.php Driver.php
Fetch.php Groo.php base.php version.php
groo/lib/Driver sql.php
groo/lib/Fetch Amazon.php
groo/scripts/sql groo.sql
groo/templates common-header.inc menu.inc
groo/themes screen.css
Added files:
groo collections.php isbn.php item.php
list.php tests.php view.php
groo/js fixUnstyledOptions.js tables.js
groo/lib prefs.php
groo/scripts fetch_untitled.sh
groo/scripts/sql groo_queries.sql
groo/templates/collections collections.inc
groo/templates/isbn isbn_form.inc
groo/templates/item item.inc
groo/templates/list empty.inc header.inc item_footers.inc
item_headers.inc item_summaries.inc
list.inc
groo/templates/prefs collectionselect.inc
groo/templates/search search.inc
groo/templates/view item.inc
groo/themes/graphics add.png az.png collections.png za.png
Removed files:
groo book_edit.php book_view.php catalog.php
friends.php leases.php search_creator.php
groo/lib BookForm.php ISBNForm.php SearchForm.php
groo/lib/Fetch fetch_untitled.sh
groo/scripts/sql test-data.sql
groo/templates queue.html recent_entries.html
search_result.html
Log:
Merge Luciano's new Groo code.
Revision Changes Path
1.2 +0 -25 incubator/groo/Attic/book_edit.php (dead)
1.6 +0 -108 incubator/groo/Attic/book_view.php (dead)
1.6 +0 -166 incubator/groo/Attic/catalog.php (dead)
1.3 +0 -26 incubator/groo/Attic/friends.php (dead)
1.2 +0 -26 incubator/groo/Attic/leases.php (dead)
1.2 +0 -75 incubator/groo/Attic/search_creator.php (dead)
1.1 +114 -0 incubator/groo/collections.php (new)
1.3 +14 -14 incubator/groo/config/conf.xml
1.2 +88 -9 incubator/groo/config/prefs.php.dist
1.3 +13 -15 incubator/groo/index.php
1.1 +148 -0 incubator/groo/isbn.php (new)
1.1 +181 -0 incubator/groo/item.php (new)
1.1 +37 -0 incubator/groo/js/fixUnstyledOptions.js (new)
1.1 +361 -0 incubator/groo/js/tables.js (new)
1.3 +0 -40 incubator/groo/lib/Attic/BookForm.php (dead)
1.3 +0 -70 incubator/groo/lib/Attic/ISBNForm.php (dead)
1.2 +0 -28 incubator/groo/lib/Attic/SearchForm.php (dead)
1.3 +62 -13 incubator/groo/lib/Book.php
1.3 +13 -1 incubator/groo/lib/BookTest.php
1.4 +61 -59 incubator/groo/lib/Driver.php
1.11 +464 -384 incubator/groo/lib/Driver/sql.php
1.6 +15 -3 incubator/groo/lib/Fetch.php
1.7 +3 -3 incubator/groo/lib/Fetch/Amazon.php
1.2 +0 -3 incubator/groo/lib/Fetch/Attic/fetch_untitled.sh (dead)
1.5 +270 -15 incubator/groo/lib/Groo.php
1.3 +82 -8 incubator/groo/lib/base.php
1.1 +28 -0 incubator/groo/lib/prefs.php (new)
1.2 +1 -1 incubator/groo/lib/version.php
1.1 +72 -0 incubator/groo/list.php (new)
1.1 +10 -0 incubator/groo/scripts/fetch_untitled.sh (new)
1.2 +0 -10 incubator/groo/scripts/sql/Attic/test-data.sql (dead)
1.5 +25 -85 incubator/groo/scripts/sql/groo.sql
1.1 +21 -0 incubator/groo/scripts/sql/groo_queries.sql (new)
1.4 +10 -82 incubator/groo/search.php
1.2 +0 -18 incubator/groo/templates/Attic/queue.html (dead)
1.2 +0 -18 incubator/groo/templates/Attic/recent_entries.html (dead)
1.3 +0 -20 incubator/groo/templates/Attic/search_result.html (dead)
1.1 +105 -0 incubator/groo/templates/collections/collections.inc (new)
1.2 +8 -5 incubator/groo/templates/common-header.inc
1.1 +83 -0 incubator/groo/templates/isbn/isbn_form.inc (new)
1.1 +73 -0 incubator/groo/templates/item/item.inc (new)
1.1 +5 -0 incubator/groo/templates/list/empty.inc (new)
1.1 +10 -0 incubator/groo/templates/list/header.inc (new)
1.1 +2 -0 incubator/groo/templates/list/item_footers.inc (new)
1.1 +63 -0 incubator/groo/templates/list/item_headers.inc (new)
1.1 +27 -0 incubator/groo/templates/list/item_summaries.inc (new)
1.1 +42 -0 incubator/groo/templates/list/list.inc (new)
1.3 +35 -0 incubator/groo/templates/menu.inc
1.1 +16 -0 incubator/groo/templates/prefs/collectionselect.inc (new)
1.1 +36 -0 incubator/groo/templates/search/search.inc (new)
1.1 +48 -0 incubator/groo/templates/view/item.inc (new)
1.1 +33 -0 incubator/groo/tests.php (new)
1.1 +4 -0 incubator/groo/themes/graphics/add.png (new)
1.1 +4 -0 incubator/groo/themes/graphics/az.png (new)
1.1 +5 -0 incubator/groo/themes/graphics/collections.png (new)
1.1 +3 -0 incubator/groo/themes/graphics/za.png (new)
1.2 +43 -1 incubator/groo/themes/screen.css
1.1 +101 -0 incubator/groo/view.php (new)
Chora Links:
http://cvs.horde.org/co.php/incubator/groo/Attic/book_edit.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/Attic/book_view.php?r=1.5
http://cvs.horde.org/co.php/incubator/groo/Attic/catalog.php?r=1.5
http://cvs.horde.org/co.php/incubator/groo/Attic/friends.php?r=1.2
http://cvs.horde.org/co.php/incubator/groo/Attic/leases.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/Attic/search_creator.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/collections.php?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/config/conf.xml?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/groo/config/prefs.php.dist?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/diff.php/incubator/groo/index.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/co.php/incubator/groo/isbn.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/item.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/js/fixUnstyledOptions.js?r=1.1
http://cvs.horde.org/co.php/incubator/groo/js/tables.js?r=1.1
http://cvs.horde.org/co.php/incubator/groo/lib/Attic/BookForm.php?r=1.2
http://cvs.horde.org/co.php/incubator/groo/lib/Attic/ISBNForm.php?r=1.2
http://cvs.horde.org/co.php/incubator/groo/lib/Attic/SearchForm.php?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/lib/Book.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/BookTest.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/Driver.php?r1=1.3&r2=1.4&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/Driver/sql.php?r1=1.10&r2=1.11&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/Fetch.php?r1=1.5&r2=1.6&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/Fetch/Amazon.php?r1=1.6&r2=1.7&ty=u
http://cvs.horde.org/co.php/incubator/groo/lib/Fetch/Attic/fetch_untitled.sh?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/lib/Groo.php?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/diff.php/incubator/groo/lib/base.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/co.php/incubator/groo/lib/prefs.php?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/lib/version.php?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/co.php/incubator/groo/list.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/scripts/fetch_untitled.sh?r=1.1
http://cvs.horde.org/co.php/incubator/groo/scripts/sql/Attic/test-data.sql?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/scripts/sql/groo.sql?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/co.php/incubator/groo/scripts/sql/groo_queries.sql?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/search.php?r1=1.3&r2=1.4&ty=u
http://cvs.horde.org/co.php/incubator/groo/templates/Attic/queue.html?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/Attic/recent_entries.html?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/Attic/search_result.html?r=1.2
http://cvs.horde.org/co.php/incubator/groo/templates/collections/collections.inc?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/templates/common-header.inc?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/co.php/incubator/groo/templates/isbn/isbn_form.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/item/item.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/empty.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/header.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/item_footers.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/item_headers.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/item_summaries.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/list/list.inc?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/templates/menu.inc?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/co.php/incubator/groo/templates/prefs/collectionselect.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/search/search.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/templates/view/item.inc?r=1.1
http://cvs.horde.org/co.php/incubator/groo/tests.php?r=1.1
http://cvs.horde.org/co.php/incubator/groo/themes/graphics/add.png?r=1.1
http://cvs.horde.org/co.php/incubator/groo/themes/graphics/az.png?r=1.1
http://cvs.horde.org/co.php/incubator/groo/themes/graphics/collections.png?r=1.1
http://cvs.horde.org/co.php/incubator/groo/themes/graphics/za.png?r=1.1
http://cvs.horde.org/diff.php/incubator/groo/themes/screen.css?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/co.php/incubator/groo/view.php?r=1.1
More information about the cvs
mailing list