[web2py] Re: Why admin|examples|welcome in hgignore?

2012-02-19 Thread pbreit
Ah, ok, thanks everyone, that makes sense. I guess I was confused because it seems like my welcome app never updates.

[web2py] Re: Why admin|examples|welcome in hgignore?

2012-02-17 Thread Ross Peoples
I'm not great with regular expressions, but I think it's saying ignore everything in the applications folder EXCEPT admin, examples, welcome, and __init__. I think that's what the '?!' means.

Re: [web2py] Re: Why admin|examples|welcome in hgignore?

2012-02-17 Thread Bruce Wade
startswith ^ applications/(is like?!(admin or examples or welcome or __init__)). endswith anything after the . On Fri, Feb 17, 2012 at 4:56 AM, Ross Peoples ross.peop...@gmail.comwrote: I'm not great with regular expressions, but I think it's saying ignore everything in the applications folder

[web2py] Re: Why admin|examples|welcome in hgignore?

2012-02-17 Thread Wikus van de Merwe
The intention is not to track changes in user made applications (different than the default ones). ?! is the negative lookahead operator, so the first part of the expression will match applications/ only if it is not followed with any of the strings in the brackets. The the second part (.*)