You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(141) |
Sep
(184) |
Oct
(159) |
Nov
(77) |
Dec
(114) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(212) |
Feb
(302) |
Mar
(323) |
Apr
(360) |
May
(302) |
Jun
(392) |
Jul
(299) |
Aug
(858) |
Sep
(499) |
Oct
(489) |
Nov
(324) |
Dec
(438) |
2008 |
Jan
(449) |
Feb
(388) |
Mar
(811) |
Apr
(583) |
May
(949) |
Jun
(1431) |
Jul
(943) |
Aug
(527) |
Sep
(576) |
Oct
(440) |
Nov
(1046) |
Dec
(658) |
2009 |
Jan
(259) |
Feb
(192) |
Mar
(495) |
Apr
(2322) |
May
(2023) |
Jun
(1387) |
Jul
(722) |
Aug
(771) |
Sep
(167) |
Oct
(142) |
Nov
(384) |
Dec
(884) |
2010 |
Jan
(344) |
Feb
(82) |
Mar
(248) |
Apr
(341) |
May
(389) |
Jun
(289) |
Jul
(19) |
Aug
(478) |
Sep
(274) |
Oct
(431) |
Nov
(322) |
Dec
(207) |
2011 |
Jan
(125) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: John C. <jc...@us...> - 2007-03-08 02:09:24
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4365/src/org/tolven/web Added Files: ConfigureListener.java Log Message: New module to handle one-time initialization thus removing it from the vestibule filter. --- NEW FILE: ConfigureListener.java --- package org.tolven.web; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; public class ConfigureListener implements ServletContextListener { public void contextInitialized(ServletContextEvent event) { try { TolvenContext tolvenContext = new TolvenContext(); tolvenContext.initialize(); } catch (Exception e) { throw new RuntimeException( "Error encountered initializing Tolven", e); } } public void contextDestroyed(ServletContextEvent event) { } } |
From: Joseph I. <jos...@us...> - 2007-03-07 06:01:46
|
Update of /cvsroot/tolven/tolven/jboss-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11430/jboss-config Modified Files: tolven-ldap-service.xml Log Message: Don't cache the LDAP context so that when it fails, we are no stuck with it. It is only used for authentication which generally occurs when a user logs in and when they change their password. Index: tolven-ldap-service.xml =================================================================== RCS file: /cvsroot/tolven/tolven/jboss-config/tolven-ldap-service.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tolven-ldap-service.xml 4 Nov 2006 06:14:23 -0000 1.9 --- tolven-ldap-service.xml 7 Mar 2007 06:01:45 -0000 1.10 *************** *** 15,18 **** --- 15,19 ---- javax.naming.ldap.InitialLdapContext </attribute> + <attribute name="CacheContext">false</attribute> <depends>jboss:type=Service,name=TolvenSystemProperties</depends> </mbean> |
From: Joseph I. <jos...@us...> - 2007-03-07 05:39:35
|
Update of /cvsroot/tolven/tolven/jboss-config/jmx-console In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv2148/jboss-config/jmx-console Added Files: jboss-web.xml Log Message: Returned jboss-web.xml for jmx-console secure access, and removed jboss-service.xml and it's dependency on JACC --- NEW FILE: jboss-web.xml --- <jboss-web> <!-- Uncomment the security-domain to enable security. You will need to edit the htmladaptor login configuration to setup the login modules used to authentication users.--> <security-domain>java:/jaas/jmx-console</security-domain> </jboss-web> |
From: Joseph I. <jos...@us...> - 2007-03-07 05:39:35
|
Update of /cvsroot/tolven/tolven/jboss-config/jbossweb-tomcat55.sar/META-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv2148/jboss-config/jbossweb-tomcat55.sar/META-INF Removed Files: jboss-service.xml Log Message: Returned jboss-web.xml for jmx-console secure access, and removed jboss-service.xml and it's dependency on JACC --- jboss-service.xml DELETED --- |
From: Joseph I. <jos...@us...> - 2007-03-06 17:01:00
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4279/web/WEB-INF Modified Files: web.xml Log Message: If the DB goes off-line, when it returns the user should now be able to continue a session or login to a new one. A custom error page has also been added. Index: web.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/web.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** web.xml 5 Mar 2007 08:16:20 -0000 1.23 --- web.xml 6 Mar 2007 17:00:55 -0000 1.24 *************** *** 261,263 **** --- 261,268 ---- <role-name>*</role-name> </security-role> + <error-page> + <error-code>500</error-code> + <location>/error.jsp</location> + </error-page> + </web-app> |
From: Joseph I. <jos...@us...> - 2007-03-06 17:00:59
|
Update of /cvsroot/tolven/tolvenWEB/web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4279/web Added Files: error.jsp Log Message: If the DB goes off-line, when it returns the user should now be able to continue a session or login to a new one. A custom error page has also been added. --- NEW FILE: error.jsp --- <?xml version="1.0" encoding="ISO-8859-1" ?> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ page isErrorPage="true"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Insert title here</title> </head> <body> <body> <H2><CENTER>Tolven Demo System</CENTER></H2> <H3><CENTER>An unexpected error has occurred</CENTER></H3> <H4>Please copy the following information, and with an explanation of the preceding activity, add it to the: <A HREF="http://sourceforge.net/projects/tolven"> Tolven Technical Audience Forum</A></H4> <H4><%=exception.toString()%></H4> <%exception.printStackTrace(new java.io.PrintWriter(out));%> </body> </html> |
From: Joseph I. <jos...@us...> - 2007-03-06 17:00:59
|
Update of /cvsroot/tolven/tolven/jboss-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4269/jboss-config Modified Files: tolven-ds.xml Log Message: If the DB goes off-line, when it returns the user should now be able to continue a session or login to a new one. A custom error page has also been added. Index: tolven-ds.xml =================================================================== RCS file: /cvsroot/tolven/tolven/jboss-config/tolven-ds.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** tolven-ds.xml 4 Sep 2006 06:06:41 -0000 1.8 --- tolven-ds.xml 6 Mar 2007 17:00:48 -0000 1.9 *************** *** 16,22 **** --> ! <!-- sql to call on an existing pooled connection when it is obtained from pool. Can be anything, select 1 is valid for PostgreSQL <check-valid-connection-sql>select 1</check-valid-connection-sql> ! --> <metadata> <type-mapping>PostgreSQL 7.2</type-mapping> --- 16,22 ---- --> ! <!-- sql to call on an existing pooled connection when it is obtained from pool. Can be anything, select 1 is valid for PostgreSQL --> <check-valid-connection-sql>select 1</check-valid-connection-sql> ! <metadata> <type-mapping>PostgreSQL 7.2</type-mapping> |
From: John C. <jc...@us...> - 2007-03-05 19:13:57
|
Update of /cvsroot/tolven/tolvenWEB/web/private In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16307/web/private Modified Files: prefPhotos.xhtml Log Message: Don't allow user preferences form vestibule. We need to add a new AccountType that we can log the user into to edit there profile. Index: prefPhotos.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/private/prefPhotos.xhtml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** prefPhotos.xhtml 6 Nov 2006 07:41:30 -0000 1.5 --- prefPhotos.xhtml 5 Mar 2007 19:12:18 -0000 1.6 *************** *** 34,38 **** </h:panelGroup> <h:panelGroup rendered="#{p.id!=reg.user.likeness.id}"> ! <h:commandLink action="${reg.selectAsLikeness}"> <f:param name="selectedLikenessId" value="#{p.id}"/> <img src="xxx.tdoc?docId=#{p.id}&width=100&height=100" /> --- 34,38 ---- </h:panelGroup> <h:panelGroup rendered="#{p.id!=reg.user.likeness.id}"> ! <h:commandLink action="#{reg.selectAsLikeness}"> <f:param name="selectedLikenessId" value="#{p.id}"/> <img src="xxx.tdoc?docId=#{p.id}&width=100&height=100" /> *************** *** 45,57 **** <h:outputText value="No photo"/> </h:commandLink> ! <h:commandButton action="cancel" immediate="true" value="Cancel"/> </h:form> <form id="uploadForm" method="post" enctype="multipart/form-data" ! action="likeness.tdoc?userId=#{top.user.id}"> File to upload: <input type="file" name="upfile" /> <input type="hidden" name="returnTo" value="prefPhotos.jsf"/> <input type="submit" value="Upload Now" /> </form> ! <h:outputText value="[Id: #{top.user.id}]"/> </div> </ui:define> --- 45,57 ---- <h:outputText value="No photo"/> </h:commandLink> ! <h:commandButton action="cancel" immediate="true" value="Return"/> </h:form> <form id="uploadForm" method="post" enctype="multipart/form-data" ! action="likeness.tdoc?userId=#{top.accountUser.user.id}"> File to upload: <input type="file" name="upfile" /> <input type="hidden" name="returnTo" value="prefPhotos.jsf"/> <input type="submit" value="Upload Now" /> </form> ! <h:outputText value="[Id: #{top.accountUser.user.id}]"/> </div> </ui:define> |
From: John C. <jc...@us...> - 2007-03-05 19:13:56
|
Update of /cvsroot/tolven/tolvenWEB/web/templates In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16307/web/templates Modified Files: portalTemplate.xhtml Log Message: Don't allow user preferences form vestibule. We need to add a new AccountType that we can log the user into to edit there profile. Index: portalTemplate.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/templates/portalTemplate.xhtml,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** portalTemplate.xhtml 5 Mar 2007 04:28:36 -0000 1.19 --- portalTemplate.xhtml 5 Mar 2007 19:12:18 -0000 1.20 *************** *** 66,71 **** <li><a target="_blank" href="http://www.tolven.org/index.html">Tolven Home</a></li> <li><a href="#">Help</a></li> - <li><a href="#{facesContext.externalContext.request.contextPath}/private/userDemog.jsf">Preferences</a></li> <h:panelGroup rendered="#{top.accountUserId!=0}"> <li><a href="customize.jsf?accountUserId=#{top.accountUserId}">Customize</a></li> </h:panelGroup> --- 66,71 ---- <li><a target="_blank" href="http://www.tolven.org/index.html">Tolven Home</a></li> <li><a href="#">Help</a></li> <h:panelGroup rendered="#{top.accountUserId!=0}"> + <li><a href="#{facesContext.externalContext.request.contextPath}/private/userDemog.jsf">Preferences</a></li> <li><a href="customize.jsf?accountUserId=#{top.accountUserId}">Customize</a></li> </h:panelGroup> |
From: John C. <jc...@us...> - 2007-03-05 19:08:44
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14597/src/org/tolven/core/bean Modified Files: ActivationBean.java Log Message: Fix query in unused method Index: ActivationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/ActivationBean.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** ActivationBean.java 28 Feb 2007 03:45:11 -0000 1.33 --- ActivationBean.java 5 Mar 2007 19:08:42 -0000 1.34 *************** *** 327,336 **** } ! /** ! * Count the number of users knows to the DB */ public long countUsers( ) { ! Query query = em.createQuery("SELECT COUNT(u) FROM User u"); Long rslt = (Long) query.getSingleResult(); return rslt.longValue(); --- 327,336 ---- } ! /** ! * Count the number of users knows to the DB (not LDAP). No actual purpose for this function. */ public long countUsers( ) { ! Query query = em.createQuery("SELECT COUNT(u) FROM TolvenUser u"); Long rslt = (Long) query.getSingleResult(); return rslt.longValue(); |
From: Joseph I. <jos...@us...> - 2007-03-05 08:38:23
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web/security In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30892/src/org/tolven/web/security Modified Files: VestibuleSecurityFilter.java Log Message: Allow users with default accounts to request the selectAccount page as per other users. Index: VestibuleSecurityFilter.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/security/VestibuleSecurityFilter.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** VestibuleSecurityFilter.java 5 Mar 2007 06:07:15 -0000 1.17 --- VestibuleSecurityFilter.java 5 Mar 2007 08:38:22 -0000 1.18 *************** *** 180,187 **** // If the user has a default account, then we can exit vestibule to that account if (accountUserId == null) { ! accountUser = activation.findDefaultAccountUser(user); if (accountUser != null) { session.setAttribute(ACCOUNTUSER_ID, accountUser.getId()); } } else { accountUser = activation.findAccountUser(accountUserId); --- 180,189 ---- // If the user has a default account, then we can exit vestibule to that account if (accountUserId == null) { ! if (justLoggedIn) { ! accountUser = activation.findDefaultAccountUser(user); if (accountUser != null) { session.setAttribute(ACCOUNTUSER_ID, accountUser.getId()); } + } } else { accountUser = activation.findAccountUser(accountUserId); |
From: Joseph I. <jos...@us...> - 2007-03-05 08:16:21
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19999/web/WEB-INF Modified Files: web.xml Log Message: Removed duplicate /private/* filter-mapping. Moved the /five/* to the Protected Area security-configuration. Removed the Vestibule security-configuration and placed its url-pattern in Protected Area security-configuration. Added a number of other directories to the Protected Area security-configuration. Index: web.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/web.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** web.xml 28 Feb 2007 05:37:55 -0000 1.22 --- web.xml 5 Mar 2007 08:16:20 -0000 1.23 *************** *** 108,115 **** <filter-mapping> <filter-name>GeneralSecurityFilter</filter-name> - <url-pattern>/private/*</url-pattern> - </filter-mapping> - <filter-mapping> - <filter-name>GeneralSecurityFilter</filter-name> <url-pattern>/manage/*</url-pattern> </filter-mapping> --- 108,111 ---- *************** *** 227,231 **** <url-pattern>/public/*</url-pattern> <url-pattern>/tab/*</url-pattern> - <url-pattern>/five/*</url-pattern> </web-resource-collection> <user-data-constraint> --- 223,226 ---- *************** *** 239,257 **** <!-- All resources protected unless otherwise listed in previous security-constraints --> <url-pattern>/private/*</url-pattern> - </web-resource-collection> - <auth-constraint> - <!-- Anyone with one of the listed roles may access this area --> - <role-name>*</role-name> - </auth-constraint> - <user-data-constraint> - <transport-guarantee>CONFIDENTIAL</transport-guarantee> - </user-data-constraint> - </security-constraint> - <security-constraint> - <web-resource-collection> - <web-resource-name>Vestibule</web-resource-name> - <!-- Define the context-relative URL(s) to be protected --> - <!-- All resources protected unless otherwise listed in previous security-constraints --> <url-pattern>/vestibule/*</url-pattern> </web-resource-collection> <auth-constraint> --- 234,245 ---- <!-- All resources protected unless otherwise listed in previous security-constraints --> <url-pattern>/private/*</url-pattern> <url-pattern>/vestibule/*</url-pattern> + <url-pattern>/manage/*</url-pattern> + <url-pattern>/templates/*</url-pattern> + <url-pattern>/wizard/*</url-pattern> + <url-pattern>/five/*</url-pattern> + <url-pattern>/ajax/*</url-pattern> + <url-pattern>*.ajax</url-pattern> + <url-pattern>*.ajaxi</url-pattern> </web-resource-collection> <auth-constraint> |
From: Joseph I. <jos...@us...> - 2007-03-05 06:07:16
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web/security In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1043/src/org/tolven/web/security Modified Files: VestibuleSecurityFilter.java GeneralSecurityFilter.java Log Message: Sequenced the filter processing with GeneralSecurityFilter dealing with GOTOHOME request to handle the account home page. Index: VestibuleSecurityFilter.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/security/VestibuleSecurityFilter.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** VestibuleSecurityFilter.java 28 Feb 2007 07:05:30 -0000 1.16 --- VestibuleSecurityFilter.java 5 Mar 2007 06:07:15 -0000 1.17 *************** *** 91,95 **** HttpServletRequest request = (HttpServletRequest) servletRequest; HttpServletResponse response = (HttpServletResponse) servletResponse; ! System.out.println(getClass() + " :REQUEST=" + request.getRequestURL()); if (!request.isRequestedSessionIdValid()) { logout("INVALID SESSION", request, response); --- 91,95 ---- HttpServletRequest request = (HttpServletRequest) servletRequest; HttpServletResponse response = (HttpServletResponse) servletResponse; ! //System.out.println(getClass() + " :REQUEST=" + request.getRequestURL()); if (!request.isRequestedSessionIdValid()) { logout("INVALID SESSION", request, response); *************** *** 162,166 **** // Just asking for password causes us to forget the accountUser ! if (request.getRequestURL().indexOf("password.jsf") != -1) { session.removeAttribute(ACCOUNTUSER_ID); session.removeAttribute(ACCOUNT_ID); --- 162,166 ---- // Just asking for password causes us to forget the accountUser ! if (request.getRequestURL().indexOf("password.jsf") != -1) { session.removeAttribute(ACCOUNTUSER_ID); session.removeAttribute(ACCOUNT_ID); *************** *** 179,191 **** AccountUser accountUser = null; // If the user has a default account, then we can exit vestibule to that account ! if (accountUserId==null) { ! accountUser = activation.findDefaultAccountUser(user); ! if (accountUser!=null) { ! session.setAttribute(ACCOUNTUSER_ID, accountUser.getId()); ! } } else { accountUser = activation.findAccountUser(accountUserId); } ! if (accountUser!=null) { // SAFETY CHECK HERE - Don't trust the accountUserId alone, it must match user. if (accountUser.getUser().getId() != user.getId()) { --- 179,191 ---- AccountUser accountUser = null; // If the user has a default account, then we can exit vestibule to that account ! if (accountUserId == null) { ! accountUser = activation.findDefaultAccountUser(user); ! if (accountUser != null) { ! session.setAttribute(ACCOUNTUSER_ID, accountUser.getId()); ! } } else { accountUser = activation.findAccountUser(accountUserId); } ! if (accountUser != null) { // SAFETY CHECK HERE - Don't trust the accountUserId alone, it must match user. if (accountUser.getUser().getId() != user.getId()) { *************** *** 201,205 **** session.removeAttribute(VESTIBULE_PASS); session.setAttribute(ACCOUNT_ID, accountUser.getAccount().getId()); ! ((HttpServletResponse) servletResponse).sendRedirect("../private/" + accountUser.getAccount().getAccountType().getHomePage()); return; } --- 201,205 ---- session.removeAttribute(VESTIBULE_PASS); session.setAttribute(ACCOUNT_ID, accountUser.getAccount().getId()); ! ((HttpServletResponse) servletResponse).sendRedirect("../private/GOTOHOME.jsf"); return; } Index: GeneralSecurityFilter.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/security/GeneralSecurityFilter.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GeneralSecurityFilter.java 25 Feb 2007 21:57:53 -0000 1.7 --- GeneralSecurityFilter.java 5 Mar 2007 06:07:15 -0000 1.8 *************** *** 106,110 **** return; } ! if (request.getRequestURL().indexOf("dispatch.jsf") != -1) { HttpSession session = request.getSession(); Object accountUserIdObj = session.getAttribute(VestibuleSecurityFilter.ACCOUNTUSER_ID); --- 106,110 ---- return; } ! if (request.getRequestURL().indexOf("dispatch.jsf") != -1 || request.getRequestURL().indexOf("GOTOHOME") != -1) { HttpSession session = request.getSession(); Object accountUserIdObj = session.getAttribute(VestibuleSecurityFilter.ACCOUNTUSER_ID); |
From: Joseph I. <jos...@us...> - 2007-03-05 06:07:16
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1043/web/WEB-INF Modified Files: faces-config.xml Log Message: Sequenced the filter processing with GeneralSecurityFilter dealing with GOTOHOME request to handle the account home page. Index: faces-config.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/faces-config.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** faces-config.xml 28 Feb 2007 07:08:37 -0000 1.39 --- faces-config.xml 5 Mar 2007 06:07:15 -0000 1.40 *************** *** 309,313 **** <navigation-case> <from-outcome>success</from-outcome> ! <to-view-id>/vestibule/GOTOHOME.xhtml</to-view-id> <redirect/> </navigation-case> --- 309,313 ---- <navigation-case> <from-outcome>success</from-outcome> ! <to-view-id>/private/GOTOHOME.xhtml</to-view-id> <redirect/> </navigation-case> |
From: John C. <jc...@us...> - 2007-03-05 05:57:45
|
Update of /cvsroot/tolven/tolven In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29235 Modified Files: build.xml Log Message: Remove JAcc-based authorization, back to JBoss authorization which eliminates a 403 error and brings tolven back to a standard jboss configuration. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/build.xml,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** build.xml 1 Mar 2007 22:30:53 -0000 1.75 --- build.xml 5 Mar 2007 05:57:44 -0000 1.76 *************** *** 33,38 **** </delete> <delete dir="${tolven.home}/tolven-jboss-4.0.4.GA/docs" /> - <copy file="${tolven.home}/tolven/jboss-config/standardjboss.xml" todir="${tolven.home}/tolven-jboss-4.0.4.GA/server/tolven/conf" overwrite="true" preservelastmodified="true" /> - <copy file="${tolven.home}/tolven/jboss-config/security-service.xml" todir="${tolven.home}/tolven-jboss-4.0.4.GA/server/tolven/deploy" overwrite="true" preservelastmodified="true" /> <copy file="${tolven.home}/tolven/jboss-config/ejb-timer-service.xml" todir="${tolven.home}/tolven-jboss-4.0.4.GA/server/tolven/deploy" overwrite="true" preservelastmodified="true" verbose="${message.show.copy}" /> <copy toDir="${deploy.location}/deploy/jbossweb-tomcat55.sar/conf" overwrite="true" preservelastmodified="true" verbose="${message.show.copy}"> --- 33,36 ---- *************** *** 41,49 **** </fileset> </copy> - <copy toDir="${deploy.location}/deploy/jbossweb-tomcat55.sar/META-INF" overwrite="true" preservelastmodified="true" verbose="${message.show.copy}"> - <fileset dir="${tolven.home}/tolven/jboss-config/jbossweb-tomcat55.sar/META-INF"> - <include name="jboss-service.xml"/> - </fileset> - </copy> <copy file="${tolven.home}/tolven/jboss-config/tomcat-root-index.jsp" tofile="${tolven.home}/tolven-jboss-4.0.4.GA/server/tolven/deploy/jbossweb-tomcat55.sar/ROOT.war/index.jsp" overwrite="true" preservelastmodified="true" /> <copy file="${tolven.home}/tolven/jboss-config/tomcat-root-web.xml" tofile="${tolven.home}/tolven-jboss-4.0.4.GA/server/tolven/deploy/jbossweb-tomcat55.sar/ROOT.war/WEB-INF/web.xml" overwrite="true" preservelastmodified="true" /> --- 39,42 ---- |
From: John C. <jc...@us...> - 2007-03-05 05:57:44
|
Update of /cvsroot/tolven/tolven/jboss-config/jmx-console In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29235/jboss-config/jmx-console Removed Files: jboss-web.xml Log Message: Remove JAcc-based authorization, back to JBoss authorization which eliminates a 403 error and brings tolven back to a standard jboss configuration. --- jboss-web.xml DELETED --- |
From: John C. <jc...@us...> - 2007-03-05 05:57:44
|
Update of /cvsroot/tolven/tolven/jboss-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29235/jboss-config Modified Files: server.xml Removed Files: standardjboss.xml security-service.xml Log Message: Remove JAcc-based authorization, back to JBoss authorization which eliminates a 403 error and brings tolven back to a standard jboss configuration. --- standardjboss.xml DELETED --- --- security-service.xml DELETED --- Index: server.xml =================================================================== RCS file: /cvsroot/tolven/tolven/jboss-config/server.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** server.xml 24 Jan 2007 04:17:16 -0000 1.5 --- server.xml 5 Mar 2007 05:57:43 -0000 1.6 *************** *** 52,61 **** web-app/security-roles --> - <!-- <Realm className="org.jboss.web.tomcat.security.JBossSecurityMgrRealm" certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping" allRolesMode="authOnly" /> - --> <!-- A subclass of JBossSecurityMgrRealm that uses the authentication behavior of JBossSecurityMgrRealm, but overrides the authorization --- 52,59 ---- *************** *** 74,81 **** /> --> - <Realm className="org.jboss.web.tomcat.security.JaccAuthorizationRealm" - certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping" - allRolesMode="authOnly" - /> <Host name="localhost" --- 72,75 ---- |
From: John C. <jc...@us...> - 2007-03-05 04:28:38
|
Update of /cvsroot/tolven/tolvenWEB/web/templates In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24560/web/templates Modified Files: portalTemplate.xhtml Log Message: Ensure correct page when heading to userDemog and selectAccount Index: portalTemplate.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/templates/portalTemplate.xhtml,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** portalTemplate.xhtml 8 Feb 2007 08:14:21 -0000 1.18 --- portalTemplate.xhtml 5 Mar 2007 04:28:36 -0000 1.19 *************** *** 66,70 **** <li><a target="_blank" href="http://www.tolven.org/index.html">Tolven Home</a></li> <li><a href="#">Help</a></li> ! <li><a href="userDemog.jsf">Preferences</a></li> <h:panelGroup rendered="#{top.accountUserId!=0}"> <li><a href="customize.jsf?accountUserId=#{top.accountUserId}">Customize</a></li> --- 66,70 ---- <li><a target="_blank" href="http://www.tolven.org/index.html">Tolven Home</a></li> <li><a href="#">Help</a></li> ! <li><a href="#{facesContext.externalContext.request.contextPath}/private/userDemog.jsf">Preferences</a></li> <h:panelGroup rendered="#{top.accountUserId!=0}"> <li><a href="customize.jsf?accountUserId=#{top.accountUserId}">Customize</a></li> *************** *** 75,79 **** </h:panelGroup> <h:panelGroup rendered="#{top.canSelectAccounts}"> ! <li><a href="../vestibule/selectAccount.jsf">Account Selection</a></li> </h:panelGroup> </ul> --- 75,79 ---- </h:panelGroup> <h:panelGroup rendered="#{top.canSelectAccounts}"> ! <li><a href="#{facesContext.externalContext.request.contextPath}/vestibule/selectAccount.jsf">Account Selection</a></li> </h:panelGroup> </ul> |
From: John C. <jc...@us...> - 2007-03-03 00:15:12
|
Update of /cvsroot/tolven/tolvenWEB/web/five In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24057/web/five Modified Files: problems.xhtml Log Message: Ad id to outer div so submit works on this page Index: problems.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/five/problems.xhtml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** problems.xhtml 28 Feb 2007 07:06:46 -0000 1.6 --- problems.xhtml 3 Mar 2007 00:15:12 -0000 1.7 *************** *** 10,14 **** <body> <ui:composition> ! <div> <script language="JavaScript" type="text/javascript"> // <![CDATA[ --- 10,14 ---- <body> <ui:composition> ! <div id="#{menu.elementLabel}div"> <script language="JavaScript" type="text/javascript"> // <![CDATA[ |
From: Joseph I. <jos...@us...> - 2007-03-02 03:48:17
|
Update of /cvsroot/tolven/tolvenMobileClient In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15625 Added Files: .cvsignore Log Message: The usual files are prevented from being noticed by cvs --- NEW FILE: .cvsignore --- .project .externalToolBuilders .settings bin .classpath .packaging .project build |
From: John C. <jc...@us...> - 2007-03-02 00:11:49
|
Update of /cvsroot/tolven/tolvenWEB/web/vestibule In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25681/web/vestibule Modified Files: password.xhtml Log Message: Attempt to get error message on password window to display. Index: password.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/vestibule/password.xhtml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** password.xhtml 25 Feb 2007 21:57:53 -0000 1.6 --- password.xhtml 2 Mar 2007 00:11:48 -0000 1.7 *************** *** 25,36 **** <h1>Password Verification</h1> <div class="pane"> ! <h:messages/> ! <h:form id="verifyPassword"> <h3>Please Enter Your Password</h3> <h:panelGrid columns="2"> <h:outputText value="Password:"/> <h:panelGroup> ! <h:inputSecret id="oldUserPassword" value="#{reg.oldUserPassword}" size="50"/> ! <h:message for="oldUserPassword"/> </h:panelGroup> </h:panelGrid> --- 25,35 ---- <h1>Password Verification</h1> <div class="pane"> ! <h:form id="check"> <h3>Please Enter Your Password</h3> <h:panelGrid columns="2"> <h:outputText value="Password:"/> <h:panelGroup> ! <h:inputSecret id="password" value="#{reg.oldUserPassword}" size="50"/> ! <h:message for="password"/> </h:panelGroup> </h:panelGrid> *************** *** 40,43 **** --- 39,43 ---- </h:form> </div> + <h:messages/> </body> </html> |
From: John C. <jc...@us...> - 2007-03-01 22:32:10
|
Update of /cvsroot/tolven/tolvenMobileServer In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11296 Modified Files: build.xml Log Message: Include TolvenMobileClient in WAR to allow download from the web server. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolvenMobileServer/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build.xml 24 Feb 2007 20:15:52 -0000 1.1 --- build.xml 1 Mar 2007 22:32:04 -0000 1.2 *************** *** 44,47 **** --- 44,50 ---- <zipfileset dir="${tolvenMobileServer.location}/build/bin" prefix="WEB-INF/classes" includes="**/*.class"/> <zipfileset dir="${tolvenMobileServer.location}/web"/> + <zipfileset dir="${tolvenMobileClient.location}/build/"> + <include name="*.jar"/> + </zipfileset> </jar> </target> |
From: John C. <jc...@us...> - 2007-03-01 22:30:55
|
Update of /cvsroot/tolven/tolven In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10727 Modified Files: build.xml Log Message: Add call to build TolvenMobileClient. It won't actually build unless the wireless toolkit is installed and pointed to by wtk.home property. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/build.xml,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** build.xml 24 Feb 2007 20:19:59 -0000 1.74 --- build.xml 1 Mar 2007 22:30:53 -0000 1.75 *************** *** 226,235 **** --- 226,238 ---- </junit> </target> + <target depends="init" name="dependencies" description="Build dependent projects"> <ant dir="${tolvenEJB.location}" antfile="${tolvenEJB.location}/build.xml" target="packaging" /> <ant dir="${tolvenWEB.location}" antfile="${tolvenWEB.location}/build.xml" target="packaging" /> + <ant dir="${tolvenMobileClient.location}" antfile="${tolvenMobileClient.location}/build.xml" target="packaging" /> <ant dir="${tolvenMobileServer.location}" antfile="${tolvenMobileServer.location}/build.xml" target="packaging" /> <ant dir="${tolvenBrowse.location}" antfile="${tolvenBrowse.location}/build.xml" target="packaging" /> </target> + <target name="undeploy"> <delete> |
From: John C. <jc...@us...> - 2007-03-01 22:29:08
|
Update of /cvsroot/tolven/tolven/template In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10036/template Modified Files: ant-build.template Log Message: Add wtk.home (Sun's Java Wireless Toolkit location) Index: ant-build.template =================================================================== RCS file: /cvsroot/tolven/tolven/template/ant-build.template,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** ant-build.template 24 Feb 2007 09:49:42 -0000 1.51 --- ant-build.template 1 Mar 2007 22:29:07 -0000 1.52 *************** *** 13,16 **** --- 13,20 ---- jdbc.host=localhost jdbc.username=postgres + + # Uncomment to build tolvenMobileClient - Wireless Toolkit from Sun + #wtk.home=c:/wtk25 + # For copying credentials to a remoted host the following two properties must be set to avoid being asked for input # ldap.host.user=someldapuser |
From: John C. <jc...@us...> - 2007-03-01 22:28:06
|
Update of /cvsroot/tolven/tolvenMobileClient In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9384 Modified Files: build.xml Log Message: Skip build process if wtk.home (Wireless toolkit) is not defined Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolvenMobileClient/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build.xml 1 Mar 2007 20:54:34 -0000 1.1 --- build.xml 1 Mar 2007 22:28:04 -0000 1.2 *************** *** 1,4 **** --- 1,5 ---- <project name="tolvenMobileClient" basedir="." default="packaging" > + <!-- Nothing is built in this script if wtk.home in ant-build.properties is not defined --> <property file="../tolven/resources/ant-build.properties"/> *************** *** 26,30 **** <target name="init"> - <mkdir dir="${tolvenMobileClient.location}/build/bin"/> <mkdir dir="${tolvenMobileClient.location}/build/tmp"/> <mkdir dir="${tolvenMobileClient.location}/build/tmpclasses"/> --- 27,30 ---- *************** *** 36,40 **** </target> ! <target name="compile" depends="init"> <echo message="${ant.project.name}: ${ant.file}"/> <javac destdir="${tolvenMobileClient.location}/build/tmpclasses" source="1.3" target="1.3" > --- 36,40 ---- </target> ! <target if="wtk.home" name="compile" depends="init"> <echo message="${ant.project.name}: ${ant.file}"/> <javac destdir="${tolvenMobileClient.location}/build/tmpclasses" source="1.3" target="1.3" > *************** *** 44,48 **** </target> ! <target name="preverify" depends="compile"> <exec dir="." executable="${wtk.home}/bin/preverify" > <arg line="-classpath ${cldc.lib};${midp.lib};."/> --- 44,48 ---- </target> ! <target if="wtk.home" name="preverify" depends="compile"> <exec dir="." executable="${wtk.home}/bin/preverify" > <arg line="-classpath ${cldc.lib};${midp.lib};."/> *************** *** 52,56 **** </target> ! <target name="jar" depends="preverify" description="Build ${MIDletName}.jar for Mobile"> <jar destfile="${tolvenMobileClient.location}/build/${MIDletName}.jar"> <manifest> --- 52,56 ---- </target> ! <target if="wtk.home" name="jar" depends="preverify" description="Build ${MIDletName}.jar for Mobile"> <jar destfile="${tolvenMobileClient.location}/build/${MIDletName}.jar"> <manifest> *************** *** 70,74 **** </target> ! <target name="sign" depends="jar" description="Sign the mobile client jar file"> <!-- Not finished, need to add cert to JAD as well --> <signjar jar="${tolvenMobileClient.location}/build/${MIDletName}.jar" --- 70,74 ---- </target> ! <target if="wtk.home" name="sign" depends="jar" description="Sign the mobile client jar file"> <!-- Not finished, need to add cert to JAD as well --> <signjar jar="${tolvenMobileClient.location}/build/${MIDletName}.jar" *************** *** 83,87 **** </exec> </target> ! <target name="jad" depends="jar" description="Build JAD file"> <length file="${tolvenMobileClient.location}/build/${MIDletName}.jar" property="MIDletJarSize"/> <copy file="${tolvenMobileClient.location}/template/jad.template" --- 83,88 ---- </exec> </target> ! ! <target if="wtk.home" name="jad" depends="jar" description="Build JAD file"> <length file="${tolvenMobileClient.location}/build/${MIDletName}.jar" property="MIDletJarSize"/> <copy file="${tolvenMobileClient.location}/template/jad.template" *************** *** 101,107 **** </filterset> </copy> - </target> ! <target name="packaging" depends="jad" description="Build (and potentially) sign the tolven.jar for Mobile"> </target> --- 102,108 ---- </filterset> </copy> </target> ! ! <target if="wtk.home" name="packaging" depends="jad" description="Build (and potentially) sign the tolven.jar for Mobile"> </target> *************** *** 119,124 **** source="1.3" sourcepath="${tolvenMobileClient.location}/src" splitindex="true" use="true" version="true"/> </target> - - </project> --- 120,123 ---- |