DotCMS

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
 
(未显示1个用户的12个中间版本)
第1行: 第1行:
 +
{{top news}}
 +
{{SeeWikipedia}}
 +
 
dotCMS is a portal-based (JSR-168 compliant) Web Content Management System.  It offers a compelling set of features out of the box all on an extensible platform that can be customized to suit just about any Web CMS need.  
 
dotCMS is a portal-based (JSR-168 compliant) Web Content Management System.  It offers a compelling set of features out of the box all on an extensible platform that can be customized to suit just about any Web CMS need.  
  
 +
License: GNU General Public License v2
 +
 +
==新闻==
 +
<rss>http://feeds.feedburner.com/dotcms/rss-pr?format=atom|short|date|max=10</rss>
 +
 +
==Projects==
 
dotCMS has been built using the category-leading technologies that guide J2EE development today. These technologies are all widely adopted, actively developed open-source projects, standards and patterns.
 
dotCMS has been built using the category-leading technologies that guide J2EE development today. These technologies are all widely adopted, actively developed open-source projects, standards and patterns.
 
*[[Apache Struts]] Web Framework
 
*[[Apache Struts]] Web Framework
第11行: 第20行:
 
*[[Hibernate]] Object Relational Mapping
 
*[[Hibernate]] Object Relational Mapping
 
==dotCMS 1.7==
 
==dotCMS 1.7==
主要是两个数据库: sql\cms, sql\portal
+
主要有以下两个数据库: sql\cms, sql\portal
 
  如: dotcms_postgresql.sql 和 portal-postgresql.sql
 
  如: dotcms_postgresql.sql 和 portal-postgresql.sql
 
创建数据库: dotcms
 
创建数据库: dotcms
第17行: 第26行:
 
设置 conf/server.xml 和 conf/Catalina/localhost/ROOT.xml
 
设置 conf/server.xml 和 conf/Catalina/localhost/ROOT.xml
  
系统第一次启动会创建schema和初始化数据
+
系统第一次启动会创建schema和初始化数据. // dotCMS 1.7a测试, MySQL 5.1.32 没问题, PostgreSQL 8.3 会有些问题
  
 
  http://localhost/c
 
  http://localhost/c
第51行: 第60行:
  
 
  password: test
 
  password: test
 +
==Ajax==
 +
==Jackrabbit==
 +
集成 [[Apache Jackrabbit]]
 +
==eCommerce==
 +
==Workflow==
 +
集成 [[JBoss jBPM]]
 +
==Rules Engine==
 +
==Scheduling Engine==
 +
Incorporation of [[Quartz]] Scheduling Engine
 +
==DAM==
 +
Digital Asset Management (DAM)
 +
==Macro==
 +
==Plugins==
 +
http://www.dotcms.org/plugins/
 +
==JBoss==
 +
 
==Code==
 
==Code==
 +
[[Image:dotcms-svn.png|right|thumb|dotCMS SVN Access]]
 +
dotCMS Stable (latest released code)
 +
url: https://svn.dotcms.org/branches/stable
 +
dotCMSUser / dotCMSUser
 +
dotCMS Releases (Collection of dotCMS Released Code)
 +
url: https://svn.dotcms.org/tags/releases
 +
dotCMSUser / dotCMSUser
 +
dotCMS Trunk (latest code, warts and all)
 +
url: https://svn.dotcms.org/trunk
 +
dotCMSUser / dotCMSUser
 
==Links==
 
==Links==
 
*http://www.dotcms.org
 
*http://www.dotcms.org
 
*http://docs.huihoo.com/dotcms
 
*http://docs.huihoo.com/dotcms
 +
*http://docs.huihoo.com/javadoc/dotcms
 
*http://download.huihoo.com/dotcms
 
*http://download.huihoo.com/dotcms
 
*http://www.dotmarketing.com/
 
*http://www.dotmarketing.com/
 +
 +
{{Comment}}
 +
 +
[[Category:CMS]]
 +
[[Category:Java]]

2010年10月31日 (日) 07:21的最后版本

Wikipedia-35x35.png 您可以在Wikipedia上了解到此条目的英文信息 DotCMS Thanks, Wikipedia.

dotCMS is a portal-based (JSR-168 compliant) Web Content Management System. It offers a compelling set of features out of the box all on an extensible platform that can be customized to suit just about any Web CMS need.

License: GNU General Public License v2

目录

[编辑] 新闻

    [编辑] Projects

    dotCMS has been built using the category-leading technologies that guide J2EE development today. These technologies are all widely adopted, actively developed open-source projects, standards and patterns.

    [编辑] dotCMS 1.7

    主要有以下两个数据库: sql\cms, sql\portal

    如: dotcms_postgresql.sql 和 portal-postgresql.sql
    

    创建数据库: dotcms

    设置 conf/server.xml 和 conf/Catalina/localhost/ROOT.xml

    系统第一次启动会创建schema和初始化数据. // dotCMS 1.7a测试, MySQL 5.1.32 没问题, PostgreSQL 8.3 会有些问题

    http://localhost/c
    [email protected] / test
    

    [编辑] dotCMS 1.6

    get dotcms from http://download.huihoo.com/dotcms
    Create a new database called dotcms
    mysql dotcms < mysql.sql // for mysql
    $ createdb dotcms
    $ psql -s dotcms
    mydb=> \i postgres.sql // for postgresql
    

    Set the server IP address, Edit ./conf/server.xml <Server address="localhost" port="8005" shutdown="SHUTDOWN" debug="0"> ... <Connector address="localhost" port="80" URIEncoding="UTF-8" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" /> Set the database connection info in the conf/Catalina/localhost/ROOT.xml

    <Resource name="jdbc/dotCMSPool" auth="Container" type="javax.sql.DataSource" driverClassName="org.postgresql.Driver" url="jdbc:postgresql://127.0.0.1/dotcms" username="postgres" password="xxxxx" maxActive="50" maxIdle="10" maxWait="-1" removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true"/> login dotCMS

    http://localhost/
    user: [email protected]
    password: test
    后台: http://localhost/c
    user: [email protected]
    password: test
    

    [编辑] Ajax

    [编辑] Jackrabbit

    集成 Apache Jackrabbit

    [编辑] eCommerce

    [编辑] Workflow

    集成 JBoss jBPM

    [编辑] Rules Engine

    [编辑] Scheduling Engine

    Incorporation of Quartz Scheduling Engine

    [编辑] DAM

    Digital Asset Management (DAM)

    [编辑] Macro

    [编辑] Plugins

    http://www.dotcms.org/plugins/

    [编辑] JBoss

    [编辑] Code

    dotCMS SVN Access

    dotCMS Stable (latest released code)

    url: https://svn.dotcms.org/branches/stable
    dotCMSUser / dotCMSUser 
    

    dotCMS Releases (Collection of dotCMS Released Code)

    url: https://svn.dotcms.org/tags/releases 
    dotCMSUser / dotCMSUser
    

    dotCMS Trunk (latest code, warts and all)

    url: https://svn.dotcms.org/trunk
    dotCMSUser / dotCMSUser
    

    [编辑] Links

    Comment-32x32.png

    <discussion>characters_max=300</discussion>

    分享您的观点
    个人工具
    名字空间

    变换
    操作
    导航
    工具箱