comparison upmana/mercurial/ignore.py @ 28:ff154cf3350c ornery-orc

Traipse 'OpenRPG' {100203-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Stable) New Features: New Bookmarks Feature New 'boot' command to remote admin New confirmation window for sent nodes Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG New Zoom Mouse plugin added New Images added to Plugin UI Switching to Element Tree New Map efficiency, from FlexiRPG New Status Bar to Update Manager New TrueDebug Class in orpg_log (See documentation for usage) New Portable Mercurial New Tip of the Day, from Core and community New Reference Syntax added for custom PC sheets New Child Reference for gametree New Parent Reference for gametree New Gametree Recursion method, mapping, context sensitivity, and effeciency.. New Features node with bonus nodes and Node Referencing help added New Dieroller structure from Core New DieRoller portability for odd Dice New 7th Sea die roller; ie [7k3] = [7d10.takeHighest(3).open(10)] New 'Mythos' System die roller added New vs. die roller method for WoD; ie [3v3] = [3d10.vs(3)]. Included for Mythos roller also New Warhammer FRPG Die Roller (Special thanks to Puu-san for the support) New EZ_Tree Reference system. Push a button, Traipse the tree, get a reference (Beta!) New Grids act more like Spreadsheets in Use mode, with Auto Calc Fixes: Fix to allow for portability to an OpenSUSE linux OS Fix to mplay_client for Fedora and OpenSUSE Fix to Text based Server Fix to Remote Admin Commands Fix to Pretty Print, from Core Fix to Splitter Nodes not being created Fix to massive amounts of images loading, from Core Fix to Map from gametree not showing to all clients Fix to gametree about menus Fix to Password Manager check on startup Fix to PC Sheets from tool nodes. They now use the tabber_panel Fix to Whiteboard ID to prevent random line or text deleting. Fixes to Server, Remote Server, and Server GUI Fix to Update Manager; cleaner clode for saved repositories Fixes made to Settings Panel and now reactive settings when Ok is pressed Fixes to Alternity roller's attack roll. Uses a simple Tuple instead of a Splice Fix to Use panel of Forms and Tabbers. Now longer enters design mode Fix made Image Fetching. New fetching image and new failed image Fix to whiteboard ID's to prevent non updated clients from ruining the fix. default_manifest.xml renamed to default_upmana.xml
author sirebral
date Wed, 03 Feb 2010 22:16:49 -0600
parents
children
comparison
equal deleted inserted replaced
27:51428d30c59e 28:ff154cf3350c
1 # ignore.py - ignored file handling for mercurial
2 #
3 # Copyright 2007 Matt Mackall <mpm@selenic.com>
4 #
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2, incorporated herein by reference.
7
8 from i18n import _
9 import util, match
10 import re
11
12 _commentre = None
13
14 def _parselines(fp):
15 for line in fp:
16 if "#" in line:
17 global _commentre
18 if not _commentre:
19 _commentre = re.compile(r'((^|[^\\])(\\\\)*)#.*')
20 # remove comments prefixed by an even number of escapes
21 line = _commentre.sub(r'\1', line)
22 # fixup properly escaped comments that survived the above
23 line = line.replace("\\#", "#")
24 line = line.rstrip()
25 if line:
26 yield line
27
28 def ignore(root, files, warn):
29 '''return the contents of .hgignore files as a list of patterns.
30
31 the files parsed for patterns include:
32 .hgignore in the repository root
33 any additional files specified in the [ui] section of ~/.hgrc
34
35 trailing white space is dropped.
36 the escape character is backslash.
37 comments start with #.
38 empty lines are skipped.
39
40 lines can be of the following formats:
41
42 syntax: regexp # defaults following lines to non-rooted regexps
43 syntax: glob # defaults following lines to non-rooted globs
44 re:pattern # non-rooted regular expression
45 glob:pattern # non-rooted glob
46 pattern # pattern of the current default type'''
47
48 syntaxes = {'re': 'relre:', 'regexp': 'relre:', 'glob': 'relglob:'}
49 pats = {}
50 for f in files:
51 try:
52 pats[f] = []
53 fp = open(f)
54 syntax = 'relre:'
55 for line in _parselines(fp):
56 if line.startswith('syntax:'):
57 s = line[7:].strip()
58 try:
59 syntax = syntaxes[s]
60 except KeyError:
61 warn(_("%s: ignoring invalid syntax '%s'\n") % (f, s))
62 continue
63 pat = syntax + line
64 for s, rels in syntaxes.iteritems():
65 if line.startswith(rels):
66 pat = line
67 break
68 elif line.startswith(s+':'):
69 pat = rels + line[len(s)+1:]
70 break
71 pats[f].append(pat)
72 except IOError, inst:
73 if f != files[0]:
74 warn(_("skipping unreadable ignore file '%s': %s\n") %
75 (f, inst.strerror))
76
77 allpats = []
78 [allpats.extend(patlist) for patlist in pats.values()]
79 if not allpats:
80 return util.never
81
82 try:
83 ignorefunc = match.match(root, '', [], allpats)
84 except util.Abort:
85 # Re-raise an exception where the src is the right file
86 for f, patlist in pats.iteritems():
87 try:
88 match.match(root, '', [], patlist)
89 except util.Abort, inst:
90 raise util.Abort('%s: %s' % (f, inst[0]))
91
92 return ignorefunc