added the functionality required to power the Sidebox Configure button on

the Front Page
This commit is contained in:
Eric J. Bowersox
2003-06-01 10:10:54 +00:00
parent d6bff8a745
commit c5e689483d
18 changed files with 1012 additions and 5 deletions

View File

@@ -313,8 +313,9 @@ CREATE TABLE sbox_master (
sb_name VARCHAR(255) BINARY NOT NULL, # name of the sidebox
type_nsid INT NOT NULL, # namespace ID of the type of the sidebox
type_name VARCHAR(255) BINARY NOT NULL, # name of the type of the sidebox
descr TINYTEXT NOT NULL, # description of the sidebox
UNIQUE INDEX by_name (sb_nsid, sb_name)
descr VARCHAR(255) NOT NULL, # description of the sidebox
UNIQUE INDEX by_name (sb_nsid, sb_name),
INDEX by_descr (descr)
);
# This table indicates in what contexts a sidebox may be used.
@@ -414,6 +415,8 @@ INSERT INTO globalprop (nsid, prop_name, prop_value) VALUES
(6, 'std.button.height', 'I24' ),
(6, 'bn.0transparent', '!transparent.gif' ),
(6, 'bnc.0transparent', '!' ),
(6, 'bn.add', '!add.jpg' ),
(6, 'bnc.add', '!Add' ),
(6, 'bn.cancel', '!cancel.jpg' ),
(6, 'bnc.cancel', '!Cancel' ),
(6, 'bn.configure', '!configure.jpg' ),