Update of /cvsroot/php-blog/serendipity/sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10943/sql
Modified Files:
db.sql
Log Message:
Rewrote how s9y fetches external plugins: The path setting is now irrelevant,
only filenames count. They can be placed in any subdirectory as long as their
name matches *_(plugin|event)_*.php. This allows plugin authors to put one
ore more event/sidebar plugin into one bundled directory and reduces swamping
the plugins directory.
Needed to adjust several calls, but it seems to work well.
Requires DB scheme update.
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/sql/db.sql,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- db.sql 3 Dec 2004 10:07:43 -0000 1.24
+++ db.sql 6 Dec 2004 10:46:32 -0000 1.25
@@ -143,6 +143,7 @@
placement varchar(6) not null default 'right',
sort_order int(4) not null default '0',
authorid int(11) default '0',
+ path varchar(255) default null
PRIMARY KEY(name)
);
|