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...> - 2006-10-16 17:04:47
|
Update of /cvsroot/tolven/tolvenWEB/web/private In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19935/web/private Modified Files: selectAccount.xhtml Log Message: Make create account a little clearer. Index: selectAccount.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/private/selectAccount.xhtml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** selectAccount.xhtml 16 Oct 2006 08:58:27 -0000 1.12 --- selectAccount.xhtml 16 Oct 2006 17:04:45 -0000 1.13 *************** *** 113,119 **** --- 113,123 ---- Some people will just have one user and one medical record, their own, in an account.</p> </h:panelGroup> + <h2>Create a new account to log into</h2> + <p>You can create one or more clinical and personal accounts. Typically you'll only need one. + Create a clinical account for a clinic, hospital unit or department, or a public health program.</p> <h:commandLink action="#{acc.createNewCHR}"> <h:outputText value="Create a new clinical account"/> </h:commandLink> + <p>Create a personal account for a family or just for yourself. (For demo purposes, create a clinical account and generate patients which in turn generates pre-populated personal accounts.)</p> <h:commandLink action="#{acc.createNewPHR}"> <h:outputText value="Create a new personal account"/> |
From: John C. <jc...@us...> - 2006-10-16 08:58:37
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12690/src/org/tolven/doc/bean Modified Files: DocumentBean.java Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: DocumentBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/bean/DocumentBean.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DocumentBean.java 14 Oct 2006 20:12:30 -0000 1.9 --- DocumentBean.java 16 Oct 2006 08:58:32 -0000 1.10 *************** *** 256,260 **** */ public List<AdministrativeDetail> getDetails(DocBase doc) throws JAXBException, IOException { ! // Now unmarshal back to an object graph JAXBContext jc = setupJAXBContext(); Unmarshaller u = jc.createUnmarshaller(); --- 256,261 ---- */ public List<AdministrativeDetail> getDetails(DocBase doc) throws JAXBException, IOException { ! System.out.println( "[DocumentBean.getDetails]: " + doc.getContentString()); ! // Now unmarshal back to an object graph JAXBContext jc = setupJAXBContext(); Unmarshaller u = jc.createUnmarshaller(); |
From: John C. <jc...@us...> - 2006-10-16 08:58:37
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12690/src/org/tolven/core/bean Modified Files: InvitationBean.java ActivationBean.java Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: InvitationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/InvitationBean.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** InvitationBean.java 18 Sep 2006 16:08:12 -0000 1.11 --- InvitationBean.java 16 Oct 2006 08:58:32 -0000 1.12 *************** *** 204,208 **** sb.append( invitation.getId() ); sb.append( " message body formatted: [" ); ! if (body.length()> 200) {sb.append(body.substring(0, 200 )); sb.append("...");} else sb.append( body ); sb.append( "]"); --- 204,208 ---- sb.append( invitation.getId() ); sb.append( " message body formatted: [" ); ! if (body.length()> 400) {sb.append(body.substring(0, 400 )); sb.append("...");} else sb.append( body ); sb.append( "]"); *************** *** 291,294 **** --- 291,295 ---- public void executeInvitation( Invitation invitation, Date now ) throws InvitationException, JAXBException, IOException { // Invitation invitation = findInvitation( invitationId ); + System.out.println( "Executing invitation id: " + invitation.getId() + " Title: " + invitation.getTitle() + " targetEmail: " + invitation.getTargetEmail()); // Get the details List<AdministrativeDetail> details = documentBean.getDetails(invitation.getDetails()); *************** *** 297,301 **** { JoinNewAccountInvitation jna = (JoinNewAccountInvitation)detail; ! Account account = accountBean.createAccount( jna.getAccountType() ); // Note, the user automatically gets account permission since they are the only user on that new account. accountBean.addAccountUser( account, accountBean.findUser( invitation.getTargetEmail()), now, true); --- 298,304 ---- { JoinNewAccountInvitation jna = (JoinNewAccountInvitation)detail; ! // TODO: Localization issue - Account title is seeded with English ! Account account = accountBean.createAccount( jna.getAccountType(), "New Account" ); ! System.out.println( "Created account: " + account.getId()); // Note, the user automatically gets account permission since they are the only user on that new account. accountBean.addAccountUser( account, accountBean.findUser( invitation.getTargetEmail()), now, true); Index: ActivationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/ActivationBean.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ActivationBean.java 14 Oct 2006 20:13:35 -0000 1.16 --- ActivationBean.java 16 Oct 2006 08:58:32 -0000 1.17 *************** *** 106,109 **** --- 106,113 ---- TolvenUser user = createTolvenUser( principal, now ); user.setDemoUser(false); + if (activate.getReferenceCode()!=null) { + Sponsorship sponsorship = accountBean.findSponsorship(activate.getReferenceCode()); + user.setSponsorship(sponsorship); + } invitation.setStatus("USED"); em.merge(invitation); *************** *** 137,141 **** */ public void register( TolvenPerson tp, Date now ) throws Exception { ! // Create an invitation Invitation invitation = new Invitation(); invitation.setTargetEmail( tp.getUid() ); --- 141,149 ---- */ public void register( TolvenPerson tp, Date now ) throws Exception { ! String rc = tp.getReferenceCode(); ! if (rc!=null) { ! accountBean.findSponsorship(rc); ! } ! // Create an invitation Invitation invitation = new Invitation(); invitation.setTargetEmail( tp.getUid() ); *************** *** 153,156 **** --- 161,166 ---- detail.setExpirationTime( DatatypeFactory.newInstance().newXMLGregorianCalendar( t)); detail.setPrincipal( tp.getUid()); + detail.setReferenceCode( rc ); + // Create a document containing the details and associate it with the invitation invitation.setDetails( invitationBean.createDetail( detail) ); |
From: John C. <jc...@us...> - 2006-10-16 08:58:37
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/admin In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12690/src/org/tolven/admin Modified Files: ActivateInvitation.java Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: ActivateInvitation.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/admin/ActivateInvitation.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ActivateInvitation.java 12 Jul 2006 05:06:57 -0000 1.1 --- ActivateInvitation.java 16 Oct 2006 08:58:33 -0000 1.2 *************** *** 46,49 **** --- 46,51 ---- @XmlAttribute protected String principal; + @XmlAttribute + protected String referenceCode; /** *************** *** 95,97 **** --- 97,107 ---- } + public String getReferenceCode() { + return referenceCode; + } + + public void setReferenceCode(String referenceCode) { + this.referenceCode = referenceCode; + } + } |
From: John C. <jc...@us...> - 2006-10-16 08:58:31
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12661/src/org/tolven/web Modified Files: TopAction.java RegisterAction.java AccountAction.java Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: TopAction.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/TopAction.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TopAction.java 14 Oct 2006 20:14:38 -0000 1.16 --- TopAction.java 16 Oct 2006 08:58:27 -0000 1.17 *************** *** 133,137 **** public String getServerTime( ) throws IOException { ! return "Transaction time at the server: " + getNow().toString() + ", TimeZone of user is " + getTimeZone(); } /** --- 133,137 ---- public String getServerTime( ) throws IOException { ! return "Transaction time at the server: " + getNow().toString() + ", Timezone: " + getTimeZone(); } /** *************** *** 448,452 **** */ public String getTimeZone() throws IOException { ! if (timeZone==null) timeZone = getUser().getTimeZone(); if (timeZone==null) timeZone = getAccountTimeZone(); if (timeZone==null) timeZone = propertyBean.getProperties().getProperty("tolven.timezone"); --- 448,452 ---- */ public String getTimeZone() throws IOException { ! if (timeZone==null && getUser()!=null) timeZone = getUser().getTimeZone(); if (timeZone==null) timeZone = getAccountTimeZone(); if (timeZone==null) timeZone = propertyBean.getProperties().getProperty("tolven.timezone"); Index: RegisterAction.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/RegisterAction.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** RegisterAction.java 14 Oct 2006 23:08:04 -0000 1.19 --- RegisterAction.java 16 Oct 2006 08:58:27 -0000 1.20 *************** *** 224,230 **** returnStatus = "activated"; } else { ! // Create the user and the invitation. The user will be invited to join a new, empty account. ! // Other invitations may reference an existing account or a referral account. ! activation.register( getTp(), getNow()); returnStatus = "registered"; } --- 224,240 ---- returnStatus = "activated"; } else { ! try { ! // Create the user and the invitation. The user will be invited to join a new, empty account. ! // Other invitations may reference an existing account or a referral account. ! activation.register( getTp(), getNow()); ! } catch (Throwable e) { ! while (e.getCause()!=null) { ! if (e.getCause() instanceof NoResultException ) { ! FacesContext.getCurrentInstance().addMessage( "register:referenceCode", new FacesMessage("Invalid Reference Code")); ! return "error"; ! } ! e = e.getCause(); ! } ! } returnStatus = "registered"; } Index: AccountAction.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/AccountAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** AccountAction.java 31 Aug 2006 05:20:09 -0000 1.6 --- AccountAction.java 16 Oct 2006 08:58:27 -0000 1.7 *************** *** 19,25 **** --- 19,29 ---- import javax.naming.NamingException; + import org.tolven.admin.JoinNewAccountInvitation; + import org.tolven.core.AccountDAOLocal; import org.tolven.core.ActivationLocal; + import org.tolven.core.entity.Account; import org.tolven.core.entity.AccountUser; import org.tolven.core.entity.HealthRecord; + import org.tolven.doc.entity.Invitation; public class AccountAction extends TolvenAction { *************** *** 27,30 **** --- 31,35 ---- // @EJB private ActivationLocal activation; + private AccountDAOLocal accountBean; private AccountUser accountUser; *************** *** 38,41 **** --- 43,47 ---- // I think this is a JBOSS-only scam. activation = (ActivationLocal) ctx.lookup("tolven/ActivationBean/local"); + accountBean = (AccountDAOLocal) ctx.lookup("tolven/AccountDAOBean/local"); } catch (NamingException e) *************** *** 87,89 **** --- 93,112 ---- return activation.findHealthRecords( getAccountUser().getAccount(), 10000, 0, "id", "ASC" ); } + + public String createNewCHR() { + Account account = accountBean.createAccount( "echr", "New Clinical Account" ); + System.out.println( "Created account: " + account.getId()); + // Note, the user automatically gets account permission because they are the only user on that new account. + accountBean.addAccountUser( account, getTop().getUser(), getNow(), true); + accountUsers = null; + return "success"; + } + public String createNewPHR() { + Account account = accountBean.createAccount( "ephr", "New Personal Account" ); + System.out.println( "Created account: " + account.getId()); + // Note, the user automatically gets account permission because they are the only user on that new account. + accountBean.addAccountUser( account, getTop().getUser(), getNow(), true); + accountUsers = null; + return "success"; + } } |
From: John C. <jc...@us...> - 2006-10-16 08:58:31
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12661/web/WEB-INF Modified Files: faces-config.xml Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: faces-config.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/faces-config.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** faces-config.xml 14 Oct 2006 23:08:04 -0000 1.21 --- faces-config.xml 16 Oct 2006 08:58:27 -0000 1.22 *************** *** 329,332 **** --- 329,342 ---- <redirect/> </navigation-case> + <navigation-case> + <from-action>#{acc.createNewCHR}</from-action> + <from-outcome>success</from-outcome> + <to-view-id>/private/selectAccount.xhtml</to-view-id> + </navigation-case> + <navigation-case> + <from-action>#{acc.createNewPHR}</from-action> + <from-outcome>success</from-outcome> + <to-view-id>/private/selectAccount.xhtml</to-view-id> + </navigation-case> </navigation-rule> <navigation-rule> |
From: John C. <jc...@us...> - 2006-10-16 08:58:31
|
Update of /cvsroot/tolven/tolvenWEB/web/private In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12661/web/private Modified Files: selectAccount.xhtml Log Message: Add links to selectAccount page to allow a new user to create a new account. Index: selectAccount.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/private/selectAccount.xhtml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** selectAccount.xhtml 14 Oct 2006 20:15:51 -0000 1.11 --- selectAccount.xhtml 16 Oct 2006 08:58:27 -0000 1.12 *************** *** 113,116 **** --- 113,122 ---- Some people will just have one user and one medical record, their own, in an account.</p> </h:panelGroup> + <h:commandLink action="#{acc.createNewCHR}"> + <h:outputText value="Create a new clinical account"/> + </h:commandLink> + <h:commandLink action="#{acc.createNewPHR}"> + <h:outputText value="Create a new personal account"/> + </h:commandLink> </c:if> </h:form> |
From: John C. <jc...@us...> - 2006-10-16 08:56:14
|
Update of /cvsroot/tolven/tolven/installer/izpack-8.1 In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11787/installer/izpack-8.1 Modified Files: tolven-install.xml Log Message: Add default for reference_required property Index: tolven-install.xml =================================================================== RCS file: /cvsroot/tolven/tolven/installer/izpack-8.1/tolven-install.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** tolven-install.xml 16 Oct 2006 08:51:02 -0000 1.13 --- tolven-install.xml 16 Oct 2006 08:56:11 -0000 1.14 *************** *** 72,75 **** --- 72,76 ---- <jar src="../apache-ant-1.6.5/lib/jsch-0.1.28.jar" /> <variables> + <variable name="REFERENCE_REQUIRED" value="false"/> <variable name="LDAP_HOST" value="localhost"/> <variable name="LDAP_PORT" value="636"/> |
From: John C. <jc...@us...> - 2006-10-16 08:56:13
|
Update of /cvsroot/tolven/tolven/installer/template In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11787/installer/template Modified Files: tolven.template Log Message: Add default for reference_required property Index: tolven.template =================================================================== RCS file: /cvsroot/tolven/tolven/installer/template/tolven.template,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tolven.template 2 Oct 2006 00:36:13 -0000 1.2 --- tolven.template 16 Oct 2006 08:56:11 -0000 1.3 *************** *** 4,7 **** --- 4,8 ---- mail.debug=$MAIL_DEBUG tolven.timezone=$TIMEZONE + tolven.register.referenceRequired=$REFERENCE_REQUIRED tolven.repository.oid=$REPOSITORY_OID tolven.login.create.demoUser=$CREATE_DEMO_USER |
From: John C. <jc...@us...> - 2006-10-16 08:51:06
|
Update of /cvsroot/tolven/tolven/installer/izpack-8.1 In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9289/installer/izpack-8.1 Modified Files: installUserInputSpec.xml tolven-install.xml Log Message: Add default for repository_oid to installer Index: installUserInputSpec.xml =================================================================== RCS file: /cvsroot/tolven/tolven/installer/izpack-8.1/installUserInputSpec.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** installUserInputSpec.xml 12 Oct 2006 23:52:36 -0000 1.8 --- installUserInputSpec.xml 16 Oct 2006 08:51:02 -0000 1.9 *************** *** 943,947 **** txt="This value must be set to a globally unique value for live operation. The default is adequate for testing." /> ! <spec txt="Repository OID:" size="40" set="1.2" /> </field> </panel> --- 943,947 ---- txt="This value must be set to a globally unique value for live operation. The default is adequate for testing." /> ! <spec txt="Repository OID:" size="40" set="$REPOSITORY_OID" /> </field> </panel> Index: tolven-install.xml =================================================================== RCS file: /cvsroot/tolven/tolven/installer/izpack-8.1/tolven-install.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** tolven-install.xml 14 Oct 2006 03:31:16 -0000 1.12 --- tolven-install.xml 16 Oct 2006 08:51:02 -0000 1.13 *************** *** 118,121 **** --- 118,122 ---- <variable name="CERT_DB_EMAIL" value="tol...@to..."/> <variable name="CERT_PG_CLIENT_EMAIL" value="tol...@to..."/> + <variable name="REPOSITORY_OID" value="1.2"/> </variables> <packs> |
From: Joseph I. <jos...@us...> - 2006-10-16 04:25:07
|
Update of /cvsroot/tolven/tolven/jboss-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30218/jboss-config Modified Files: login-config.xml Log Message: Removed login modules that we do not appear to use. Index: login-config.xml =================================================================== RCS file: /cvsroot/tolven/tolven/jboss-config/login-config.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** login-config.xml 4 Sep 2006 06:06:41 -0000 1.8 --- login-config.xml 16 Oct 2006 04:25:03 -0000 1.9 *************** *** 94,98 **** </authentication> </application-policy> ! <application-policy name = "client-login"> <authentication> --- 94,98 ---- </authentication> </application-policy> ! <!-- <application-policy name = "client-login"> <authentication> *************** *** 102,107 **** --- 102,109 ---- </authentication> </application-policy> + --> <!-- Security domains for testing new jca framework --> + <!-- <application-policy name = "HsqlDbRealm"> <authentication> *************** *** 115,118 **** --- 117,121 ---- </authentication> </application-policy> + --> <application-policy name = "JmsXARealm"> *************** *** 146,149 **** --- 149,153 ---- changed to a stronger authentication mechanism as required. --> + <!-- <application-policy name = "$webConsoleDomain"> <authentication> *************** *** 155,158 **** --- 159,163 ---- </authentication> </application-policy> + --> <!-- A template configuration for the JBossWS web application (and transport layer!). *************** *** 160,163 **** --- 165,169 ---- changed to a stronger authentication mechanism as required. --> + <!-- <application-policy name="JBossWS"> <authentication> *************** *** 168,177 **** </authentication> </application-policy> <!-- The default login configuration used by any security domain that does not have a application-policy entry with a matching name --> <application-policy name = "other"> ! <!-- A simple server login module, which can be used when the number of users is relatively small. It uses two properties files: users.properties, which holds users (key) and their password (value). --- 174,185 ---- </authentication> </application-policy> + --> <!-- The default login configuration used by any security domain that does not have a application-policy entry with a matching name --> + <!-- <application-policy name = "other"> ! A simple server login module, which can be used when the number of users is relatively small. It uses two properties files: users.properties, which holds users (key) and their password (value). *************** *** 183,187 **** allow such users to be authenticated add the property, e.g., unauthenticatedIdentity="nobody" ! --> <authentication> <login-module code = "org.jboss.security.auth.spi.UsersRolesLoginModule" --- 191,195 ---- allow such users to be authenticated add the property, e.g., unauthenticatedIdentity="nobody" ! <authentication> <login-module code = "org.jboss.security.auth.spi.UsersRolesLoginModule" *************** *** 189,192 **** --- 197,201 ---- </authentication> </application-policy> + --> </policy> |
From: Joseph I. <jos...@us...> - 2006-10-15 22:39:40
|
Update of /cvsroot/tolven/tolven/jboss-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21769/jboss-config Added Files: web.xml Log Message: Remove directory listings, even though we intend to remove Root.war altogether. --- NEW FILE: web.xml --- <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <!-- ======================== Introduction ============================== --> <!-- This document defines default values for *all* web applications --> <!-- loaded into this instance of Tomcat. As each application is --> <!-- deployed, this file is processed, followed by the --> <!-- "/WEB-INF/web.xml" deployment descriptor from your own --> <!-- applications. --> <!-- --> <!-- WARNING: Do not configure application-specific resources here! --> <!-- They should go in the "/WEB-INF/web.xml" file in your application. --> <!-- ================== Common filter Configuration ==================== --> <filter> <filter-name>CommonHeadersFilter</filter-name> <filter-class>org.jboss.web.tomcat.filters.ReplyHeaderFilter</filter-class> <init-param> <param-name>X-Powered-By</param-name> <param-value>Servlet 2.4; JBoss-4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200605151000)/Tomcat-5.5</param-value> </init-param> </filter> <filter-mapping> <filter-name>CommonHeadersFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- ================== Common Listener Configuration ==================== --> <listener> <listener-class>org.jboss.web.tomcat.security.SecurityFlushSessionListener</listener-class> </listener> <!-- ================== Built In Servlet Definitions ==================== --> <!-- The default servlet for all web applications, that serves static --> <!-- resources. It processes all requests that are not mapped to other --> <!-- servlets with servlet mappings (defined either here or in your own --> <!-- web.xml file. This servlet supports the following initialization --> <!-- parameters (default values are in square brackets): --> <!-- --> <!-- debug Debugging detail level for messages logged --> <!-- by this servlet. [0] --> <!-- --> <!-- input Input buffer size (in bytes) when reading --> <!-- resources to be served. [2048] --> <!-- --> <!-- listings Should directory listings be produced if there --> <!-- is no welcome file in this directory? [true] --> <!-- --> <!-- output Output buffer size (in bytes) when writing --> <!-- resources to be served. [2048] --> <!-- --> <!-- readonly Is this context "read only", so HTTP --> <!-- commands like PUT and DELETE are --> <!-- rejected? [true] --> <!-- --> <!-- readmeFile File name to display with the directory --> <!-- contents. [null] --> <!-- --> <!-- For directory listing customization. Checks localXsltFile, then --> <!-- globalXsltFile, then defaults to original behavior. --> <!-- --> <!-- localXsltFile Make directory listings an XML doc and --> <!-- pass the result to this style sheet residing --> <!-- in that directory. This overrides --> <!-- globalXsltFile[null] --> <!-- --> <!-- globalXsltFile Site wide configuration version of --> <!-- localXsltFile This argument is expected --> <!-- to be a physical file. [null] --> <!-- --> <!-- --> <servlet> <servlet-name>default</servlet-name> <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <init-param> <param-name>listings</param-name> <param-value>false</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <!-- The "invoker" servlet, which executes anonymous servlet classes --> <!-- that have not been defined in a web.xml file. Traditionally, this --> <!-- servlet is mapped to the URL pattern "/servlet/*", but you can map --> <!-- it to other patterns as well. The extra path info portion of such a --> <!-- request must be the fully qualified class name of a Java class that --> <!-- implements Servlet (or extends HttpServlet), or the servlet name --> <!-- of an existing servlet definition. This servlet supports the --> <!-- following initialization parameters (default values are in square --> <!-- brackets): --> <!-- --> <!-- debug Debugging detail level for messages logged --> <!-- by this servlet. [0] --> <!-- <servlet> <servlet-name>invoker</servlet-name> <servlet-class> org.apache.catalina.servlets.InvokerServlet </servlet-class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> --> <!-- The JSP page compiler and execution servlet, which is the mechanism --> <!-- used by Tomcat to support JSP pages. Traditionally, this servlet --> <!-- is mapped to the URL pattern "*.jsp". This servlet supports the --> <!-- following initialization parameters (default values are in square --> <!-- brackets): --> <!-- --> <!-- checkInterval If development is false and checkInterval is --> <!-- greater than zero, background compilations are --> <!-- enabled. checkInterval is the time in seconds --> <!-- between checks to see if a JSP page needs to --> <!-- be recompiled. [0] --> <!-- --> <!-- modificationTestInterval --> <!-- Causes a JSP (and its dependent files) to not --> <!-- be checked for modification during the --> <!-- specified time interval (in seconds) from the --> <!-- last time the JSP was checked for --> <!-- modification. A value of 0 will cause the JSP --> <!-- to be checked on every access. --> <!-- Used in development mode only. [4] --> <!-- --> <!-- compiler Which compiler Ant should use to compile JSP --> <!-- pages. See the Ant documentation for more --> <!-- information. [javac] --> <!-- --> <!-- classdebuginfo Should the class file be compiled with --> <!-- debugging information? [true] --> <!-- --> <!-- classpath What class path should I use while compiling --> <!-- generated servlets? [Created dynamically --> <!-- based on the current web application] --> <!-- --> <!-- development Is Jasper used in development mode? If true, --> <!-- the frequency at which JSPs are checked for --> <!-- modification may be specified via the --> <!-- modificationTestInterval parameter. [true] --> <!-- --> <!-- enablePooling Determines whether tag handler pooling is --> <!-- enabled [true] --> <!-- --> <!-- fork Tell Ant to fork compiles of JSP pages so that --> <!-- a separate JVM is used for JSP page compiles --> <!-- from the one Tomcat is running in. [true] --> <!-- --> <!-- ieClassId The class-id value to be sent to Internet --> <!-- Explorer when using <jsp:plugin> tags. --> <!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] --> <!-- --> <!-- javaEncoding Java file encoding to use for generating java --> <!-- source files. [UTF8] --> <!-- --> <!-- keepgenerated Should we keep the generated Java source code --> <!-- for each page instead of deleting it? [true] --> <!-- --> <!-- mappedfile Should we generate static content with one --> <!-- print statement per input line, to ease --> <!-- debugging? [true] --> <!-- --> <!-- trimSpaces Should white spaces in template text between --> <!-- actions or directives be trimmed? [false] --> <!-- --> <!-- suppressSmap Should the generation of SMAP info for JSR45 --> <!-- debugging be suppressed? [false] --> <!-- --> <!-- dumpSmap Should the SMAP info for JSR45 debugging be --> <!-- dumped to a file? [false] --> <!-- False if suppressSmap is true --> <!-- --> <!-- genStrAsCharArray Should text strings be generated as char --> <!-- arrays, to improve performance in some cases? --> <!-- [false] --> <!-- --> <!-- errorOnUseBeanInvalidClassAttribute --> <!-- Should Jasper issue an error when the value of --> <!-- the class attribute in an useBean action is --> <!-- not a valid bean class? [true] --> <!-- --> <!-- scratchdir What scratch directory should we use when --> <!-- compiling JSP pages? [default work directory --> <!-- for the current web application] --> <!-- --> <!-- xpoweredBy Determines whether X-Powered-By response --> <!-- header is added by generated servlet [false] --> <!-- --> <!-- If you wish to use Jikes to compile JSP pages: --> <!-- Set the init parameter "compiler" to "jikes". Define --> <!-- the property "-Dbuild.compiler.emacs=true" when starting Tomcat --> <!-- by adding the above to your CATALINA_OPTS environment variable. --> <!-- If you get an error reporting that jikes can't use UTF8 encoding, --> <!-- try setting the init parameter "javaEncoding" to "ISO-8859-1". --> <servlet> <servlet-name>jsp</servlet-name> <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> <init-param> <param-name>fork</param-name> <param-value>false</param-value> </init-param> <init-param> <param-name>xpoweredBy</param-name> <param-value>false</param-value> </init-param> <!-- Uncomment to use jdk1.5 features in jsp pages <init-param> <param-name>compilerSourceVM</param-name> <param-value>1.5</param-value> </init-param> --> <!-- Use a custom options class to allow the shared tag lib descriptors to be loaded from jars in the tomcat sar conf/tlds directory. The standard options implementation can only find taglibs based on the class loader classpath. --> <init-param> <param-name>engineOptionsClass</param-name> <param-value>org.jboss.web.tomcat.tc5.jasper.JspServletOptions</param-value> </init-param> <!-- Specify the jars relative to the jbossweb-tomcat55.sar that should be scanned for common tag lib descriptors to include in every war deployment. --> <init-param> <description>MyFaces tlds</description> <param-name>tagLibJar0</param-name> <param-value>jsf-libs/myfaces-impl.jar</param-value> </init-param> <load-on-startup>3</load-on-startup> </servlet> <!-- Server Side Includes processing servlet, which processes SSI --> <!-- directives in HTML pages consistent with similar support in web --> <!-- servers like Apache. Traditionally, this servlet is mapped to the --> <!-- URL pattern "*.shtml". This servlet supports the following --> <!-- initialization parameters (default values are in square brackets): --> <!-- --> <!-- buffered Should output from this servlet be buffered? --> <!-- (0=false, 1=true) [0] --> <!-- --> <!-- debug Debugging detail level for messages logged --> <!-- by this servlet. [0] --> <!-- --> <!-- expires The number of seconds before a page with SSI --> <!-- directives will expire. [No default] --> <!-- --> <!-- isVirtualWebappRelative --> <!-- Should "virtual" paths be interpreted as --> <!-- relative to the context root, instead of --> <!-- the server root? (0=false, 1=true) [0] --> <!-- --> <!-- --> <!-- IMPORTANT: To use the SSI servlet, you also need to rename the --> <!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file --> <!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar --> <!-- <servlet> <servlet-name>ssi</servlet-name> <servlet-class> org.apache.catalina.ssi.SSIServlet </servlet-class> <init-param> <param-name>buffered</param-name> <param-value>1</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <init-param> <param-name>expires</param-name> <param-value>666</param-value> </init-param> <init-param> <param-name>isVirtualWebappRelative</param-name> <param-value>0</param-value> </init-param> <load-on-startup>4</load-on-startup> </servlet> --> <!-- Common Gateway Includes (CGI) processing servlet, which supports --> <!-- execution of external applications that conform to the CGI spec --> <!-- requirements. Typically, this servlet is mapped to the URL pattern --> <!-- "/cgi-bin/*", which means that any CGI applications that are --> <!-- executed must be present within the web application. This servlet --> <!-- supports the following initialization parameters (default values --> <!-- are in square brackets): --> <!-- --> <!-- cgiPathPrefix The CGI search path will start at --> <!-- webAppRootDir + File.separator + this prefix. --> <!-- [WEB-INF/cgi] --> <!-- --> <!-- debug Debugging detail level for messages logged --> <!-- by this servlet. [0] --> <!-- --> <!-- executable Name of the exectuable used to run the --> <!-- script. [perl] --> <!-- --> <!-- parameterEncoding Name of parameter encoding to be used with --> <!-- CGI servlet. --> <!-- [System.getProperty("file.encoding","UTF-8")] --> <!-- --> <!-- passShellEnvironment Should the shell environment variables (if --> <!-- any) be passed to the CGI script? [false] --> <!-- --> <!-- IMPORTANT: To use the CGI servlet, you also need to rename the --> <!-- $CATALINA_HOME/server/lib/servlets-cgi.renametojar file --> <!-- to $CATALINA_HOME/server/lib/servlets-cgi.jar --> <!-- <servlet> <servlet-name>cgi</servlet-name> <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value>6</param-value> </init-param> <init-param> <param-name>cgiPathPrefix</param-name> <param-value>WEB-INF/cgi</param-value> </init-param> <load-on-startup>5</load-on-startup> </servlet> --> <!-- ================ Built In Servlet Mappings ========================= --> <!-- The servlet mappings for the built in servlets defined above. Note --> <!-- that, by default, the CGI and SSI servlets are *not* mapped. You --> <!-- must uncomment these mappings (or add them to your application's own --> <!-- web.xml deployment descriptor) to enable these services --> <!-- The mapping for the default servlet --> <servlet-mapping> <servlet-name>default</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- The mapping for the invoker servlet --> <!-- <servlet-mapping> <servlet-name>invoker</servlet-name> <url-pattern>/servlet/*</url-pattern> </servlet-mapping> --> <!-- The mapping for the JSP servlet --> <servlet-mapping> <servlet-name>jsp</servlet-name> <url-pattern>*.jsp</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>jsp</servlet-name> <url-pattern>*.jspx</url-pattern> </servlet-mapping> <!-- The mapping for the SSI servlet --> <!-- <servlet-mapping> <servlet-name>ssi</servlet-name> <url-pattern>*.shtml</url-pattern> </servlet-mapping> --> <!-- The mapping for the CGI Gateway servlet --> <!-- <servlet-mapping> <servlet-name>cgi</servlet-name> <url-pattern>/cgi-bin/*</url-pattern> </servlet-mapping> --> <!-- ==================== Default Session Configuration ================= --> <!-- You can set the default session timeout (in minutes) for all newly --> <!-- created sessions by modifying the value below. --> <session-config> <session-timeout>30</session-timeout> </session-config> <!-- ===================== Default MIME Type Mappings =================== --> <!-- When serving static resources, Tomcat will automatically generate --> <!-- a "Content-Type" header based on the resource's filename extension, --> <!-- based on these mappings. Additional mappings can be added here (to --> <!-- apply to all web applications), or in your own application's web.xml --> <!-- deployment descriptor. --> <mime-mapping> <extension>abs</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>ai</extension> <mime-type>application/postscript</mime-type> </mime-mapping> <mime-mapping> <extension>aif</extension> <mime-type>audio/x-aiff</mime-type> </mime-mapping> <mime-mapping> <extension>aifc</extension> <mime-type>audio/x-aiff</mime-type> </mime-mapping> <mime-mapping> <extension>aiff</extension> <mime-type>audio/x-aiff</mime-type> </mime-mapping> <mime-mapping> <extension>aim</extension> <mime-type>application/x-aim</mime-type> </mime-mapping> <mime-mapping> <extension>art</extension> <mime-type>image/x-jg</mime-type> </mime-mapping> <mime-mapping> <extension>asf</extension> <mime-type>video/x-ms-asf</mime-type> </mime-mapping> <mime-mapping> <extension>asx</extension> <mime-type>video/x-ms-asf</mime-type> </mime-mapping> <mime-mapping> <extension>au</extension> <mime-type>audio/basic</mime-type> </mime-mapping> <mime-mapping> <extension>avi</extension> <mime-type>video/x-msvideo</mime-type> </mime-mapping> <mime-mapping> <extension>avx</extension> <mime-type>video/x-rad-screenplay</mime-type> </mime-mapping> <mime-mapping> <extension>bcpio</extension> <mime-type>application/x-bcpio</mime-type> </mime-mapping> <mime-mapping> <extension>bin</extension> <mime-type>application/octet-stream</mime-type> </mime-mapping> <mime-mapping> <extension>bmp</extension> <mime-type>image/bmp</mime-type> </mime-mapping> <mime-mapping> <extension>body</extension> <mime-type>text/html</mime-type> </mime-mapping> <mime-mapping> <extension>cdf</extension> <mime-type>application/x-cdf</mime-type> </mime-mapping> <mime-mapping> <extension>cer</extension> <mime-type>application/x-x509-ca-cert</mime-type> </mime-mapping> <mime-mapping> <extension>class</extension> <mime-type>application/java</mime-type> </mime-mapping> <mime-mapping> <extension>cpio</extension> <mime-type>application/x-cpio</mime-type> </mime-mapping> <mime-mapping> <extension>csh</extension> <mime-type>application/x-csh</mime-type> </mime-mapping> <mime-mapping> <extension>css</extension> <mime-type>text/css</mime-type> </mime-mapping> <mime-mapping> <extension>dib</extension> <mime-type>image/bmp</mime-type> </mime-mapping> <mime-mapping> <extension>doc</extension> <mime-type>application/msword</mime-type> </mime-mapping> <mime-mapping> <extension>dtd</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>dv</extension> <mime-type>video/x-dv</mime-type> </mime-mapping> <mime-mapping> <extension>dvi</extension> <mime-type>application/x-dvi</mime-type> </mime-mapping> <mime-mapping> <extension>eps</extension> <mime-type>application/postscript</mime-type> </mime-mapping> <mime-mapping> <extension>etx</extension> <mime-type>text/x-setext</mime-type> </mime-mapping> <mime-mapping> <extension>exe</extension> <mime-type>application/octet-stream</mime-type> </mime-mapping> <mime-mapping> <extension>gif</extension> <mime-type>image/gif</mime-type> </mime-mapping> <mime-mapping> <extension>gtar</extension> <mime-type>application/x-gtar</mime-type> </mime-mapping> <mime-mapping> <extension>gz</extension> <mime-type>application/x-gzip</mime-type> </mime-mapping> <mime-mapping> <extension>hdf</extension> <mime-type>application/x-hdf</mime-type> </mime-mapping> <mime-mapping> <extension>hqx</extension> <mime-type>application/mac-binhex40</mime-type> </mime-mapping> <mime-mapping> <extension>htc</extension> <mime-type>text/x-component</mime-type> </mime-mapping> <mime-mapping> <extension>htm</extension> <mime-type>text/html</mime-type> </mime-mapping> <mime-mapping> <extension>html</extension> <mime-type>text/html</mime-type> </mime-mapping> <mime-mapping> <extension>hqx</extension> <mime-type>application/mac-binhex40</mime-type> </mime-mapping> <mime-mapping> <extension>ief</extension> <mime-type>image/ief</mime-type> </mime-mapping> <mime-mapping> <extension>jad</extension> <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type> </mime-mapping> <mime-mapping> <extension>jar</extension> <mime-type>application/java-archive</mime-type> </mime-mapping> <mime-mapping> <extension>java</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>jnlp</extension> <mime-type>application/x-java-jnlp-file</mime-type> </mime-mapping> <mime-mapping> <extension>jpe</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> <mime-mapping> <extension>jpeg</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> <mime-mapping> <extension>jpg</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> <mime-mapping> <extension>js</extension> <mime-type>text/javascript</mime-type> </mime-mapping> <mime-mapping> <extension>jsf</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>jspf</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>kar</extension> <mime-type>audio/x-midi</mime-type> </mime-mapping> <mime-mapping> <extension>latex</extension> <mime-type>application/x-latex</mime-type> </mime-mapping> <mime-mapping> <extension>m3u</extension> <mime-type>audio/x-mpegurl</mime-type> </mime-mapping> <mime-mapping> <extension>mac</extension> <mime-type>image/x-macpaint</mime-type> </mime-mapping> <mime-mapping> <extension>man</extension> <mime-type>application/x-troff-man</mime-type> </mime-mapping> <mime-mapping> <extension>me</extension> <mime-type>application/x-troff-me</mime-type> </mime-mapping> <mime-mapping> <extension>mid</extension> <mime-type>audio/x-midi</mime-type> </mime-mapping> <mime-mapping> <extension>midi</extension> <mime-type>audio/x-midi</mime-type> </mime-mapping> <mime-mapping> <extension>mif</extension> <mime-type>application/x-mif</mime-type> </mime-mapping> <mime-mapping> <extension>mov</extension> <mime-type>video/quicktime</mime-type> </mime-mapping> <mime-mapping> <extension>movie</extension> <mime-type>video/x-sgi-movie</mime-type> </mime-mapping> <mime-mapping> <extension>mp1</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mp2</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mp3</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpa</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpe</extension> <mime-type>video/mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpeg</extension> <mime-type>video/mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpega</extension> <mime-type>audio/x-mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpg</extension> <mime-type>video/mpeg</mime-type> </mime-mapping> <mime-mapping> <extension>mpv2</extension> <mime-type>video/mpeg2</mime-type> </mime-mapping> <mime-mapping> <extension>ms</extension> <mime-type>application/x-wais-source</mime-type> </mime-mapping> <mime-mapping> <extension>nc</extension> <mime-type>application/x-netcdf</mime-type> </mime-mapping> <mime-mapping> <extension>oda</extension> <mime-type>application/oda</mime-type> </mime-mapping> <mime-mapping> <extension>pbm</extension> <mime-type>image/x-portable-bitmap</mime-type> </mime-mapping> <mime-mapping> <extension>pct</extension> <mime-type>image/pict</mime-type> </mime-mapping> <mime-mapping> <extension>pdf</extension> <mime-type>application/pdf</mime-type> </mime-mapping> <mime-mapping> <extension>pgm</extension> <mime-type>image/x-portable-graymap</mime-type> </mime-mapping> <mime-mapping> <extension>pic</extension> <mime-type>image/pict</mime-type> </mime-mapping> <mime-mapping> <extension>pict</extension> <mime-type>image/pict</mime-type> </mime-mapping> <mime-mapping> <extension>pls</extension> <mime-type>audio/x-scpls</mime-type> </mime-mapping> <mime-mapping> <extension>png</extension> <mime-type>image/png</mime-type> </mime-mapping> <mime-mapping> <extension>pnm</extension> <mime-type>image/x-portable-anymap</mime-type> </mime-mapping> <mime-mapping> <extension>pnt</extension> <mime-type>image/x-macpaint</mime-type> </mime-mapping> <mime-mapping> <extension>ppm</extension> <mime-type>image/x-portable-pixmap</mime-type> </mime-mapping> <mime-mapping> <extension>ppt</extension> <mime-type>application/powerpoint</mime-type> </mime-mapping> <mime-mapping> <extension>ps</extension> <mime-type>application/postscript</mime-type> </mime-mapping> <mime-mapping> <extension>psd</extension> <mime-type>image/x-photoshop</mime-type> </mime-mapping> <mime-mapping> <extension>qt</extension> <mime-type>video/quicktime</mime-type> </mime-mapping> <mime-mapping> <extension>qti</extension> <mime-type>image/x-quicktime</mime-type> </mime-mapping> <mime-mapping> <extension>qtif</extension> <mime-type>image/x-quicktime</mime-type> </mime-mapping> <mime-mapping> <extension>ras</extension> <mime-type>image/x-cmu-raster</mime-type> </mime-mapping> <mime-mapping> <extension>rgb</extension> <mime-type>image/x-rgb</mime-type> </mime-mapping> <mime-mapping> <extension>rm</extension> <mime-type>application/vnd.rn-realmedia</mime-type> </mime-mapping> <mime-mapping> <extension>roff</extension> <mime-type>application/x-troff</mime-type> </mime-mapping> <mime-mapping> <extension>rtf</extension> <mime-type>application/rtf</mime-type> </mime-mapping> <mime-mapping> <extension>rtx</extension> <mime-type>text/richtext</mime-type> </mime-mapping> <mime-mapping> <extension>sh</extension> <mime-type>application/x-sh</mime-type> </mime-mapping> <mime-mapping> <extension>shar</extension> <mime-type>application/x-shar</mime-type> </mime-mapping> <mime-mapping> <extension>smf</extension> <mime-type>audio/x-midi</mime-type> </mime-mapping> <mime-mapping> <extension>sit</extension> <mime-type>application/x-stuffit</mime-type> </mime-mapping> <mime-mapping> <extension>snd</extension> <mime-type>audio/basic</mime-type> </mime-mapping> <mime-mapping> <extension>src</extension> <mime-type>application/x-wais-source</mime-type> </mime-mapping> <mime-mapping> <extension>sv4cpio</extension> <mime-type>application/x-sv4cpio</mime-type> </mime-mapping> <mime-mapping> <extension>sv4crc</extension> <mime-type>application/x-sv4crc</mime-type> </mime-mapping> <mime-mapping> <extension>swf</extension> <mime-type>application/x-shockwave-flash</mime-type> </mime-mapping> <mime-mapping> <extension>t</extension> <mime-type>application/x-troff</mime-type> </mime-mapping> <mime-mapping> <extension>tar</extension> <mime-type>application/x-tar</mime-type> </mime-mapping> <mime-mapping> <extension>tcl</extension> <mime-type>application/x-tcl</mime-type> </mime-mapping> <mime-mapping> <extension>tex</extension> <mime-type>application/x-tex</mime-type> </mime-mapping> <mime-mapping> <extension>texi</extension> <mime-type>application/x-texinfo</mime-type> </mime-mapping> <mime-mapping> <extension>texinfo</extension> <mime-type>application/x-texinfo</mime-type> </mime-mapping> <mime-mapping> <extension>tif</extension> <mime-type>image/tiff</mime-type> </mime-mapping> <mime-mapping> <extension>tiff</extension> <mime-type>image/tiff</mime-type> </mime-mapping> <mime-mapping> <extension>tr</extension> <mime-type>application/x-troff</mime-type> </mime-mapping> <mime-mapping> <extension>tsv</extension> <mime-type>text/tab-separated-values</mime-type> </mime-mapping> <mime-mapping> <extension>txt</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>ulw</extension> <mime-type>audio/basic</mime-type> </mime-mapping> <mime-mapping> <extension>ustar</extension> <mime-type>application/x-ustar</mime-type> </mime-mapping> <mime-mapping> <extension>xbm</extension> <mime-type>image/x-xbitmap</mime-type> </mime-mapping> <mime-mapping> <extension>xht</extension> <mime-type>application/xhtml</mime-type> </mime-mapping> <mime-mapping> <extension>xhtml</extension> <mime-type>application/xhtml</mime-type> </mime-mapping> <mime-mapping> <extension>xml</extension> <mime-type>text/xml</mime-type> </mime-mapping> <mime-mapping> <extension>xpm</extension> <mime-type>image/x-xpixmap</mime-type> </mime-mapping> <mime-mapping> <extension>xsl</extension> <mime-type>text/xml</mime-type> </mime-mapping> <mime-mapping> <extension>xwd</extension> <mime-type>image/x-xwindowdump</mime-type> </mime-mapping> <mime-mapping> <extension>wav</extension> <mime-type>audio/x-wav</mime-type> </mime-mapping> <mime-mapping> <extension>svg</extension> <mime-type>image/svg</mime-type> </mime-mapping> <mime-mapping> <extension>svgz</extension> <mime-type>image/svg</mime-type> </mime-mapping> <mime-mapping> <extension>vsd</extension> <mime-type>application/x-visio</mime-type> </mime-mapping> <mime-mapping> <!-- Wireless Bitmap --> <extension>wbmp</extension> <mime-type>image/vnd.wap.wbmp</mime-type> </mime-mapping> <mime-mapping> <!-- WML Source --> <extension>wml</extension> <mime-type>text/vnd.wap.wml</mime-type> </mime-mapping> <mime-mapping> <!-- Compiled WML --> <extension>wmlc</extension> <mime-type>application/vnd.wap.wmlc</mime-type> </mime-mapping> <mime-mapping> <!-- WML Script Source --> <extension>wmls</extension> <mime-type>text/vnd.wap.wmlscript</mime-type> </mime-mapping> <mime-mapping> <!-- Compiled WML Script --> <extension>wmlscriptc</extension> <mime-type>application/vnd.wap.wmlscriptc</mime-type> </mime-mapping> <mime-mapping> <extension>wrl</extension> <mime-type>x-world/x-vrml</mime-type> </mime-mapping> <mime-mapping> <extension>Z</extension> <mime-type>application/x-compress</mime-type> </mime-mapping> <mime-mapping> <extension>z</extension> <mime-type>application/x-compress</mime-type> </mime-mapping> <mime-mapping> <extension>zip</extension> <mime-type>application/zip</mime-type> </mime-mapping> <!-- ==================== Default Welcome File List ===================== --> <!-- When a request URI refers to a directory, the default servlet looks --> <!-- for a "welcome file" within that directory and, if present, --> <!-- to the corresponding resource URI for display. If no welcome file --> <!-- is present, the default servlet either serves a directory listing, --> <!-- or returns a 404 status, depending on how it is configured. --> <!-- --> <!-- If you define welcome files in your own application's web.xml --> <!-- deployment descriptor, that list *replaces* the list configured --> <!-- here, so be sure that you include any of the default values that --> <!-- you wish to include. --> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> |
From: Joseph I. <jos...@us...> - 2006-10-15 22:39:40
|
Update of /cvsroot/tolven/tolven In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21769 Modified Files: build.xml Log Message: Remove directory listings, even though we intend to remove Root.war altogether. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/build.xml,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** build.xml 15 Oct 2006 06:55:57 -0000 1.65 --- build.xml 15 Oct 2006 22:39:29 -0000 1.66 *************** *** 15,18 **** --- 15,19 ---- </fail> <unzip src="${tolven.location}/lib/jboss/tolven-jboss-4.0.4.GA.zip" dest="${tolven.home}" /> + <delete dir="${deploy.location}/deploy/jbossweb-tomcat55.sar/ROOT.war" /> </target> *************** *** 101,104 **** --- 102,110 ---- </fileset> </copy> + <copy toDir="${deploy.location}/deploy/jbossweb-tomcat55.sar/conf" overwrite="true" preservelastmodified="true" verbose="${message.show.copy}"> + <fileset dir="${tolven.stage}/jboss-server/deploy/jbossweb-tomcat55.sar/conf"> + <include name="web.xml"/> + </fileset> + </copy> <ant dir="${tolven.location}/security-config" antfile="${tolven.location}/security-config/build.xml" target="deploy-jboss-credentials" /> </target> |
From: Joseph I. <jos...@us...> - 2006-10-15 22:39:40
|
Update of /cvsroot/tolven/tolven/security-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21769/security-config Modified Files: build.xml Log Message: Remove directory listings, even though we intend to remove Root.war altogether. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/security-config/build.xml,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** build.xml 15 Oct 2006 06:55:57 -0000 1.54 --- build.xml 15 Oct 2006 22:39:29 -0000 1.55 *************** *** 522,525 **** --- 522,531 ---- </fileset> </copy> + <mkdir dir="${tolven.stage}/jboss-server/deploy/jbossweb-tomcat55.sar/conf" /> + <copy toDir="${tolven.stage}/jboss-server/deploy/jbossweb-tomcat55.sar/conf" overwrite="true" preservelastmodified="true" filtering="true" verbose="${message.show.copy}"> + <fileset dir="${tolven.location}/jboss-config"> + <include name="web.xml"/> + </fileset> + </copy> </target> |
From: Joseph I. <jos...@us...> - 2006-10-15 06:56:00
|
Update of /cvsroot/tolven/tolven In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12535 Modified Files: build.xml Log Message: No longer need to copy jaxb-api.jar and jaxb-impl.jar to the server's lib directory. They are located in the ear's lib directory. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/build.xml,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** build.xml 5 Oct 2006 08:39:33 -0000 1.64 --- build.xml 15 Oct 2006 06:55:57 -0000 1.65 *************** *** 75,80 **** <copy toDir="${deploy.location}/lib" verbose="${message.show.copy}"> <fileset dir="${tolven.stage}/jboss-server/lib"> - <include name="jaxb-api.jar"/> - <include name="jaxb-impl.jar"/> <include name="postgresql-jdbc3-8.1-404.jar"/> <include name="properties-plugin.jar"/> --- 75,78 ---- |
From: Joseph I. <jos...@us...> - 2006-10-15 06:56:00
|
Update of /cvsroot/tolven/tolven/security-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12535/security-config Modified Files: build.xml Log Message: No longer need to copy jaxb-api.jar and jaxb-impl.jar to the server's lib directory. They are located in the ear's lib directory. Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolven/security-config/build.xml,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** build.xml 9 Oct 2006 02:25:11 -0000 1.53 --- build.xml 15 Oct 2006 06:55:57 -0000 1.54 *************** *** 117,124 **** <include name="properties-plugin.jar"/> </fileset> - <fileset dir="${jaxb.location}/lib" > - <include name="jaxb-impl.jar"/> - <include name="jaxb-api.jar"/> - </fileset> </copy> </target> --- 117,120 ---- |
From: Joseph I. <jos...@us...> - 2006-10-15 05:55:28
|
Update of /cvsroot/tolven/tolven/conf In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21217/conf Modified Files: jboss-app.xml Log Message: Created a JBoss repository loader for tolven.ear to provide a naming scope for tolven to prevent clashes with the JBoss server confguration. Index: jboss-app.xml =================================================================== RCS file: /cvsroot/tolven/tolven/conf/jboss-app.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jboss-app.xml 21 Jun 2006 22:57:56 -0000 1.1 --- jboss-app.xml 15 Oct 2006 05:55:24 -0000 1.2 *************** *** 1,2 **** <?xml version="1.0" encoding="UTF-8"?> ! <jboss-app/> --- 1,4 ---- <?xml version="1.0" encoding="UTF-8"?> ! <jboss-app> ! <loader-repository>tolven.com:loader=tolven.ear</loader-repository> ! </jboss-app> |
From: Joseph I. <jos...@us...> - 2006-10-14 23:10:08
|
Update of /cvsroot/tolven/tolven/ldap-config In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv23375/ldap-config Modified Files: slapd_linux.conf Log Message: Re-allowed password substitution for LDAP rootpw Index: slapd_linux.conf =================================================================== RCS file: /cvsroot/tolven/tolven/ldap-config/slapd_linux.conf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** slapd_linux.conf 8 Oct 2006 01:04:53 -0000 1.2 --- slapd_linux.conf 14 Oct 2006 23:10:06 -0000 1.3 *************** *** 74,79 **** # be avoided. See slappasswd(8) and slapd.conf(5) for details. # Use of strong authentication encouraged. ! rootpw {SSHA}LQZjKZroYAl558nNfah14PKC1pc3fwzI ! # rootpw {crypt}ijFYNcSNctBYg --- 74,78 ---- # be avoided. See slappasswd(8) and slapd.conf(5) for details. # Use of strong authentication encouraged. ! rootpw @slapd-conf-rootpw@ # rootpw {crypt}ijFYNcSNctBYg |
From: John C. <jc...@us...> - 2006-10-14 23:08:10
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22257/src/org/tolven/web Modified Files: RegisterAction.java Log Message: Add list of sponsored users, accessed via account admin page. Index: RegisterAction.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/RegisterAction.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RegisterAction.java 14 Oct 2006 20:15:52 -0000 1.18 --- RegisterAction.java 14 Oct 2006 23:08:04 -0000 1.19 *************** *** 33,36 **** --- 33,37 ---- import org.tolven.core.ActivationLocal; import org.tolven.core.InvitationLocal; + import org.tolven.core.SponsoredUser; import org.tolven.core.TolvenPropertiesLocal; import org.tolven.core.entity.Account; *************** *** 79,82 **** --- 80,84 ---- private String sponsorshipTitle; private List<Sponsorship> sponsorships; + private List<SponsoredUser> sponsoredUsers; private FileItem likenessFile; *************** *** 615,617 **** --- 617,630 ---- } + public List<SponsoredUser> getSponsoredUsers() { + if (sponsoredUsers==null) { + sponsoredUsers = accountBean.findSponsoredUsersForAccount(getAccount()); + } + return sponsoredUsers; + } + + public void setSponsoredUsers(List<SponsoredUser> sponsoredUsers) { + this.sponsoredUsers = sponsoredUsers; + } + } |
From: John C. <jc...@us...> - 2006-10-14 23:08:10
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22556/src/org/tolven/core/bean Modified Files: AccountDAOBean.java Log Message: Add list of sponsored users, accessed via account admin page. Index: AccountDAOBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/AccountDAOBean.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AccountDAOBean.java 14 Oct 2006 20:13:35 -0000 1.5 --- AccountDAOBean.java 14 Oct 2006 23:08:08 -0000 1.6 *************** *** 24,27 **** --- 24,28 ---- import org.tolven.core.AccountDAOLocal; import org.tolven.core.InvitationLocal; + import org.tolven.core.SponsoredUser; import org.tolven.core.entity.Account; import org.tolven.core.entity.AccountType; *************** *** 155,162 **** public List<TolvenUser> findSponsoredUsers( Sponsorship sponsorship ) { ! Query q = em.createQuery("SELECT u FROM TolvenUser u WHERE s.sponsorship = :sponsorship"); q.setParameter("sponsorship", sponsorship); return q.getResultList(); } ! } --- 156,175 ---- public List<TolvenUser> findSponsoredUsers( Sponsorship sponsorship ) { ! Query q = em.createQuery("SELECT u FROM TolvenUser u WHERE u.sponsorship = :sponsorship"); q.setParameter("sponsorship", sponsorship); return q.getResultList(); } ! ! /** ! * Return a list of users sponsored users by the specified account. This attributes returned are captive ! * in order to avoid cross-account peeping beyond the scope of sponsorship. ! * @param account ! * @return ! */ ! public List<SponsoredUser> findSponsoredUsersForAccount( Account account ) { ! Query q = em.createQuery("SELECT new org.tolven.core.SponsoredUser(s.referenceCode, u.ldapUID, u.creation, u.lastLogin) FROM TolvenUser u, Sponsorship s WHERE u.sponsorship = s and s.account = :account"); ! q.setParameter("account", account); ! return q.getResultList(); ! } ! } |
From: John C. <jc...@us...> - 2006-10-14 23:08:10
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/ajax In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22257/src/org/tolven/ajax Modified Files: AjaxServlet.java Log Message: Add list of sponsored users, accessed via account admin page. Index: AjaxServlet.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/ajax/AjaxServlet.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** AjaxServlet.java 18 Sep 2006 15:43:15 -0000 1.14 --- AjaxServlet.java 14 Oct 2006 23:08:04 -0000 1.15 *************** *** 47,50 **** --- 47,51 ---- import org.tolven.app.entity.MenuData; import org.tolven.app.entity.MenuStructure; + import org.tolven.core.entity.Sponsorship; import org.tolven.doc.DocumentLocal; import org.tolven.doc.entity.DocBase; *************** *** 385,388 **** --- 386,406 ---- } } + // if (uri.endsWith("sponsoredUsers.ajax")) { + // String sortAttribute = "requestCode"; + // long accountId = (Long) req.getSession(false).getAttribute("accountId"); + // List<Sponsorship> rows = documentLocal.findXMLDocuments(accountId, pageSize, offset, sortAttribute, sortDir ); + // int line = 0; + // for (DocXML d : rows) { + // line++; + // writer.write( "<tr>" ); + // writer.write( "<td> <a href=\"#\" onclick=\"showPane(containerId(this)+':detail-" + d.getId()+ "')\">"+ d.getId() + "</a> </td>"); + //// writer.write( "<td> " + d.getId() + "</td>"); + // writer.write( "<td> " + d.getBindingContext() + "</td>"); + // writer.write( "<td> " + d.getAuthor().getLdapUID() + "</td>"); + // writer.write( "<td> " + d.getStatus() + "</td>"); + // + // writer.write( "</tr>\n"); + // } + // } if (uri.endsWith("conceptList.ajax")) { String sortAttribute = "cui"; |
From: John C. <jc...@us...> - 2006-10-14 23:08:10
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22257/web/WEB-INF Modified Files: faces-config.xml Log Message: Add list of sponsored users, accessed via account admin page. Index: faces-config.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/faces-config.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** faces-config.xml 14 Oct 2006 20:24:37 -0000 1.20 --- faces-config.xml 14 Oct 2006 23:08:04 -0000 1.21 *************** *** 186,189 **** --- 186,200 ---- User Preferences </description> + <from-view-id>/private/sponsoredUsers.xhtml</from-view-id> + <navigation-case> + <from-action>close</from-action> + <to-view-id>/private/adminAccount.xhtml</to-view-id> + <redirect/> + </navigation-case> + </navigation-rule> + <navigation-rule> + <description> + User Preferences + </description> <from-view-id>/private/userDemog.xhtml</from-view-id> <navigation-case> |
From: John C. <jc...@us...> - 2006-10-14 23:08:10
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22556/src/org/tolven/core Modified Files: AccountDAOLocal.java Added Files: SponsoredUser.java Log Message: Add list of sponsored users, accessed via account admin page. --- NEW FILE: SponsoredUser.java --- package org.tolven.core; import java.util.Date; /** * A simple bean that carried the restricted results of a SponsoredUser query. * this special class prevents any further navigation because this query is gathering information * from outside of the requesting user's account. * * @author John Churin * */ public class SponsoredUser { private String referenceCode; String uid; private Date created; private Date lastLogin; public SponsoredUser( String referenceCode, String uid, Date created, Date lastLogin ) { this.referenceCode = referenceCode; this.uid = uid; this.created = created; this.lastLogin = lastLogin; } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getLastLogin() { return lastLogin; } public void setLastLogin(Date lastLogin) { this.lastLogin = lastLogin; } public String getReferenceCode() { return referenceCode; } public void setReferenceCode(String referenceCode) { this.referenceCode = referenceCode; } public String getUid() { return uid; } public void setUid(String uid) { this.uid = uid; } } Index: AccountDAOLocal.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/AccountDAOLocal.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AccountDAOLocal.java 14 Oct 2006 20:13:35 -0000 1.5 --- AccountDAOLocal.java 14 Oct 2006 23:08:08 -0000 1.6 *************** *** 89,91 **** --- 89,100 ---- */ public Sponsorship createSponsorship( Account account, String title); + + /** + * Return a list of users sponsored users by the specified account. This attributes returned are captive + * in order to avoid cross-account peeping beyond the scope of sponsorship. + * @param account + * @return + */ + public List<SponsoredUser> findSponsoredUsersForAccount( Account account ); + } |
From: John C. <jc...@us...> - 2006-10-14 23:08:09
|
Update of /cvsroot/tolven/tolvenWEB/web/private In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22257/web/private Modified Files: adminAccount.xhtml Added Files: sponsoredUsers.xhtml Log Message: Add list of sponsored users, accessed via account admin page. Index: adminAccount.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/private/adminAccount.xhtml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** adminAccount.xhtml 14 Oct 2006 20:15:51 -0000 1.6 --- adminAccount.xhtml 14 Oct 2006 23:08:04 -0000 1.7 *************** *** 91,95 **** <h:commandButton action="#{reg.addDemoUser}" value="Add"/> </h:panelGrid> ! <h:messages for="uid" errorClass="errorMsg" infoClass="infoMsg" warnClass="warnMsg" fatalClass="fatalMsg"/> <h3>Account sponsorships</h3> <p>Create a sponsorship and hand out the id to allow people to register for an account. People using this reference code will not be added to this account. However, --- 91,95 ---- <h:commandButton action="#{reg.addDemoUser}" value="Add"/> </h:panelGrid> ! <h:messages for="accountAdmin:uid" errorClass="errorMsg" infoClass="infoMsg" warnClass="warnMsg" fatalClass="fatalMsg"/> <h3>Account sponsorships</h3> <p>Create a sponsorship and hand out the id to allow people to register for an account. People using this reference code will not be added to this account. However, *************** *** 113,117 **** <h:commandButton action="#{reg.addSponsorship}" value="Add Sponsorship"/> </h:panelGrid> ! <h:messages for="sponsorTitle" errorClass="errorMsg" infoClass="infoMsg" warnClass="warnMsg" fatalClass="fatalMsg"/> </h:form> --- 113,120 ---- <h:commandButton action="#{reg.addSponsorship}" value="Add Sponsorship"/> </h:panelGrid> ! <h:outputLink value="sponsoredUsers.jsf"> ! <h:outputText value="List of sponsored users"/> ! </h:outputLink> ! <h:messages for="accountAdmin:sponsorTitle" errorClass="errorMsg" infoClass="infoMsg" warnClass="warnMsg" fatalClass="fatalMsg"/> </h:form> --- NEW FILE: sponsoredUsers.xhtml --- <!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" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:c="http://java.sun.com/jstl/core"> <head> <title>User Preferences</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <ui:composition template="../templates/portalTemplate.xhtml"> <ui:param name="skin" value="echr"/> <ui:define name="content"> <h3>List of users sponsored by Account #{reg.account.id} #{reg.account.title}</h3> <h:dataTable value="#{reg.sponsoredUsers}" var="su" styleClass="activity"> <h:column> <f:facet name="header"> <h:outputText value="Reference Code"/> </f:facet> <h:outputText value="#{su.referenceCode}"/> </h:column> <h:column> <f:facet name="header"> <h:outputText value="UID"/> </f:facet> <h:outputText value="#{su.uid}"/> </h:column> <h:column> <f:facet name="header"> <h:outputText value="Created"/> </f:facet> <h:outputText value="#{su.created}"/> </h:column> <h:column> <f:facet name="header"> <h:outputText value="Last Login"/> </f:facet> <h:outputText value="#{su.lastLogin}"/> </h:column> </h:dataTable> <h:form> <h:commandButton action="close" value="Close"/> </h:form> </ui:define> </ui:composition> </body> </html> |
From: John C. <jc...@us...> - 2006-10-14 20:54:03
|
Update of /cvsroot/tolven/tolven/template In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1913/template Modified Files: tolven.template Log Message: Add default (off) for new sponsorship feature. Index: tolven.template =================================================================== RCS file: /cvsroot/tolven/tolven/template/tolven.template,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tolven.template 4 Sep 2006 06:15:41 -0000 1.5 --- tolven.template 14 Oct 2006 20:54:01 -0000 1.6 *************** *** 7,10 **** --- 7,11 ---- tolven.login.create.demoUser=true tolven.login.create.activatedUser=true + tolven.register.referenceRequired=false tolven.mail.from=no...@my... tolven.mail.fromName=My Organization |