css 및 js 호출순서 조정기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-03-06 05:33:56 +00:00
parent 4f380d9c48
commit 61851f1dfe
2149 changed files with 109090 additions and 18689 deletions

View file

@ -0,0 +1,6 @@
<table name="lang">
<column name="site_srl" type="number" size="11" notnull="notnull" index="idx_lang" />
<column name="name" type="varchar" size="255" notnull="notnull" index="idx_lang" />
<column name="lang_code" type="varchar" size="10" notnull="notnull" index="idx_lang" />
<column name="value" type="text" />
</table>

View file

@ -0,0 +1,5 @@
<table name="module_admins">
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_module_admin" />
<column name="member_srl" type="number" size="11" notnull="notnull" unique="unique_module_admin" />
<column name="regdate" type="date" index="idx_regdate" />
</table>

View file

@ -0,0 +1,5 @@
<table name="module_extra_vars">
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_module_vars" />
<column name="name" type="varchar" size="80" notnull="notnull" unique="unique_module_vars" />
<column name="value" type="text" />
</table>

View file

@ -0,0 +1,9 @@
<table name="module_filebox">
<column name="module_filebox_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_member_srl" />
<column name="filename" type="varchar" size="250" notnull="notnull" />
<column name="fileextension" type="varchar" size="4" notnull="notnull" index="idx_fileextension" />
<column name="filesize" type="number" size="11" default="0" notnull="notnull" />
<column name="comment" type="varchar" size="250" />
<column name="regdate" type="date" />
</table>

View file

@ -0,0 +1,5 @@
<table name="module_grants">
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_module" />
<column name="name" type="varchar" size="20" notnull="notnull" unique="unique_module" />
<column name="group_srl" type="number" size="11" notnull="notnull" unique="unique_module" />
</table>

View file

@ -0,0 +1,5 @@
<table name="module_skins">
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_module_skins" />
<column name="name" type="varchar" size="80" notnull="notnull" unique="unique_module_skins" />
<column name="value" type="text" />
</table>

View file

@ -10,11 +10,7 @@
<column name="browser_title" type="varchar" size="250" notnull="notnull"/>
<column name="description" type="text" />
<column name="is_default" type="char" size="1" notnull="notnull" default="N" />
<column name="extra_vars" type="text" />
<column name="skin_vars" type="text" />
<column name="content" type="bigtext"/>
<column name="grants" type="text" />
<column name="admin_id" type="text" />
<column name="open_rss" type="char" size="1" notnull="notnull" default="Y" />
<column name="header_text" type="text" />
<column name="footer_text" type="text" />

View file

@ -2,5 +2,6 @@
<column name="site_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="index_module_srl" type="number" size="11" default="0" />
<column name="domain" type="varchar" size="255" notnull="notnull" index="idx_domain" />
<column name="default_language" type="varchar" size="255" />
<column name="regdate" type="date" />
</table>