Mailing List Archive

Re: svn commit: rev 76184 - in perl/modperl/docs/trunk/src/docs: 1.0/guide 2.0/devel 2.0/user
gozer@apache.org wrote:
> Author: gozer
> Date: Wed Nov 17 15:08:40 2004
> New Revision: 76184
>
> Modified:
> perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg
> perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg
> perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg
> Log:
> need to skip .svn directory in a few more places

why did you need to do that? The top level config is inherited by all
sub-dirs. May be the top-level pattern is wrong? That doesn't sound right.

> Modified: perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg
> ==============================================================================
> --- perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg (original)
> +++ perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg Wed Nov 17 15:08:40 2004
> @@ -48,5 +48,8 @@
> code
> )],
>
> + copy_skip => [
> + '\.svn',
> + ],

--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: svn commit: rev 76184 - in perl/modperl/docs/trunk/src/docs: 1.0/guide 2.0/devel 2.0/user [ In reply to ]
Stas Bekman wrote:
> gozer@apache.org wrote:
>
>> Author: gozer
>> Date: Wed Nov 17 15:08:40 2004
>> New Revision: 76184
>>
>> Modified:
>> perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg
>> perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg
>> perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg
>> Log:
>> need to skip .svn directory in a few more places
>
>
> why did you need to do that? The top level config is inherited by all
> sub-dirs. May be the top-level pattern is wrong? That doesn't sound right.

OK, I've assumed that it was inherited, but it wasn't. Now it is, so those
are no longer needed in the sub-trees and thus removed.

>> Modified: perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg
>> ==============================================================================
>>
>> --- perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg (original)
>> +++ perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg Wed Nov
>> 17 15:08:40 2004
>> @@ -48,5 +48,8 @@
>> code
>> )],
>>
>> + copy_skip => [
>> + '\.svn',
>> + ],
>
>


--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: svn commit: rev 76184 - in perl/modperl/docs/trunk/src/docs: 1.0/guide 2.0/devel 2.0/user [ In reply to ]
Stas Bekman wrote:

> Stas Bekman wrote:
>
>> gozer@apache.org wrote:
>>
>>> Author: gozer
>>> Date: Wed Nov 17 15:08:40 2004
>>> New Revision: 76184
>>>
>>> Modified:
>>> perl/modperl/docs/trunk/src/docs/1.0/guide/config.cfg
>>> perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg
>>> perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg
>>> Log:
>>> need to skip .svn directory in a few more places
>>
>>
>>
>> why did you need to do that? The top level config is inherited by all
>> sub-dirs. May be the top-level pattern is wrong? That doesn't sound
>> right.
>
>
> OK, I've assumed that it was inherited, but it wasn't. Now it is, so
> those are no longer needed in the sub-trees and thus removed.

Hehe, it's allright, I made more or less the same assumption and just
couldn't figure out why it wasn't in that particular case. That's
why I took out the duct-tape and patched the sub-level config.cfg files.
I was hoping you'd come in with a nicer fix. So thanks!