Initial revision

This commit is contained in:
Robert Gaggl 2001-06-18 08:57:33 +00:00
parent 1ba4e8011b
commit bbfcb3d4f4
104 changed files with 3100 additions and 0 deletions

6
code/Skin/edit.skin Normal file
View file

@ -0,0 +1,6 @@
<FORM METHOD="POST">
<INPUT TYPE="HIDDEN" NAME="proto" VALUE="<% request.proto %>">
<INPUT TYPE="HIDDEN" NAME="name" VALUE="<% request.name %>"><BR>
<% this.skin as="editor" width="70" height="20" wrap="OFF" %><BR>
<% this.input type="button" value="save" %>&nbsp;<% this.input type="button" value="cancel" %>
</FORM>

13
code/Skin/macros.js Normal file
View file

@ -0,0 +1,13 @@
/**
* macro rendering source of skin
*/
function skin_macro(param) {
renderPrefix(param);
if (param.as == "editor")
this.renderInputTextarea(this.createInputParam("skin",param));
else
res.write(this.skin);
renderSuffix(param);
}

11
code/Skin/type.properties Normal file
View file

@ -0,0 +1,11 @@
_datasource=antville
_tablename=SKIN
_id=ID
weblog=WEBLOG_ID>weblog.ID
proto=PROTO
name=NAME
skin=SOURCE
creator=CREATOR
createtime=CREATETIME
modified=MODIFYTIME