taylor 2002/12/09 19:26:22
Modified: . INSTALL INSTALL-WAR NOTES TODO-DOCUMENTATION.txt
TODO-RELEASE-1.4.txt
webapp/WEB-INF/conf JetspeedSecurity.properties
Log:
Update Release Notes for 1.4b2 release
Revision Changes Path
1.7 +10 -15 jakarta-jetspeed/INSTALL
Index: INSTALL
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/INSTALL,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- INSTALL 17 Jul 2002 07:34:04 -0000 1.6
+++ INSTALL 10 Dec 2002 03:26:22 -0000 1.7
@@ -58,6 +58,7 @@
[Unix] cp <jetspeedRoot>/bin/jetspeed.war <tomcat_home>/webapps/
+
----------------
5. Start Tomcat
----------------
@@ -117,27 +118,21 @@
Jetspeed is distributed with a populated Hypersonic-SQL database.
This database is selected as the default database in the
-TorqueResources.properties file.
+Torque.properties file.
To configure Jetspeed with a different database, modify the
-TorqueResources.properties file.
-
-Here is an example for Oracle:
+Torque.properties file.
-database.default.driver=oracle.jdbc.driver.OracleDriver
-database.default.url=jdbc:oracle:thin:@<host>:1521:<sid>
-database.default.username= <your-oracle-user>
-database.default.password= <your-password>
-database.adaptor=DBOracle
-database.adaptor.DBOracle=oracle.jdbc.driver.OracleDriver</li>
+Here is an example for MySQL:
-You will need to replace:
+torque.database.default.adapter=mysql
+torque.dsfactory.default.connection.driver = org.gjt.mm.mysql.Driver
+torque.dsfactory.default.connection.url = jdbc:mysql://localhost:3306/jetspeed
+torque.dsfactory.default.connection.user = root
+torque.dsfactory.default.connection.password =
-<host> the host of the Oracle instance, such as localhost
-<sid> the name of Oracle database sid at the host
-<username> the oracle user(schema) name
-The TorqueResources.properties file can be found in /webapp/WEB-INF/conf.
+The Torque.properties file can be found in /webapp/WEB-INF/conf.
The database scripts for setting up the database are included with the
source code distribution, under the src/sql/external folder.
1.5 +9 -16 jakarta-jetspeed/INSTALL-WAR
Index: INSTALL-WAR
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/INSTALL-WAR,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- INSTALL-WAR 10 Dec 2001 05:16:18 -0000 1.4
+++ INSTALL-WAR 10 Dec 2002 03:26:22 -0000 1.5
@@ -98,27 +98,20 @@
Jetspeed is distributed with a populated Hypersonic-SQL database.
This database is selected as the default database in the
-TurbineResources.properties file.
+Torque.properties file.
To configure Jetspeed with a different database, modify the
-TurbineResources.properties file.
+Torque.properties file.
-Here is an example for Oracle:
+Here is an example for MySQL:
-database.default.driver=oracle.jdbc.driver.OracleDriver
-database.default.url=jdbc:oracle:thin:@<host>:1521:<sid>
-database.default.username= <your-oracle-user>
-database.default.password= <your-password>
-database.adaptor=DBOracle
-database.adaptor.DBOracle=oracle.jdbc.driver.OracleDriver</li>
+torque.database.default.adapter=mysql
+torque.dsfactory.default.connection.driver = org.gjt.mm.mysql.Driver
+torque.dsfactory.default.connection.url = jdbc:mysql://localhost:3306/jetspeed
+torque.dsfactory.default.connection.user = root
+torque.dsfactory.default.connection.password =
-You will need to replace:
-
-<host> the host of the Oracle instance, such as localhost
-<sid> the name of Oracle database sid at the host
-<username> the oracle user(schema) name
-
-The TurbineResources.properties file can be found in /webapp/WEB-INF/conf.
+The Torque.properties file can be found in /webapp/WEB-INF/conf.
The database scripts for setting up the database are included with the
source code distribution, under the src/sql/external folder.
1.6 +7 -4 jakarta-jetspeed/NOTES
Index: NOTES
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/NOTES,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- NOTES 17 Jul 2002 07:34:04 -0000 1.5
+++ NOTES 10 Dec 2002 03:26:22 -0000 1.6
@@ -1,15 +1,18 @@
-Jetspeed 1.4b1 Release Notes
+Jetspeed 1.4b2 Release Notes
----------------------------
This file documents some known issues or incomplete features
in this release.
+LDAP Security Service
+---------------------
+The LDAP Security Service was just added in version 1.4b2.
+It is not completely tested in production. It will be more robust by the next
revision.
+
Customizer
----------
There are still some known problems:
-- You cannot switch directly between some layouts, for ex. 3-column to 2-column.
You must first delete all portlets,
- then you can switch to 2-column.
-- You can't search for a given portlet
+- You can't search for a given portlet, but you can now filter by Portlet
Categories.
Portlets
--------
1.2 +3 -7 jakarta-jetspeed/TODO-DOCUMENTATION.txt
Index: TODO-DOCUMENTATION.txt
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/TODO-DOCUMENTATION.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TODO-DOCUMENTATION.txt 1 Jul 2002 18:09:10 -0000 1.1
+++ TODO-DOCUMENTATION.txt 10 Dec 2002 03:26:22 -0000 1.2
@@ -3,18 +3,14 @@
------------------------
- New Developers Guidelines like http://www.jboss.org/developers/join.jsp
- How-to submit a bug
-- Document New Pluggable Security Model, New Interfaces for Authentication and
Authorization services.
-- Document New Security Registry
-- Document Portlet instances and ids
-- Document new link tool $jslink
-- Document Portlet References, Aggregate Portlet
- Document Profile Browser
- Document New WebPage Portlet
- Document Multiple Template Roots
-- Document XML Media Type support
-- Document Database Browser
- How-to Unit Testing
- Document Registry categories
- Document Id Generator service
+- Complete sections 8, 10, 11 in Tutorial
+- New Tutorial on how to Extend Jetspeed User
+
1.3 +7 -20 jakarta-jetspeed/TODO-RELEASE-1.4.txt
Index: TODO-RELEASE-1.4.txt
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/TODO-RELEASE-1.4.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- TODO-RELEASE-1.4.txt 4 Jun 2002 15:38:30 -0000 1.2
+++ TODO-RELEASE-1.4.txt 10 Dec 2002 03:26:22 -0000 1.3
@@ -1,29 +1,16 @@
-Task List for Jetspeed 1.4 Beta Release
+Task List for Jetspeed 1.4 RC1
---------------------------------------
- Bug List - Fix all major and critical bugs
-
-PS - Complete the conversion from link/jlink/clink to jslink
-
-GG - Complete State Manager, convert all code to use it
-RL - Cleanup CVS
-
-GG, DT - Portlet Instance (seems to be pretty close to being solved)
-
- - Performance Testing
- - Performance Tuning Iteration to codebase
-
-DT - Profile Browser
-DT, PS - JAAS Security proposal and implementation
-
- - Documentation
- - Tutorial, better Examples
-DT - New WebPage Portlet
+ - LDAP Service - finish up
+ - Media Type fallback algorithms in Profiler, TemplateLocator
+ - Maven build
+ - More Performance Cases with JMeter
-Optional
+Optional (up for grabs)
--------
+ - JCS caching of PSML and Registry OM objects
- Registry in Database (started but not completed)
- - JCS caching of PSML and Registry OM objects (that may be a little ahead of
its time)
1.50 +0 -0 jakarta-jetspeed/webapp/WEB-INF/conf/JetspeedSecurity.properties
Index: JetspeedSecurity.properties
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/conf/JetspeedSecurity.properties,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>