Initial revision
This commit is contained in:
parent
1ba4e8011b
commit
bbfcb3d4f4
104 changed files with 3100 additions and 0 deletions
6
code/Skin/edit.skin
Normal file
6
code/Skin/edit.skin
Normal 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" %> <% this.input type="button" value="cancel" %>
|
||||
</FORM>
|
13
code/Skin/macros.js
Normal file
13
code/Skin/macros.js
Normal 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
11
code/Skin/type.properties
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue