rapforums-developer Mailing List for RAP Forums (Page 3)
Status: Beta
Brought to you by:
brippe
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(12) |
Oct
(4) |
Nov
|
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(34) |
Feb
(3) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(32) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <br...@pr...> - 2004-01-26 19:00:17
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23298 Removed Files: RAPDBUtil.java RAPUserDB.java Log Message: Update to version 0.8.3 --- RAPDBUtil.java DELETED --- --- RAPUserDB.java DELETED --- |
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22259 Modified Files: DatabaseNames.java RAPDB.java RAPDBException.java RAPDBService.java Log Message: Update to version 0.8.3 Index: DatabaseNames.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database/DatabaseNames.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DatabaseNames.java 25 Sep 2003 22:57:08 -0000 1.2 --- DatabaseNames.java 26 Jan 2004 18:55:50 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 18,22 **** * This software is OSI Certified Open Source Software. * OSI Certified is a certification mark of the Open Source Initiative ! * */ --- 18,22 ---- * This software is OSI Certified Open Source Software. * OSI Certified is a certification mark of the Open Source Initiative ! * */ *************** *** 28,36 **** * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% */ public interface DatabaseNames { public final static String PORTAL_CHANNELS = "uPortalChannels"; ! public final static String PORTAL = "uPortal"; } --- 28,36 ---- * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% */ public interface DatabaseNames { public final static String PORTAL_CHANNELS = "uPortalChannels"; ! public final static String PORTAL = "PortalDb"; } Index: RAPDB.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database/RAPDB.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPDB.java 25 Sep 2003 22:57:08 -0000 1.2 --- RAPDB.java 26 Jan 2004 18:55:50 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** [...1889 lines suppressed...] ! ResultSet.TYPE_SCROLL_INSENSITIVE, ! ResultSet.CONCUR_READ_ONLY); stmt.setInt(1, catID); *************** *** 1361,1367 **** // returns the actual connection to its pool: closeStatement(stmt); ! closeConnection(); } } - } --- 1445,1450 ---- // returns the actual connection to its pool: closeStatement(stmt); ! closeConnection(dbConnection); } } } Index: RAPDBException.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database/RAPDBException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPDBException.java 25 Sep 2003 22:57:08 -0000 1.2 --- RAPDBException.java 26 Jan 2004 18:55:50 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 29,33 **** * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% */ public class RAPDBException extends RAPException { --- 29,33 ---- * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% */ public class RAPDBException extends RAPException { Index: RAPDBService.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPDBService.java 25 Sep 2003 22:57:08 -0000 1.2 --- RAPDBService.java 26 Jan 2004 18:55:50 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,42 **** package edu.fullcoll.uportal.channels.rap.forum.database; ! import java.sql.*; ! import javax.sql.*; ! import javax.naming.*; import org.jasig.portal.services.LogService; /** * This class provides basic functionality for RAP database classes. ! * RAPDBService uses jndi lookup to obtain the data sources. * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% */ public abstract class RAPDBService { - protected Connection dbConnection = null; private String defaultDSName = DatabaseNames.PORTAL; --- 23,45 ---- package edu.fullcoll.uportal.channels.rap.forum.database; ! import java.sql.Connection; ! import java.sql.Statement; ! import java.sql.ResultSet; ! import java.sql.SQLException; + import org.jasig.portal.RDBMServices; import org.jasig.portal.services.LogService; /** * This class provides basic functionality for RAP database classes. ! * RAPDBService uses org.jasig.portal.RDBMServices to obtain a database connnection. * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% ! * @see org.jasig.portal.RDBMServices ! * @see edu.fullcoll.uportal.channels.rap.forum.database.RAPDBConfig */ public abstract class RAPDBService { private String defaultDSName = DatabaseNames.PORTAL; *************** *** 51,76 **** * This method makes a database connection. */ ! protected void getDBConnection() throws RAPDBException { ! try { ! Context initCtx = new InitialContext(); ! Context envCtx = (Context) initCtx.lookup("java:comp/env/"); ! ! DataSource ds = (DataSource)envCtx.lookup("jdbc/"+defaultDSName); ! ! if (ds != null) ! dbConnection = ds.getConnection(); ! ! if(dbConnection == null) { ! LogService.instance().log(LogService.ERROR, "Database connection error datasource null"); ! throw new RAPDBException("Database connection error: "+defaultDSName); ! } ! ! } catch(SQLException e) { ! LogService.instance().log(LogService.ERROR, "Database connection error " + e); ! throw new RAPDBException("Database connection error", e); ! } catch(NamingException e2) { ! LogService.instance().log(LogService.ERROR, "Database connection error " + e2); ! throw new RAPDBException("Database connection error", e2); ! } } --- 54,59 ---- * This method makes a database connection. */ ! protected Connection getDBConnection() throws RAPDBException { ! return RDBMServices.getConnection(defaultDSName); } *************** *** 78,105 **** * This method makes a database connection to the specified database. * @param dbName the name of the database to connect to. ! * @see edu.fullcoll.uportal.channels.rap.database.DatabaseNames */ ! protected void getDBConnection(String dbName) throws RAPDBException { ! try { ! Context initCtx = new InitialContext(); ! Context envCtx = (Context) initCtx.lookup("java:comp/env/"); ! ! DataSource ds = (DataSource)envCtx.lookup("jdbc/"+dbName); ! ! if (ds != null) ! dbConnection = ds.getConnection(); ! ! if(dbConnection == null) { ! LogService.instance().log(LogService.ERROR, "Database connection error datasource null"); ! throw new RAPDBException("Database connection error: "+dbName); ! } ! ! } catch(SQLException e) { ! LogService.instance().log(LogService.ERROR, "Database connection error " + e); ! throw new RAPDBException("Database connection error", e); ! } catch(NamingException e2) { ! LogService.instance().log(LogService.ERROR, "Database connection error " + e2); ! throw new RAPDBException("Database connection error", e2); ! } } --- 61,68 ---- * This method makes a database connection to the specified database. * @param dbName the name of the database to connect to. ! * @see edu.fullcoll.uportal.channels.rap.forum.database.DatabaseNames */ ! protected Connection getDBConnection(String dbName) throws RAPDBException { ! return RDBMServices.getConnection(dbName); } *************** *** 108,112 **** * @throws RAPDBException - if a database error occurs */ ! protected void closeConnection() throws RAPDBException { try { --- 71,75 ---- * @throws RAPDBException - if a database error occurs */ ! protected void closeConnection(Connection dbConnection) throws RAPDBException { try { *************** *** 166,171 **** --- 129,136 ---- private void getChannelDSConfig() { if(RAPDBConfig.getInstance().isMultiDS()) { + //System.out.println("Default db: "+ DatabaseNames.PORTAL_CHANNELS); defaultDSName = DatabaseNames.PORTAL_CHANNELS; } else { + //System.out.println("Default db: "+DatabaseNames.PORTAL); defaultDSName = DatabaseNames.PORTAL; } |
From: <br...@pr...> - 2004-01-26 18:56:46
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22189 Added Files: RAPDBConfig.java Log Message: Update to version 0.8.3 --- NEW FILE: RAPDBConfig.java --- /** * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * * This software is distributed under the IBM Public Licence. Please see * the license infomation for more details at http://www.opensource.org/licenses/ibmpl.php. * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED * ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER * EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS * OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. * Each Recipient is solely responsible for determining the appropriateness of using * and distributing the Program and assumes all risks associated with its exercise * of rights under this Agreement, including but not limited to the risks and costs * of program errors, compliance with applicable laws, damage to or loss of data, * programs or equipment, and unavailability or interruption of operations. * * This software is OSI Certified Open Source Software. * OSI Certified is a certification mark of the Open Source Initiative */ package edu.fullcoll.uportal.channels.rap.forum.database; /** * This class is used to determine the data source configuration for the forums. * Initial versions of the forums required two data sources, one for the portal information * and one for the forums. This is now configurable by setting a channel parameter called * "multiDS=true". If this parameter is set when the channel is published, the channel uses two data * sources, otherwise, the channel uses one datasource. * * @author br...@fu... (Brad Rippe) * @version 0.8.3 $Revision %G% */ public class RAPDBConfig { protected RAPDBConfig(){} /** * Returns an instance of RAPDBConfig */ public static RAPDBConfig getInstance(){ if (instance == null) { instance = new RAPDBConfig(); } return instance; } /** * Returns whether the forums are using multiple data sources * or a single data source. * @return true if using multiple data sources, otherwise false. */ public static boolean isMultiDS() { return multiDS; } /** * Sets whether the are multiple data sources used. * @param mDS - determines whether there are multiple data sources. */ public static void setMultiDS(boolean mDS) { multiDS = mDS; } /** * Returns the database product the forums are currently utilizing. * @return the name of the database product the forums are using: MSSQL, MYSQL or ORACLE. */ public static String getDatabaseProduct() { return dbProduct; } /** * Sets the database product the forums are utilizing, MSSQL, MYSQL, or ORACLE. * The forums default to MSSQL * @param dbProduct the name of the database product being used. */ public static void setDatabaseProduct(String dbP) { if(dbP == null) dbProduct = "MSSQL"; else dbProduct = dbP; } /** * @link * @shapeType PatternLink * @pattern Singleton * @supplierRole Singleton factory */ /*# private RAPDBConfig _singleton; */ private static RAPDBConfig instance = null; private static boolean multiDS = false; private static String dbProduct = "MSSQL"; // default database product is MSSQL } |
From: <br...@pr...> - 2004-01-26 18:55:58
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22000 Removed Files: database.dfPackage Log Message: Update to version 0.8.3 --- database.dfPackage DELETED --- |
From: <br...@pr...> - 2004-01-26 18:52:57
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21225 Removed Files: forum.dfPackage Log Message: Update to version 0.8.3 --- forum.dfPackage DELETED --- |
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20726 Modified Files: CForum.java ForumSearch.java IDManager.java IForum.java IForumCategory.java IForumComment.java IForumsManager.java IForumThread.java ISearchManager.java IUser.java IUserManager.java NestedException.java RAPException.java RAPForum.java RAPForumCategory.java RAPForumComment.java RAPForumsManager.java RAPForumThread.java RAPIDManagerException.java RAPUser.java Log Message: Update to version 0.8.3 Index: CForum.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/CForum.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CForum.java 25 Sep 2003 22:57:07 -0000 1.2 --- CForum.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 50,56 **** * xsl stylesheet based on the incoming request. * ! * @author Brad Rippe (br...@fu...) and Chris Pereda (cp...@fu...), Tung Lai Thanh (lt...@ya...) ! * @version 0.8.2 $Revision %G% ! * 09/19/2003 */ public class CForum implements IChannel { --- 50,55 ---- * xsl stylesheet based on the incoming request. * ! * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...), and Tung Lai Thanh (lt...@ya...) ! * @version 0.8.3 $Revision %G% */ public class CForum implements IChannel { *************** *** 96,100 **** this.staticData = sd; // Configuration for multiple DBs ! // defaults to a single database called "uPortal" // MultiDB supports DS for "uPortal" and another DS for "uPortal_Channels" String multiDB = staticData.getParameter("multiDB"); --- 95,99 ---- this.staticData = sd; // Configuration for multiple DBs ! // defaults to a single database called "PortalDb" // MultiDB supports DS for "uPortal" and another DS for "uPortal_Channels" String multiDB = staticData.getParameter("multiDB"); *************** *** 102,106 **** RAPDBConfig.getInstance().setMultiDS(true); ! } /** --- 101,115 ---- RAPDBConfig.getInstance().setMultiDS(true); ! // Database product should be one of the following values ! // MSSQL - makes use of Microsoft SQL Servers stored procedures ! // ORACLE - ! // MYSQL - ! String databaseProduct = staticData.getParameter("dbProduct"); ! if(databaseProduct != null) { ! RAPDBConfig.getInstance().setDatabaseProduct(databaseProduct.toUpperCase()); ! } else { ! RAPDBConfig.getInstance().setDatabaseProduct("MSSQL"); ! } ! } /** Index: ForumSearch.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/ForumSearch.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ForumSearch.java 25 Sep 2003 22:57:07 -0000 1.2 --- ForumSearch.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 36,40 **** * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% */ public class ForumSearch implements ISearchManager { --- 36,40 ---- * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% */ public class ForumSearch implements ISearchManager { Index: IDManager.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IDManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IDManager.java 25 Sep 2003 22:57:07 -0000 1.2 --- IDManager.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 31,36 **** * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% ! * 01/31/2003 * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestIDManager */ --- 31,35 ---- * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestIDManager */ Index: IForum.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IForum.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IForum.java 25 Sep 2003 22:57:07 -0000 1.2 --- IForum.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 26,30 **** import java.util.Collection; ! import java.util.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDBException; --- 26,30 ---- import java.util.Collection; ! import java.sql.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDBException; *************** *** 34,38 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ public interface IForum --- 34,38 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ public interface IForum Index: IForumCategory.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IForumCategory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IForumCategory.java 25 Sep 2003 22:57:07 -0000 1.2 --- IForumCategory.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,27 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; import java.util.Properties; --- 23,27 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; import java.util.Properties; *************** *** 30,35 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% ! * 02/03/2003 */ public interface IForumCategory { --- 30,34 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ public interface IForumCategory { Index: IForumComment.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IForumComment.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IForumComment.java 25 Sep 2003 22:57:07 -0000 1.2 --- IForumComment.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,27 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; import java.util.Properties; --- 23,27 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; import java.util.Properties; *************** *** 29,33 **** * Interface for a forum comment. * @author Brad Rippe (br...@fu...), Christopher Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ public interface IForumComment --- 29,33 ---- * Interface for a forum comment. * @author Brad Rippe (br...@fu...), Christopher Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ public interface IForumComment Index: IForumsManager.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IForumsManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IForumsManager.java 25 Sep 2003 22:57:07 -0000 1.2 --- IForumsManager.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 30,37 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public interface IForumsManager ! { /** * Creates a Forum, the name and category must be unique --- 30,36 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public interface IForumsManager { /** * Creates a Forum, the name and category must be unique Index: IForumThread.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IForumThread.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IForumThread.java 25 Sep 2003 22:57:07 -0000 1.2 --- IForumThread.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 24,28 **** import java.util.Collection; ! import java.util.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDBException; --- 24,28 ---- import java.util.Collection; ! import java.sql.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDBException; *************** *** 32,39 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public interface IForumThread ! { /** * Returns the ID of this thread --- 32,38 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public interface IForumThread { /** * Returns the ID of this thread Index: ISearchManager.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/ISearchManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ISearchManager.java 25 Sep 2003 22:57:07 -0000 1.2 --- ISearchManager.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 30,34 **** * * @author Brad Rippe (br...@fu...) ! * @version 0.8.2 $Revision %G% */ public interface ISearchManager { --- 30,34 ---- * * @author Brad Rippe (br...@fu...) ! * @version 0.8.3 $Revision %G% */ public interface ISearchManager { Index: IUser.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IUser.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IUser.java 25 Sep 2003 22:57:07 -0000 1.2 --- IUser.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,27 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; import java.util.Properties; --- 23,27 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; import java.util.Properties; *************** *** 30,37 **** * * @author Brad Rippe (br...@fu...), Christopher Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public interface IUser ! { /** * Returns the id of the user --- 30,36 ---- * * @author Brad Rippe (br...@fu...), Christopher Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public interface IUser { /** * Returns the id of the user Index: IUserManager.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/IUserManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IUserManager.java 25 Sep 2003 22:57:07 -0000 1.2 --- IUserManager.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 29,36 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public interface IUserManager ! { /** * Authenticates a user --- 29,35 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public interface IUserManager { /** * Authenticates a user Index: NestedException.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/NestedException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NestedException.java 25 Sep 2003 22:57:07 -0000 1.2 --- NestedException.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 30,37 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public class NestedException extends Exception ! { protected Exception nestedException; protected boolean isNested; --- 30,36 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public class NestedException extends Exception { protected Exception nestedException; protected boolean isNested; Index: RAPException.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPException.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPException.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 29,33 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% * @see edu.fullcoll.uportal.channels.rap.forum.NestedException */ --- 29,33 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% * @see edu.fullcoll.uportal.channels.rap.forum.NestedException */ Index: RAPForum.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPForum.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPForum.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPForum.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 24,28 **** import java.util.Collection; ! import java.util.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDB; --- 24,28 ---- import java.util.Collection; ! import java.sql.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDB; *************** *** 35,39 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForum */ --- 35,39 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForum */ Index: RAPForumCategory.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPForumCategory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPForumCategory.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPForumCategory.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 22,26 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; /** --- 22,26 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; /** *************** *** 28,33 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% ! * 02/03/2003 */ public class RAPForumCategory implements IForumCategory { --- 28,32 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ public class RAPForumCategory implements IForumCategory { Index: RAPForumComment.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPForumComment.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPForumComment.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPForumComment.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,27 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; import java.util.Properties; --- 23,27 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; import java.util.Properties; *************** *** 30,34 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForumComment */ --- 30,34 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForumComment */ Index: RAPForumsManager.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPForumsManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPForumsManager.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPForumsManager.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 25,29 **** import java.util.List; import java.util.Vector; - import java.util.Date; import org.jasig.portal.security.IPerson; --- 25,28 ---- *************** *** 37,44 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ ! public class RAPForumsManager implements IForumsManager ! { /** * Creates a Forum --- 36,42 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ ! public class RAPForumsManager implements IForumsManager { /** * Creates a Forum Index: RAPForumThread.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPForumThread.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPForumThread.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPForumThread.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 24,28 **** import java.util.Collection; ! import java.util.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDB; --- 24,28 ---- import java.util.Collection; ! import java.sql.Date; import edu.fullcoll.uportal.channels.rap.forum.database.RAPDB; *************** *** 35,39 **** * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForumThread */ --- 35,39 ---- * * @author Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% * @testcase test.edu.fullcoll.uportal.channels.rap.forum.TestRAPForumThread */ *************** *** 113,117 **** * * @param ID the ID of the comment to delete ! * @returns true if comment deleted, otherwise false * @throws edu.fullcoll.uportal.channels.rap.database.RAPDBException if database connection fails */ --- 113,117 ---- * * @param ID the ID of the comment to delete ! * @return true if comment deleted, otherwise false * @throws edu.fullcoll.uportal.channels.rap.database.RAPDBException if database connection fails */ Index: RAPIDManagerException.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPIDManagerException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPIDManagerException.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPIDManagerException.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 27,31 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% * @see edu.fullcoll.uportal.channels.rap.forum.RAPForumsManager */ --- 27,31 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% * @see edu.fullcoll.uportal.channels.rap.forum.RAPForumsManager */ Index: RAPUser.java =================================================================== RCS file: /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/RAPUser.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RAPUser.java 25 Sep 2003 22:57:07 -0000 1.2 --- RAPUser.java 26 Jan 2004 18:50:07 -0000 1.3 *************** *** 1,4 **** /** ! * Copyright (C) 2003, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * --- 1,4 ---- /** ! * Copyright (c) 2004, Fullerton College. All Rights Reserved. * (http://www.fullcoll.edu) * *************** *** 23,27 **** package edu.fullcoll.uportal.channels.rap.forum; ! import java.util.Date; import java.util.Properties; --- 23,27 ---- package edu.fullcoll.uportal.channels.rap.forum; ! import java.sql.Date; import java.util.Properties; *************** *** 30,34 **** * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G% */ public class RAPUser implements IUser { --- 30,34 ---- * * @author Chris Pereda (cp...@fu...) ! * @version 0.8.3 $Revision %G% */ public class RAPUser implements IUser { |
From: <br...@pr...> - 2004-01-26 18:50:49
|
Update of /cvsroot/rapforums/src/source/edu/fullcoll/uportal/channels/rap/forum/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20640 Removed Files: commands.dfPackage Log Message: Update to version 0.8.3 --- commands.dfPackage DELETED --- |
From: <br...@pr...> - 2004-01-26 18:46:13
|
Update of /cvsroot/rapforums/src/media/edu/fullcoll/uportal/channels/rap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19289 Modified Files: logo.gif Log Message: Update to version 0.8.3 Index: logo.gif =================================================================== RCS file: /cvsroot/rapforums/src/media/edu/fullcoll/uportal/channels/rap/logo.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsp660Wd and /tmp/cvsBBUzsU differ |
From: <br...@pr...> - 2004-01-26 18:45:39
|
Update of /cvsroot/rapforums/sql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19134 Removed Files: rapUser.sql Log Message: Remove out dated file --- rapUser.sql DELETED --- |
From: <br...@pr...> - 2004-01-26 18:45:07
|
Update of /cvsroot/rapforums/sql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18989 Modified Files: sqlREADME.txt Log Message: Update to version 0.8.3 Index: sqlREADME.txt =================================================================== RCS file: /cvsroot/rapforums/sql/sqlREADME.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sqlREADME.txt 9 Dec 2003 19:03:50 -0000 1.1 --- sqlREADME.txt 26 Jan 2004 18:44:05 -0000 1.2 *************** *** 1 **** ! This directory contains sql dumps from different RDBMS. --- 1 ---- ! This directory contains sql dumps from different RDBMS which will allow you to create the appropriate database for the forums. |
From: <br...@pr...> - 2004-01-26 18:44:43
|
Update of /cvsroot/rapforums/sql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18860 Modified Files: rapforumsMYSQLTables.sql Log Message: Update to version 0.8.3 Index: rapforumsMYSQLTables.sql =================================================================== RCS file: /cvsroot/rapforums/sql/rapforumsMYSQLTables.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rapforumsMYSQLTables.sql 9 Dec 2003 19:00:45 -0000 1.1 --- rapforumsMYSQLTables.sql 26 Jan 2004 18:43:46 -0000 1.2 *************** *** 14,19 **** NAME VARCHAR (85) NOT NULL, DESCRIPTION VARCHAR (255), ! CREATIONDATE TIMESTAMP(6), --DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(6), -- DEFAULT sysdate, LFT INTEGER , RGT INTEGER , --- 14,19 ---- NAME VARCHAR (85) NOT NULL, DESCRIPTION VARCHAR (255), ! CREATIONDATE TIMESTAMP(10), --DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(10), -- DEFAULT sysdate, LFT INTEGER , RGT INTEGER , *************** *** 33,38 **** MODVALUE DECIMAL , BONUSPOINTS INTEGER, ! CREATIONDATE TIMESTAMP(6), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(6), -- DEFAULT sysdate, CONSTRAINT RAPCOMMENT_IDX PRIMARY KEY ( COMMENTID ) ) ; --- 33,38 ---- MODVALUE DECIMAL , BONUSPOINTS INTEGER, ! CREATIONDATE TIMESTAMP(10), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(10), -- DEFAULT sysdate, CONSTRAINT RAPCOMMENT_IDX PRIMARY KEY ( COMMENTID ) ) ; *************** *** 44,49 **** NAME VARCHAR (255), DESCRIPTION VARCHAR (255), ! CREATIONDATE TIMESTAMP(6), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(6), -- DEFAULT sysdate, CATEGORYID INTEGER NOT NULL, CONSTRAINT RAPFORUM_IDX --- 44,49 ---- NAME VARCHAR (255), DESCRIPTION VARCHAR (255), ! CREATIONDATE TIMESTAMP(10), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(10), -- DEFAULT sysdate, CATEGORYID INTEGER NOT NULL, CONSTRAINT RAPFORUM_IDX *************** *** 64,69 **** MODVALUE INTEGER, BONUSPOINTS INTEGER, -- default 0 ! CREATIONDATE TIMESTAMP(6), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(6), -- DEFAULT sysdate, CONSTRAINT RAPTHREAD_IDX PRIMARY KEY ( THREADID, FORUMID ) ) ; --- 64,69 ---- MODVALUE INTEGER, BONUSPOINTS INTEGER, -- default 0 ! CREATIONDATE TIMESTAMP(10), -- DEFAULT sysdate, ! MODIFIEDDATE TIMESTAMP(10), -- DEFAULT sysdate, CONSTRAINT RAPTHREAD_IDX PRIMARY KEY ( THREADID, FORUMID ) ) ; |
From: <br...@pr...> - 2004-01-26 18:44:03
|
Update of /cvsroot/rapforums/sql/storedProcedures In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18653 Added Files: ONLYUSEDWITHSQLSERVER.txt Log Message: Remove out dated files --- NEW FILE: ONLYUSEDWITHSQLSERVER.txt --- The stored procedures are only used with MS SQL Server. |
From: <br...@pr...> - 2004-01-26 18:43:35
|
Update of /cvsroot/rapforums/release In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18294 Removed Files: rapForumsV0_2.zip rapForumsV0_3.zip rapForumsV0_8.zip Log Message: Remove out dated files --- rapForumsV0_2.zip DELETED --- --- rapForumsV0_3.zip DELETED --- --- rapForumsV0_8.zip DELETED --- |
From: <br...@pr...> - 2004-01-26 18:42:47
|
Update of /cvsroot/rapforums/release In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18032 Added Files: rapForumsV0_8_3.zip Log Message: Update classpath to version 0.8.3 --- NEW FILE: rapForumsV0_8_3.zip --- (This appears to be a binary file; contents omitted.) |
From: <br...@pr...> - 2004-01-26 18:42:30
|
Update of /cvsroot/rapforums/release In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17949 Added Files: ReadMe0.8.3.txt Log Message: Update classpath to version 0.8.3 --- NEW FILE: ReadMe0.8.3.txt --- RAPForums Channel for uPortal 2.1 Version 0.8.3 by Brad Rippe (br...@fu...) and Christopher Pereda (cp...@fu...) ---------------------------------------------------------------------------------------------------------------------- Directory Structure classes {Compiled Java Classes} docs {JavaDocs/Screenshots} lib {required jars to compile/deploy channel} properties {tables.xml/data.xml/sqlScript.xml/server.xml} release {rapForums.jar/license} sql {sql scripts for DB tables - available scripts for Oracle, MySQL, and MSSQL} src {media/xsl/java} -----------------------------------------PREREQUISITES----------------------------------------------------------------- Ant is required to install this channel. For more information on Ant, please see http://ant.apache.org/. -----------------------------------------INSTALLATION------------------------------------------------------------------ RAP FORUMS INSTALLATION: MySQL Installation 1) Extract the Rap Forum's zip file 2) Configure the build.properties, change the deploy.home to property to point to your Application Server's webapps directory. This should be similar to "c:/Tomcat_4-1-18/webapps/myFC" on a windows machine. There is also a test.home in case you have a test environment you would like to deploy to first. 3) Set your classpath to include the following: ./lib/log4j.jar ./lib/jdom.jar ./classes {$deploy.home}/WEB-INF/classes {$jdbcDriver.jar} 4) Run "ant db" to create the database tables. The data.xml file contains any categories, forums, threads, comments that you would like created initially. This can also be achieved through the channel after it is installed with the initial data. 5) Run "ant deploy" 6) Restart your application server MICROSOFT SQL SERVER INSTALLATION 1) Extract the Rap Forum's zip file 2) Configure the build.properties, change the deploy.home to property to point to your Application Server's webapps directory. This should be similar to "c:/Tomcat_4-1-18/webapps/myFC" on a windows machine. There is also a test.home in case you have a test environment you would like to deploy to first. Change the jdbcDriver.jar in the build.properties to mssqlserver.jar, then uncomment "<taskdef name="SQLTask" classname="edu.fullcoll.uportal.channels.rap.forum.tools.SQLTask"/>" before the compile task and "<SQLTask scriptXML="properties/sqlScript.xml"/>" in the db task in the build.xml file. 3) Set your classpath to include the following: ./lib/log4j.jar ./lib/jdom.jar ./classes {$deploy.home}/WEB-INF/classes {$jdbcDriver.jar} 4) Run "ant db" to create the database tables. The data.xml file contains any categories, forums, threads, comments that you would like created initially. This can also be achieved through the channel after it is installed with the initial data. 5) Run "ant deploy" 6) Restart your application server To add RAP Forum Administrators/Managers, you need to add the channel and view the forums first. The channel will then add RAP Forum Administrators and RAP Forum Managers to your portal groups. **Default action places Portal Administrators as Forums Administrators. INSTALLATION CONTINUED PUBLISHING CHANNEL: Channel Type -> Custom Channel Title -> Rap Forums Channel Name -> Rap Forums Channel Description -> Forums Channel Timeout -> 30000 Channel Class -> edu.fullcoll.uportal.channels.rap.forum.CForum Parameters: dbProduct = MSSQL - configure for SQL Server = MYSQL - configure for MySQL = ORACLE - configure for ORACLE **If dbProduct is not set, the forums will use the MSSQL configuration by default. Category -> Applications Groups -> Everyone Please note that the installation my vary depending on your particular environment. For the most part, there are sql scripts to create the database tables, and an ant deployment task to deploy the channel to the portal. ---------------------------------------------------------------------------------------------------------------------- What are rap forums and how do they work? Rap Forums is a discussion forum channel. The forums channel allows users to create forums, threads and post messages (comments) to the forums. Rap Forums currently supports three types of users: RAP Users - anybody looged on to uportal and guests RAP Forum Managers RAP Forum Administrators Uportal Administrators All users can post comments and create threads. Rap Users can create threads, and post messages (comments) to a thread. Uportal Administrators, Rap Administrators and RAP Managers can create forums, threads, and comments. These groups will be used in later versions for more flexiblity and control over the forums. Currently, Admins and managers have the ability to create a forums, delete forums, add categories, and delete categories through the channel interface. Implemented features - Search (Bare Bones) Rap Forums currently implements a brute force search. Users can search for comments by title text, subject text, user, and category. The search returns results based on a paging parameter, 10, 15, or 30. The results are retrieved from the database with each page request. - Comment Profanity Filtering Rap Forums provide filtering for in appropriate words, phases or sentences. - Category Creation The forums provide a user interface for category creation and deletion. Only Managers and Administrators are currently able to create/delete forum categories. - Forum Creation The forums provide a user interface for forum creation and deletion. Only Managers and Administrators are currently able to create/delete forums. ***** Future features ***** ---------------------------------------------------------------------------------------------------------------------- - Search Cachable search results Search by dates Indexed search - Administrator and Manager interface UI for Thread deletion UI for Comment deletion UI for filter management Managing Users Managing Forums managers (Admin) Assigning Managers to forums (Admin) Block guest account from posting - Utilities Forum loader for populating RAP Forums with forum titles via a data source or xml file. The idea is to have pre-existing courses in a database and load them as forums. (Can be done with data.xml) Database Loader (uPortal's DatabaseLoader) Paging support for multiple database systems (Tested support for MS SQL and MySQL. Support for Oracle provided but not tested) ---------------------------------------------------------------------------------------------------------------------- SQL Scripts from provided in the "sql" directory. Scripts are provided: rapForumsMSSQL.sql - This is the original MS 2000 sql script for the forums database. Current version of Rap Forums relies on the portal's DBLoader to create tables. Thus, table create should be generic. A custom Ant task, SQLTask, is used to set the database default values and create the stored procedures. SQLTask uses ./properties/sqlScript.xml to retrieve the sql statements. If you are using another database besides MS SQL 2000, you can modify the sql statements appropriately. rapForumsMYSQLTables.sql - Rap Forums DB dump from MySQL. rapForumsOracleTables.sql - Rap Forums DB dump from Oracle. Stored Procedures (Paging Mechanism - only for MS SQL Server) storedProcedures/sp_getSelectViewForums.sql - procedure used for paging forums, utilized by RapViewXML.java. storedProcedures/sp_getSelectViewThreads.sql - procedure used for paging threads, utilized by RapViewXML.java. storedProcedures/sp_getSelectViewThread.sql - procedure used for paging comments, utilized by RapViewXML.java. Database connectivity is done through the Jakarta DBCP. We have provided a sample server.xml for connection pooling and it is located in the /properties/server.xml. RAP Forum users need to provide a method for retrieval of user email addresses and it obtains this information via the PersonDirs.xml mechanism in uPortal. Please see PersonDirs.xml for configuration for more information. ***** Updates from 0.8.2 to 0.8.3 ***** -The goal of this release was to provide a version of the forums that does not use database dependences like stored procedures, thus another configuration was created for users who use MySQL or other databases that do not support nested select statements or stored procedures. -RAPDBService getDBConnection() and getDBConnection(String dbName) now use the service provided by org.jasig.portal.RDBMServices to obtain DB connections. -Bug fix with java.util.Date used in insertion where java.sql.Date was required. -DB column names have been changed to all lowercase. forumID is now forumid and modifiedDate is now modifieddate. Since most database systems do not support column names of different case. -XSL have been changed support the change in all column names. -JDOM org.jdom.contrib.input.ResultSetBuilder has been modified to only return xml tags as all lowercase. If you are using an older version of the jdom-contrib.jar and jdom.jar, please update to the version provided in the forums. -All database dependent sql has been moved to associated classes in edu.fullcoll.uportal.channels.rap.forum.xml. See edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML for more information. -This version was tested on MySQL. ***** Updates from 0.8 to 0.8.2 ***** -Set the width of messages displayed to the user. -Added generic database table creation from the ant build script -Added custom ant task to create default table values and generate stored procedures for paging -Added database load support from the ant script. -Added deploy task to ant script. -Removed poolman references and poolman.jar from the project. -Removed two separate database for forums channel. Initially, the forums supported two separate databases, one for the forums and one for user information, and one for the forums information. This has been combined into one database which can reside in the uportal database. -Removed the use of rapUser.sql which contained user information. User information now comes from the portal framework via PersonDir.xml ***** Updates from 0.2 to 0.8 ***** Added support for addition and deletion of forum categories and forums through an administration ui. Updated code to display user's username if email address cannot be obtained through IPerson interface. ***** Updates from 0.1 to 0.2 ***** Modified the paging mechanism. Previous version used java code for forums paging. Version 0.2 uses Sql Server paging. Forums administrator must create stored procedures for current paging to work. |
From: <br...@pr...> - 2004-01-26 18:41:30
|
Update of /cvsroot/rapforums/properties In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17673 Modified Files: tables.xml Log Message: Update classpath to version 0.8.3 Index: tables.xml =================================================================== RCS file: /cvsroot/rapforums/properties/tables.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tables.xml 25 Sep 2003 23:08:38 -0000 1.1.1.1 --- tables.xml 26 Jan 2004 18:40:31 -0000 1.2 *************** *** 3,11 **** <tables> <table> ! <name>rapCategory</name> <desc>Forum categories</desc> <columns> <column> ! <name>categoryID</name> <type>INTEGER</type> <desc>Internal id for each category</desc> --- 3,11 ---- <tables> <table> ! <name>rapcategory</name> <desc>Forum categories</desc> <columns> <column> ! <name>categoryid</name> <type>INTEGER</type> <desc>Internal id for each category</desc> *************** *** 25,34 **** </column> <column> ! <name>creationDate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifiedDate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> --- 25,34 ---- </column> <column> ! <name>creationdate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifieddate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> *************** *** 37,74 **** <name>lft</name> <type>INTEGER</type> ! <desc></desc> </column> <column> <name>rgt</name> <type>INTEGER</type> ! <desc></desc> </column> </columns> ! <not-null>categoryID</not-null> <not-null>name</not-null> </table> <table> ! <name>rapComment</name> <desc>Contains user messages. These are message in each forum and thread</desc> <columns> <column> ! <name>commentID</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>parentCommentID</name> <type>INTEGER</type> </column> <column> ! <name>threadID</name> <type>INTEGER</type> </column> <column> ! <name>forumID</name> <type>INTEGER</type> </column> <column> ! <name>userID</name> <type>VARCHAR</type> <param>255</param> --- 37,74 ---- <name>lft</name> <type>INTEGER</type> ! <desc/> </column> <column> <name>rgt</name> <type>INTEGER</type> ! <desc/> </column> </columns> ! <not-null>categoryid</not-null> <not-null>name</not-null> </table> <table> ! <name>rapcomment</name> <desc>Contains user messages. These are message in each forum and thread</desc> <columns> <column> ! <name>commentid</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>parentcommentid</name> <type>INTEGER</type> </column> <column> ! <name>threadid</name> <type>INTEGER</type> </column> <column> ! <name>forumid</name> <type>INTEGER</type> </column> <column> ! <name>userid</name> <type>VARCHAR</type> <param>255</param> *************** *** 88,120 **** </column> <column> ! <name>modValue</name> <type>INTEGER</type> </column> <column> ! <name>bonusPoints</name> <type>INTEGER</type> </column> <column> ! <name>creationDate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifiedDate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> </column> </columns> ! <not-null>commentID</not-null> </table> <table> ! <name>rapForum</name> <desc>Information about individual forums.</desc> <columns> <column> ! <name>forumID</name> <type>INTEGER</type> <key>PK</key> ! </column> <column> <name>name</name> --- 88,120 ---- </column> <column> ! <name>modvalue</name> <type>INTEGER</type> </column> <column> ! <name>bonuspoints</name> <type>INTEGER</type> </column> <column> ! <name>creationdate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifieddate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> </column> </columns> ! <not-null>commentid</not-null> </table> <table> ! <name>rapforum</name> <desc>Information about individual forums.</desc> <columns> <column> ! <name>forumid</name> <type>INTEGER</type> <key>PK</key> ! </column> <column> <name>name</name> *************** *** 126,157 **** <type>VARCHAR</type> <param>255</param> ! </column> <column> ! <name>creationDate</name> <type>TIMESTAMP</type> <desc>Date the forum was created</desc> </column> <column> ! <name>modifiedDate</name> <type>TIMESTAMP</type> <desc>Last date the forum was modified</desc> </column> <column> ! <name>categoryID</name> <type>INTEGER</type> </column> </columns> ! <not-null>forumID</not-null> ! <not-null>categoryID</not-null> </table> <table> ! <name>rapID</name> <desc>Cache of identification number for Forums, Threads, Comments, and Categories.</desc> <columns> <column> ! <name>idType</name> <type>INTEGER</type> ! <desc>Types are Forums = 1, Threads = 2, Comments = 3, and Categories = 4. Please see edu.fullcoll.uportal.channels.rap.forum.IDManager for more information.</desc> ! </column> <column> <name>id</name> --- 126,157 ---- <type>VARCHAR</type> <param>255</param> ! </column> <column> ! <name>creationdate</name> <type>TIMESTAMP</type> <desc>Date the forum was created</desc> </column> <column> ! <name>modifieddate</name> <type>TIMESTAMP</type> <desc>Last date the forum was modified</desc> </column> <column> ! <name>categoryid</name> <type>INTEGER</type> </column> </columns> ! <not-null>forumid</not-null> ! <not-null>categoryid</not-null> </table> <table> ! <name>rapid</name> <desc>Cache of identification number for Forums, Threads, Comments, and Categories.</desc> <columns> <column> ! <name>idtype</name> <type>INTEGER</type> ! <desc>Types are Forums = 1, Threads = 2, Comments = 3, and Categories = 4. Please see edu.fullcoll.uportal.channels.rap.forum.IDManager for more information.</desc> ! </column> <column> <name>id</name> *************** *** 161,202 **** </table> <table> ! <name>rapThread</name> <desc>Contains thread information.</desc> <columns> <column> ! <name>threadID</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>forumID</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>rootCommentID</name> <type>INTEGER</type> ! </column> <column> ! <name>modValue</name> <type>INTEGER</type> </column> <column> ! <name>bonusPoints</name> <type>INTEGER</type> </column> <column> ! <name>creationDate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifiedDate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> </column> </columns> ! <not-null>threadID</not-null> ! <not-null>forumID</not-null> </table> </tables> --- 161,202 ---- </table> <table> ! <name>rapthread</name> <desc>Contains thread information.</desc> <columns> <column> ! <name>threadid</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>forumid</name> <type>INTEGER</type> <key>PK</key> </column> <column> ! <name>rootcommentid</name> <type>INTEGER</type> ! </column> <column> ! <name>modvalue</name> <type>INTEGER</type> </column> <column> ! <name>bonuspoints</name> <type>INTEGER</type> </column> <column> ! <name>creationdate</name> <type>TIMESTAMP</type> <desc>Date the category was created</desc> </column> <column> ! <name>modifieddate</name> <type>TIMESTAMP</type> <desc>Last date the category was modified</desc> </column> </columns> ! <not-null>threadid</not-null> ! <not-null>forumid</not-null> </table> </tables> |
From: <br...@pr...> - 2004-01-26 18:41:16
|
Update of /cvsroot/rapforums/properties In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17586 Modified Files: data.xml Log Message: Update classpath to version 0.8.3 Index: data.xml =================================================================== RCS file: /cvsroot/rapforums/properties/data.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** data.xml 25 Sep 2003 23:08:38 -0000 1.1.1.1 --- data.xml 26 Jan 2004 18:40:14 -0000 1.2 *************** *** 2,10 **** <data> <table> ! <name>rapCategory</name> <rows> <row> <column> ! <name>categoryID</name> <value>1</value> </column> --- 2,10 ---- <data> <table> ! <name>rapcategory</name> <rows> <row> <column> ! <name>categoryid</name> <value>1</value> </column> *************** *** 18,26 **** </column> <column> ! <name>creationDate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>modifiedDate</name> <value>2003-09-24 08:00:00</value> </column> --- 18,26 ---- </column> <column> ! <name>creationdate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>modifieddate</name> <value>2003-09-24 08:00:00</value> </column> *************** *** 37,45 **** </table> <table> ! <name>rapForum</name> <rows> <row> <column> ! <name>forumID</name> <value>1</value> </column> --- 37,45 ---- </table> <table> ! <name>rapforum</name> <rows> <row> <column> ! <name>forumid</name> <value>1</value> </column> *************** *** 53,65 **** </column> <column> ! <name>creationDate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>modifiedDate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>categoryID</name> <value>1</value> </column> --- 53,65 ---- </column> <column> ! <name>creationdate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>modifieddate</name> <value>2003-09-24 08:00:00</value> </column> <column> ! <name>categoryid</name> <value>1</value> </column> *************** *** 67,76 **** </rows> </table> <table> ! <name>rapID</name> <rows> <row> <column> ! <name>idType</name> <value>1</value> </column> --- 67,77 ---- </rows> </table> + <!-- Categories, forums, threads and comments use rapid for their primary keys. Please review edu.fullcoll.uportal.channels.rap.forum.IDManager --> <table> ! <name>rapid</name> <rows> <row> <column> ! <name>idtype</name> <value>1</value> </column> *************** *** 82,86 **** <row> <column> ! <name>idType</name> <value>4</value> </column> --- 83,87 ---- <row> <column> ! <name>idtype</name> <value>4</value> </column> |
From: <br...@pr...> - 2004-01-26 18:02:24
|
Update of /cvsroot/rapforums/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7310 Modified Files: jdom-contrib.jar Added Files: jdbc2_0-stdext.jar mysql.jar Log Message: Update classpath to version 0.8.3 --- NEW FILE: jdbc2_0-stdext.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mysql.jar --- (This appears to be a binary file; contents omitted.) Index: jdom-contrib.jar =================================================================== RCS file: /cvsroot/rapforums/lib/jdom-contrib.jar,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsk6KzFb and /tmp/cvssl1ngD differ |
From: <br...@pr...> - 2004-01-26 18:00:53
|
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6935 Removed Files: RAPUserXMLDB.html Log Message: Update classpath to version 0.8.3 --- RAPUserXMLDB.html DELETED --- |
From: <br...@pr...> - 2004-01-26 18:00:27
|
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6716 Removed Files: RAPDBUtil.html RAPUserDB.html Log Message: Update classpath to version 0.8.3 --- RAPDBUtil.html DELETED --- --- RAPUserDB.html DELETED --- |
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4059/edu/fullcoll/uportal/channels/rap/forum/xml Modified Files: RAPViewXML.html RAPXML.html package-frame.html package-summary.html package-tree.html Log Message: Update classpath to version 0.8.3 Index: RAPViewXML.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** RAPViewXML.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- RAPViewXML.html 26 Jan 2004 17:52:23 -0000 1.2 *************** *** 3,11 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:11 PDT 2003 --> <TITLE> RAPViewXML </TITLE> ! <META NAME="keywords" CONTENT="edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML,RAPViewXML class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> </HEAD> --- 3,11 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:30 PST 2004 --> <TITLE> RAPViewXML </TITLE> ! <META NAME="keywords" CONTENT="edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML,RAPViewXML interface"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> </HEAD> *************** *** 44,48 **** <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS ! <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPXML.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> --- 44,48 ---- <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS ! NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> *************** *** 63,69 **** <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> --- 63,69 ---- <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> *************** *** 76,106 **** edu.fullcoll.uportal.channels.rap.forum.xml</FONT> <BR> ! Class RAPViewXML</H2> ! <PRE> ! java.lang.Object ! | ! +--<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html">edu.fullcoll.uportal.channels.rap.forum.database.RAPDBService</A> ! | ! +--<B>edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML</B> ! </PRE> <HR> <DL> ! <DT>public class <B>RAPViewXML</B><DT>extends <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html">RAPDBService</A></DL> <P> ! This class provides methods for generating xml documents based on ! the view that is to be rendered to the user. Methods build jdom documents ! and return those documents to the user. This class differs from RAPXML ! in the sense that all the XML from this class is specfically formatted for ! transformations with an associating xsl file. RAPXML provides a general ! form of xml. <P> <P> <DL> <DT><B>Author:</B></DT> ! <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...) ! * @version 0.8.2 $Revision %G%</DD> ! <DT><B>See Also:</B><DD><CODE>Document</CODE></DL> <HR> --- 76,99 ---- edu.fullcoll.uportal.channels.rap.forum.xml</FONT> <BR> ! Interface RAPViewXML</H2> ! <DL> ! <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/MSViewXML.html">MSViewXML</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/MySQLViewXML.html">MySQLViewXML</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/OracleViewXML.html">OracleViewXML</A></DD> ! </DL> <HR> <DL> ! <DT>public interface <B>RAPViewXML</B></DL> <P> ! This is the interface used to generate XML documents which can be transformed ! into HTML documents to be displayed to the user. <P> <P> <DL> + <DT><B>Version:</B></DT> + <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> ! <DD>Brad Rippe (br...@fu...)</DD> ! </DL> <HR> *************** *** 111,163 **** <!-- =========== FIELD SUMMARY =========== --> - <A NAME="field_summary"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> - <TD COLSPAN=2><FONT SIZE="+2"> - <B>Field Summary</B></FONT></TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> - <CODE>static java.lang.String</CODE></FONT></TD> - <TD><CODE><B><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html#VIEW_FORUMS_RECORD_NAME">VIEW_FORUMS_RECORD_NAME</A></B></CODE> - <BR> - </TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> - <CODE>static java.lang.String</CODE></FONT></TD> - <TD><CODE><B><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html#VIEW_FORUMS_ROOT_NAME">VIEW_FORUMS_ROOT_NAME</A></B></CODE> - - <BR> - </TD> - </TR> - </TABLE> - <A NAME="fields_inherited_from_class_edu.fullcoll.uportal.channels.rap.forum.database.RAPDBService"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> - <TD><B>Fields inherited from class edu.fullcoll.uportal.channels.rap.forum.database.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html">RAPDBService</A></B></TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD><CODE><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#dbConnection">dbConnection</A></CODE></TD> - </TR> - </TABLE> - <!-- ======== CONSTRUCTOR SUMMARY ======== --> - <A NAME="constructor_summary"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> - <TD COLSPAN=2><FONT SIZE="+2"> - <B>Constructor Summary</B></FONT></TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD><CODE><B><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html#RAPViewXML()">RAPViewXML</A></B>()</CODE> - <BR> - </TD> - </TR> - </TABLE> - <!-- ========== METHOD SUMMARY =========== --> --- 104,111 ---- *************** *** 237,258 **** </TR> </TABLE> - <A NAME="methods_inherited_from_class_edu.fullcoll.uportal.channels.rap.forum.database.RAPDBService"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> - <TD><B>Methods inherited from class edu.fullcoll.uportal.channels.rap.forum.database.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html">RAPDBService</A></B></TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD><CODE><A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#closeConnection()">closeConnection</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#closeResultSet(java.sql.ResultSet)">closeResultSet</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#closeStatement(java.sql.Statement)">closeStatement</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#getDBConnection()">getDBConnection</A>, <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html#getDBConnection(java.lang.String)">getDBConnection</A></CODE></TD> - </TR> - </TABLE> - <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> - <TD><B>Methods inherited from class java.lang.Object</B></TD> - </TR> - <TR BGCOLOR="white" CLASS="TableRowColor"> - <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> - </TR> - </TABLE> <P> --- 185,188 ---- *************** *** 260,306 **** <!-- ============ FIELD DETAIL =========== --> - <A NAME="field_detail"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> - <TD COLSPAN=1><FONT SIZE="+2"> - <B>Field Detail</B></FONT></TD> - </TR> - </TABLE> - - <A NAME="VIEW_FORUMS_ROOT_NAME"><!-- --></A><H3> - VIEW_FORUMS_ROOT_NAME</H3> - <PRE> - public static final java.lang.String <B>VIEW_FORUMS_ROOT_NAME</B></PRE> - <DL> - <DL> - <DT><B>See Also:</B><DD><A HREF="../../../../../../../constant-values.html#edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML.VIEW_FORUMS_ROOT_NAME">Constant Field Values</A></DL> - </DL> - <HR> - - <A NAME="VIEW_FORUMS_RECORD_NAME"><!-- --></A><H3> - VIEW_FORUMS_RECORD_NAME</H3> - <PRE> - public static final java.lang.String <B>VIEW_FORUMS_RECORD_NAME</B></PRE> - <DL> - <DL> - <DT><B>See Also:</B><DD><A HREF="../../../../../../../constant-values.html#edu.fullcoll.uportal.channels.rap.forum.xml.RAPViewXML.VIEW_FORUMS_RECORD_NAME">Constant Field Values</A></DL> - </DL> <!-- ========= CONSTRUCTOR DETAIL ======== --> - <A NAME="constructor_detail"><!-- --></A> - <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> - <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> - <TD COLSPAN=1><FONT SIZE="+2"> - <B>Constructor Detail</B></FONT></TD> - </TR> - </TABLE> - - <A NAME="RAPViewXML()"><!-- --></A><H3> - RAPViewXML</H3> - <PRE> - public <B>RAPViewXML</B>()</PRE> - <DL> - </DL> <!-- ============ METHOD DETAIL ========== --> --- 190,196 ---- *************** *** 475,479 **** <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS ! <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPXML.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> --- 365,369 ---- <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS ! NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> *************** *** 494,500 **** <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> --- 384,390 ---- <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> ! DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> Index: RAPXML.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml/RAPXML.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** RAPXML.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- RAPXML.html 26 Jan 2004 17:52:23 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:11 PDT 2003 --> <TITLE> RAPXML --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:31 PST 2004 --> <TITLE> [...1148 lines suppressed...] throws <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBException.html">RAPDBException</A></PRE> <DL> ! <DD><B>Deprecated.</B> <DD>Returns the specified watch information as an xml document. <P> <DD><DL> *************** *** 1067,1072 **** <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> ! <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html"><B>PREV CLASS</B></A> ! NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> --- 1059,1064 ---- <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> ! <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/OracleViewXML.html"><B>PREV CLASS</B></A> ! <A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/ViewXMLFactory.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> Index: package-frame.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml/package-frame.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-frame.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-frame.html 26 Jan 2004 17:52:23 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:57 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:18 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml *************** *** 22,31 **** <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT> <FONT CLASS="FrameItemFont"> <BR> ! <A HREF="RAPViewXML.html" TARGET="classFrame">RAPViewXML</A> <BR> ! <A HREF="RAPXML.html" TARGET="classFrame">RAPXML</A></FONT></TD> </TR> </TABLE> --- 22,48 ---- <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> + Interfaces</FONT> + <FONT CLASS="FrameItemFont"> + <BR> + <A HREF="RAPViewXML.html" TARGET="classFrame"><I>RAPViewXML</I></A></FONT></TD> + </TR> + </TABLE> + + + <TABLE BORDER="0" WIDTH="100%"> + <TR> + <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT> <FONT CLASS="FrameItemFont"> <BR> ! <A HREF="MSViewXML.html" TARGET="classFrame">MSViewXML</A> <BR> ! <A HREF="MySQLViewXML.html" TARGET="classFrame">MySQLViewXML</A> ! <BR> ! <A HREF="OracleViewXML.html" TARGET="classFrame">OracleViewXML</A> ! <BR> ! <A HREF="RAPXML.html" TARGET="classFrame">RAPXML</A> ! <BR> ! <A HREF="ViewXMLFactory.html" TARGET="classFrame">ViewXMLFactory</A></FONT></TD> </TR> </TABLE> Index: package-summary.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml/package-summary.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-summary.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-summary.html 26 Jan 2004 17:52:23 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:57 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:18 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml *************** *** 72,86 **** <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Class Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> ! <TD WIDTH="15%"><B><A HREF="RAPViewXML.html">RAPViewXML</A></B></TD> <TD>This class provides methods for generating xml documents based on the view that is to be rendered to the user.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="RAPXML.html">RAPXML</A></B></TD> ! <TD>This class is used to connect to the channel database and return ! results in XML documents.</TD> </TR> </TABLE> --- 72,113 ---- <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> + <B>Interface Summary</B></FONT></TD> + </TR> + <TR BGCOLOR="white" CLASS="TableRowColor"> + <TD WIDTH="15%"><B><A HREF="RAPViewXML.html"><I>RAPViewXML</I></A></B></TD> + <TD>This is the interface used to generate XML documents which can be transformed + into HTML documents to be displayed to the user.</TD> + </TR> + </TABLE> + + + <P> + + <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> + <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> + <TD COLSPAN=2><FONT SIZE="+2"> <B>Class Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> ! <TD WIDTH="15%"><B><A HREF="MSViewXML.html">MSViewXML</A></B></TD> <TD>This class provides methods for generating xml documents based on the view that is to be rendered to the user.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> + <TD WIDTH="15%"><B><A HREF="MySQLViewXML.html">MySQLViewXML</A></B></TD> + <TD>This class handles queries to MySQL and returns xml documents.</TD> + </TR> + <TR BGCOLOR="white" CLASS="TableRowColor"> + <TD WIDTH="15%"><B><A HREF="OracleViewXML.html">OracleViewXML</A></B></TD> + <TD>This class handles queries to Oracle and returns xml documents.</TD> + </TR> + <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="RAPXML.html">RAPXML</A></B></TD> ! <TD><B>Deprecated.</B> <I></I> </TD> ! </TR> ! <TR BGCOLOR="white" CLASS="TableRowColor"> ! <TD WIDTH="15%"><B><A HREF="ViewXMLFactory.html">ViewXMLFactory</A></B></TD> ! <TD>This class handles creation of RAPViewXML classes which build xml documents which are forwarded to ! the xsl for transformations into HTML.</TD> </TR> </TABLE> Index: package-tree.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/xml/package-tree.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-tree.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-tree.html 26 Jan 2004 17:52:23 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:57 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:18 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.xml Class Hierarchy *************** *** 78,84 **** <LI TYPE="circle">class java.lang.Object<UL> <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.database.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html"><B>RAPDBService</B></A><UL> ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html"><B>RAPViewXML</B></A><LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPXML.html"><B>RAPXML</B></A></UL> ! </UL> </UL> <HR> --- 78,92 ---- <LI TYPE="circle">class java.lang.Object<UL> <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.database.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/database/RAPDBService.html"><B>RAPDBService</B></A><UL> ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/MSViewXML.html"><B>MSViewXML</B></A> (implements edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html">RAPViewXML</A>) ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/MySQLViewXML.html"><B>MySQLViewXML</B></A> (implements edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html">RAPViewXML</A>) ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/OracleViewXML.html"><B>OracleViewXML</B></A> (implements edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html">RAPViewXML</A>) ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPXML.html"><B>RAPXML</B></A></UL> ! <LI TYPE="circle">class edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/ViewXMLFactory.html"><B>ViewXMLFactory</B></A></UL> </UL> + <H2> + Interface Hierarchy + </H2> + <UL> + <LI TYPE="circle">interface edu.fullcoll.uportal.channels.rap.forum.xml.<A HREF="../../../../../../../edu/fullcoll/uportal/channels/rap/forum/xml/RAPViewXML.html"><B>RAPViewXML</B></A></UL> <HR> |
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4059/edu/fullcoll/uportal/channels/rap/forum/tools Modified Files: SQLTask.html package-frame.html package-summary.html package-tree.html Log Message: Update classpath to version 0.8.3 Index: SQLTask.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/tools/SQLTask.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SQLTask.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- SQLTask.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:11 PDT 2003 --> <TITLE> SQLTask --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:29 PST 2004 --> <TITLE> SQLTask *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...)</DD> Index: package-frame.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/tools/package-frame.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-frame.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-frame.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:56 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools Index: package-summary.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/tools/package-summary.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-summary.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-summary.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:56 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools Index: package-tree.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/tools/package-tree.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-tree.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-tree.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:56 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.tools Class Hierarchy |
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4059/edu/fullcoll/uportal/channels/rap/forum/commands Modified Files: AboutModeCommand.html AdminModeCommand.html ForumModeCommand.html IForumCommand.html MainModeCommand.html PostModeCommand.html SearchModeCommand.html ThreadModeCommand.html package-frame.html package-summary.html package-tree.html Log Message: Update classpath to version 0.8.3 Index: AboutModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/AboutModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AboutModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- AboutModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:05 PDT 2003 --> <TITLE> AboutModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:25 PST 2004 --> <TITLE> AboutModeCommand *************** *** 98,102 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> --- 98,102 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> Index: AdminModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/AdminModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AdminModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- AdminModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:06 PDT 2003 --> <TITLE> AdminModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:25 PST 2004 --> <TITLE> AdminModeCommand *************** *** 96,103 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G% ! 02/05/2003 - Brad Rippe</DD> <DT><B>Author:</B></DT> ! <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> </DL> <HR> --- 96,102 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> ! <DD>Brad Rippe (br...@fu...) and Chris Pereda (cp...@fu...)</DD> </DL> <HR> Index: ForumModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/ForumModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ForumModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- ForumModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:06 PDT 2003 --> <TITLE> ForumModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:25 PST 2004 --> <TITLE> ForumModeCommand *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> Index: IForumCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/IForumCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** IForumCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- IForumCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:05 PDT 2003 --> <TITLE> IForumCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:25 PST 2004 --> <TITLE> IForumCommand *************** *** 92,96 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> --- 92,96 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> Index: MainModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/MainModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MainModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- MainModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:06 PDT 2003 --> <TITLE> MainModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:25 PST 2004 --> <TITLE> MainModeCommand *************** *** 97,102 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G% ! 5/5/2003</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...), Tung Lai Thanh (lt...@ya...)</DD> --- 97,101 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...), Tung Lai Thanh (lt...@ya...)</DD> Index: PostModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/PostModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** PostModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- PostModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:06 PDT 2003 --> <TITLE> PostModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:26 PST 2004 --> <TITLE> PostModeCommand *************** *** 97,101 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 97,101 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> Index: SearchModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/SearchModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SearchModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- SearchModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:07 PDT 2003 --> <TITLE> SearchModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:26 PST 2004 --> <TITLE> SearchModeCommand *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Brad Rippe (br...@fu...), Chris Pereda (cp...@fu...)</DD> Index: ThreadModeCommand.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/ThreadModeCommand.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ThreadModeCommand.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- ThreadModeCommand.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:07 PDT 2003 --> <TITLE> ThreadModeCommand --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:26 PST 2004 --> <TITLE> ThreadModeCommand *************** *** 97,102 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G% ! 02/03/2003</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 97,101 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> Index: package-frame.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/package-frame.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-frame.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- package-frame.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:54 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:16 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands Index: package-summary.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/package-summary.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-summary.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- package-summary.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:54 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:16 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands Index: package-tree.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/commands/package-tree.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-tree.html 5 Dec 2003 22:04:38 -0000 1.1.1.1 --- package-tree.html 26 Jan 2004 17:52:21 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:55 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:16 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.commands Class Hierarchy |
From: <br...@pr...> - 2004-01-26 17:53:20
|
Update of /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4059/edu/fullcoll/uportal/channels/rap/forum/filter Modified Files: DefaultFilter.html ICommentFilter.html IFilterManager.html ProfanityFilter.html RAPFilterManager.html package-frame.html package-summary.html package-tree.html Log Message: Update classpath to version 0.8.3 Index: DefaultFilter.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/DefaultFilter.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** DefaultFilter.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- DefaultFilter.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:10 PDT 2003 --> <TITLE> DefaultFilter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:29 PST 2004 --> <TITLE> DefaultFilter *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> *************** *** 203,207 **** </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter</DL> </DD> </DL> --- 203,208 ---- </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter ! <DT><B>Returns:</B><DD>the filtered subject</DL> </DD> </DL> *************** *** 219,223 **** </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter</DL> </DD> </DL> --- 220,225 ---- </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter ! <DT><B>Returns:</B><DD>the filtered body</DL> </DD> </DL> Index: ICommentFilter.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/ICommentFilter.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ICommentFilter.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- ICommentFilter.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:09 PDT 2003 --> <TITLE> ICommentFilter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:28 PST 2004 --> <TITLE> ICommentFilter *************** *** 91,95 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 91,95 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> *************** *** 159,163 **** <P> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter</DL> </DD> </DL> --- 159,164 ---- <P> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter ! <DT><B>Returns:</B><DD>the filtered subject</DL> </DD> </DL> *************** *** 172,176 **** <P> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter</DL> </DD> </DL> --- 173,178 ---- <P> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter ! <DT><B>Returns:</B><DD>the filtered body</DL> </DD> </DL> Index: IFilterManager.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/IFilterManager.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** IFilterManager.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- IFilterManager.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:10 PDT 2003 --> <TITLE> IFilterManager --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:28 PST 2004 --> <TITLE> IFilterManager *************** *** 91,95 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 91,95 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> Index: ProfanityFilter.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/ProfanityFilter.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ProfanityFilter.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- ProfanityFilter.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:10 PDT 2003 --> <TITLE> ProfanityFilter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:29 PST 2004 --> <TITLE> ProfanityFilter *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> *************** *** 203,207 **** </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter</DL> </DD> </DL> --- 203,208 ---- </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>subject</CODE> - the subject to filter ! <DT><B>Returns:</B><DD>the filtered subject</DL> </DD> </DL> *************** *** 219,223 **** </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter</DL> </DD> </DL> --- 220,225 ---- </DD> <DD><DL> ! <DT><B>Parameters:</B><DD><CODE>body</CODE> - the body to filter ! <DT><B>Returns:</B><DD>the filtered body</DL> </DD> </DL> Index: RAPFilterManager.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/RAPFilterManager.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** RAPFilterManager.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- RAPFilterManager.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:09:10 PDT 2003 --> <TITLE> RAPFilterManager --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:29 PST 2004 --> <TITLE> RAPFilterManager *************** *** 96,100 **** <DL> <DT><B>Version:</B></DT> ! <DD>0.8.2 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> --- 96,100 ---- <DL> <DT><B>Version:</B></DT> ! <DD>0.8.3 $Revision %G%</DD> <DT><B>Author:</B></DT> <DD>Chris Pereda (cp...@fu...)</DD> Index: package-frame.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/package-frame.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-frame.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-frame.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:55 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter Index: package-summary.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/package-summary.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-summary.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-summary.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:55 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter Index: package-tree.html =================================================================== RCS file: /cvsroot/rapforums/docs/edu/fullcoll/uportal/channels/rap/forum/filter/package-tree.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package-tree.html 5 Dec 2003 22:04:39 -0000 1.1.1.1 --- package-tree.html 26 Jan 2004 17:52:22 -0000 1.2 *************** *** 3,7 **** <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Sep 25 11:08:56 PDT 2003 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter Class Hierarchy --- 3,7 ---- <HTML> <HEAD> ! <!-- Generated by javadoc on Thu Jan 22 15:48:17 PST 2004 --> <TITLE> edu.fullcoll.uportal.channels.rap.forum.filter Class Hierarchy |
From: <br...@pr...> - 2004-01-26 17:52:10
|
Update of /cvsroot/rapforums/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3747 Removed Files: ReadMe0.8.2.txt Log Message: Move ReadMe to release directory --- ReadMe0.8.2.txt DELETED --- |