uPortal 2.2.1 Distribution -------------------------- Purpose ------- This distribution is targeted towards people who would like to install uPortal in a development or production environment. It contains uPortal source code and properties files, but not a servlet container, directory, or relational database, which are required. Use of this distribution requires knowledge of J2EE environments and the Ant tool from the Apache Jakarta project. Contents -------- 1) uPortal 2.2.1 2) uPortal 2.2.1 java libraries (Xalan, Log4J, etc). 3) uPortal Architecture overview and JavaDoc API (see docs directory) System requirements ------------------- JDK 1.3 or higher JAVA_HOME environment variable must be set Installation of Ant from Jakarta: http://ant.apache.org/ Instructions ------------ Modify build.properties with local settings. Use the following ant targets: initportal - installs uPortal into a servlet container, prepares a relational database with uPortal schema and data, publishes channels and pushed layout fragments dist - creates JavaDoc, uPortal jar, and uPortal WAR files. For descriptions of other Ant targets, see docs/uPortal_tools_overview.txt. Make sure the database and servlet container are running and access uPortal with http://localhost:8080/uPortal Your URL may be different if you have configured a different port and/or context name. You can login to uPortal with the following user name/password combinations: demo, demo student, student faculty, faculty staff, staff developer, developer Each user may have a slightly different layout. Notes ----- -Several properties files and database tables have changed since uPortal 2.1.x. If you are upgrading from this version, you will need to see to it that your properties files and database schema AND data are upgraded appropriately. An upgrade tool is badly needed, but not yet available. -uPortal does not strictly require the use of connection pooling, but it is highly recommended for production installations. If your servlet container does not provide connection pooling, try something like Yet Another Poolman. For information about Yet Another Poolman, see http://yapoolman.sourceforge.net/. -Bug fixes from 2.1.x releases have been implemented in 2.2.x whenever they were appropriate -If you experience XML/XSLT-related errors, there is a good chance that your environment is not using the version of Xalan/Xerces that comes with this release. If you are using Tomcat, try copying the following files into Tomcat's common/endorsed directory: xalan.jar, xercesImpl.jar, xml-apis.jar. Alternatively, you can specify the use of these jar files via a java parameter when starting your servlet container: -Xbootclasspath/p:xalan.jar;xercesImpl.jar;xml-apis.jar For more information, see Version section of http://xml.apache.org/xalan-j/faq.html Please report bugs and suggestions: http://www.uportal.org/bugzilla/ uPortal website: http://www.uportal.org Changes since uPortal 2.2 ------------------------- Database: (nothing) Properties: (nothing) Bug fixes: -Bug 1469, Fixed CAR resource URL so that images load properly. -Bug 1476, Modified CError channel to handle character channels. -Bug 1486, Added check in RDBMUserIdentityStore to see if a group is editable before trying to update its members. -Removed LOCALE field from SQL statement in RDBMUserLayoutStore. -Get database columns in order in ChannelPublisher. -Corrected the property files passed to the media manager in UserInstance. -Synchronized several methods in AbstractPool and BoundedThreadPool to fix idle thread count. -Fixed ability to change skins after initial login by making CSKinSelector's IUserPreferencesManager non-static. Other changes: -Added optimization in DbLoader which cuts loading time in half.