mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
39
modules/blog/conf/info.xml
Normal file
39
modules/blog/conf/info.xml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">블로그</title>
|
||||
<title xml:lang="jp">ブログ</title>
|
||||
<title xml:lang="en">Blog</title>
|
||||
<title xml:lang="es">Blog</title>
|
||||
<title xml:lang="zh-CN">博客</title>
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">Zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<description xml:lang="ko">
|
||||
블로그의 기능을 담당하는 모듈.
|
||||
게시판과 비슷하지만 보여지는 view가 다르고 블로그에 적합한 method가 추가되었음.
|
||||
레이아웃과 기본 메뉴를 직접 담당
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
ブログの機能を担当するモジュール
|
||||
掲示板と似ているが、内容の表示が異なり、ブログに適切なメソッドが追加されている。
|
||||
レイアウトと基本メニューを直接担当します。
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This module contains the blog functions.
|
||||
It's similar to the bbs module, but it has diffent views and more suitable methods for blog has been included.
|
||||
This module manages layout and basic menu itself.
|
||||
</description>
|
||||
<description xml:lang="es">
|
||||
Es el módulo para funcióne a blog.
|
||||
Casi mismo del boletín, pero la vista es diferente, y incluye metodo para blog. Maneja directo al diseño y menú principal.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
是负责博客功能的模块。
|
||||
虽然类似版面,但其显示模式不同,且还添加了适合博客的method。
|
||||
内置布局和基本的菜单。
|
||||
</description>
|
||||
</author>
|
||||
</module>
|
||||
74
modules/blog/conf/module.xml
Normal file
74
modules/blog/conf/module.xml
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module>
|
||||
<grants>
|
||||
<grant name="list" default="guest">
|
||||
<title xml:lang="ko">목록</title>
|
||||
<title xml:lang="en">list</title>
|
||||
<title xml:lang="jp">リスト</title>
|
||||
</grant>
|
||||
<grant name="write_document" default="guest">
|
||||
<title xml:lang="ko">글 작성</title>
|
||||
<title xml:lang="en">write document</title>
|
||||
<title xml:lang="jp">書き込む</title>
|
||||
</grant>
|
||||
<grant name="write_comment" default="guest">
|
||||
<title xml:lang="ko">댓글 작성</title>
|
||||
<title xml:lang="en">write comment</title>
|
||||
<title xml:lang="jp">コメント作成</title>
|
||||
</grant>
|
||||
<grant name="fileupload" default="guest">
|
||||
<title xml:lang="ko">파일 첨부</title>
|
||||
<title xml:lang="en">file upload</title>
|
||||
<title xml:lang="jp">添付ファイル</title>
|
||||
</grant>
|
||||
<grant name="comment_fileupload" default="guest">
|
||||
<title xml:lang="ko">댓글 파일 첨부</title>
|
||||
<title xml:lang="en">comment file upload</title>
|
||||
<title xml:lang="jp">コメントファイル添付</title>
|
||||
</grant>
|
||||
<grant name="manager" default="root">
|
||||
<title xml:lang="ko">관리</title>
|
||||
<title xml:lang="en">manager</title>
|
||||
<title xml:lang="jp">管理</title>
|
||||
</grant>
|
||||
</grants>
|
||||
<actions>
|
||||
<action name="dispBlogContent" type="view" index="true" />
|
||||
<action name="dispBlogWrite" type="view" />
|
||||
<action name="dispBlogDelete" type="view" />
|
||||
<action name="dispBlogReplyComment" type="view" />
|
||||
<action name="dispBlogModifyComment" type="view" />
|
||||
<action name="dispBlogDeleteComment" type="view" />
|
||||
<action name="dispBlogDeleteTrackback" type="view" />
|
||||
<action name="dispBlogMessage" type="view" />
|
||||
|
||||
<action name="procBlogInsertDocument" type="controller" />
|
||||
<action name="procBlogDeleteDocument" type="controller" />
|
||||
<action name="procBlogInsertComment" type="controller" />
|
||||
<action name="procBlogDeleteComment" type="controller" />
|
||||
<action name="procBlogDeleteTrackback" type="controller" />
|
||||
<action name="procBlogVerificationPassword" type="controller" />
|
||||
<action name="procBlogDeleteFile" type="controller" />
|
||||
<action name="procBlogUploadFile" type="controller" />
|
||||
<action name="procBlogDownloadFile" type="controller" />
|
||||
|
||||
<action name="getBlogAdminCategoryTplInfo" type="model" standalone="true" />
|
||||
|
||||
<action name="dispBlogAdminContent" type="view" standalone="true" admin_index="true" />
|
||||
<action name="dispBlogAdminBlogInfo" type="view" standalone="true" />
|
||||
<action name="dispBlogAdminInsertBlog" type="view" standalone="true" />
|
||||
<action name="dispBlogAdminDeleteBlog" type="view" standalone="true" />
|
||||
<action name="dispBlogAdminCategoryInfo" type="view" standalone="true" />
|
||||
<action name="dispBlogAdminSkinInfo" type="view" standalone="true" />
|
||||
<action name="dispBlogAdminGrantInfo" type="view" standalone="true" />
|
||||
|
||||
<action name="procBlogAdminInsertGrant" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminUpdateSkinInfo" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminInsertBlog" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminDeleteBlog" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminInsertCategory" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminDeleteCategory" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminMakeXmlFile" type="controller" standalone="true" />
|
||||
<action name="procBlogAdminMoveCategory" type="controller" standalone="true" />
|
||||
</actions>
|
||||
</module>
|
||||
Loading…
Add table
Add a link
Reference in a new issue