From: Pieter v. Z. <pv...@us...> - 2005-07-06 14:15:28
|
Update of /cvsroot/coefficient/coefficient In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2370 Modified Files: README Log Message: removed install instructions from readme. It gives an overview of what it is Index: README =================================================================== RCS file: /cvsroot/coefficient/coefficient/README,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** README 1 Jul 2005 07:28:18 -0000 1.4 --- README 6 Jul 2005 14:15:12 -0000 1.5 *************** *** 1,94 **** Coefficient - open source project based collaboration platform ! ===================================================== version 0.9.6 01 July 2005 ! Requirement Notes: ! ------------------ ! To build/run coefficient you must have on you machine: ! 1. at least j2sdk-1.4.1 ! 2. JBoss-3.2.x or Tomcat-4.1.x or Tomcat-5.0.x ! 3. ant (at least 1.5) ! ! Build Notes: ! ------------ ! - To have the build work correctly you must: ! 1. rename the build.properties.sample file to build.properties and ! change the paths to match your system. ! 2. rename the src/misc/hibernate.properties.sample to ! hibernate.properties and configure the properties to match the ! database you are using. If you are going to build coefficient as ! a web-application then copy the hibernate.properties.webapp.sample ! to hibernate.properties and setup appropriately. ! ! Deploy Notes: ! ------------- ! 1. the system has been tested under JBoss-3.2.x to run this code under ! a different application server you are on your own. ! 2. NOTE: if you are using JBoss-3.2.1 you must fix an incorrectly set property, ! the {JBOSS_HOME}/server/default/conf/jboss-server.xml file: ! change <attribute name="RecursiveSearch">False</attribute> to ! <attribute name="RecursiveSearch">True</attribute> ! 3. If building EJB setup your datasource and call it CoefficientDS (you ! must configure a JBoss datasource and include the JDBC jar in the lib ! directory so JBoss can see it in its classpath). If building a web- ! application make sure you copy your jdbc driver into the lib directory ! of tomcat. ! 4. Make sure that your hibernate.properties is using the correct dialect ! for the datasource you have configured. ! 5. You build the EJB system by typing "ant clean deploy". This will move ! the .ear file into you JBoss deploy directory. The system creates ! the tables it needs and pre-populates the system with some data. The ! first time you hit the site you will notice a delay as the system ! performs this self initialization. ! If building the web-application then type ! "ant clean clean-all-modules deploy-war". This will build and move the ! .war file into your tomcat webapps directory. ! 6. If you have downloaded the modules for the system you should place ! them all into a directory. Once you set the "modules.dir" property ! in build.properties you can invoke the ant task ! "ant deploy-all-modules" and this will build each module and deploy ! it. ! NOTE: There is a known issue with the system. If JBoss deploys a ! module before the core has been deployed it will freak out since ! the module depends on classes and libs contained in the core. ! JBoss will deploy the latest timestamped .ear last so this can ! be avoided by deploying the core first and any modules after. ! If you are building the webapp then all the modules in the "modules.dir" ! directory will be included in the built .war. ! 7. If building a web-application installation you then, because we use the ! apache bean factory to create our modules and ! to resolve objects through JNDI you must copy the contents of ! server.xml.snippit into the {TOMCAT_HOME}/conf/server.xml file. Make ! sure that this context block goes within the Host block defined for ! your host (localhost if running a default installation). ! 8. You should be up and running. Point your browser at whatever url ! you have configured JBoss to run on, the context for the project is ! setup as the root and the entry servlet responds to index.html ! , usually: ! http://localhost:8080/index.html ! http://localhost:8080/coefficient/index.html (for a web-application) ! 9. The system will initially prompt for some needed properties before ! you can start using it. These are a valid email address to use as site ! administrator and from address and smtp host: ! MAIL_SMTP_HOST={my.smtp.host} ! MAIL_SENDER_ADDRESS={my.email.address} ! NOTE: the system will be unable to send user confirmations or project ! confirmations if these are not set. ! You may want to modify the location that uploaded files are stored, ! this can be done by setting the property: ! FILEUPLOAD_SAVE_PATH={path.to.where.you.store.fileUploads} ! 10. The default password and username is 'admin', 'admin' ! 11. Enjoy ! ! ! Other Stuff ! ----------- ! This software is distributed under the terms of the FSF Lesser Gnu Public License (see lgpl.txt). ! If you want to contribute, go to http://sourceforge.net/projects/coefficient/ ! This product includes software developed by the Apache Software Foundation (http://www.apache.org/). ! This product includes software developed by the Hibernate Project (http://www.hibernate.org/) ! This product includes software developed by the Xdoclet Project (http://xdoclet.sourceforge.net/) ! This product includes software developed by the Castor Project (http://castor.exolab.org/) ! This product includes software developed by the AspectJ Project (http://www.eclipse.org/aspectj) ! This product includes software developed by the Jalopy Project (http://jalopy.sourceforge.net) --- 1,27 ---- Coefficient - open source project based collaboration platform ! =============================================================== version 0.9.6 01 July 2005 ! Coefficient is a scalable open source project based collaboration platform that ! can run in J2EE and web application containers. It currently provides basic collaboration ! tools as hot deployable modules. It also provides a workflow engine to help guide projects ! through their development cycle. ! Currently the following modules are available for download: ! * the Coefficient core module with some core themes. An ejb and a web module is available. ! * themes: PlainWhiteTheme and originalDarkGreenTheme ! * csir-workflow ! * dgroupsDefaultTheme ! * dgroupsJalbiradariTheme ! * dgroupsNavigation ! * dgroupsOneWorldTheme ! * dgroupsPlainWhiteTheme ! * discussion which is depricated, use the MailForum ! * fileUpload ! * issueTracker ! * mailForum ! * news ! * task which is depricated, use the IssueTracker ! * vote ! Please read the INSTALL.txt in each of the modules for installation instructions \ No newline at end of file |