[Cpan-forum-commit] rev 131 - in trunk: . lib/CPAN lib/CPAN/Forum
svn at pti.co.il
svn at pti.co.il
Tue Mar 22 16:42:43 IST 2005
Author: gabor
Date: 2005-03-22 16:42:42 +0200 (Tue, 22 Mar 2005)
New Revision: 131
Modified:
trunk/TODO
trunk/lib/CPAN/Forum.pm
trunk/lib/CPAN/Forum/DBI.pm
Log:
some docs
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2005-03-22 13:36:06 UTC (rev 130)
+++ trunk/TODO 2005-03-22 14:42:42 UTC (rev 131)
@@ -26,8 +26,6 @@
- Admin: delete a user
-- Admin: add a new module manually
-
- Script that populates databse should not lock the whole database for a long time
Maybe it should fetch all the data to memory and work there.
Modified: trunk/lib/CPAN/Forum/DBI.pm
===================================================================
--- trunk/lib/CPAN/Forum/DBI.pm 2005-03-22 13:36:06 UTC (rev 130)
+++ trunk/lib/CPAN/Forum/DBI.pm 2005-03-22 14:42:42 UTC (rev 131)
@@ -96,6 +96,21 @@
gtype INTEGER NOT NULL
);
+CREATE TABLE metagroups (
+ id INTEGER PRIMARY KEY auto_increment,
+ name VARCHAR(255) UNIQUE NOT NULL,
+ status INTEGER,
+);
+
+CREATE TABLE group_in_meta (
+ meta INTEGER NOT NULL,
+ group INTEGER NOT NULL
+ ,FOREIGN KEY (meta) REFERENCES metagroups(id)
+ ,FOREIGN KEY (group) REFERENCES groups(id)
+);
+
+
+
CREATE TABLE grouprelations (
parent INTEGER NOT NULL,
child INTEGER NOT NULL
Modified: trunk/lib/CPAN/Forum.pm
===================================================================
--- trunk/lib/CPAN/Forum.pm 2005-03-22 13:36:06 UTC (rev 130)
+++ trunk/lib/CPAN/Forum.pm 2005-03-22 14:42:42 UTC (rev 131)
@@ -180,6 +180,12 @@
=head2 Changes
+Longer usernames
+Search box on more pages
+Search for module uses % at the beginning of the string as well
+Include stars of CPAN Ratings
+Admin can add new modules manually
+
v0.11_01
Put the page size and the rss size in the configuration table
Make CPAN::Forum::Configure an easy interface to the configuration table
More information about the Cpan-forum-commit
mailing list