summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2012-12-13 16:07:55 +0000
committerryoon <ryoon@pkgsrc.org>2012-12-13 16:07:55 +0000
commit9618d04ed492b633dd97195cbae44750602cfad6 (patch)
treed19b5781f238aef1476c0e1755ae9d991151f338 /www
parent32d65baf4ab444a0b28b98b94f7d0016c4d450dd (diff)
downloadpkgsrc-9618d04ed492b633dd97195cbae44750602cfad6.tar.gz
Import php54-soycms-1.4.0a as www/php-soycms.
SOY CMS is flexible and plugin-based Contents Management System. User interface is written in Japanese.
Diffstat (limited to 'www')
-rw-r--r--www/php-soycms/DESCR2
-rw-r--r--www/php-soycms/INSTALL14
-rw-r--r--www/php-soycms/MESSAGE81
-rw-r--r--www/php-soycms/Makefile46
-rw-r--r--www/php-soycms/PLIST2413
-rw-r--r--www/php-soycms/distinfo5
6 files changed, 2561 insertions, 0 deletions
diff --git a/www/php-soycms/DESCR b/www/php-soycms/DESCR
new file mode 100644
index 00000000000..e169961eadf
--- /dev/null
+++ b/www/php-soycms/DESCR
@@ -0,0 +1,2 @@
+SOY CMS is flexible and plugin-based Contents Management System.
+User interface is written in Japanese.
diff --git a/www/php-soycms/INSTALL b/www/php-soycms/INSTALL
new file mode 100644
index 00000000000..948e5287082
--- /dev/null
+++ b/www/php-soycms/INSTALL
@@ -0,0 +1,14 @@
+#!@SH@
+#
+# $NetBSD: INSTALL,v 1.1 2012/12/13 16:07:55 ryoon Exp $
+
+WWWGRP="@WWWGRP@"
+WWWOWN="@WWWOWN@"
+SOYDIR="@PREFIX@/@SOYDIR@"
+
+case "${STAGE}" in
+POST-INSTALL)
+ ${CHOWN} -R ${WWWOWN} ${SOYDIR} &&
+ ${CHGRP} -R ${WWWGRP} ${SOYDIR}
+ ;;
+esac
diff --git a/www/php-soycms/MESSAGE b/www/php-soycms/MESSAGE
new file mode 100644
index 00000000000..437f051d310
--- /dev/null
+++ b/www/php-soycms/MESSAGE
@@ -0,0 +1,81 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1 2012/12/13 16:07:55 ryoon Exp $
+
+To use SOY CMS with Apache 2.4 and PHP 5.4, you will need to perform
+the following steps.
+
+1. Install www/apache24 and www/ap-php
+
+2. Setup PHP. At least, ${PREFIX}/etc/php.ini should have date.timezone line.
+ If your machine are located in Tokyo, Japan, you should get the following.
+
+ # cat ${PREFIX}/etc/php.ini | grep date.timezone
+ date.timezone ="Asia/Tokyo"
+
+3. Install MySQL database server.
+
+ # cd databases/mysql51-server
+ # make install
+
+4. Start MySQL server, and setup MySQL server
+
+ # ${RCD_SCRIPTS_DIR}/mysqld start
+ And follow messages.
+
+5. Add MySQL user, soycmsUser
+
+ $ mysql -u root -p
+ Enter password: YOUR_MYSQL_ROOT_PASSWORD
+ > create user soycmsUser identified by 'soycmsUserPass';
+ > quit
+
+6. Create database for SOY CMS
+
+ $ mysql -u root -p
+ Enter password: YOUR_MYSQL_ROOT_PASSWORD
+ > create database soycms_db;
+ > grant SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER
+ on soycms_db.* to soycmsUser@localhost identified by 'soycmsPass';
+ > quit
+
+7. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
+
+ extension=pdo.so
+ extension=pdo_mysql.so
+ extension=mbstring.so
+ extension=json.so
+ extension=zip.so
+ extension=gd.so
+
+8. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
+
+ LoadModule rewrite_module lib/httpd/mod_rewrite.so
+ DocumentRoot "${PREFIX}/share/soycms"
+ LoadModule php5_module lib/httpd/mod_php5.so
+ AddType application/x-httpd-php .php
+ <Directory ${PREFIX}/share/soycms>
+ DirectoryIndex index.php
+ Options All
+ Allow from All
+ AllowOverride All
+ Require all granted
+ </Directory>
+
+9. Create database setting file,
+ ${PREFIX}/share/soycms/common/config/db/mysql.php .
+ And run 'chmod 640 ${PREFIX}/share/soycms/common/config/db/mysql.php'.
+
+ <?php
+ define("ADMIN_DB_DSN","mysql:host=localhost;dbname=soycms_db");
+ define("ADMIN_DB_USER","root");
+ define("ADMIN_DB_PASS","YOUR_MYSQL_ROOT_PASSWORD");
+ define("ADMIN_DB_EXISTS",file_exists(SOY2::RootDir()."db/cms.db"));
+ define("CMS_FILE_DB",ADMIN_DB_DSN);
+ define("CMS_FILE_DB_EXISTS",file_exists(SOY2::RootDir()."db/file.db"));
+ ?>
+
+10. Start Apache httpd
+ # ${RCD_SCRIPTS_DIR}/apache start
+
+11. Access http://localhost/admin/
+===========================================================================
diff --git a/www/php-soycms/Makefile b/www/php-soycms/Makefile
new file mode 100644
index 00000000000..976e597d7c7
--- /dev/null
+++ b/www/php-soycms/Makefile
@@ -0,0 +1,46 @@
+# $NetBSD: Makefile,v 1.1 2012/12/13 16:07:55 ryoon Exp $
+#
+
+DISTNAME= soycms_1.4.0a_mysql
+PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME:S/_/-/:S/_mysql//}
+CATEGORIES= www
+MASTER_SITES= http://ryo-on.users.sourceforge.net/distrib/
+# http://www.soycms.net/download
+EXTRACT_SUFX= .zip
+
+MAINTAINER= ryoon@NetBSD.org
+HOMEPAGE= http://www.soycms.net/
+COMMENT= Flexible and pluggable CMS
+LICENSE= gnu-gpl-v2
+
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo>=5.3.0:../../databases/php-pdo
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo_mysql>=5.3.0:../../databases/php-pdo_mysql
+DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.3.0:../../converters/php-mbstring
+DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.0:../../textproc/php-json
+DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.0:../../archivers/php-zip
+DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.0:../../graphics/php-gd
+
+WRKSRC= ${WRKDIR}
+USE_LANGUAGES= # none
+NO_BUILD= yes
+
+USE_TOOLS+= pax
+
+SOYDIR= share/soycms
+INSTALLATION_DIRS= ${SOYDIR}
+
+BUILD_DEFS+= APACHE_GROUP APACHE_USER
+FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
+ SOYDIR=${SOYDIR}
+
+post-extract:
+.for i in admin app common license soycms
+ ${FIND} ${WRKSRC}/${i} -type f | xargs ${CHMOD} -x
+.endfor
+
+do-install:
+ cd ${WRKSRC} && pax -rw -pmp * \
+ ${DESTDIR}${PREFIX}/${SOYDIR}
+
+.include "../../lang/php/phpversion.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/php-soycms/PLIST b/www/php-soycms/PLIST
new file mode 100644
index 00000000000..72a6a9b4108
--- /dev/null
+++ b/www/php-soycms/PLIST
@@ -0,0 +1,2413 @@
+@comment $NetBSD: PLIST,v 1.1 2012/12/13 16:07:55 ryoon Exp $
+share/soycms/admin/SOYCMS_SYSTEM_DIRECTORY
+share/soycms/admin/css/dashboard.css
+share/soycms/admin/css/editor/editor.css
+share/soycms/admin/css/editor/editor_images/tab.gif
+share/soycms/admin/css/editor/editor_images/tab_active.gif
+share/soycms/admin/css/editor/editor_images/tab_inactive.gif
+share/soycms/admin/css/entry/entry.css
+share/soycms/admin/css/entry/entry_images/blog_icon.jpg
+share/soycms/admin/css/entry/entry_images/function_left.jpg
+share/soycms/admin/css/entry/entry_images/function_middle.jpg
+share/soycms/admin/css/entry/entry_images/function_right.jpg
+share/soycms/admin/css/entry/entry_images/page_icon.jpg
+share/soycms/admin/css/form.css
+share/soycms/admin/css/global_page/globalpage.css
+share/soycms/admin/css/global_page/globalpage_images/tab_active.jpg
+share/soycms/admin/css/global_page/globalpage_images/tab_inactive.jpg
+share/soycms/admin/css/img/background.jpg
+share/soycms/admin/css/img/logo.gif
+share/soycms/admin/css/img/logo_big.gif
+share/soycms/admin/css/img/main/background.jpg
+share/soycms/admin/css/img/main/content_bar_bottom.jpg
+share/soycms/admin/css/img/main/content_bar_bottom_left.jpg
+share/soycms/admin/css/img/main/content_bar_bottom_right.jpg
+share/soycms/admin/css/img/main/content_bar_left.jpg
+share/soycms/admin/css/img/main/content_bar_left_top.jpg
+share/soycms/admin/css/img/main/content_bar_right.jpg
+share/soycms/admin/css/img/main/content_bar_right_top.jpg
+share/soycms/admin/css/img/main/content_top_bg.jpg
+share/soycms/admin/css/img/main/error.png
+share/soycms/admin/css/img/main/footer_left.gif
+share/soycms/admin/css/img/main/footer_middle.gif
+share/soycms/admin/css/img/main/footer_right.gif
+share/soycms/admin/css/img/main/logo.gif
+share/soycms/admin/css/img/main/menu_active.jpg
+share/soycms/admin/css/img/main/menu_inactive.jpg
+share/soycms/admin/css/img/main/menu_inactive_hover.jpg
+share/soycms/admin/css/init/img/init.gif
+share/soycms/admin/css/init/style.css
+share/soycms/admin/css/layer/layer.css
+share/soycms/admin/css/layer/layer_images/bar_left.gif
+share/soycms/admin/css/layer/layer_images/bar_middle.gif
+share/soycms/admin/css/layer/layer_images/bar_right.gif
+share/soycms/admin/css/layer/layer_images/bottom_bar_left.gif
+share/soycms/admin/css/layer/layer_images/bottom_bar_middle.gif
+share/soycms/admin/css/layer/layer_images/bottom_bar_right.gif
+share/soycms/admin/css/layer/layer_images/close_button.gif
+share/soycms/admin/css/layer/layer_images/close_button_down.png
+share/soycms/admin/css/layer/layer_images/small.png
+share/soycms/admin/css/layer/layer_images/small_down.png
+share/soycms/admin/css/login/login.gif
+share/soycms/admin/css/login/style.css
+share/soycms/admin/css/pageTreeOverview.css
+share/soycms/admin/css/pagelist/images/blog.png
+share/soycms/admin/css/pagelist/images/cross.png
+share/soycms/admin/css/pagelist/images/delete.png
+share/soycms/admin/css/pagelist/images/deleted.gif
+share/soycms/admin/css/pagelist/images/page_panel_bg.jpg
+share/soycms/admin/css/pagelist/pagelist.css
+share/soycms/admin/css/pagetree_images/arrow_branch.png
+share/soycms/admin/css/pagetree_images/asterisk_yellow.png
+share/soycms/admin/css/pagetree_images/blogpage.png
+share/soycms/admin/css/pagetree_images/bottom_path.png
+share/soycms/admin/css/pagetree_images/middle_path.png
+share/soycms/admin/css/pagetree_images/none_path.png
+share/soycms/admin/css/pagetree_images/page.png
+share/soycms/admin/css/pagetree_images/top_path.png
+share/soycms/admin/css/popup_images/popup_left.jpg
+share/soycms/admin/css/popup_images/popup_middle.jpg
+share/soycms/admin/css/popup_images/popup_right.jpg
+share/soycms/admin/css/site/edit.css
+share/soycms/admin/css/style.css
+share/soycms/admin/css/table.css
+share/soycms/admin/css/toolbox/toolbox.css
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_active.jpg
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_bottom.jpg
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_inactive.jpg
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_middle.jpg
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_singletab.jpg
+share/soycms/admin/css/toolbox/toolbox_images/toolbox_top.jpg
+share/soycms/admin/image/icon/help.gif
+share/soycms/admin/index.php
+share/soycms/admin/init.php
+share/soycms/admin/js/cms/PanelManager.css
+share/soycms/admin/js/cms/PanelManager.js
+share/soycms/admin/js/cms/editor_images/tab.gif
+share/soycms/admin/js/cms/editor_images/tab_active.gif
+share/soycms/admin/js/cms/editor_images/tab_inactive.gif
+share/soycms/admin/js/common.js
+share/soycms/admin/js/editor/CSSeditor.js
+share/soycms/admin/js/editor/HTMLeditor.js
+share/soycms/admin/js/editor/RichTextEditor.js
+share/soycms/admin/js/editor/background_silver.jpg
+share/soycms/admin/js/editor/blank.html
+share/soycms/admin/js/editor/cssMenu.js
+share/soycms/admin/js/editor/editor.css
+share/soycms/admin/js/editor/editor_base.js
+share/soycms/admin/js/editor/test.html
+share/soycms/admin/js/effects.js
+share/soycms/admin/js/prototype.js
+share/soycms/admin/js/scriptaculous.js
+share/soycms/admin/js/validation.js
+share/soycms/admin/webapp/config.ext.php
+share/soycms/admin/webapp/config.inc.php
+share/soycms/admin/webapp/language/en/Account/ChangePasswordPage.html
+share/soycms/admin/webapp/language/en/Account/ChangeUserInfoPage.html
+share/soycms/admin/webapp/language/en/Account/IndexPage.html
+share/soycms/admin/webapp/language/en/Administrator/ChangePasswordPage.html
+share/soycms/admin/webapp/language/en/Administrator/CreatePage.html
+share/soycms/admin/webapp/language/en/Administrator/DetailPage.html
+share/soycms/admin/webapp/language/en/Administrator/IndexPage.html
+share/soycms/admin/webapp/language/en/Administrator/IndexPage.properties
+share/soycms/admin/webapp/language/en/Administrator/RemovePage.html
+share/soycms/admin/webapp/language/en/Administrator/SiteRolePage.html
+share/soycms/admin/webapp/language/en/Administrator/SiteRolePage.properties
+share/soycms/admin/webapp/language/en/Application/IndexPage.html
+share/soycms/admin/webapp/language/en/Application/RolePage.html
+share/soycms/admin/webapp/language/en/Application/RolePage.properties
+share/soycms/admin/webapp/language/en/IndexPage.html
+share/soycms/admin/webapp/language/en/Login/IndexPage.html
+share/soycms/admin/webapp/language/en/Login/RedirectPage.html
+share/soycms/admin/webapp/language/en/MenuPage.html
+share/soycms/admin/webapp/language/en/Server/IndexPage.html
+share/soycms/admin/webapp/language/en/Site/CreatePage.html
+share/soycms/admin/webapp/language/en/Site/DetailPage.html
+share/soycms/admin/webapp/language/en/Site/EditControllerPage.html
+share/soycms/admin/webapp/language/en/Site/EditHtaccessPage.html
+share/soycms/admin/webapp/language/en/Site/IndexPage.html
+share/soycms/admin/webapp/language/en/Site/RemovePage.html
+share/soycms/admin/webapp/language/en/Site/SiteRolePage.html
+share/soycms/admin/webapp/language/en/Site/SiteRootDetachPage.html
+share/soycms/admin/webapp/language/en/Site/SiteRootPage.html
+share/soycms/admin/webapp/language/en/UpperMenuPage.html
+share/soycms/admin/webapp/language/en/_init/InitPage.html
+share/soycms/admin/webapp/pages/Account/ChangePasswordPage.class.php
+share/soycms/admin/webapp/pages/Account/ChangePasswordPage.html
+share/soycms/admin/webapp/pages/Account/ChangeUserInfoPage.class.php
+share/soycms/admin/webapp/pages/Account/ChangeUserInfoPage.html
+share/soycms/admin/webapp/pages/Account/IndexPage.class.php
+share/soycms/admin/webapp/pages/Account/IndexPage.html
+share/soycms/admin/webapp/pages/Administrator/ChangePasswordPage.class.php
+share/soycms/admin/webapp/pages/Administrator/ChangePasswordPage.html
+share/soycms/admin/webapp/pages/Administrator/CreatePage.class.php
+share/soycms/admin/webapp/pages/Administrator/CreatePage.html
+share/soycms/admin/webapp/pages/Administrator/DetailPage.class.php
+share/soycms/admin/webapp/pages/Administrator/DetailPage.html
+share/soycms/admin/webapp/pages/Administrator/IndexPage.class.php
+share/soycms/admin/webapp/pages/Administrator/IndexPage.html
+share/soycms/admin/webapp/pages/Administrator/RemovePage.class.php
+share/soycms/admin/webapp/pages/Administrator/RemovePage.html
+share/soycms/admin/webapp/pages/Administrator/SiteRolePage.class.php
+share/soycms/admin/webapp/pages/Administrator/SiteRolePage.html
+share/soycms/admin/webapp/pages/Application/IndexPage.class.php
+share/soycms/admin/webapp/pages/Application/IndexPage.html
+share/soycms/admin/webapp/pages/Application/RolePage.class.php
+share/soycms/admin/webapp/pages/Application/RolePage.html
+share/soycms/admin/webapp/pages/Config/MailPage.class.php
+share/soycms/admin/webapp/pages/Config/MailPage.html
+share/soycms/admin/webapp/pages/IndexPage.class.php
+share/soycms/admin/webapp/pages/IndexPage.html
+share/soycms/admin/webapp/pages/Login/IndexPage.class.php
+share/soycms/admin/webapp/pages/Login/IndexPage.html
+share/soycms/admin/webapp/pages/Login/LogoutPage.class.php
+share/soycms/admin/webapp/pages/Login/RedirectPage.class.php
+share/soycms/admin/webapp/pages/Login/RedirectPage.html
+share/soycms/admin/webapp/pages/MenuPage.class.php
+share/soycms/admin/webapp/pages/MenuPage.html
+share/soycms/admin/webapp/pages/Server/IndexPage.class.php
+share/soycms/admin/webapp/pages/Server/IndexPage.html
+share/soycms/admin/webapp/pages/Server/PHPInfoPage.class.php
+share/soycms/admin/webapp/pages/Site/CreateControllerPage.class.php
+share/soycms/admin/webapp/pages/Site/CreatePage.class.php
+share/soycms/admin/webapp/pages/Site/CreatePage.html
+share/soycms/admin/webapp/pages/Site/DetailPage.class.php
+share/soycms/admin/webapp/pages/Site/DetailPage.html
+share/soycms/admin/webapp/pages/Site/EditControllerPage.class.php
+share/soycms/admin/webapp/pages/Site/EditControllerPage.html
+share/soycms/admin/webapp/pages/Site/EditHtaccessPage.class.php
+share/soycms/admin/webapp/pages/Site/EditHtaccessPage.html
+share/soycms/admin/webapp/pages/Site/IndexPage.class.php
+share/soycms/admin/webapp/pages/Site/IndexPage.html
+share/soycms/admin/webapp/pages/Site/LoginPage.class.php
+share/soycms/admin/webapp/pages/Site/RemovePage.class.php
+share/soycms/admin/webapp/pages/Site/RemovePage.html
+share/soycms/admin/webapp/pages/Site/SiteRolePage.class.php
+share/soycms/admin/webapp/pages/Site/SiteRolePage.html
+share/soycms/admin/webapp/pages/Site/SiteRootDetachPage.class.php
+share/soycms/admin/webapp/pages/Site/SiteRootDetachPage.html
+share/soycms/admin/webapp/pages/Site/SiteRootPage.class.php
+share/soycms/admin/webapp/pages/Site/SiteRootPage.html
+share/soycms/admin/webapp/pages/Site/Upgrade/CompletePage.class.php
+share/soycms/admin/webapp/pages/Site/Upgrade/CompletePage.html
+share/soycms/admin/webapp/pages/Site/Upgrade/ConfirmPage.class.php
+share/soycms/admin/webapp/pages/Site/Upgrade/ConfirmPage.html
+share/soycms/admin/webapp/pages/Site/Upgrade/IndexPage.class.php
+share/soycms/admin/webapp/pages/Site/Upgrade/IndexPage.html
+share/soycms/admin/webapp/pages/UpperMenuPage.class.php
+share/soycms/admin/webapp/pages/UpperMenuPage.html
+share/soycms/admin/webapp/pages/_common/FooterPage.class.php
+share/soycms/admin/webapp/pages/_common/FooterPage.html
+share/soycms/admin/webapp/pages/_common/HeaderPage.class.php
+share/soycms/admin/webapp/pages/_common/HeaderPage.html
+share/soycms/admin/webapp/pages/_init/InitPage.class.php
+share/soycms/admin/webapp/pages/_init/InitPage.html
+share/soycms/admin/xmlrpc.php
+share/soycms/app/css/blueprint/ie.css
+share/soycms/app/css/blueprint/print.css
+share/soycms/app/css/blueprint/screen.css
+share/soycms/app/css/images/main/active_tab.jpg
+share/soycms/app/css/images/main/background.jpg
+share/soycms/app/css/images/main/footer.jpg
+share/soycms/app/css/images/main/footer_left.gif
+share/soycms/app/css/images/main/footer_middle.gif
+share/soycms/app/css/images/main/footer_right.gif
+share/soycms/app/css/images/main/h2_background.jpg
+share/soycms/app/css/images/main/login.gif
+share/soycms/app/css/images/main/logo.png
+share/soycms/app/css/images/main/normal_tab.jpg
+share/soycms/app/css/images/main/subtab_background.gif
+share/soycms/app/css/layer/layer.css
+share/soycms/app/css/layer/layer_images/bar_left.gif
+share/soycms/app/css/layer/layer_images/bar_middle.gif
+share/soycms/app/css/layer/layer_images/bar_right.gif
+share/soycms/app/css/layer/layer_images/bottom_bar_left.gif
+share/soycms/app/css/layer/layer_images/bottom_bar_middle.gif
+share/soycms/app/css/layer/layer_images/bottom_bar_right.gif
+share/soycms/app/css/layer/layer_images/close_button.gif
+share/soycms/app/css/layer/layer_images/close_button_down.png
+share/soycms/app/css/layer/layer_images/small.png
+share/soycms/app/css/layer/layer_images/small_down.png
+share/soycms/app/css/styles.css
+share/soycms/app/index.php
+share/soycms/app/js/application.js
+share/soycms/app/js/effects.js
+share/soycms/app/js/prototype.js
+share/soycms/app/js/soy2js/soy2js.js
+share/soycms/app/js/soycms_widget.js
+share/soycms/app/webapp/base/CMSApplication.class.php
+share/soycms/app/webapp/base/config.php
+share/soycms/app/webapp/base/layer.php
+share/soycms/app/webapp/base/no_auth.php
+share/soycms/app/webapp/base/soyshop.php
+share/soycms/app/webapp/base/template.php
+share/soycms/common/.htaccess
+share/soycms/common/SOYCMS_SYSTEM_DIRECTORY
+share/soycms/common/action/admin/Administrator/AdministratorActionForm.class.php
+share/soycms/common/action/admin/Administrator/ChangePasswordAction.class.php
+share/soycms/common/action/admin/Administrator/CreateAction.class.php
+share/soycms/common/action/admin/Administrator/DeleteAction.class.php
+share/soycms/common/action/admin/Administrator/DetailAction.class.php
+share/soycms/common/action/admin/Administrator/UpdateAction.class.php
+share/soycms/common/action/admin/Database/CheckVersionAction.class.php
+share/soycms/common/action/admin/Site/CreateAction.class.php
+share/soycms/common/action/admin/Site/LoginAction.class.php
+share/soycms/common/action/admin/Site/RemoveAction.class.php
+share/soycms/common/action/admin/SiteRole/DefaultLoginAction.class.php
+share/soycms/common/action/admin/SiteRole/ListAction.class.php
+share/soycms/common/action/admin/SiteRole/UpdateAction.class.php
+share/soycms/common/action/admin/TestAction.class.php
+share/soycms/common/action/asp/ChangeAccountAction.class.php
+share/soycms/common/action/asp/ChangePasswordAction.class.php
+share/soycms/common/action/asp/CheckRegisterCodeAction.class.php
+share/soycms/common/action/asp/NewAccountAction.class.php
+share/soycms/common/action/asp/NewAccountForm.class.php
+share/soycms/common/action/asp/ReSendRegistCodeMailAction.class.php
+share/soycms/common/action/asp/SendPasswordRemindMailAction.class.php
+share/soycms/common/action/asp/SendRegistrationCodeAction.class.php
+share/soycms/common/action/asp/WithdrawAction.class.php
+share/soycms/common/action/login/LoginAction.class.php
+share/soycms/common/action/login/LogoutAction.class.php
+share/soycms/common/action/site/Block/CreateAction.class.php
+share/soycms/common/action/site/Block/DetailAction.class.php
+share/soycms/common/action/site/Block/RemoveAction.class.php
+share/soycms/common/action/site/Block/SelectAction.class.php
+share/soycms/common/action/site/Block/TemplateAction.class.php
+share/soycms/common/action/site/Block/UpdateAction.class.php
+share/soycms/common/action/site/Blog/BlogListAction.class.php
+share/soycms/common/action/site/Blog/CategoryListAction.class.php
+share/soycms/common/action/site/Blog/DetailAction.class.php
+share/soycms/common/action/site/Blog/EntryListAction.class.php
+share/soycms/common/action/site/Blog/SendTrackbackAction.class.php
+share/soycms/common/action/site/Blog/TemplateRollbackAction.class.php
+share/soycms/common/action/site/Blog/UpdateBlogConfigAction.class.php
+share/soycms/common/action/site/Blog/UpdateTemplateAction.class.php
+share/soycms/common/action/site/CSS/CreateAction.class.php
+share/soycms/common/action/site/CSS/DetailAction.class.php
+share/soycms/common/action/site/CSS/ListAction.class.php
+share/soycms/common/action/site/CSS/RemoveAction.class.php
+share/soycms/common/action/site/CSS/UpdateAction.class.php
+share/soycms/common/action/site/Entry/CancelUploadFileAction.class.php
+share/soycms/common/action/site/Entry/ClosedEntryListAction.class.php
+share/soycms/common/action/site/Entry/CopyAction.class.php
+share/soycms/common/action/site/Entry/CreateAction.class.php
+share/soycms/common/action/site/Entry/EntryActionForm.class.php
+share/soycms/common/action/site/Entry/EntryDetailAction.class.php
+share/soycms/common/action/site/Entry/EntryListAction.class.php
+share/soycms/common/action/site/Entry/History/HistoryDetailAction.class.php
+share/soycms/common/action/site/Entry/History/HistoryListAction.class.php
+share/soycms/common/action/site/Entry/History/RollbackAction.class.php
+share/soycms/common/action/site/Entry/NoLabelEntryListAction.class.php
+share/soycms/common/action/site/Entry/OutOfDateEntryListActoin.class.php
+share/soycms/common/action/site/Entry/PublishAction.class.php
+share/soycms/common/action/site/Entry/RecentEntryListByLabelId.class.php
+share/soycms/common/action/site/Entry/RecentListAction.class.php
+share/soycms/common/action/site/Entry/RemoveAction.class.php
+share/soycms/common/action/site/Entry/SearchAction.class.php
+share/soycms/common/action/site/Entry/UpdateAction.class.php
+share/soycms/common/action/site/Entry/UploadFileAction.class.php
+share/soycms/common/action/site/EntryComment/ChangeDefaultsAction.class.php
+share/soycms/common/action/site/EntryComment/CommentDetailAction.class.php
+share/soycms/common/action/site/EntryComment/CommentListAction.class.php
+share/soycms/common/action/site/EntryComment/CommentUpdateAction.class.php
+share/soycms/common/action/site/EntryComment/DeleteAction.class.php
+share/soycms/common/action/site/EntryComment/RecentCommentListAction.class.php
+share/soycms/common/action/site/EntryComment/ToggleApprovedAction.class.php
+share/soycms/common/action/site/EntryLabel/EntryLabelUpdateAction.class.php
+share/soycms/common/action/site/EntryLabel/NarrowLabelListAction.class.php
+share/soycms/common/action/site/EntryLabel/RemoveLabelForEntriesAction.class.php
+share/soycms/common/action/site/EntryLabel/UpdateDisplayOrderAction.class.php
+share/soycms/common/action/site/EntryLabel/UpdateLabelForEntriesAction.class.php
+share/soycms/common/action/site/EntryTemplate/EntryCSSAction.class.php
+share/soycms/common/action/site/EntryTemplate/TemplateDetailAction.class.php
+share/soycms/common/action/site/EntryTemplate/TemplateListAction.class.php
+share/soycms/common/action/site/EntryTemplate/TemplateRemoveAction.class.php
+share/soycms/common/action/site/EntryTemplate/TemplateUploadAction.class.php
+share/soycms/common/action/site/EntryTemplate/UpdateAction.class.php
+share/soycms/common/action/site/EntryTrackback/ChangeDefaultsAction.class.php
+share/soycms/common/action/site/EntryTrackback/DeleteAction.class.php
+share/soycms/common/action/site/EntryTrackback/RecentTrackbackListAction.class.php
+share/soycms/common/action/site/EntryTrackback/ToggleApprovedAction.class.php
+share/soycms/common/action/site/EntryTrackback/TrackbackDetailAction.class.php
+share/soycms/common/action/site/EntryTrackback/TrackbackListAction.class.php
+share/soycms/common/action/site/Init/InitDetectAction.class.php
+share/soycms/common/action/site/Label/BlogLabelListAction.class.php
+share/soycms/common/action/site/Label/ChangeLabelIconAction.class.php
+share/soycms/common/action/site/Label/LabelBulkCreateAction.class.php
+share/soycms/common/action/site/Label/LabelCreateAction.class.php
+share/soycms/common/action/site/Label/LabelDetailAction.class.php
+share/soycms/common/action/site/Label/LabelListAction.class.php
+share/soycms/common/action/site/Label/LabelUpdateAction.class.php
+share/soycms/common/action/site/Label/OverwriteLabelAction.class.php
+share/soycms/common/action/site/Label/ReDescriptionAction.class.php
+share/soycms/common/action/site/Label/RecentLabelListAction.class.php
+share/soycms/common/action/site/Label/RemoveAction.class.php
+share/soycms/common/action/site/Label/RenameAction.class.php
+share/soycms/common/action/site/Label/StickLabelAction.class.php
+share/soycms/common/action/site/Label/UnstickLabelAction.class.php
+share/soycms/common/action/site/Label/UpdateDisplayOrder.class.php
+share/soycms/common/action/site/LogoutAction.class.php
+share/soycms/common/action/site/Page/ApplyTemplateAction.class.php
+share/soycms/common/action/site/Page/ChangePageIconAction.class.php
+share/soycms/common/action/site/Page/CreateAction.class.php
+share/soycms/common/action/site/Page/DetailAction.class.php
+share/soycms/common/action/site/Page/GetCSSAction.class.php
+share/soycms/common/action/site/Page/History/HistoryDetailAction.class.php
+share/soycms/common/action/site/Page/History/HistoryListAction.class.php
+share/soycms/common/action/site/Page/History/TemplateRollbackAction.class.php
+share/soycms/common/action/site/Page/ListAction.class.php
+share/soycms/common/action/site/Page/Mobile/AddVertualPageAction.class.php
+share/soycms/common/action/site/Page/Mobile/GetMobileDetailPageAction.class.php
+share/soycms/common/action/site/Page/Mobile/MobileUpdateAction.class.php
+share/soycms/common/action/site/Page/Mobile/MoveAction.class.php
+share/soycms/common/action/site/Page/Mobile/MoveDownAction.class.php
+share/soycms/common/action/site/Page/Mobile/MoveUpAction.class.php
+share/soycms/common/action/site/Page/Mobile/UpdateAction.class.php
+share/soycms/common/action/site/Page/Mobile/VirtualTreeDeleteAction.class.php
+share/soycms/common/action/site/Page/PageActionForm.class.php
+share/soycms/common/action/site/Page/PageCountAction.class.php
+share/soycms/common/action/site/Page/PageListAction.class.php
+share/soycms/common/action/site/Page/Preview/CSSEditAction.class.php
+share/soycms/common/action/site/Page/Preview/CSSUpdateAction.class.php
+share/soycms/common/action/site/Page/Preview/PreviewAction.class.php
+share/soycms/common/action/site/Page/PutTrashAction.class.php
+share/soycms/common/action/site/Page/RecentPageListAction.class.php
+share/soycms/common/action/site/Page/RecoverAction.class.php
+share/soycms/common/action/site/Page/RemoveAction.class.php
+share/soycms/common/action/site/Page/SaveCSSAction.class.php
+share/soycms/common/action/site/Page/SaveTemplateAction.class.php
+share/soycms/common/action/site/Page/SetOpenAction.class.php
+share/soycms/common/action/site/Page/UpdateAction.class.php
+share/soycms/common/action/site/Page/UpdateTemplateAction.class.php
+share/soycms/common/action/site/Plugin/CategoryApplyAction.class.php
+share/soycms/common/action/site/Plugin/CreateCategoryAction.class.php
+share/soycms/common/action/site/Plugin/CustomPageAction.class.php
+share/soycms/common/action/site/Plugin/DeleteCategoryAction.class.php
+share/soycms/common/action/site/Plugin/GetAction.class.php
+share/soycms/common/action/site/Plugin/PluginCategoryListAction.class.php
+share/soycms/common/action/site/Plugin/PluginListAction.class.php
+share/soycms/common/action/site/Plugin/ToggleActiveAction.class.php
+share/soycms/common/action/site/SiteConfig/DetailAction.class.php
+share/soycms/common/action/site/SiteConfig/UpdateAction.class.php
+share/soycms/common/action/site/Template/TemplateDetailAction.class.php
+share/soycms/common/action/site/Template/TemplateDownloadAction.class.php
+share/soycms/common/action/site/Template/TemplateListAction.class.php
+share/soycms/common/action/site/Template/TemplateRemoveAction.class.php
+share/soycms/common/action/site/Template/TemplateUploadAction.class.php
+share/soycms/common/action/site/Template/UpdateAction.class.php
+share/soycms/common/action/site/Wizard/WizardDetectAction.class.php
+share/soycms/common/base/ASPSOY2DAO.class.php
+share/soycms/common/base/AppSOY2DAO.class.php
+share/soycms/common/base/CMSAdminPageController.class.php
+share/soycms/common/base/CMSEntryEditorPageBase.class.php
+share/soycms/common/base/CMSFormBase.class.php
+share/soycms/common/base/CMSWebPageBase.class.php
+share/soycms/common/base/CustomPlugin.class.php
+share/soycms/common/base/EntryPagerComponent.class.php
+share/soycms/common/base/MessagePlugin.class.php
+share/soycms/common/base/validator/SOY2ActionFormValidator_ArrayValidator.class.php
+share/soycms/common/base/validator/SOY2ActionFormValidator_DateValidator.class.php
+share/soycms/common/common.inc.php
+share/soycms/common/config/db/mysql.sample.php
+share/soycms/common/config/db/sqlite.php
+share/soycms/common/config/normal.php
+share/soycms/common/config/php.config.php
+share/soycms/common/config/user.config.php.sample
+share/soycms/common/config/user.config.php.sample.en
+share/soycms/common/db/readme
+share/soycms/common/domain/admin/AdminDataSets.class.php
+share/soycms/common/domain/admin/AdminDataSetsDAO.class.php
+share/soycms/common/domain/admin/Administrator.class.php
+share/soycms/common/domain/admin/AdministratorDAO.class.php
+share/soycms/common/domain/admin/AppRole.class.php
+share/soycms/common/domain/admin/AppRoleDAO.class.php
+share/soycms/common/domain/admin/Site.class.php
+share/soycms/common/domain/admin/SiteDAO.class.php
+share/soycms/common/domain/admin/SiteRole.class.php
+share/soycms/common/domain/admin/SiteRoleDAO.class.php
+share/soycms/common/domain/asp/ASPUser.class.php
+share/soycms/common/domain/asp/ASPUserDAO.class.php
+share/soycms/common/domain/asp/CertificationQueue.class.php
+share/soycms/common/domain/asp/CertificationQueueDAO.class.php
+share/soycms/common/domain/asp/DownloadAppLog.class.php
+share/soycms/common/domain/asp/DownloadAppLogDAO.class.php
+share/soycms/common/domain/asp/DownloadCount.class.php
+share/soycms/common/domain/asp/DownloadCountDAO.class.php
+share/soycms/common/domain/asp/DownloadLog.class.php
+share/soycms/common/domain/asp/DownloadLogDAO.class.php
+share/soycms/common/domain/asp/UserSite.class.php
+share/soycms/common/domain/asp/UserSiteDAO.class.php
+share/soycms/common/domain/cms/ApplicationPage.class.php
+share/soycms/common/domain/cms/ApplicationPageDAO.class.php
+share/soycms/common/domain/cms/Block.class.php
+share/soycms/common/domain/cms/BlockDAO.class.php
+share/soycms/common/domain/cms/BlogPage.class.php
+share/soycms/common/domain/cms/BlogPageDAO.class.php
+share/soycms/common/domain/cms/CSS.class.php
+share/soycms/common/domain/cms/CSSDAO.class.php
+share/soycms/common/domain/cms/DataSets.class.php
+share/soycms/common/domain/cms/DataSetsDAO.class.php
+share/soycms/common/domain/cms/Entry.class.php
+share/soycms/common/domain/cms/EntryComment.class.php
+share/soycms/common/domain/cms/EntryCommentDAO.class.php
+share/soycms/common/domain/cms/EntryDAO.class.php
+share/soycms/common/domain/cms/EntryHistory.class.php
+share/soycms/common/domain/cms/EntryHistoryDAO.class.php
+share/soycms/common/domain/cms/EntryLabel.class.php
+share/soycms/common/domain/cms/EntryLabelDAO.class.php
+share/soycms/common/domain/cms/EntryTemplate.class.php
+share/soycms/common/domain/cms/EntryTemplateDAO.class.php
+share/soycms/common/domain/cms/EntryTrackback.class.php
+share/soycms/common/domain/cms/EntryTrackbackDAO.class.php
+share/soycms/common/domain/cms/Label.class.php
+share/soycms/common/domain/cms/LabelDAO.class.php
+share/soycms/common/domain/cms/MobilePage.class.php
+share/soycms/common/domain/cms/MobilePageDAO.class.php
+share/soycms/common/domain/cms/Page.class.php
+share/soycms/common/domain/cms/PageDAO.class.php
+share/soycms/common/domain/cms/Plugin.class.php
+share/soycms/common/domain/cms/PluginDAO.class.php
+share/soycms/common/domain/cms/SiteConfig.class.php
+share/soycms/common/domain/cms/SiteConfigDAO.class.php
+share/soycms/common/domain/cms/Template.class.php
+share/soycms/common/domain/cms/TemplateDAO.class.php
+share/soycms/common/domain/cms/TemplateHistory.class.php
+share/soycms/common/domain/cms/TemplateHistoryDAO.class.php
+share/soycms/common/domain/cms/URLShortener.class.php
+share/soycms/common/domain/cms/URLShortenerDAO.class.php
+share/soycms/common/error/admin.php
+share/soycms/common/error/config_db.php
+share/soycms/common/error/error.func.php
+share/soycms/common/im.inc.php
+share/soycms/common/lang/en.php
+share/soycms/common/lang/ja.php
+share/soycms/common/lib/SOYCMSEmojiUtil.class.php
+share/soycms/common/lib/json_lib.php
+share/soycms/common/lib/magic_quote_gpc.php
+share/soycms/common/lib/pictogram-1.1/docomo_convert.json
+share/soycms/common/lib/pictogram-1.1/docomo_emoji.json
+share/soycms/common/lib/pictogram-1.1/ezweb_convert.json
+share/soycms/common/lib/pictogram-1.1/ezweb_emoji.json
+share/soycms/common/lib/pictogram-1.1/softbank_convert.json
+share/soycms/common/lib/pictogram-1.1/softbank_emoji.json
+share/soycms/common/lib/soy2_build.php
+share/soycms/common/logic/admin/Administrator/AdministratorLogic.class.php
+share/soycms/common/logic/admin/Application/ApplicationLogic.class.php
+share/soycms/common/logic/admin/Site/404.html
+share/soycms/common/logic/admin/Site/DomainRootSiteLogic.class.php
+share/soycms/common/logic/admin/Site/SiteCreateLogic.class.php
+share/soycms/common/logic/admin/Site/SiteDeleteLogic.class.php
+share/soycms/common/logic/admin/Site/SiteLogic.class.php
+share/soycms/common/logic/admin/Site/TemplatePack/200_soycmsblog_manifest.xml
+share/soycms/common/logic/admin/Site/TemplatePack/soycmsblog.zip
+share/soycms/common/logic/admin/Site/TopPage.html
+share/soycms/common/logic/admin/SiteRole/SiteRoleLogic.class.php
+share/soycms/common/logic/asp/ASPMailLogic.class.php
+share/soycms/common/logic/asp/ASPSiteLogic.class.php
+share/soycms/common/logic/asp/mail/mail_activation.txt
+share/soycms/common/logic/asp/mail/mail_password.txt
+share/soycms/common/logic/asp/mail/mail_register.txt
+share/soycms/common/logic/db/DBVersionLogic.class.php
+share/soycms/common/logic/db/UpdateDBLogic.class.php
+share/soycms/common/logic/file/ImageLogic.class.php
+share/soycms/common/logic/init/InitializeLogic.class.php
+share/soycms/common/logic/login/ASPLoginLogic.class.php
+share/soycms/common/logic/login/AdministratorLogic.class.php
+share/soycms/common/logic/mail/MailConfigLogic.class.php
+share/soycms/common/logic/mail/MailLogic.class.php
+share/soycms/common/logic/site/Block/BlockLogic.class.php
+share/soycms/common/logic/site/CSS/CSSLogic.class.php
+share/soycms/common/logic/site/Entry/EntryCommentLogic.class.php
+share/soycms/common/logic/site/Entry/EntryHistoryLogic.class.php
+share/soycms/common/logic/site/Entry/EntryLogic.class.php
+share/soycms/common/logic/site/Entry/EntryTrackbackLogic.class.php
+share/soycms/common/logic/site/EntryTemplate/TemplateLogic.class.php
+share/soycms/common/logic/site/Filter/EntryAdministratorFilterLogic.class.php
+share/soycms/common/logic/site/Init/CreateSampleLogic.class.php
+share/soycms/common/logic/site/Init/sampleomame.zip
+share/soycms/common/logic/site/Init/sampleomame_en.zip
+share/soycms/common/logic/site/Label/LabelLogic.class.php
+share/soycms/common/logic/site/Page/BlogPageLogic.class.php
+share/soycms/common/logic/site/Page/CreatePageLogic.class.php
+share/soycms/common/logic/site/Page/PageLogic.class.php
+share/soycms/common/logic/site/Page/blog/archive.html
+share/soycms/common/logic/site/Page/blog/entry.html
+share/soycms/common/logic/site/Page/blog/top.html
+share/soycms/common/logic/site/Page/default.html
+share/soycms/common/logic/site/Page/mobile_default.html
+share/soycms/common/logic/site/SiteConfig/SiteConfigLogic.class.php
+share/soycms/common/logic/site/Template/TemplateLogic.class.php
+share/soycms/common/message/help/admin.message
+share/soycms/common/message/help/block.message
+share/soycms/common/message/help/blog.message
+share/soycms/common/message/help/entry.message
+share/soycms/common/message/help/page.message
+share/soycms/common/message/help/template.message
+share/soycms/common/message/language/en/help/admin.message
+share/soycms/common/message/language/en/help/block.message
+share/soycms/common/message/language/en/help/blog.message
+share/soycms/common/message/language/en/help/entry.message
+share/soycms/common/message/language/en/help/page.message
+share/soycms/common/message/language/en/help/template.message
+share/soycms/common/message/language/en/soyboy/common.message
+share/soycms/common/message/language/en/soyboy/entry.message
+share/soycms/common/message/language/en/soyboy/label.message
+share/soycms/common/message/language/en/soyboy/page.message
+share/soycms/common/message/language/en/soyboy/template.message
+share/soycms/common/message/language/en/soyboy/wizard.message
+share/soycms/common/message/language/en/soycms/admin.message
+share/soycms/common/message/language/en/soycms/common.message
+share/soycms/common/message/language/en/soycms/sampledata.message
+share/soycms/common/message/language/en/soycms/soycms.message
+share/soycms/common/message/soyboy/common.message
+share/soycms/common/message/soyboy/entry.message
+share/soycms/common/message/soyboy/label.message
+share/soycms/common/message/soyboy/page.message
+share/soycms/common/message/soyboy/template.message
+share/soycms/common/message/soyboy/wizard.message
+share/soycms/common/message/soycms/admin.message
+share/soycms/common/message/soycms/common.message
+share/soycms/common/message/soycms/sampledata.message
+share/soycms/common/message/soycms/soycms.message
+share/soycms/common/site.func.php
+share/soycms/common/site.inc.php
+share/soycms/common/site_include/CMSApplicationPage.class.php
+share/soycms/common/site_include/CMSBlogPage.class.php
+share/soycms/common/site_include/CMSLabel.class.php
+share/soycms/common/site_include/CMSMobilePage.class.php
+share/soycms/common/site_include/CMSPage.class.php
+share/soycms/common/site_include/CMSPageController.class.php
+share/soycms/common/site_include/CMSPageLinkPlugin.class.php
+share/soycms/common/site_include/CMSPagePluginBase.class.php
+share/soycms/common/site_include/DateLabel.class.php
+share/soycms/common/site_include/block/EntryBlockComponent/block.php
+share/soycms/common/site_include/block/EntryBlockComponent/form.html
+share/soycms/common/site_include/block/EntryBlockComponent/form_en.html
+share/soycms/common/site_include/block/HTMLBlockComponent/block.php
+share/soycms/common/site_include/block/HTMLBlockComponent/form.html
+share/soycms/common/site_include/block/HTMLBlockComponent/form_en.html
+share/soycms/common/site_include/block/LabeledBlockComponent/block.php
+share/soycms/common/site_include/block/LabeledBlockComponent/form.html
+share/soycms/common/site_include/block/LabeledBlockComponent/form_en.html
+share/soycms/common/site_include/block/MultiLabelBlockComponent/block.php
+share/soycms/common/site_include/block/MultiLabelBlockComponent/form.html
+share/soycms/common/site_include/block/MultiLabelBlockComponent/form_en.html
+share/soycms/common/site_include/block/ScriptModuleBlockComponent/block.php
+share/soycms/common/site_include/block/ScriptModuleBlockComponent/form.html
+share/soycms/common/site_include/block/ScriptModuleBlockComponent/form_en.html
+share/soycms/common/site_include/block/SiteLabeledBlockComponent/block.php
+share/soycms/common/site_include/block/SiteLabeledBlockComponent/form.html
+share/soycms/common/site_include/block/SiteLabeledBlockComponent/form_en.html
+share/soycms/common/site_include/blog/entry.php
+share/soycms/common/site_include/blog/include.php
+share/soycms/common/site_include/blog/top_archive.php
+share/soycms/common/site_include/plugin/.htaccess
+share/soycms/common/site_include/plugin/ButtonSocial/ButtonSocial.php
+share/soycms/common/site_include/plugin/ButtonSocial/common.php
+share/soycms/common/site_include/plugin/ButtonSocial/config.php
+share/soycms/common/site_include/plugin/CustomField/CustomField.php
+share/soycms/common/site_include/plugin/CustomField/entity.php
+share/soycms/common/site_include/plugin/CustomField/form.html
+share/soycms/common/site_include/plugin/CustomField/form.php
+share/soycms/common/site_include/plugin/CustomField/icon.gif
+share/soycms/common/site_include/plugin/admin_block_manager/admin_block_manager.php
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_ConfirmPage.class.php
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_ConfirmPage.html
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_DetailPage.class.php
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_DetailPage.html
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_StartPage.class.php
+share/soycms/common/site_include/plugin/admin_block_manager/files/ABM_StartPage.html
+share/soycms/common/site_include/plugin/admin_block_manager/index.php
+share/soycms/common/site_include/plugin/bread/bread.php
+share/soycms/common/site_include/plugin/bread/icon.gif
+share/soycms/common/site_include/plugin/bread/info.html
+share/soycms/common/site_include/plugin/calendar/calendar.php
+share/soycms/common/site_include/plugin/calendar/icon.gif
+share/soycms/common/site_include/plugin/calendar/info.html
+share/soycms/common/site_include/plugin/icon_manager/form.html
+share/soycms/common/site_include/plugin/icon_manager/icon_manager.php
+share/soycms/common/site_include/plugin/ping_send/config.php
+share/soycms/common/site_include/plugin/ping_send/icon.gif
+share/soycms/common/site_include/plugin/ping_send/ping_send.php
+share/soycms/common/site_include/plugin/soycms_entry_info/config.php
+share/soycms/common/site_include/plugin/soycms_entry_info/keywordForm.php
+share/soycms/common/site_include/plugin/soycms_entry_info/soycms_entry_info.php
+share/soycms/common/site_include/plugin/soycms_info/config.html
+share/soycms/common/site_include/plugin/soycms_info/config.php
+share/soycms/common/site_include/plugin/soycms_info/icon.gif
+share/soycms/common/site_include/plugin/soycms_info/soycms_info.php
+share/soycms/common/site_include/plugin/soycms_page_info_plugin/config.php
+share/soycms/common/site_include/plugin/soycms_page_info_plugin/icon.gif
+share/soycms/common/site_include/plugin/soycms_page_info_plugin/soycms_page_info_plugin.php
+share/soycms/common/site_include/plugin/soycms_server_info/config.html
+share/soycms/common/site_include/plugin/soycms_server_info/config.php
+share/soycms/common/site_include/plugin/soycms_server_info/icon.gif
+share/soycms/common/site_include/plugin/soycms_server_info/phpinfo.php
+share/soycms/common/site_include/plugin/soycms_server_info/soycms_server_info.php
+share/soycms/common/site_include/plugin/soycms_spam_blocker/config.php
+share/soycms/common/site_include/plugin/soycms_spam_blocker/icon.gif
+share/soycms/common/site_include/plugin/soycms_spam_blocker/soycms_spam_blocker.php
+share/soycms/common/site_include/plugin/soycms_switch_editor/config.html
+share/soycms/common/site_include/plugin/soycms_switch_editor/config.php
+share/soycms/common/site_include/plugin/soycms_switch_editor/icon.gif
+share/soycms/common/site_include/plugin/soycms_switch_editor/soycms_switch_editor.php
+share/soycms/common/site_include/plugin/soygallery_connector/class/common.php
+share/soycms/common/site_include/plugin/soygallery_connector/config.php
+share/soycms/common/site_include/plugin/soygallery_connector/icon.gif
+share/soycms/common/site_include/plugin/soygallery_connector/soygallery_connector.php
+share/soycms/common/site_include/plugin/soylist_connector/class/common.php
+share/soycms/common/site_include/plugin/soylist_connector/config.html
+share/soycms/common/site_include/plugin/soylist_connector/config.php
+share/soycms/common/site_include/plugin/soylist_connector/soylist_connector.php
+share/soycms/common/site_include/plugin/soyshop_connector/config.php
+share/soycms/common/site_include/plugin/soyshop_connector/icon.gif
+share/soycms/common/site_include/plugin/soyshop_connector/soyshop_connector.php
+share/soycms/common/site_include/plugin/sync_template/config.php
+share/soycms/common/site_include/plugin/sync_template/description.html
+share/soycms/common/site_include/plugin/sync_template/icon.gif
+share/soycms/common/site_include/plugin/sync_template/style.css
+share/soycms/common/site_include/plugin/sync_template/sync_template.php
+share/soycms/common/site_include/plugin/url_shortener/icon.gif
+share/soycms/common/site_include/plugin/url_shortener/page/_init/config_form.html
+share/soycms/common/site_include/plugin/url_shortener/page/_init/config_form.php
+share/soycms/common/site_include/plugin/url_shortener/page/config_form.html
+share/soycms/common/site_include/plugin/url_shortener/page/config_form.php
+share/soycms/common/site_include/plugin/url_shortener/sql/init_mysql.sql
+share/soycms/common/site_include/plugin/url_shortener/sql/init_sqlite.sql
+share/soycms/common/site_include/plugin/url_shortener/url_shortener.php
+share/soycms/common/soycms.config.php
+share/soycms/common/sql/init_asp.sql
+share/soycms/common/sql/init_cms_mysql.sql
+share/soycms/common/sql/init_cms_sqlite.sql
+share/soycms/common/sql/init_file_mysql.sql
+share/soycms/common/sql/init_file_sqlite.sql
+share/soycms/common/sql/init_site_mysql.sql
+share/soycms/common/sql/init_site_sqlite.sql
+share/soycms/common/sql/readme
+share/soycms/common/sql/update/admin/mysql/readme
+share/soycms/common/sql/update/admin/sqlite/readme
+share/soycms/common/sql/update/site/mysql/readme
+share/soycms/common/sql/update/site/mysql/update-2.sql
+share/soycms/common/sql/update/site/mysql/update-3.sql
+share/soycms/common/sql/update/site/sqlite/readme
+share/soycms/common/sql/update/site/sqlite/update-2.sql
+share/soycms/common/sql/update/site/sqlite/update-3.sql
+share/soycms/common/util/CMSFileManager.class.php
+share/soycms/common/util/CMSMessageManager.class.php
+share/soycms/common/util/CMSPlugin.class.php
+share/soycms/common/util/CMSToolBox.class.php
+share/soycms/common/util/CMSUtil.class.php
+share/soycms/common/util/CMSVersionUpUtil.class.php
+share/soycms/common/util/PasswordUtil.class.php
+share/soycms/common/util/SOYShopUtil.class.php
+share/soycms/common/util/ServerInfoUtil.class.php
+share/soycms/common/util/UserInfoUtil.class.php
+share/soycms/common/util/userinfoutil/asp.php
+share/soycms/common/util/userinfoutil/normal.php
+share/soycms/license/gpl-2.0.txt
+share/soycms/soycms/SOYCMS_SYSTEM_DIRECTORY
+share/soycms/soycms/css/blog/comment_trackback.css
+share/soycms/soycms/css/blog/config.css
+share/soycms/soycms/css/blog/dashboard.css
+share/soycms/soycms/css/blog/entrylist.css
+share/soycms/soycms/css/blueprint/ie.css
+share/soycms/soycms/css/blueprint/plugins/fancy-type/readme.txt
+share/soycms/soycms/css/blueprint/plugins/fancy-type/screen.css
+share/soycms/soycms/css/blueprint/print.css
+share/soycms/soycms/css/blueprint/screen.css
+share/soycms/soycms/css/blueprint/src/forms.css
+share/soycms/soycms/css/blueprint/src/grid.css
+share/soycms/soycms/css/blueprint/src/grid.png
+share/soycms/soycms/css/blueprint/src/ie.css
+share/soycms/soycms/css/blueprint/src/print.css
+share/soycms/soycms/css/blueprint/src/reset.css
+share/soycms/soycms/css/blueprint/src/typography.css
+share/soycms/soycms/css/dashboard.css
+share/soycms/soycms/css/editor/editor.css
+share/soycms/soycms/css/editor/editor_images/tab.gif
+share/soycms/soycms/css/editor/editor_images/tab_active.gif
+share/soycms/soycms/css/editor/editor_images/tab_inactive.gif
+share/soycms/soycms/css/entry/editor.css
+share/soycms/soycms/css/entry/entry.css
+share/soycms/soycms/css/entry/entry_images/blog_icon.jpg
+share/soycms/soycms/css/entry/entry_images/function_left.jpg
+share/soycms/soycms/css/entry/entry_images/function_middle.jpg
+share/soycms/soycms/css/entry/entry_images/function_right.jpg
+share/soycms/soycms/css/entry/entry_images/page_icon.jpg
+share/soycms/soycms/css/entry/listPanel.css
+share/soycms/soycms/css/filemanager/file.css
+share/soycms/soycms/css/filemanager/folder.gif
+share/soycms/soycms/css/filemanager/icon_plain.gif
+share/soycms/soycms/css/filemanager/icons/css.gif
+share/soycms/soycms/css/filemanager/icons/html.gif
+share/soycms/soycms/css/filemanager/icons/js.gif
+share/soycms/soycms/css/filemanager/icons/swf.gif
+share/soycms/soycms/css/filemanager/icons/txt.gif
+share/soycms/soycms/css/filemanager/loading.gif
+share/soycms/soycms/css/form.css
+share/soycms/soycms/css/global_page/globalpage.css
+share/soycms/soycms/css/global_page/globalpage_images/tab_active.jpg
+share/soycms/soycms/css/global_page/globalpage_images/tab_inactive.jpg
+share/soycms/soycms/css/img/background.jpg
+share/soycms/soycms/css/img/login.gif
+share/soycms/soycms/css/img/logo.gif
+share/soycms/soycms/css/img/logo_big.gif
+share/soycms/soycms/css/img/logo_final.gif
+share/soycms/soycms/css/img/logo_small.gif
+share/soycms/soycms/css/img/main/active_tab.jpg
+share/soycms/soycms/css/img/main/background.jpg
+share/soycms/soycms/css/img/main/content_bar_bottom.jpg
+share/soycms/soycms/css/img/main/content_bar_bottom_left.jpg
+share/soycms/soycms/css/img/main/content_bar_bottom_right.jpg
+share/soycms/soycms/css/img/main/content_bar_left.jpg
+share/soycms/soycms/css/img/main/content_bar_left_top.jpg
+share/soycms/soycms/css/img/main/content_bar_right.jpg
+share/soycms/soycms/css/img/main/content_bar_right_top.jpg
+share/soycms/soycms/css/img/main/content_top_bg.jpg
+share/soycms/soycms/css/img/main/content_top_bg_for_wizard.jpg
+share/soycms/soycms/css/img/main/error.png
+share/soycms/soycms/css/img/main/footer_bg.jpg
+share/soycms/soycms/css/img/main/footer_left.gif
+share/soycms/soycms/css/img/main/footer_middle.gif
+share/soycms/soycms/css/img/main/footer_right.gif
+share/soycms/soycms/css/img/main/h1_bg.gif
+share/soycms/soycms/css/img/main/h1_bg.jpg
+share/soycms/soycms/css/img/main/h2_bg.jpg
+share/soycms/soycms/css/img/main/hukidasi.gif
+share/soycms/soycms/css/img/main/hukidasi.png
+share/soycms/soycms/css/img/main/logo.gif
+share/soycms/soycms/css/img/main/menu_active.jpg
+share/soycms/soycms/css/img/main/menu_inactive.jpg
+share/soycms/soycms/css/img/main/menu_inactive_hover.jpg
+share/soycms/soycms/css/img/main/subfunc_bg.jpg
+share/soycms/soycms/css/img/main/tab.jpg
+share/soycms/soycms/css/init/create_page.css
+share/soycms/soycms/css/label/label.css
+share/soycms/soycms/css/label/labelList.css
+share/soycms/soycms/css/layer/layer.css
+share/soycms/soycms/css/layer/layer_images/bar_left.gif
+share/soycms/soycms/css/layer/layer_images/bar_middle.gif
+share/soycms/soycms/css/layer/layer_images/bar_right.gif
+share/soycms/soycms/css/layer/layer_images/bottom_bar_left.gif
+share/soycms/soycms/css/layer/layer_images/bottom_bar_middle.gif
+share/soycms/soycms/css/layer/layer_images/bottom_bar_right.gif
+share/soycms/soycms/css/layer/layer_images/close_button.gif
+share/soycms/soycms/css/layer/layer_images/close_button_down.png
+share/soycms/soycms/css/layer/layer_images/small.png
+share/soycms/soycms/css/layer/layer_images/small_down.png
+share/soycms/soycms/css/pageTreeOverview.css
+share/soycms/soycms/css/pagelist/images/after.gif
+share/soycms/soycms/css/pagelist/images/before.gif
+share/soycms/soycms/css/pagelist/images/blog.png
+share/soycms/soycms/css/pagelist/images/cross.png
+share/soycms/soycms/css/pagelist/images/delete.png
+share/soycms/soycms/css/pagelist/images/deleted.gif
+share/soycms/soycms/css/pagelist/images/draft.gif
+share/soycms/soycms/css/pagelist/images/not_open.png
+share/soycms/soycms/css/pagelist/images/out_of_date.png
+share/soycms/soycms/css/pagelist/images/out_of_date_before.png
+share/soycms/soycms/css/pagelist/images/out_of_date_past.png
+share/soycms/soycms/css/pagelist/images/page_panel_bg.jpg
+share/soycms/soycms/css/pagelist/pagelist.css
+share/soycms/soycms/css/pagetable/pagetable.css
+share/soycms/soycms/css/pagetree_images/arrow_branch.png
+share/soycms/soycms/css/pagetree_images/asterisk_yellow.png
+share/soycms/soycms/css/pagetree_images/blogpage.png
+share/soycms/soycms/css/pagetree_images/bottom_path.png
+share/soycms/soycms/css/pagetree_images/middle_path.png
+share/soycms/soycms/css/pagetree_images/none_path.png
+share/soycms/soycms/css/pagetree_images/page.png
+share/soycms/soycms/css/pagetree_images/top_path.png
+share/soycms/soycms/css/popup_images/Thumbs.db
+share/soycms/soycms/css/popup_images/popup_left.jpg
+share/soycms/soycms/css/popup_images/popup_middle.jpg
+share/soycms/soycms/css/popup_images/popup_right.jpg
+share/soycms/soycms/css/style.css
+share/soycms/soycms/css/table.css
+share/soycms/soycms/css/toolbox/toolbox.css
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_active.jpg
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_bottom.jpg
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_inactive.jpg
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_middle.jpg
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_singletab.jpg
+share/soycms/soycms/css/toolbox/toolbox_images/toolbox_top.jpg
+share/soycms/soycms/css/wizard/create_page.css
+share/soycms/soycms/image/icon/default_plugin_icon.png
+share/soycms/soycms/image/icon/help.gif
+share/soycms/soycms/image/labelicon/default.gif
+share/soycms/soycms/image/labelicon/folder2_1.gif
+share/soycms/soycms/image/labelicon/folder2_2.gif
+share/soycms/soycms/image/labelicon/folder2_3.gif
+share/soycms/soycms/image/labelicon/folder3_1.gif
+share/soycms/soycms/image/labelicon/folder3_2.gif
+share/soycms/soycms/image/labelicon/folder3_3.gif
+share/soycms/soycms/image/labelicon/folder4_1.gif
+share/soycms/soycms/image/labelicon/folder4_2.gif
+share/soycms/soycms/image/labelicon/folder4_3.gif
+share/soycms/soycms/image/labelicon/folder5_1.gif
+share/soycms/soycms/image/labelicon/folder5_2.gif
+share/soycms/soycms/image/labelicon/folder5_3.gif
+share/soycms/soycms/image/labelicon/folder6_1.gif
+share/soycms/soycms/image/labelicon/folder6_2.gif
+share/soycms/soycms/image/labelicon/folder6_3.gif
+share/soycms/soycms/image/labelicon/folder7_1.gif
+share/soycms/soycms/image/labelicon/folder7_2.gif
+share/soycms/soycms/image/labelicon/folder7_3.gif
+share/soycms/soycms/image/labelicon/folder8_1.gif
+share/soycms/soycms/image/labelicon/folder8_2.gif
+share/soycms/soycms/image/labelicon/folder8_3.gif
+share/soycms/soycms/image/labelicon/tag_01_001.gif
+share/soycms/soycms/image/labelicon/tag_01_002.gif
+share/soycms/soycms/image/labelicon/tag_01_003.gif
+share/soycms/soycms/image/labelicon/tag_02_001.gif
+share/soycms/soycms/image/labelicon/tag_02_002.gif
+share/soycms/soycms/image/labelicon/tag_02_003.gif
+share/soycms/soycms/image/labelicon/tag_03_001.gif
+share/soycms/soycms/image/labelicon/tag_03_002.gif
+share/soycms/soycms/image/labelicon/tag_03_003.gif
+share/soycms/soycms/image/labelicon/tag_04_001.gif
+share/soycms/soycms/image/labelicon/tag_04_002.gif
+share/soycms/soycms/image/labelicon/tag_04_003.gif
+share/soycms/soycms/image/labelicon/tag_05_001.gif
+share/soycms/soycms/image/labelicon/tag_05_002.gif
+share/soycms/soycms/image/labelicon/tag_05_003.gif
+share/soycms/soycms/image/labelicon/tag_06_001.gif
+share/soycms/soycms/image/labelicon/tag_06_002.gif
+share/soycms/soycms/image/labelicon/tag_06_003.gif
+share/soycms/soycms/image/labelicon/tag_07_001.gif
+share/soycms/soycms/image/labelicon/tag_07_002.gif
+share/soycms/soycms/image/labelicon/tag_07_003.gif
+share/soycms/soycms/image/pageicon/blog_default.gif
+share/soycms/soycms/image/pageicon/deleted.gif
+share/soycms/soycms/image/pageicon/notfound.gif
+share/soycms/soycms/image/pageicon/page_default.gif
+share/soycms/soycms/image/simplemode/back.gif
+share/soycms/soycms/image/simplemode/new.gif
+share/soycms/soycms/image/simplemode/search.gif
+share/soycms/soycms/image/tree/tree.gif
+share/soycms/soycms/index.php
+share/soycms/soycms/js/ckeditor/.htaccess
+share/soycms/soycms/js/ckeditor/adapters/jquery.js
+share/soycms/soycms/js/ckeditor/ckeditor.js
+share/soycms/soycms/js/ckeditor/ckeditor_basic.js
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/ckeditor.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/fckeditor.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/php/ckeditor.php
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/php/fckeditor.php
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/php/popup.php
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/php/popups.php
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/php/standalone.php
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/popup.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/popups.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/public_api.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/sample.css
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/standalone.html
+share/soycms/soycms/js/ckeditor/ckfinder/_samples/standalone_v1.html
+share/soycms/soycms/js/ckeditor/ckfinder/changelog.txt
+share/soycms/soycms/js/ckeditor/ckfinder/ckfinder.html
+share/soycms/soycms/js/ckeditor/ckfinder/ckfinder.js
+share/soycms/soycms/js/ckeditor/ckfinder/ckfinder.php
+share/soycms/soycms/js/ckeditor/ckfinder/ckfinder_v1.js
+share/soycms/soycms/js/ckeditor/ckfinder/config.js
+share/soycms/soycms/js/ckeditor/ckfinder/config.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/ckfinder_php4.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/ckfinder_php5.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/connector.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/constants.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/cs.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/da.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/de.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/el.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/en.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/es-mx.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/es.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/fi.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/fr.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/he.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/hu.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/it.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/ja.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/lv.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/nb.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/nl.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/nn.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/no.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/pl.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/pt-br.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/ru.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/sk.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/sl.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/sv.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/zh-cn.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/lang/zh-tw.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/CommandHandlerBase.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/CopyFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/CreateFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/DeleteFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/DeleteFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/DownloadFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/FileUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/GetFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/GetFolders.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/Init.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/MoveFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/QuickUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/RenameFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/RenameFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/Thumbnail.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/CommandHandler/XmlCommandHandlerBase.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/AccessControlConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Config.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Connector.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Factory.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/FolderHandler.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Hooks.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/ImagesConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Registry.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/ResourceTypeConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/ThumbnailsConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Core/Xml.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/ErrorHandler/Base.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/ErrorHandler/FileUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/ErrorHandler/Http.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/ErrorHandler/QuickUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Utils/FileSystem.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Utils/Misc.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Utils/Security.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php4/Utils/XmlNode.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/CommandHandlerBase.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/CopyFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/CreateFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/DeleteFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/DeleteFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/DownloadFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/FileUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/GetFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/GetFolders.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/Init.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/MoveFiles.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/QuickUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/RenameFile.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/RenameFolder.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/Thumbnail.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/CommandHandler/XmlCommandHandlerBase.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/AccessControlConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Config.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Connector.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Factory.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/FolderHandler.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Hooks.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/ImagesConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Registry.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/ResourceTypeConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/ThumbnailsConfig.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Core/Xml.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/ErrorHandler/Base.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/ErrorHandler/FileUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/ErrorHandler/Http.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/ErrorHandler/QuickUpload.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Utils/FileSystem.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Utils/Misc.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Utils/Security.php
+share/soycms/soycms/js/ckeditor/ckfinder/core/connector/php/php5/Utils/XmlNode.php
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/001.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/002.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/003.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/004.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/005.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/006.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/007.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/008.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/009.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/010.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/011.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/012.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/013.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/header.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/001.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/002.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/003.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/004.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/005.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/006.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/007.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/008.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/009.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/010.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/011.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/012.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/013.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/014.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/015.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/016.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/017.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/018.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/019.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/images/020.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/license.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/other/help.css
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/other/help.js
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/suggestions.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/files/toc.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/en/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/001.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/002.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/003.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/004.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/005.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/006.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/007.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/008.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/009.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/010.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/011.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/012.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/013.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/header.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/001.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/002.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/003.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/004.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/005.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/006.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/007.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/008.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/009.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/010.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/011.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/012.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/013.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/014.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/015.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/016.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/017.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/018.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/019.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/images/020.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/license.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/other/help.css
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/other/help.js
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/suggestions.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/files/toc.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es-mx/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/001.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/002.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/003.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/004.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/005.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/006.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/007.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/008.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/009.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/010.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/011.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/012.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/013.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/header.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/001.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/002.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/003.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/004.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/005.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/006.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/007.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/008.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/009.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/010.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/011.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/012.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/013.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/014.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/015.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/016.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/017.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/018.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/019.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/images/020.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/license.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/other/help.css
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/other/help.js
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/suggestions.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/files/toc.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/es/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/001.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/002.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/003.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/004.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/005.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/006.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/007.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/008.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/009.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/010.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/011.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/012.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/013.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/header.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/license.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/other/help.js
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/suggestions.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/files/toc.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/fi/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/001.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/002.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/003.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/004.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/005.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/006.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/007.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/008.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/009.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/010.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/011.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/012.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/013.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/header.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/001.jpg
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/002.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/003.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/004.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/005.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/006.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/007.jpg
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/008.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/009.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/010.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/011.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/012.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/013.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/014.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/015.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/016.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/017.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/018.gif
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/019.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/images/020.png
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/license.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/other/help.css
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/other/help.js
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/suggestions.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/files/toc.html
+share/soycms/soycms/js/ckeditor/ckfinder/help/pl/index.html
+share/soycms/soycms/js/ckeditor/ckfinder/install.txt
+share/soycms/soycms/js/ckeditor/ckfinder/lang/_translationstatus.txt
+share/soycms/soycms/js/ckeditor/ckfinder/lang/cs.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/da.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/de.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/el.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/en.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/es-mx.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/es.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/fi.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/fr.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/he.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/hu.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/it.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/ja.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/lv.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/nb.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/nl.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/nn.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/no.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/pl.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/pt-br.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/ru.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/sk.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/sl.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/sv.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/zh-cn.js
+share/soycms/soycms/js/ckeditor/ckfinder/lang/zh-tw.js
+share/soycms/soycms/js/ckeditor/ckfinder/license.txt
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/dummy/lang/en.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/dummy/lang/pl.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/dummy/plugin.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/LICENSE
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/css/csharpcolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/js/parsecsharp.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/js/tokenizecsharp.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/php/LICENSE
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/php/css/phpcolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/parsephp.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/parsephphtmlmixed.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/tokenizephp.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/csscolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/docs.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/font.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/jscolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/sparqlcolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/css/xmlcolors.css
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/codemirror.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/editor.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/highlight.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/mirrorframe.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsecss.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsedummy.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsehtmlmixed.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsejavascript.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsesparql.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/parsexml.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/select.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/stringstream.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/tokenize.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/tokenizejavascript.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/undo.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/codemirror/js/util.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/plugin.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/fileeditor/plugin.php
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/imageresize/images/mini.gif
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/imageresize/plugin.js
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/imageresize/plugin.php
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/watermark/logo.gif
+share/soycms/soycms/js/ckeditor/ckfinder/plugins/watermark/plugin.php
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/app.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/host.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/icons.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/ckffolder.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/ckffolderopened.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/ckfminus.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/ckfnothumb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/ckfplus.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/ai.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/avi.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/bmp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/cs.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/default.icon.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/dll.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/doc.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/docx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/exe.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/fla.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/gif.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/jpg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/js.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/mdb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/mp3.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/ogg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/pdf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/ppt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/pptx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/rdp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/swf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/swt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/txt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/vsd.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/xls.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/xlsx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/xml.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/16/zip.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/ai.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/avi.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/bmp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/cs.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/default.icon.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/dll.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/doc.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/docx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/exe.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/fla.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/gif.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/jpg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/js.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/mdb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/mp3.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/ogg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/ogg.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/pdf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/ppt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/pptx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/rdp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/swf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/swt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/txt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/vsd.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/xls.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/xlsx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/xml.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/icons/32/zip.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/loaders/16x16.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/loaders/32x32.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/spacer.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/sprites.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/sprites_ie6.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/add.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/clear_basket.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/delete.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/download.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/help.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/refresh.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/settings.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/images/toolbar/view.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/richcombo.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/skin.js
+share/soycms/soycms/js/ckeditor/ckfinder/skins/kama/uipanel.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/app.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/host.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/icons.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/ckffolder.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/ckffolderopened.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/ckfminus.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/ckfnothumb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/ckfplus.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/dialog_sides.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/dialog_sides.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/dialog_sides_rtl.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/ai.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/avi.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/bmp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/cs.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/default.icon.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/dll.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/doc.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/docx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/exe.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/fla.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/gif.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/jpg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/js.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/mdb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/mp3.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/pdf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/ppt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/pptx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/rdp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/swf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/swt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/txt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/vsd.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/xls.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/xlsx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/xml.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/16/zip.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/ai.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/avi.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/bmp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/cs.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/default.icon.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/dll.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/doc.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/docx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/exe.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/fla.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/gif.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/jpg.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/js.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/mdb.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/mp3.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/pdf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/ppt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/pptx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/rdp.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/swf.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/swt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/txt.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/vsd.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/xls.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/xlsx.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/xml.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/icons/32/zip.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/loaders/16x16.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/loaders/32x32.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/spacer.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/sprites.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/sprites_ie6.png
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/add.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/clear_basket.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/delete.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/download.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/help.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/refresh.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/settings.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar/view.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/images/toolbar_start.gif
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/richcombo.css
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/skin.js
+share/soycms/soycms/js/ckeditor/ckfinder/skins/v1/uipanel.css
+share/soycms/soycms/js/ckeditor/ckfinder/userfiles/.htaccess
+share/soycms/soycms/js/ckeditor/config.js
+share/soycms/soycms/js/ckeditor/contents.css
+share/soycms/soycms/js/ckeditor/images/spacer.gif
+share/soycms/soycms/js/ckeditor/lang/_languages.js
+share/soycms/soycms/js/ckeditor/lang/_translationstatus.txt
+share/soycms/soycms/js/ckeditor/lang/af.js
+share/soycms/soycms/js/ckeditor/lang/ar.js
+share/soycms/soycms/js/ckeditor/lang/bg.js
+share/soycms/soycms/js/ckeditor/lang/bn.js
+share/soycms/soycms/js/ckeditor/lang/bs.js
+share/soycms/soycms/js/ckeditor/lang/ca.js
+share/soycms/soycms/js/ckeditor/lang/cs.js
+share/soycms/soycms/js/ckeditor/lang/cy.js
+share/soycms/soycms/js/ckeditor/lang/da.js
+share/soycms/soycms/js/ckeditor/lang/de.js
+share/soycms/soycms/js/ckeditor/lang/el.js
+share/soycms/soycms/js/ckeditor/lang/en-au.js
+share/soycms/soycms/js/ckeditor/lang/en-ca.js
+share/soycms/soycms/js/ckeditor/lang/en-gb.js
+share/soycms/soycms/js/ckeditor/lang/en.js
+share/soycms/soycms/js/ckeditor/lang/eo.js
+share/soycms/soycms/js/ckeditor/lang/es.js
+share/soycms/soycms/js/ckeditor/lang/et.js
+share/soycms/soycms/js/ckeditor/lang/eu.js
+share/soycms/soycms/js/ckeditor/lang/fa.js
+share/soycms/soycms/js/ckeditor/lang/fi.js
+share/soycms/soycms/js/ckeditor/lang/fo.js
+share/soycms/soycms/js/ckeditor/lang/fr-ca.js
+share/soycms/soycms/js/ckeditor/lang/fr.js
+share/soycms/soycms/js/ckeditor/lang/gl.js
+share/soycms/soycms/js/ckeditor/lang/gu.js
+share/soycms/soycms/js/ckeditor/lang/he.js
+share/soycms/soycms/js/ckeditor/lang/hi.js
+share/soycms/soycms/js/ckeditor/lang/hr.js
+share/soycms/soycms/js/ckeditor/lang/hu.js
+share/soycms/soycms/js/ckeditor/lang/is.js
+share/soycms/soycms/js/ckeditor/lang/it.js
+share/soycms/soycms/js/ckeditor/lang/ja.js
+share/soycms/soycms/js/ckeditor/lang/km.js
+share/soycms/soycms/js/ckeditor/lang/ko.js
+share/soycms/soycms/js/ckeditor/lang/lt.js
+share/soycms/soycms/js/ckeditor/lang/lv.js
+share/soycms/soycms/js/ckeditor/lang/mn.js
+share/soycms/soycms/js/ckeditor/lang/ms.js
+share/soycms/soycms/js/ckeditor/lang/nb.js
+share/soycms/soycms/js/ckeditor/lang/nl.js
+share/soycms/soycms/js/ckeditor/lang/no.js
+share/soycms/soycms/js/ckeditor/lang/pl.js
+share/soycms/soycms/js/ckeditor/lang/pt-br.js
+share/soycms/soycms/js/ckeditor/lang/pt.js
+share/soycms/soycms/js/ckeditor/lang/ro.js
+share/soycms/soycms/js/ckeditor/lang/ru.js
+share/soycms/soycms/js/ckeditor/lang/sk.js
+share/soycms/soycms/js/ckeditor/lang/sl.js
+share/soycms/soycms/js/ckeditor/lang/sr-latn.js
+share/soycms/soycms/js/ckeditor/lang/sr.js
+share/soycms/soycms/js/ckeditor/lang/sv.js
+share/soycms/soycms/js/ckeditor/lang/th.js
+share/soycms/soycms/js/ckeditor/lang/tr.js
+share/soycms/soycms/js/ckeditor/lang/uk.js
+share/soycms/soycms/js/ckeditor/lang/vi.js
+share/soycms/soycms/js/ckeditor/lang/zh-cn.js
+share/soycms/soycms/js/ckeditor/lang/zh.js
+share/soycms/soycms/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
+share/soycms/soycms/js/ckeditor/plugins/a11yhelp/lang/en.js
+share/soycms/soycms/js/ckeditor/plugins/a11yhelp/lang/he.js
+share/soycms/soycms/js/ckeditor/plugins/about/dialogs/about.js
+share/soycms/soycms/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png
+share/soycms/soycms/js/ckeditor/plugins/adobeair/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/autogrow/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/clipboard/dialogs/paste.js
+share/soycms/soycms/js/ckeditor/plugins/colordialog/dialogs/colordialog.js
+share/soycms/soycms/js/ckeditor/plugins/dialog/dialogDefinition.js
+share/soycms/soycms/js/ckeditor/plugins/div/dialogs/div.js
+share/soycms/soycms/js/ckeditor/plugins/find/dialogs/find.js
+share/soycms/soycms/js/ckeditor/plugins/flash/dialogs/flash.js
+share/soycms/soycms/js/ckeditor/plugins/flash/images/placeholder.png
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/button.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/checkbox.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/form.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/hiddenfield.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/radio.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/select.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/textarea.js
+share/soycms/soycms/js/ckeditor/plugins/forms/dialogs/textfield.js
+share/soycms/soycms/js/ckeditor/plugins/forms/images/hiddenfield.gif
+share/soycms/soycms/js/ckeditor/plugins/iframe/dialogs/iframe.js
+share/soycms/soycms/js/ckeditor/plugins/iframe/images/placeholder.png
+share/soycms/soycms/js/ckeditor/plugins/iframedialog/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/image/dialogs/image.js
+share/soycms/soycms/js/ckeditor/plugins/link/dialogs/anchor.js
+share/soycms/soycms/js/ckeditor/plugins/link/dialogs/link.js
+share/soycms/soycms/js/ckeditor/plugins/link/images/anchor.gif
+share/soycms/soycms/js/ckeditor/plugins/liststyle/dialogs/liststyle.js
+share/soycms/soycms/js/ckeditor/plugins/pagebreak/images/pagebreak.gif
+share/soycms/soycms/js/ckeditor/plugins/pastefromword/filter/default.js
+share/soycms/soycms/js/ckeditor/plugins/pastetext/dialogs/pastetext.js
+share/soycms/soycms/js/ckeditor/plugins/placeholder/dialogs/placeholder.js
+share/soycms/soycms/js/ckeditor/plugins/placeholder/lang/en.js
+share/soycms/soycms/js/ckeditor/plugins/placeholder/placeholder.gif
+share/soycms/soycms/js/ckeditor/plugins/placeholder/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/scayt/dialogs/options.js
+share/soycms/soycms/js/ckeditor/plugins/scayt/dialogs/toolbar.css
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_address.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_blockquote.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_div.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h1.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h2.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h3.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h4.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h5.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_h6.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_p.png
+share/soycms/soycms/js/ckeditor/plugins/showblocks/images/block_pre.png
+share/soycms/soycms/js/ckeditor/plugins/smiley/dialogs/smiley.js
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/angel_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/angry_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/broken_heart.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/confused_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/cry_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/devil_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/embaressed_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/envelope.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/heart.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/kiss.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/lightbulb.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/omg_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/regular_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/sad_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/shades_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/teeth_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/thumbs_down.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/thumbs_up.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/tounge_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/smiley/images/wink_smile.gif
+share/soycms/soycms/js/ckeditor/plugins/specialchar/dialogs/specialchar.js
+share/soycms/soycms/js/ckeditor/plugins/specialchar/lang/en.js
+share/soycms/soycms/js/ckeditor/plugins/styles/styles/default.js
+share/soycms/soycms/js/ckeditor/plugins/table/dialogs/table.js
+share/soycms/soycms/js/ckeditor/plugins/tableresize/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
+share/soycms/soycms/js/ckeditor/plugins/templates/dialogs/templates.js
+share/soycms/soycms/js/ckeditor/plugins/templates/templates/default.js
+share/soycms/soycms/js/ckeditor/plugins/templates/templates/images/template1.gif
+share/soycms/soycms/js/ckeditor/plugins/templates/templates/images/template2.gif
+share/soycms/soycms/js/ckeditor/plugins/templates/templates/images/template3.gif
+share/soycms/soycms/js/ckeditor/plugins/uicolor/dialogs/uicolor.js
+share/soycms/soycms/js/ckeditor/plugins/uicolor/lang/en.js
+share/soycms/soycms/js/ckeditor/plugins/uicolor/lang/he.js
+share/soycms/soycms/js/ckeditor/plugins/uicolor/plugin.js
+share/soycms/soycms/js/ckeditor/plugins/uicolor/uicolor.gif
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/assets/yui.css
+share/soycms/soycms/js/ckeditor/plugins/uicolor/yui/yui.js
+share/soycms/soycms/js/ckeditor/plugins/wsc/dialogs/ciframe.html
+share/soycms/soycms/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
+share/soycms/soycms/js/ckeditor/plugins/wsc/dialogs/wsc.css
+share/soycms/soycms/js/ckeditor/plugins/wsc/dialogs/wsc.js
+share/soycms/soycms/js/ckeditor/skins/kama/dialog.css
+share/soycms/soycms/js/ckeditor/skins/kama/editor.css
+share/soycms/soycms/js/ckeditor/skins/kama/icons.png
+share/soycms/soycms/js/ckeditor/skins/kama/icons_rtl.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/dialog_sides.gif
+share/soycms/soycms/js/ckeditor/skins/kama/images/dialog_sides.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/dialog_sides_rtl.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/mini.gif
+share/soycms/soycms/js/ckeditor/skins/kama/images/noimage.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/sprites.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/sprites_ie6.png
+share/soycms/soycms/js/ckeditor/skins/kama/images/toolbar_start.gif
+share/soycms/soycms/js/ckeditor/skins/kama/skin.js
+share/soycms/soycms/js/ckeditor/skins/kama/templates.css
+share/soycms/soycms/js/ckeditor/skins/office2003/dialog.css
+share/soycms/soycms/js/ckeditor/skins/office2003/editor.css
+share/soycms/soycms/js/ckeditor/skins/office2003/icons.png
+share/soycms/soycms/js/ckeditor/skins/office2003/icons_rtl.png
+share/soycms/soycms/js/ckeditor/skins/office2003/images/dialog_sides.gif
+share/soycms/soycms/js/ckeditor/skins/office2003/images/dialog_sides.png
+share/soycms/soycms/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png
+share/soycms/soycms/js/ckeditor/skins/office2003/images/mini.gif
+share/soycms/soycms/js/ckeditor/skins/office2003/images/noimage.png
+share/soycms/soycms/js/ckeditor/skins/office2003/images/sprites.png
+share/soycms/soycms/js/ckeditor/skins/office2003/images/sprites_ie6.png
+share/soycms/soycms/js/ckeditor/skins/office2003/skin.js
+share/soycms/soycms/js/ckeditor/skins/office2003/templates.css
+share/soycms/soycms/js/ckeditor/skins/v2/dialog.css
+share/soycms/soycms/js/ckeditor/skins/v2/editor.css
+share/soycms/soycms/js/ckeditor/skins/v2/icons.png
+share/soycms/soycms/js/ckeditor/skins/v2/icons_rtl.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/dialog_sides.gif
+share/soycms/soycms/js/ckeditor/skins/v2/images/dialog_sides.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/dialog_sides_rtl.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/mini.gif
+share/soycms/soycms/js/ckeditor/skins/v2/images/noimage.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/sprites.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/sprites_ie6.png
+share/soycms/soycms/js/ckeditor/skins/v2/images/toolbar_start.gif
+share/soycms/soycms/js/ckeditor/skins/v2/skin.js
+share/soycms/soycms/js/ckeditor/skins/v2/templates.css
+share/soycms/soycms/js/ckeditor/themes/default/theme.js
+share/soycms/soycms/js/cms/PanelManager.css
+share/soycms/soycms/js/cms/PanelManager.js
+share/soycms/soycms/js/cms/editor_images/tab.gif
+share/soycms/soycms/js/cms/editor_images/tab_active.gif
+share/soycms/soycms/js/cms/editor_images/tab_inactive.gif
+share/soycms/soycms/js/common.js
+share/soycms/soycms/js/editor/CKEditor_gzip.js
+share/soycms/soycms/js/editor/EntryEditorFunctions.js
+share/soycms/soycms/js/editor/PlainTextEditor.js
+share/soycms/soycms/js/editor/RichTextEditor.js
+share/soycms/soycms/js/editor/RichTextEditor_gzip.js
+share/soycms/soycms/js/editor/cssMenu.js
+share/soycms/soycms/js/editor/template_editor.html
+share/soycms/soycms/js/editor/template_editor.js
+share/soycms/soycms/js/editor/template_editor_old.js
+share/soycms/soycms/js/editor/template_editors/template_editor_gecko.js
+share/soycms/soycms/js/editor/template_editors/template_editor_msie.js
+share/soycms/soycms/js/editor/template_editors/template_editor_opera.js
+share/soycms/soycms/js/editor/template_editors/template_editor_safari.js
+share/soycms/soycms/js/effects.js
+share/soycms/soycms/js/entry_selector.js
+share/soycms/soycms/js/lang/en.js
+share/soycms/soycms/js/lang/ja.js
+share/soycms/soycms/js/prototype.js
+share/soycms/soycms/js/scriptaculous.js
+share/soycms/soycms/js/soy2/SOY2Slider.css
+share/soycms/soycms/js/soy2/SOY2Slider.js
+share/soycms/soycms/js/soy2/images/slider.gif
+share/soycms/soycms/js/soy2/images/slider_bg.gif
+share/soycms/soycms/js/tiny_mce/0560708586293b2ea1f54b9d55e80006.gz
+share/soycms/soycms/js/tiny_mce/langs/en.js
+share/soycms/soycms/js/tiny_mce/langs/ja.js
+share/soycms/soycms/js/tiny_mce/license.txt
+share/soycms/soycms/js/tiny_mce/plugins/advhr/css/advhr.css
+share/soycms/soycms/js/tiny_mce/plugins/advhr/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/advhr/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/advhr/js/rule.js
+share/soycms/soycms/js/tiny_mce/plugins/advhr/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advhr/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advhr/rule.htm
+share/soycms/soycms/js/tiny_mce/plugins/advimage/css/advimage.css
+share/soycms/soycms/js/tiny_mce/plugins/advimage/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/advimage/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/advimage/image.htm
+share/soycms/soycms/js/tiny_mce/plugins/advimage/img/sample.gif
+share/soycms/soycms/js/tiny_mce/plugins/advimage/js/image.js
+share/soycms/soycms/js/tiny_mce/plugins/advimage/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advimage/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/css/advlink.css
+share/soycms/soycms/js/tiny_mce/plugins/advlink/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/js/advlink.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/advlink/link.htm
+share/soycms/soycms/js/tiny_mce/plugins/advlist/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/advlist/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/autolink/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/autolink/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/autoresize/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/autoresize/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/autosave/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/autosave/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/autosave/langs/en.js
+share/soycms/soycms/js/tiny_mce/plugins/bbcode/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/bbcode/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/compat2x/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/compat2x/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/contextmenu/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/directionality/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/directionality/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/emotions/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/emotions/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/emotions/emotions.htm
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-cool.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-cry.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-frown.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-smile.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-wink.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/img/smiley-yell.gif
+share/soycms/soycms/js/tiny_mce/plugins/emotions/js/emotions.js
+share/soycms/soycms/js/tiny_mce/plugins/emotions/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/emotions/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/example/dialog.htm
+share/soycms/soycms/js/tiny_mce/plugins/example/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/example/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/example/img/example.gif
+share/soycms/soycms/js/tiny_mce/plugins/example/js/dialog.js
+share/soycms/soycms/js/tiny_mce/plugins/example/langs/en.js
+share/soycms/soycms/js/tiny_mce/plugins/example/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/example/langs/ja.js
+share/soycms/soycms/js/tiny_mce/plugins/example/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/example_dependency/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/example_dependency/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/css/fullpage.css
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/fullpage.htm
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/js/fullpage.js
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/fullpage/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/fullscreen/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/fullscreen/fullscreen.htm
+share/soycms/soycms/js/tiny_mce/plugins/iespell/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/iespell/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
+share/soycms/soycms/js/tiny_mce/plugins/inlinepopups/template.htm
+share/soycms/soycms/js/tiny_mce/plugins/innerlink/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/innerlink/img/icon.gif
+share/soycms/soycms/js/tiny_mce/plugins/insertdatetime/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/insertimage/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/insertimage/img/icon.gif
+share/soycms/soycms/js/tiny_mce/plugins/layer/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/layer/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/legacyoutput/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/lists/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/lists/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/media/css/content.css
+share/soycms/soycms/js/tiny_mce/plugins/media/css/media.css
+share/soycms/soycms/js/tiny_mce/plugins/media/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/media/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/media/img/flash.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/img/flv_player.swf
+share/soycms/soycms/js/tiny_mce/plugins/media/img/quicktime.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/img/realmedia.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/img/shockwave.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/img/trans.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/img/windowsmedia.gif
+share/soycms/soycms/js/tiny_mce/plugins/media/js/embed.js
+share/soycms/soycms/js/tiny_mce/plugins/media/js/media.js
+share/soycms/soycms/js/tiny_mce/plugins/media/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/media/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/media/media.htm
+share/soycms/soycms/js/tiny_mce/plugins/media/moxieplayer.swf
+share/soycms/soycms/js/tiny_mce/plugins/nonbreaking/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/noneditable/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/pagebreak/css/content.css
+share/soycms/soycms/js/tiny_mce/plugins/pagebreak/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif
+share/soycms/soycms/js/tiny_mce/plugins/pagebreak/img/trans.gif
+share/soycms/soycms/js/tiny_mce/plugins/paste/blank.htm
+share/soycms/soycms/js/tiny_mce/plugins/paste/css/blank.css
+share/soycms/soycms/js/tiny_mce/plugins/paste/css/pasteword.css
+share/soycms/soycms/js/tiny_mce/plugins/paste/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/js/pastetext.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/js/pasteword.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/paste/pastetext.htm
+share/soycms/soycms/js/tiny_mce/plugins/paste/pasteword.htm
+share/soycms/soycms/js/tiny_mce/plugins/preview/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/preview/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/preview/example.html
+share/soycms/soycms/js/tiny_mce/plugins/preview/jscripts/embed.js
+share/soycms/soycms/js/tiny_mce/plugins/preview/preview.html
+share/soycms/soycms/js/tiny_mce/plugins/print/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/print/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/safari/blank.htm
+share/soycms/soycms/js/tiny_mce/plugins/safari/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/safari/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/save/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/save/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/css/searchreplace.css
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/js/searchreplace.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/searchreplace/searchreplace.htm
+share/soycms/soycms/js/tiny_mce/plugins/soycms_emoji/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/soycms_emoji/icon.gif
+share/soycms/soycms/js/tiny_mce/plugins/spellchecker/css/content.css
+share/soycms/soycms/js/tiny_mce/plugins/spellchecker/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/spellchecker/img/wline.gif
+share/soycms/soycms/js/tiny_mce/plugins/style/css/props.css
+share/soycms/soycms/js/tiny_mce/plugins/style/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/style/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/style/js/props.js
+share/soycms/soycms/js/tiny_mce/plugins/style/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/style/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/style/props.htm
+share/soycms/soycms/js/tiny_mce/plugins/tabfocus/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/table/cell.htm
+share/soycms/soycms/js/tiny_mce/plugins/table/css/cell.css
+share/soycms/soycms/js/tiny_mce/plugins/table/css/row.css
+share/soycms/soycms/js/tiny_mce/plugins/table/css/table.css
+share/soycms/soycms/js/tiny_mce/plugins/table/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/table/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/table/js/cell.js
+share/soycms/soycms/js/tiny_mce/plugins/table/js/merge_cells.js
+share/soycms/soycms/js/tiny_mce/plugins/table/js/row.js
+share/soycms/soycms/js/tiny_mce/plugins/table/js/table.js
+share/soycms/soycms/js/tiny_mce/plugins/table/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/table/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/table/merge_cells.htm
+share/soycms/soycms/js/tiny_mce/plugins/table/row.htm
+share/soycms/soycms/js/tiny_mce/plugins/table/table.htm
+share/soycms/soycms/js/tiny_mce/plugins/template/blank.htm
+share/soycms/soycms/js/tiny_mce/plugins/template/css/template.css
+share/soycms/soycms/js/tiny_mce/plugins/template/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/template/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/template/js/template.js
+share/soycms/soycms/js/tiny_mce/plugins/template/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/template/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/template/template.htm
+share/soycms/soycms/js/tiny_mce/plugins/visualchars/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/wordcount/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/wordcount/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/abbr.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/acronym.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/attributes.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/cite.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/css/popup.css
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/css/xhtmlxtras.css
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/del.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/ins.htm
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/cite.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/del.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/js/ins.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/plugins/xhtmlxtras/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/about.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/anchor.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/charmap.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/color_picker.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/editor_template.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/editor_template_src.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/image.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/colorpicker.jpg
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/flash.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/icons.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/iframe.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/pagebreak.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/quicktime.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/realmedia.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/shockwave.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/trans.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/video.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/img/windowsmedia.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/about.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/anchor.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/charmap.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/color_picker.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/image.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/link.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/js/source_editor.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/langs/en.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/langs/en_dlg.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/langs/ja.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/langs/ja_dlg.js
+share/soycms/soycms/js/tiny_mce/themes/advanced/link.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/shortcuts.htm
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/content.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/dialog.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/buttons.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/items.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/progress.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/default/ui.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/highcontrast/content.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/highcontrast/ui.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/content.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/ui.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/content.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/dialog.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/img/button_bg.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/img/button_bg_black.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/img/button_bg_silver.png
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/ui.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/ui_black.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/skins/soycms/ui_silver.css
+share/soycms/soycms/js/tiny_mce/themes/advanced/source_editor.htm
+share/soycms/soycms/js/tiny_mce/themes/simple/editor_template.js
+share/soycms/soycms/js/tiny_mce/themes/simple/editor_template_src.js
+share/soycms/soycms/js/tiny_mce/themes/simple/img/icons.gif
+share/soycms/soycms/js/tiny_mce/themes/simple/langs/en.js
+share/soycms/soycms/js/tiny_mce/themes/simple/langs/ja.js
+share/soycms/soycms/js/tiny_mce/themes/simple/skins/default/content.css
+share/soycms/soycms/js/tiny_mce/themes/simple/skins/default/ui.css
+share/soycms/soycms/js/tiny_mce/themes/simple/skins/o2k7/content.css
+share/soycms/soycms/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
+share/soycms/soycms/js/tiny_mce/themes/simple/skins/o2k7/ui.css
+share/soycms/soycms/js/tiny_mce/tiny_mce.js
+share/soycms/soycms/js/tiny_mce/tiny_mce_gzip.js
+share/soycms/soycms/js/tiny_mce/tiny_mce_gzip.php
+share/soycms/soycms/js/tiny_mce/tiny_mce_popup.js
+share/soycms/soycms/js/tiny_mce/tiny_mce_src.js
+share/soycms/soycms/js/tiny_mce/utils/editable_selects.js
+share/soycms/soycms/js/tiny_mce/utils/form_utils.js
+share/soycms/soycms/js/tiny_mce/utils/mclayer.js
+share/soycms/soycms/js/tiny_mce/utils/mctabs.js
+share/soycms/soycms/js/tiny_mce/utils/validate.js
+share/soycms/soycms/js/validation.js
+share/soycms/soycms/webapp/config.ext.php
+share/soycms/soycms/webapp/config.inc.php
+share/soycms/soycms/webapp/language/en/Block/BlockListPage.html
+share/soycms/soycms/webapp/language/en/Block/CreatePage.html
+share/soycms/soycms/webapp/language/en/Block/DetailPage.html
+share/soycms/soycms/webapp/language/en/Block/Entry/CreatePage.html
+share/soycms/soycms/webapp/language/en/Block/Entry/DetailPage.html
+share/soycms/soycms/webapp/language/en/Blog/ApplyTemplatePage.html
+share/soycms/soycms/webapp/language/en/Blog/BlockHelpPage.html
+share/soycms/soycms/webapp/language/en/Blog/BlogMenuPage.html
+share/soycms/soycms/webapp/language/en/Blog/CommentDetailPage.html
+share/soycms/soycms/webapp/language/en/Blog/CommentPage.html
+share/soycms/soycms/webapp/language/en/Blog/ConfigPage.html
+share/soycms/soycms/webapp/language/en/Blog/EntryListPage.html
+share/soycms/soycms/webapp/language/en/Blog/EntryPage.html
+share/soycms/soycms/webapp/language/en/Blog/IndexPage.html
+share/soycms/soycms/webapp/language/en/Blog/ListPage.html
+share/soycms/soycms/webapp/language/en/Blog/TemplateHistoryDetailPage.html
+share/soycms/soycms/webapp/language/en/Blog/TemplateHistoryPage.html
+share/soycms/soycms/webapp/language/en/Blog/TemplatePage.html
+share/soycms/soycms/webapp/language/en/Blog/TrackbackDetailPage.html
+share/soycms/soycms/webapp/language/en/Blog/TrackbackPage.html
+share/soycms/soycms/webapp/language/en/Blog/_EntryBlankPage.html
+share/soycms/soycms/webapp/language/en/Blog/_LabelBlankPage.html
+share/soycms/soycms/webapp/language/en/Entry/DetailPage.html
+share/soycms/soycms/webapp/language/en/Entry/Editor/FileUploadPage.html
+share/soycms/soycms/webapp/language/en/Entry/Editor/InsertBlogLinkPage.html
+share/soycms/soycms/webapp/language/en/Entry/Editor/InsertLinkPage.html
+share/soycms/soycms/webapp/language/en/Entry/Editor/InsertMobileLinkPage.html
+share/soycms/soycms/webapp/language/en/Entry/Editor/InsertSiteLinkPage.html
+share/soycms/soycms/webapp/language/en/Entry/History/DetailPage.html
+share/soycms/soycms/webapp/language/en/Entry/History/IndexPage.html
+share/soycms/soycms/webapp/language/en/Entry/IndexPage.html
+share/soycms/soycms/webapp/language/en/Entry/ListPage.html
+share/soycms/soycms/webapp/language/en/Entry/ListPanelPage.html
+share/soycms/soycms/webapp/language/en/Entry/OutlinePage.html
+share/soycms/soycms/webapp/language/en/Entry/SearchPage.html
+share/soycms/soycms/webapp/language/en/Entry/WYSIWYGBasePage.html
+share/soycms/soycms/webapp/language/en/Entry/_EntryBlankPage.html
+share/soycms/soycms/webapp/language/en/Entry/script/entry_list.js
+share/soycms/soycms/webapp/language/en/EntryTemplate/DetailPage.html
+share/soycms/soycms/webapp/language/en/EntryTemplate/IndexPage.html
+share/soycms/soycms/webapp/language/en/EntryTemplate/UploadPage.html
+share/soycms/soycms/webapp/language/en/FileManager/DragAndDropPage.html
+share/soycms/soycms/webapp/language/en/FileManager/FilePage.html
+share/soycms/soycms/webapp/language/en/FileManager/IndexPage.html
+share/soycms/soycms/webapp/language/en/FileManager/cms_script.js
+share/soycms/soycms/webapp/language/en/FileManager/new/cms_script.js
+share/soycms/soycms/webapp/language/en/IndexPage.html
+share/soycms/soycms/webapp/language/en/Init/CreateSamplePage.html
+share/soycms/soycms/webapp/language/en/Init/IndexPage.html
+share/soycms/soycms/webapp/language/en/Label/BulkCreatePage.html
+share/soycms/soycms/webapp/language/en/Label/DetailPage.html
+share/soycms/soycms/webapp/language/en/Label/IndexPage.html
+share/soycms/soycms/webapp/language/en/Label/_LabelBlankPage.html
+share/soycms/soycms/webapp/language/en/Login/IndexPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/ChangeEmailPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/ChangePasswordPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/ChangeUserInfoPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/IndexPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/WithdrawConfirmPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfo/WithdrawPage.html
+share/soycms/soycms/webapp/language/en/Login/UserInfoPage.html
+share/soycms/soycms/webapp/language/en/Page/Application/DetailPage.html
+share/soycms/soycms/webapp/language/en/Page/ApplyTemplatePage.html
+share/soycms/soycms/webapp/language/en/Page/CreatePage.html
+share/soycms/soycms/webapp/language/en/Page/DetailPage.html
+share/soycms/soycms/webapp/language/en/Page/Editor/FileUploadPage.html
+share/soycms/soycms/webapp/language/en/Page/Editor/InsertBlogLinkPage.html
+share/soycms/soycms/webapp/language/en/Page/Editor/InsertLinkPage.html
+share/soycms/soycms/webapp/language/en/Page/Editor/InsertMobileLinkPage.html
+share/soycms/soycms/webapp/language/en/Page/Editor/InsertSiteLinkPage.html
+share/soycms/soycms/webapp/language/en/Page/IndexPage.html
+share/soycms/soycms/webapp/language/en/Page/List/NormalPage.html
+share/soycms/soycms/webapp/language/en/Page/List/TablePage.html
+share/soycms/soycms/webapp/language/en/Page/List/TreePage.html
+share/soycms/soycms/webapp/language/en/Page/Mobile/DetailPage.html
+share/soycms/soycms/webapp/language/en/Page/Mobile/ModifyPopupLabelSelectForm.html
+share/soycms/soycms/webapp/language/en/Page/Mobile/ModifyPopupPage.html
+share/soycms/soycms/webapp/language/en/Page/Mobile/ModityPopupEntrySelectForm.html
+share/soycms/soycms/webapp/language/en/Page/Mobile/TreePage.html
+share/soycms/soycms/webapp/language/en/Page/Preview/CSSEditorPage.html
+share/soycms/soycms/webapp/language/en/Page/Preview/EntryPage.html
+share/soycms/soycms/webapp/language/en/Page/Preview/TemplatePage.html
+share/soycms/soycms/webapp/language/en/Page/TemplateHistoryDetailPage.html
+share/soycms/soycms/webapp/language/en/Page/TemplateHistoryPage.html
+share/soycms/soycms/webapp/language/en/Plugin/ConfigPage.html
+share/soycms/soycms/webapp/language/en/Plugin/CustomPage.html
+share/soycms/soycms/webapp/language/en/Plugin/IndexPage.html
+share/soycms/soycms/webapp/language/en/Simple/IndexPage.html
+share/soycms/soycms/webapp/language/en/SiteConfig/IndexPage.html
+share/soycms/soycms/webapp/language/en/Template/Create/IndexPage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/BlogTemplateSettingStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/ConfirmStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/EndStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/FailedStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/FileSettingStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/StartStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/TemplateAddStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/TemplateEditStage.html
+share/soycms/soycms/webapp/language/en/Template/Create/_stage/TemplateSettingStage.html
+share/soycms/soycms/webapp/language/en/Template/DetailPage.html
+share/soycms/soycms/webapp/language/en/Template/EditPage.html
+share/soycms/soycms/webapp/language/en/Template/IndexPage.html
+share/soycms/soycms/webapp/language/en/Template/InstallPage.html
+share/soycms/soycms/webapp/language/en/Template/UnInstallPage.html
+share/soycms/soycms/webapp/language/en/Template/UploadPage.html
+share/soycms/soycms/webapp/language/en/Wizard/IndexPage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/BLOG/ConfirmStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/BLOG/CreateFinishStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/BLOG/CreateStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/BLOG/PageConfigStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/BLOG/TemplateSelectStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/HTML/ConfirmStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/HTML/CreateFinishStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/HTML/CreateStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/HTML/PageConfigStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/HTML/TemplateSelectStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/SelectTopStage.html
+share/soycms/soycms/webapp/language/en/Wizard/_stage/StartStage.html
+share/soycms/soycms/webapp/language/en/_common/FooterMenuPage.html
+share/soycms/soycms/webapp/language/en/_common/FooterPage.html
+share/soycms/soycms/webapp/language/en/_common/HeaderPage.html
+share/soycms/soycms/webapp/language/en/_common/TabPage.html
+share/soycms/soycms/webapp/language/en/_common/ToolBoxPage.html
+share/soycms/soycms/webapp/language/en/_common/UpperMenuPage.html
+share/soycms/soycms/webapp/language/en/template.html
+share/soycms/soycms/webapp/pages/Block/BlockListPage.class.php
+share/soycms/soycms/webapp/pages/Block/BlockListPage.html
+share/soycms/soycms/webapp/pages/Block/CreatePage.class.php
+share/soycms/soycms/webapp/pages/Block/CreatePage.html
+share/soycms/soycms/webapp/pages/Block/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Block/DetailPage.html
+share/soycms/soycms/webapp/pages/Block/Entry/CreatePage.class.php
+share/soycms/soycms/webapp/pages/Block/Entry/CreatePage.html
+share/soycms/soycms/webapp/pages/Block/Entry/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Block/Entry/DetailPage.html
+share/soycms/soycms/webapp/pages/Block/RemovePage.class.php
+share/soycms/soycms/webapp/pages/Blog/ApplyTemplatePage.class.php
+share/soycms/soycms/webapp/pages/Blog/ApplyTemplatePage.html
+share/soycms/soycms/webapp/pages/Blog/BlockHelpPage.class.php
+share/soycms/soycms/webapp/pages/Blog/BlockHelpPage.html
+share/soycms/soycms/webapp/pages/Blog/BlogMenuPage.class.php
+share/soycms/soycms/webapp/pages/Blog/BlogMenuPage.html
+share/soycms/soycms/webapp/pages/Blog/CommentDetailPage.class.php
+share/soycms/soycms/webapp/pages/Blog/CommentDetailPage.html
+share/soycms/soycms/webapp/pages/Blog/CommentPage.class.php
+share/soycms/soycms/webapp/pages/Blog/CommentPage.html
+share/soycms/soycms/webapp/pages/Blog/ConfigPage.class.php
+share/soycms/soycms/webapp/pages/Blog/ConfigPage.html
+share/soycms/soycms/webapp/pages/Blog/EntryListPage.class.php
+share/soycms/soycms/webapp/pages/Blog/EntryListPage.html
+share/soycms/soycms/webapp/pages/Blog/EntryPage.class.php
+share/soycms/soycms/webapp/pages/Blog/EntryPage.html
+share/soycms/soycms/webapp/pages/Blog/ExportTemplatePage.class.php
+share/soycms/soycms/webapp/pages/Blog/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Blog/IndexPage.html
+share/soycms/soycms/webapp/pages/Blog/ListPage.class.php
+share/soycms/soycms/webapp/pages/Blog/ListPage.html
+share/soycms/soycms/webapp/pages/Blog/TemplateHistoryDetailPage.class.php
+share/soycms/soycms/webapp/pages/Blog/TemplateHistoryDetailPage.html
+share/soycms/soycms/webapp/pages/Blog/TemplateHistoryPage.class.php
+share/soycms/soycms/webapp/pages/Blog/TemplateHistoryPage.html
+share/soycms/soycms/webapp/pages/Blog/TemplatePage.class.php
+share/soycms/soycms/webapp/pages/Blog/TemplatePage.html
+share/soycms/soycms/webapp/pages/Blog/TrackbackDetailPage.class.php
+share/soycms/soycms/webapp/pages/Blog/TrackbackDetailPage.html
+share/soycms/soycms/webapp/pages/Blog/TrackbackPage.class.php
+share/soycms/soycms/webapp/pages/Blog/TrackbackPage.html
+share/soycms/soycms/webapp/pages/Blog/_EntryBlankPage.class.php
+share/soycms/soycms/webapp/pages/Blog/_EntryBlankPage.html
+share/soycms/soycms/webapp/pages/Blog/_LabelBlankPage.class.php
+share/soycms/soycms/webapp/pages/Blog/_LabelBlankPage.html
+share/soycms/soycms/webapp/pages/Common/CheckPage.class.php
+share/soycms/soycms/webapp/pages/Entry/CSSPage.class.php
+share/soycms/soycms/webapp/pages/Entry/CreateNewLabelPage.class.php
+share/soycms/soycms/webapp/pages/Entry/CreatePage.class.php
+share/soycms/soycms/webapp/pages/Entry/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Entry/DetailPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/FileUploadPage.class.php
+share/soycms/soycms/webapp/pages/Entry/Editor/FileUploadPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertBlogLinkPage.class.php
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertBlogLinkPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertLinkPage.class.php
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertLinkPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertMobileLinkPage.class.php
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertMobileLinkPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertSiteLinkPage.class.php
+share/soycms/soycms/webapp/pages/Entry/Editor/InsertSiteLinkPage.html
+share/soycms/soycms/webapp/pages/Entry/Editor/UploadCancelPage.class.php
+share/soycms/soycms/webapp/pages/Entry/History/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Entry/History/DetailPage.html
+share/soycms/soycms/webapp/pages/Entry/History/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Entry/History/IndexPage.html
+share/soycms/soycms/webapp/pages/Entry/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Entry/IndexPage.html
+share/soycms/soycms/webapp/pages/Entry/List/ClosedPage.class.php
+share/soycms/soycms/webapp/pages/Entry/List/NoLabelPage.class.php
+share/soycms/soycms/webapp/pages/Entry/List/OutOfDatePage.class.php
+share/soycms/soycms/webapp/pages/Entry/ListPage.class.php
+share/soycms/soycms/webapp/pages/Entry/ListPage.html
+share/soycms/soycms/webapp/pages/Entry/ListPanelPage.class.php
+share/soycms/soycms/webapp/pages/Entry/ListPanelPage.html
+share/soycms/soycms/webapp/pages/Entry/OutlinePage.class.php
+share/soycms/soycms/webapp/pages/Entry/OutlinePage.html
+share/soycms/soycms/webapp/pages/Entry/RemovePage.class.php
+share/soycms/soycms/webapp/pages/Entry/SearchPage.class.php
+share/soycms/soycms/webapp/pages/Entry/SearchPage.html
+share/soycms/soycms/webapp/pages/Entry/WYSIWYGBasePage.class.php
+share/soycms/soycms/webapp/pages/Entry/WYSIWYGBasePage.html
+share/soycms/soycms/webapp/pages/Entry/_EntryBlankPage.class.php
+share/soycms/soycms/webapp/pages/Entry/_EntryBlankPage.html
+share/soycms/soycms/webapp/pages/Entry/script/entry_list.js
+share/soycms/soycms/webapp/pages/EntryTemplate/CSSPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/DetailPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/DetailPage.html
+share/soycms/soycms/webapp/pages/EntryTemplate/GetStyleAjaxPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/GetTemplateAjaxPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/IndexPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/IndexPage.html
+share/soycms/soycms/webapp/pages/EntryTemplate/RemovePage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/UploadPage.class.php
+share/soycms/soycms/webapp/pages/EntryTemplate/UploadPage.html
+share/soycms/soycms/webapp/pages/FileManager/DragAndDropPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/DragAndDropPage.html
+share/soycms/soycms/webapp/pages/FileManager/FileActionPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/FilePage.class.php
+share/soycms/soycms/webapp/pages/FileManager/FilePage.html
+share/soycms/soycms/webapp/pages/FileManager/IndexPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/IndexPage.html
+share/soycms/soycms/webapp/pages/FileManager/cms_script.js
+share/soycms/soycms/webapp/pages/FileManager/new/action/DeletePage.class.php
+share/soycms/soycms/webapp/pages/FileManager/new/action/GetFileInfoPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/new/action/MakeDirectoryPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/new/action/RenamePage.class.php
+share/soycms/soycms/webapp/pages/FileManager/new/action/UploadPage.class.php
+share/soycms/soycms/webapp/pages/FileManager/new/cms_script.js
+share/soycms/soycms/webapp/pages/IndexPage.class.php
+share/soycms/soycms/webapp/pages/IndexPage.html
+share/soycms/soycms/webapp/pages/Init/CreateSamplePage.class.php
+share/soycms/soycms/webapp/pages/Init/CreateSamplePage.html
+share/soycms/soycms/webapp/pages/Init/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Init/IndexPage.html
+share/soycms/soycms/webapp/pages/Label/BulkCreatePage.class.php
+share/soycms/soycms/webapp/pages/Label/BulkCreatePage.html
+share/soycms/soycms/webapp/pages/Label/ChangeLabelIconPage.class.php
+share/soycms/soycms/webapp/pages/Label/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Label/DetailPage.html
+share/soycms/soycms/webapp/pages/Label/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Label/IndexPage.html
+share/soycms/soycms/webapp/pages/Label/ReDescriptionPage.class.php
+share/soycms/soycms/webapp/pages/Label/RemovePage.class.php
+share/soycms/soycms/webapp/pages/Label/RenamePage.class.php
+share/soycms/soycms/webapp/pages/Label/_LabelBlankPage.class.php
+share/soycms/soycms/webapp/pages/Label/_LabelBlankPage.html
+share/soycms/soycms/webapp/pages/Login/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Login/IndexPage.html
+share/soycms/soycms/webapp/pages/Login/LogoutPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangeEmailPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangeEmailPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangePasswordPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangePasswordPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangeUserInfoPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/ChangeUserInfoPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfo/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/IndexPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfo/WithdrawConfirmPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/WithdrawConfirmPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfo/WithdrawPage.class.php
+share/soycms/soycms/webapp/pages/Login/UserInfo/WithdrawPage.html
+share/soycms/soycms/webapp/pages/Login/UserInfoPage.html
+share/soycms/soycms/webapp/pages/Page/Application/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Page/Application/DetailPage.html
+share/soycms/soycms/webapp/pages/Page/ApplyTemplatePage.class.php
+share/soycms/soycms/webapp/pages/Page/ApplyTemplatePage.html
+share/soycms/soycms/webapp/pages/Page/CopyPage.class.php
+share/soycms/soycms/webapp/pages/Page/CreatePage.class.php
+share/soycms/soycms/webapp/pages/Page/CreatePage.html
+share/soycms/soycms/webapp/pages/Page/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Page/DetailPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/FileUploadPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/FileUploadPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/GetCSSPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/InsertBlogLinkPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/InsertBlogLinkPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/InsertLinkPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/InsertLinkPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/InsertMobileLinkPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/InsertMobileLinkPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/InsertSiteLinkPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/InsertSiteLinkPage.html
+share/soycms/soycms/webapp/pages/Page/Editor/SaveCSSPage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/SaveTemplatePage.class.php
+share/soycms/soycms/webapp/pages/Page/Editor/UploadCancelPage.class.php
+share/soycms/soycms/webapp/pages/Page/ExportTemplatePage.class.php
+share/soycms/soycms/webapp/pages/Page/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Page/IndexPage.html
+share/soycms/soycms/webapp/pages/Page/List/NormalPage.class.php
+share/soycms/soycms/webapp/pages/Page/List/NormalPage.html
+share/soycms/soycms/webapp/pages/Page/List/TablePage.class.php
+share/soycms/soycms/webapp/pages/Page/List/TablePage.html
+share/soycms/soycms/webapp/pages/Page/List/TreePage.class.php
+share/soycms/soycms/webapp/pages/Page/List/TreePage.html
+share/soycms/soycms/webapp/pages/Page/Mobile/AddAfterPage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/DeletePage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/DetailPage.html
+share/soycms/soycms/webapp/pages/Page/Mobile/ModifyPopupLabelSelectForm.html
+share/soycms/soycms/webapp/pages/Page/Mobile/ModifyPopupPage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/ModifyPopupPage.html
+share/soycms/soycms/webapp/pages/Page/Mobile/ModityPopupEntrySelectForm.html
+share/soycms/soycms/webapp/pages/Page/Mobile/MoveDownPage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/MovePage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/MoveUpPage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/TreePage.class.php
+share/soycms/soycms/webapp/pages/Page/Mobile/TreePage.html
+share/soycms/soycms/webapp/pages/Page/Preview/CSSEditorPage.class.php
+share/soycms/soycms/webapp/pages/Page/Preview/CSSEditorPage.html
+share/soycms/soycms/webapp/pages/Page/Preview/EntryPage.class.php
+share/soycms/soycms/webapp/pages/Page/Preview/EntryPage.html
+share/soycms/soycms/webapp/pages/Page/Preview/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Page/Preview/PreviewPage.js
+share/soycms/soycms/webapp/pages/Page/Preview/PreviewPageSimple.js
+share/soycms/soycms/webapp/pages/Page/Preview/TemplatePage.class.php
+share/soycms/soycms/webapp/pages/Page/Preview/TemplatePage.html
+share/soycms/soycms/webapp/pages/Page/PutTrashPage.class.php
+share/soycms/soycms/webapp/pages/Page/RecoverPage.class.php
+share/soycms/soycms/webapp/pages/Page/RemovePage.class.php
+share/soycms/soycms/webapp/pages/Page/TemplateHistoryDetailPage.class.php
+share/soycms/soycms/webapp/pages/Page/TemplateHistoryDetailPage.html
+share/soycms/soycms/webapp/pages/Page/TemplateHistoryPage.class.php
+share/soycms/soycms/webapp/pages/Page/TemplateHistoryPage.html
+share/soycms/soycms/webapp/pages/Plugin/ConfigModifyPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/ConfigPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/ConfigPage.html
+share/soycms/soycms/webapp/pages/Plugin/CreateCategoryPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/CustomPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/CustomPage.html
+share/soycms/soycms/webapp/pages/Plugin/DeleteCategoryPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Plugin/IndexPage.html
+share/soycms/soycms/webapp/pages/Plugin/TogglePage.class.php
+share/soycms/soycms/webapp/pages/Simple/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Simple/IndexPage.html
+share/soycms/soycms/webapp/pages/SiteConfig/IndexPage.class.php
+share/soycms/soycms/webapp/pages/SiteConfig/IndexPage.html
+share/soycms/soycms/webapp/pages/Template/Create/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/IndexPage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/BlogTemplateSettingStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/BlogTemplateSettingStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/ConfirmStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/ConfirmStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/EndStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/EndStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/FailedStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/FailedStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/FileSettingStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/FileSettingStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/StartStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/StartStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateAddStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateAddStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateDeleteStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateEditStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateEditStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateSettingStage.class.php
+share/soycms/soycms/webapp/pages/Template/Create/_stage/TemplateSettingStage.html
+share/soycms/soycms/webapp/pages/Template/Create/_stage/base/StageBase.class.php
+share/soycms/soycms/webapp/pages/Template/DetailPage.class.php
+share/soycms/soycms/webapp/pages/Template/DetailPage.html
+share/soycms/soycms/webapp/pages/Template/DownloadPage.class.php
+share/soycms/soycms/webapp/pages/Template/EditPage.class.php
+share/soycms/soycms/webapp/pages/Template/EditPage.html
+share/soycms/soycms/webapp/pages/Template/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Template/IndexPage.html
+share/soycms/soycms/webapp/pages/Template/InstallPage.class.php
+share/soycms/soycms/webapp/pages/Template/InstallPage.html
+share/soycms/soycms/webapp/pages/Template/RemovePage.class.php
+share/soycms/soycms/webapp/pages/Template/UnInstallPage.class.php
+share/soycms/soycms/webapp/pages/Template/UnInstallPage.html
+share/soycms/soycms/webapp/pages/Template/UploadPage.class.php
+share/soycms/soycms/webapp/pages/Template/UploadPage.html
+share/soycms/soycms/webapp/pages/Wizard/IndexPage.class.php
+share/soycms/soycms/webapp/pages/Wizard/IndexPage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/ConfirmStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/ConfirmStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/CreateFinishStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/CreateFinishStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/CreateStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/CreateStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/PageConfigStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/PageConfigStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/TemplateSelectStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/BLOG/TemplateSelectStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/EndStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/ConfirmStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/ConfirmStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/CreateFinishStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/CreateFinishStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/CreateStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/CreateStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/PageConfigStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/PageConfigStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/TemplateSelectStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/HTML/TemplateSelectStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/SelectTopStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/SelectTopStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/StartStage.class.php
+share/soycms/soycms/webapp/pages/Wizard/_stage/StartStage.html
+share/soycms/soycms/webapp/pages/Wizard/_stage/base/StageBase.class.php
+share/soycms/soycms/webapp/pages/_common/FooterMenuPage.class.php
+share/soycms/soycms/webapp/pages/_common/FooterMenuPage.html
+share/soycms/soycms/webapp/pages/_common/FooterPage.class.php
+share/soycms/soycms/webapp/pages/_common/FooterPage.html
+share/soycms/soycms/webapp/pages/_common/HeaderPage.class.php
+share/soycms/soycms/webapp/pages/_common/HeaderPage.html
+share/soycms/soycms/webapp/pages/_common/TabPage.class.php
+share/soycms/soycms/webapp/pages/_common/TabPage.html
+share/soycms/soycms/webapp/pages/_common/ToolBoxPage.class.php
+share/soycms/soycms/webapp/pages/_common/ToolBoxPage.html
+share/soycms/soycms/webapp/pages/_common/UpperMenuPage.class.php
+share/soycms/soycms/webapp/pages/_common/UpperMenuPage.html
+share/soycms/soycms/webapp/pages/template.html
+@pkgdir share/soycms/soycms/webapp/language/ja
+@pkgdir share/soycms/soycms/webapp/language/en/Wizard/_stage/base
+@pkgdir share/soycms/soycms/webapp/language/en/Template/Create/_stage/base
+@pkgdir share/soycms/soycms/webapp/language/en/FileManager/new/action
+@pkgdir share/soycms/soycms/webapp/language/en/Entry/List
+@pkgdir share/soycms/soycms/webapp/language/en/Common
+@pkgdir share/soycms/soycms/webapp/language/default
+@pkgdir share/soycms/soycms/js/tiny_mce/plugins/spellchecker/includes
+@pkgdir share/soycms/soycms/js/tiny_mce/plugins/spellchecker/classes/utils
+@pkgdir share/soycms/soycms/js/tiny_mce/plugins/soycms_custom_buttons
+@pkgdir share/soycms/soycms/cache
+@pkgdir share/soycms/common/tmp
+@pkgdir share/soycms/common/site_include/plugin/url_shortener/page/_update
+@pkgdir share/soycms/common/site_include/block/ScriptModuleBlockComponent/user_functions
+@pkgdir share/soycms/common/site_include/block/ScriptModuleBlockComponent/functions
+@pkgdir share/soycms/common/log
+@pkgdir share/soycms/app/cache
+@pkgdir share/soycms/admin/webapp/language/default
+@pkgdir share/soycms/admin/cache
diff --git a/www/php-soycms/distinfo b/www/php-soycms/distinfo
new file mode 100644
index 00000000000..8d1061bf545
--- /dev/null
+++ b/www/php-soycms/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2012/12/13 16:07:55 ryoon Exp $
+
+SHA1 (soycms_1.4.0a_mysql.zip) = 3528c3d0e88f68e6266ae571ffbe5ffe81602a35
+RMD160 (soycms_1.4.0a_mysql.zip) = 80ccc02d72b4c75f330db1a433832589cc257f20
+Size (soycms_1.4.0a_mysql.zip) = 6186085 bytes