I think Krupa was confusing viewcvs.cgi errors with a lack of access. The Apache ViewCVS interface (which works with Subversion) is not working right now but it's not working for everybody.
http://svn.apache.org/viewcvs?view=rev&rev=125442 "The Apache Software Foundation ViewCVS Subversion interface is currently down while we investigate a problem with ViewCVS. Sorry for any inconvenience. Thanks, The Apache Software Foundation" > -----Original Message----- > From: Craig McClanahan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 18, 2005 11:06 AM > To: Struts Developers List > Subject: Re: access? > > On Tue, 18 Jan 2005 11:23:37 +0000, Krupa Vyaghra <[EMAIL PROTECTED]> > wrote: > > Dear Craig, > > > > Is it possible for a non contributer to have access to the CVS? I am a > > silent participent of this list for my keen interest in Struts and its > > future direction. For all the links that I get, I cannot see the > > contents. > > I avoided posting this message and wrote this mail because I didn't > > want to flood many inboxes with a question that does not need attention > > of all people. > > > > Everyone can have *anonymous* access to the source code (i.e. you can > check it out, but you cannot commit anything unless you are a > committer). However, to get access to the Struts sources, you'll need > to use a Subversion (SVN) client (http://subversion.tigris.org), since > we recently moved from CVS to SVN. The command to check out all the > current source is something like this (if you use the command line > client): > > mkdir struts > cd struts > svn co http://svn.apache.org/repos/asf/struts/current > > There are also nightly packages of the source code: > > http://struts.apache.org/builds/struts/nigthly/src/ > > The ZIP or TAR.GZ files found there are snapshots of checking out the > current repository as described above. > > Craig > > > Any response will be appreciated. Apologies for any inconveniences. > > > > Regards, > > Krupa. > > > > On 17 Jan 2005, at 20:33, [EMAIL PROTECTED] wrote: > > > > > Author: craigmcc > > > Date: Mon Jan 17 12:33:38 2005 > > > New Revision: 125442 > > > > > > URL: http://svn.apache.org/viewcvs?view=rev&rev=125442 > > > Log: > > > Clean up build process to work with the MyFaces 1.0.8 milestone > > > release, > > > which will work if you put the following in your "build.properties" > > > file: > > > > > > jsf.home=/usr/local/myfaces-1.0.8 <-- Or wherever you installed > it > > > jsf-api.jar=${jsf.home}/lib/myfaces-jsf-api.jar > > > jsf-impl.jar=${jsf.home}/lib/myfaces-impl.jar > > > > > > Also, add forgotten immediate properties on the cancel buttons in the > > > logon dialog. > > > > > > > > > Modified: > > > struts/sandbox/trunk/struts-shale-usecases/build.xml > > > struts/sandbox/trunk/struts-shale-usecases/src/web/WEB-INF/web.xml > > > > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile1.jsp > > > > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile2.jsp > > > > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile3.jsp > > > > > > Modified: struts/sandbox/trunk/struts-shale-usecases/build.xml > > > Url: > > > http://svn.apache.org/viewcvs/struts/sandbox/trunk/struts-shale- > > > usecases/build.xml?view=diff&rev=125442&p1=struts/sandbox/trunk/ > > > struts-shale-usecases/build.xml&r1=125441&p2=struts/sandbox/trunk/ > > > struts-shale-usecases/build.xml&r2=125442 > > > > ======================================================================= > > > ======= > > > --- struts/sandbox/trunk/struts-shale-usecases/build.xml > (original) > > > +++ struts/sandbox/trunk/struts-shale-usecases/build.xml Mon Jan > 17 > > > 12:33:38 2005 > > > @@ -67,7 +67,7 @@ > > > classname="com.sun.faces.RIConstants" > > > classpath="${jsf-impl.jar}"/> > > > <available property="myfaces.present" > > > - > > > classname="net.sourceforge.myfaces.config.MyfacesConfig" > > > + > > > classname="org.apache.myfaces.config.MyfacesConfig" > > > classpath="${jsf-impl.jar}"/> > > > > > > <!-- Build Defaults --> > > > @@ -138,7 +138,6 @@ > > > <echo message="commons-chain.jar =${commons-chain.jar}"/> > > > <echo message="jsf-api.jar = ${jsf-api.jar}"/> > > > <echo message="jsf-impl.jar = ${jsf-impl.jar}"/> > > > - <echo message="mailreader.jar = ${mailreader.jar}"/> > > > <echo message="shale.jar = ${shale.jar}"/> > > > <echo message="jsfri.present = ${jsfri.present}"/> > > > <echo message="myfaces.present= ${myfaces.present}"/> > > > @@ -228,11 +227,19 @@ > > > <target name="libraries.myfaces" depends="libraries" > > > if="myfaces.present"> > > > > > > - <!-- Copy additional libraries required by MyFaces implementation > > > --> > > > + <!-- Copy additional libraries required by MyFaces (version > > > 1.0.8) --> > > > <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > file="${jsf.home}/lib/commons-codec-1.2.jar"/> > > > <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > file="${jsf.home}/lib/commons-el.jar"/> > > > + <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > + file="${jsf.home}/lib/commons-fileupload-1.0.jar"/> > > > + <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > + file="${jsf.home}/lib/commons-validator.jar"/> > > > + <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > + file="${jsf.home}/lib/jakarta-oro.jar"/> > > > + <copy todir="${build.home}/${context.path}/WEB-INF/lib" > > > + file="${jsf.home}/lib/myfaces-extensions.jar"/> > > > > > > </target> > > > > > > > > > Modified: > > > struts/sandbox/trunk/struts-shale-usecases/src/web/WEB-INF/web.xml > > > Url: > > > http://svn.apache.org/viewcvs/struts/sandbox/trunk/struts-shale- > > > usecases/src/web/WEB-INF/web.xml?view=diff&rev=125442&p1=struts/ > > > sandbox/trunk/struts-shale-usecases/src/web/WEB-INF/ > > > web.xml&r1=125441&p2=struts/sandbox/trunk/struts-shale-usecases/src/ > > > web/WEB-INF/web.xml&r2=125442 > > > > ======================================================================= > > > ======= > > > --- > > > struts/sandbox/trunk/struts-shale-usecases/src/web/WEB-INF/web.xml > > > (original) > > > +++ > > > struts/sandbox/trunk/struts-shale-usecases/src/web/WEB-INF/web.xml > Mon > > > Jan 17 12:33:38 2005 > > > @@ -62,7 +62,7 @@ > > > MYFACES_BEGIN > > > <listener> > > > <listener-class> > > > - net.sourceforge.myfaces.webapp.StartupServletContextListener > > > + org.apache.myfaces.webapp.StartupServletContextListener > > > </listener-class> > > > </listener> > > > MYFACES_END > > > > > > Modified: > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile1.jsp > > > Url: > > > http://svn.apache.org/viewcvs/struts/sandbox/trunk/struts-shale- > > > usecases/src/web/logon/profile1.jsp?view=diff&rev=125442&p1=struts/ > > > sandbox/trunk/struts-shale-usecases/src/web/logon/ > > > profile1.jsp&r1=125441&p2=struts/sandbox/trunk/struts-shale-usecases/ > > > src/web/logon/profile1.jsp&r2=125442 > > > > ======================================================================= > > > ======= > > > --- > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile1.jsp > > > (original) > > > +++ > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile1.jsp > > > Mon Jan 17 12:33:38 2005 > > > @@ -93,6 +93,7 @@ > > > value="#{messages['label.finish']}"/> > > > <h:commandButton id="cancel" > > > action="#{logon$profile1.cancel}" > > > + immediate="true" > > > value="#{messages['label.cancel']}"/> > > > </h:panelGroup> > > > > > > > > > Modified: > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile2.jsp > > > Url: > > > http://svn.apache.org/viewcvs/struts/sandbox/trunk/struts-shale- > > > usecases/src/web/logon/profile2.jsp?view=diff&rev=125442&p1=struts/ > > > sandbox/trunk/struts-shale-usecases/src/web/logon/ > > > profile2.jsp&r1=125441&p2=struts/sandbox/trunk/struts-shale-usecases/ > > > src/web/logon/profile2.jsp&r2=125442 > > > > ======================================================================= > > > ======= > > > --- > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile2.jsp > > > (original) > > > +++ > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile2.jsp > > > Mon Jan 17 12:33:38 2005 > > > @@ -80,6 +80,7 @@ > > > value="#{messages['label.finish']}"/> > > > <h:commandButton id="cancel" > > > action="#{logon$profile2.cancel}" > > > + immediate="true" > > > value="#{messages['label.cancel']}"/> > > > </h:panelGroup> > > > > > > > > > Modified: > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile3.jsp > > > Url: > > > http://svn.apache.org/viewcvs/struts/sandbox/trunk/struts-shale- > > > usecases/src/web/logon/profile3.jsp?view=diff&rev=125442&p1=struts/ > > > sandbox/trunk/struts-shale-usecases/src/web/logon/ > > > profile3.jsp&r1=125441&p2=struts/sandbox/trunk/struts-shale-usecases/ > > > src/web/logon/profile3.jsp&r2=125442 > > > > ======================================================================= > > > ======= > > > --- > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile3.jsp > > > (original) > > > +++ > > > struts/sandbox/trunk/struts-shale-usecases/src/web/logon/profile3.jsp > > > Mon Jan 17 12:33:38 2005 > > > @@ -72,6 +72,7 @@ > > > value="#{messages['label.finish']}"/> > > > <h:commandButton id="cancel" > > > action="#{logon$profile3.cancel}" > > > + immediate="true" > > > value="#{messages['label.cancel']}"/> > > > </h:panelGroup> > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
