更多精彩请到 http://www.139ya.com
http://www.open-open.com/39.htm
http://www.yeeyan.com/articles/view/oc/39540
Showing posts with label cms. Show all posts
Showing posts with label cms. Show all posts
Wednesday, September 9, 2009
Tuesday, April 14, 2009
Alfresco Web Script Pages
更多精彩请到 http://www.139ya.com
http://wiki.alfresco.com/wiki/Web_Scripts
http://wiki.alfresco.com/wiki/Web_Scripts_Examples
http://wiki.alfresco.com/wiki/Web_Scripts_Hello_World_Quick_Start
Listing_Available_Web_Scripts : http://wiki.alfresco.com/wiki/Web_Scripts#Listing_Available_Web_Scripts
Deciding_Where_to_place_Web_Script_Implementation : http://wiki.alfresco.com/wiki/Web_Scripts#Deciding_Where_to_place_Web_Script_Implementation
WebScripts Configuration : http://wiki.alfresco.com/wiki/3.0_Web_Scripts_Framework#Configuration
Java-backed_Web_Scripts_Samples : http://wiki.alfresco.com/wiki/Java-backed_Web_Scripts_Samples
http://wiki.alfresco.com/wiki/Web_Scripts_Examples
http://www.optaros.com/blogs/running-alfresco-web-scripts-liferay-portlets
https://www.liferay.com/zh_CN/web/guest/community/forums/-/message_boards/category/243732;jsessionid=77BA415F3FF1DD797023CECF4D9459E5
https://www.liferay.com/zh_CN/web/guest/community/home
http://wiki.alfresco.com/wiki/Web_Scripts
http://wiki.alfresco.com/wiki/Web_Scripts_Examples
http://wiki.alfresco.com/wiki/Web_Scripts_Hello_World_Quick_Start
Listing_Available_Web_Scripts : http://wiki.alfresco.com/wiki/Web_Scripts#Listing_Available_Web_Scripts
Deciding_Where_to_place_Web_Script_Implementation : http://wiki.alfresco.com/wiki/Web_Scripts#Deciding_Where_to_place_Web_Script_Implementation
WebScripts Configuration : http://wiki.alfresco.com/wiki/3.0_Web_Scripts_Framework#Configuration
Java-backed_Web_Scripts_Samples : http://wiki.alfresco.com/wiki/Java-backed_Web_Scripts_Samples
http://wiki.alfresco.com/wiki/Web_Scripts_Examples
http://www.optaros.com/blogs/running-alfresco-web-scripts-liferay-portlets
https://www.liferay.com/zh_CN/web/guest/community/forums/-/message_boards/category/243732;jsessionid=77BA415F3FF1DD797023CECF4D9459E5
https://www.liferay.com/zh_CN/web/guest/community/home
Alfresco Launches Rapid Web Site Development Tool
更多精彩请到 http://www.139ya.com
http://www.alfresco.com/media/releases/2009/01/web-studio-labs3/
Alfresco WCM - an enterprise-class content creation platform and repository;
Alfresco Surf - a web application and site assembly framework for developers; and,
Alfresco Web Studio - a graphical design and site assembly tool for business users.
http://www.alfresco.com/media/releases/2009/01/web-studio-labs3/
Alfresco WCM - an enterprise-class content creation platform and repository;
Alfresco Surf - a web application and site assembly framework for developers; and,
Alfresco Web Studio - a graphical design and site assembly tool for business users.
Alfresco 自编译安装配置
更多精彩请到 http://www.139ya.com
Tomcat 6.0.18
Alfresco Lab 3C
1. 下载源码svn...
2. 编译默认 ant build
3. alfresco.war 会自动被放在 $TOMCAT_HOME/webapps
4. 启动tomcat, 从系统log里能看到alfresco.war 被展开
5. 修改$TOMCAT_HOME/webapps/alfresco/WEB-INF/classes/alfresco/repository.properties, 把 dir.root 改成绝对路径,如:
dir.root=D:/dev/apache-tomcat-6.0.18/webapps/alfresco/WEB-INF/classes/alfresco/alf_data
index.recovery.mode=FULL, 这句在重启后应改回"index.recovery.mode=VALIDATE"
6. drop the database. Log into mysql as root or the alfresco user (defined by 'db.username' in custom-repository.properties)
mysql> drop database alfresco;
mysql> create database alfresco;
7. Config Tomcat
catalina.sh
ps auxw | grep tomcat
or, prepare a new alfresco.bat to invoke tomcat with the JVM parameter, just like below:
set JAVA_OPTS=-Xms128m -Xmx512m -Xss96k -XX:MaxPermSize=128m -server
call "%CATALINA_HOME%\bin\startup.bat"
Alfresco Surf Platform
Building
http://wiki.alfresco.com/wiki/Surf_Platform
ant incremental-webframework-tomcat
/root/projects/web-framework/build/dist/alfwf.war
--------------------------------------
http://wiki.alfresco.com/wiki/Surf_Platform_-_Deployment_Configurations
ant incremental-surf-starter
./projects/web-framework/build/dist/surf.war
--------------------------------------
Tomcat 6.0.18
Alfresco Lab 3C
1. 下载源码svn...
2. 编译默认 ant build
3. alfresco.war 会自动被放在 $TOMCAT_HOME/webapps
4. 启动tomcat, 从系统log里能看到alfresco.war 被展开
5. 修改$TOMCAT_HOME/webapps/alfresco/WEB-INF/classes/alfresco/repository.properties, 把 dir.root 改成绝对路径,如:
dir.root=D:/dev/apache-tomcat-6.0.18/webapps/alfresco/WEB-INF/classes/alfresco/alf_data
index.recovery.mode=FULL, 这句在重启后应改回"index.recovery.mode=VALIDATE"
6. drop the database. Log into mysql as root or the alfresco user (defined by 'db.username' in custom-repository.properties)
mysql> drop database alfresco;
mysql> create database alfresco;
7. Config Tomcat
catalina.sh
#----------------------------------------------------------------After starting Tomcat, you can verify that the -server and -Xmx1024M flags are set by issuing the command:
# The -server flag avoids problems on Linux and Mac.
# The -Xmx1024M flag gives the JVM ample memory.
#----------------------------------------------------------------
if ! [[ "${CATALINA_OPTS}" =~ '-server' ]]; then
CATALINA_OPTS="$CATALINA_OPTS -server"
fi
if ! [[ "${CATALINA_OPTS}" =~ '-Xmx' ]]; then
CATALINA_OPTS="$CATALINA_OPTS -Xmx1024M"
fi
ps auxw | grep tomcat
or, prepare a new alfresco.bat to invoke tomcat with the JVM parameter, just like below:
set JAVA_OPTS=-Xms128m -Xmx512m -Xss96k -XX:MaxPermSize=128m -server
call "%CATALINA_HOME%\bin\startup.bat"
Alfresco Surf Platform
Building
http://wiki.alfresco.com/wiki/Surf_Platform
ant incremental-webframework-tomcat
/root/projects/web-framework/build/dist/alfwf.war
--------------------------------------
http://wiki.alfresco.com/wiki/Surf_Platform_-_Deployment_Configurations
ant incremental-surf-starter
./projects/web-framework/build/dist/surf.war
--------------------------------------
Monday, April 13, 2009
Sunday, April 12, 2009
Alfresco Wiki Pages
更多精彩请到 http://www.139ya.com
Web Studio : http://wiki.alfresco.com/wiki/Category:Web_Studio
http://wiki.alfresco.com/wiki/Web_Studio
http://wiki.alfresco.com/wiki/Web_Studio_Tutorials
http://wiki.alfresco.com/wiki/Web_Studio_Tutorial_-_Green_Energy_Starter
http://wiki.alfresco.com/wiki/Web_Studio_Tutorials
http://wiki.alfresco.com/wiki/Web_Studio_Tutorial_-_Custom_Site
alfresco surf : http://wiki.alfresco.com/wiki/Surf_Platform
alfresco surf dev guide : http://wiki.alfresco.com/wiki/Surf_Platform_-_Developers_Guide
Web Studio : http://wiki.alfresco.com/wiki/Category:Web_Studio
http://wiki.alfresco.com/wiki/Web_Studio
http://wiki.alfresco.com/wiki/Web_Studio_Tutorials
http://wiki.alfresco.com/wiki/Web_Studio_Tutorial_-_Green_Energy_Starter
http://wiki.alfresco.com/wiki/Web_Studio_Tutorials
http://wiki.alfresco.com/wiki/Web_Studio_Tutorial_-_Custom_Site
alfresco surf : http://wiki.alfresco.com/wiki/Surf_Platform
alfresco surf dev guide : http://wiki.alfresco.com/wiki/Surf_Platform_-_Developers_Guide
Labels:
cms
Wednesday, February 18, 2009
A detail review on Alfresco
更多精彩请到 http://www.139ya.com
**************************************************************
Supported Stacks for Version 2.1: http://www.alfresco.com/services/support/stacks/2.1/
Alfresco 2.0.x server: http://support.hyperic.com/display/hypcomm/Alfresco+2.0.x+server
alfresco 应该能支持sybase, 具体配置步骤可参看mysql,
Setting up the MySQL database for Alfresco: http://wiki.alfresco.com/wiki/Setting_up_the_MySQL_database_for_Alfresco
1. Browse to the tomcat\shared\classes\alfresco\extension\ directory.
2. Locate and open the following two files:
* custom-hibernate-dialect.properties
* custom-repository.properties
**************************************************************
转自: http://blog.taragana.com/index.php/archive/a-detailed-review-on-alfresco-an-open-source-enterprise-content-management-system/
Alfresco2.1下载和安装: http://www.blogjava.net/xiaodaoxiaodao/archive/2007/09/16/145520.html
翻译:Alfresco WCM Website Framework (WSF): http://www.blogjava.net/xiaodaoxiaodao/archive/2007/09/17/145970.html
Alfresco使用WSF开始WCM的创建: http://www.blogjava.net/xiaodaoxiaodao/archive/2008/11/04/147529.html
Downloading and Installing WCM: http://wiki.alfresco.com/wiki/Downloading_and_Installing_WCM
Alfresco-WCM-in-Hour: http://www.scribd.com/doc/9363980/Alfresco-WCM-in-Hour
Yale CAS SSO + Alfresco 2.9.0b + Tomcat 5.5 的整合步骤: http://blog.csdn.net/lifei88/archive/2007/12/21/1957826.aspx
Alfresco SSO:http://www.scribd.com/doc/4352436/Alfresco-SSO
Central Authentication Service: http://wiki.alfresco.com/wiki/Central_Authentication_Service
Configure Alfresco for SSO using CAS: http://wiki.alfresco.com/wiki/Central_Authentication_Service_Configuration
Ldap over SSL: http://wiki.alfresco.com/wiki/Ldap_over_SSL
forge alfresco: http://forge.alfresco.com/
**********************************************************************
Alfresco Content Management Web Services: http://wiki.alfresco.com/wiki/Alfresco_Content_Management_Web_Services
**********************************************************************
Alfresco Content Edit Configuration Content Search: http://issues.liferay.com/browse/LEP-1838
Alfresco SVN repository: http://wiki.alfresco.com/wiki/Source_Code
WCM Deployment Features: http://wiki.alfresco.com/wiki/WCM_Deployment_Features
**************************************************************
Supported Stacks for Version 2.1: http://www.alfresco.com/services/support/stacks/2.1/
Alfresco 2.0.x server: http://support.hyperic.com/display/hypcomm/Alfresco+2.0.x+server
alfresco 应该能支持sybase, 具体配置步骤可参看mysql,
Setting up the MySQL database for Alfresco: http://wiki.alfresco.com/wiki/Setting_up_the_MySQL_database_for_Alfresco
1. Browse to the tomcat\shared\classes\alfresco\extension\ directory.
2. Locate and open the following two files:
* custom-hibernate-dialect.properties
* custom-repository.properties
**************************************************************
转自: http://blog.taragana.com/index.php/archive/a-detailed-review-on-alfresco-an-open-source-enterprise-content-management-system/
Alfresco2.1下载和安装: http://www.blogjava.net/xiaodaoxiaodao/archive/2007/09/16/145520.html
翻译:Alfresco WCM Website Framework (WSF): http://www.blogjava.net/xiaodaoxiaodao/archive/2007/09/17/145970.html
Alfresco使用WSF开始WCM的创建: http://www.blogjava.net/xiaodaoxiaodao/archive/2008/11/04/147529.html
Downloading and Installing WCM: http://wiki.alfresco.com/wiki/Downloading_and_Installing_WCM
Alfresco-WCM-in-Hour: http://www.scribd.com/doc/9363980/Alfresco-WCM-in-Hour
Yale CAS SSO + Alfresco 2.9.0b + Tomcat 5.5 的整合步骤: http://blog.csdn.net/lifei88/archive/2007/12/21/1957826.aspx
Alfresco SSO:http://www.scribd.com/doc/4352436/Alfresco-SSO
Central Authentication Service: http://wiki.alfresco.com/wiki/Central_Authentication_Service
Configure Alfresco for SSO using CAS: http://wiki.alfresco.com/wiki/Central_Authentication_Service_Configuration
Ldap over SSL: http://wiki.alfresco.com/wiki/Ldap_over_SSL
forge alfresco: http://forge.alfresco.com/
**********************************************************************
Alfresco Content Management Web Services: http://wiki.alfresco.com/wiki/Alfresco_Content_Management_Web_Services
**********************************************************************
Alfresco Content Edit Configuration Content Search: http://issues.liferay.com/browse/LEP-1838
Alfresco SVN repository: http://wiki.alfresco.com/wiki/Source_Code
WCM Deployment Features: http://wiki.alfresco.com/wiki/WCM_Deployment_Features
Labels:
cms
Subscribe to:
Posts (Atom)