You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by go...@apache.org on 2004/11/18 00:08:41 UTC

svn commit: rev 76184 - in perl/modperl/docs/trunk/src/docs: 1.0/guide 2.0/devel 2.0/user

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

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',
+    ],
 
 );

Modified: perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg	(original)
+++ perl/modperl/docs/trunk/src/docs/2.0/devel/config.cfg	Wed Nov 17 15:08:40 2004
@@ -45,5 +45,9 @@
     copy_glob => [qw(
         debug/code
     )],
+   
+    copy_skip => [
+        '\.svn',
+    ],
 
 );

Modified: perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg	(original)
+++ perl/modperl/docs/trunk/src/docs/2.0/user/config.cfg	Wed Nov 17 15:08:40 2004
@@ -62,6 +62,10 @@
         handlers/*.jpg
     )],
 
+    copy_skip => [
+        '\.svn',
+    ],
+
     changes => 'Changes.pod',
 );
 

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-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

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
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!

Re: svn commit: rev 76184 - in perl/modperl/docs/trunk/src/docs: 1.0/guide 2.0/devel 2.0/user

Posted by Stas Bekman <st...@stason.org>.
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

Posted by Stas Bekman <st...@stason.org>.
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