templated these macros

This commit is contained in:
JT Smith 2004-07-10 05:36:05 +00:00
parent 7648c6c13f
commit 577554b904
7 changed files with 110 additions and 38 deletions

View file

@ -66,7 +66,8 @@
the master database. This will have no effect on single database users, but
can add a tremendous amount of scalability on large WebGUI sites that use
database replication.
- Templated the EditableToggle, a, and AdminToggle macros. Thanks to Colin
Kuskie.
6.0.3
- Fixed a recursive style change bug.

View file

@ -10,6 +10,7 @@ WebGUI Core..........................JT Smith / Plain Black
Contributing Developers..............Peter Beardsley / Appropriate Solutions
Leendert Bottelberghs
Richard Caelius / 100 World
Irving Carrion
Richard Clark
Doug Collinge
Flavio Curti
@ -21,13 +22,13 @@ Contributing Developers..............Peter Beardsley / Appropriate Solutions
Greg Fast / WDI
Chris Gebhardt / OpenServe
Andy Grundman
Irving Carrion
Chris Jackson
Koen de Jonge / ProcoliX
Martin Kamerbeek / ProcoliX
Christian Kocourek
John W. Krahn
Len Kranendonk
Colin Kuskie
Christophe Marcant
Tony Mountifield
Tavis Parker / ParkerOne Consulting

View file

@ -4,4 +4,7 @@ drop table international;
drop table help;
alter table WSClient add sharedCache tinyint unsigned not null default '0';
alter table WSClient add cacheTTL smallint(5) unsigned NOT NULL default '60';
INSERT INTO template VALUES (1,'Default Account','<a class="myAccountLink" href="<tmpl_var account.url>"><tmpl_var account.text></a>','Macro/a_account',1,1);
INSERT INTO template VALUES (1,'Default Editable Toggle','<a href="<tmpl_var toggle.url>"><tmpl_var toggle.text></a>','Macro/EditableToggle',1,1);
INSERT INTO template VALUES (1,'Default Admin Toggle','<a href="<tmpl_var toggle.url>"><tmpl_var toggle.text></a>','Macro/AdminToggle',1,1);