You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Krupa Vyaghra <ha...@mac.com> on 2005/01/18 12:23:37 UTC

access?

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.

Any response will be appreciated. Apologies for any inconveniences.

Regards,
Krupa.


On 17 Jan 2005, at 20:33, craigmcc@apache.org 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: dev-unsubscribe@struts.apache.org
> For additional commands, e-mail: dev-help@struts.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org


Re: access?

Posted by Joe Germuska <Jo...@Germuska.com>.
At 11:23 AM +0000 1/18/05, Krupa Vyaghra 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.

Struts has switched to using Subversion (SVN) instead of CVS, but the 
SVN repository continues to be publicly available for read-only 
access.

Please see http://struts.apache.org/acquiring.html#SourceCode

CVS users will find SVN pretty easy to absorb, although there are a 
few differences.  In general (to me) it definitely feels like an 
improvement.  The best reference on SVN is 
http://svnbook.red-bean.com/en/1.1/index.html  Eclipse users may want 
to install the "subclipse" plugin.

Joe

-- 
Joe Germuska            
Joe@Germuska.com  
http://blog.germuska.com    
"Narrow minds are weapons made for mass destruction"  -The Ex

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org


Re: access?

Posted by Craig McClanahan <cr...@gmail.com>.
On Tue, 18 Jan 2005 11:23:37 +0000, Krupa Vyaghra <ha...@mac.com> 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, craigmcc@apache.org 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: dev-unsubscribe@struts.apache.org
> > For additional commands, e-mail: dev-help@struts.apache.org
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
> For additional commands, e-mail: dev-help@struts.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org