implemented dictionary manager which ties into the HTML Checker
This commit is contained in:
@@ -85,6 +85,14 @@
|
||||
<database connection="data" namespaces="nscache"/>
|
||||
</object>
|
||||
|
||||
<object name="dictionary" classname="com.silverwrist.dynamo.dict.DictionarySubsystem" priority="6">
|
||||
<dictionary name="BASE" classname="com.silverwrist.dynamo.dict.ResourceDictionary" resource="en-us.dict"/>
|
||||
<dictionary name="SUPP" classname="com.silverwrist.dynamo.dict.ResourceDictionary" resource="supplemental.dict"/>
|
||||
<dictionary name="DB" classname="com.silverwrist.dynamo.dict.DatabaseDictionary">
|
||||
<database connection="data"/>
|
||||
</dictionary>
|
||||
</object>
|
||||
|
||||
<!-- Presentation and interface objects -->
|
||||
<object name="remapper" classname="com.silverwrist.dynamo.servlet.RemapperData" priority="0">
|
||||
<remap path="/verifyemail">
|
||||
|
||||
@@ -235,6 +235,11 @@ CREATE TABLE htmltagsets (
|
||||
PRIMARY KEY (profid, tagset)
|
||||
);
|
||||
|
||||
# Dictionary table.
|
||||
CREATE TABLE dictionary (
|
||||
word VARCHAR(128) NOT NULL PRIMARY KEY # the word
|
||||
);
|
||||
|
||||
#### following this line are Venice-specific tables ####
|
||||
|
||||
# The table which defines menus.
|
||||
|
||||
Reference in New Issue
Block a user