summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.5-sdk/frontend/framework/tool/modules/svninfo.py
blob: 9e7025d0bdbaffaeefcc810e16a436d9a4b0d31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
################################################################################
#
#  qooxdoo - the new era of web development
#
#  http://qooxdoo.org
#
#  Copyright:
#    2006-2007 1&1 Internet AG, Germany, http://www.1and1.org
#
#  License:
#    LGPL: http://www.gnu.org/licenses/lgpl.html
#    EPL: http://www.eclipse.org/org/documents/epl-v10.php
#    See the LICENSE file in the project's top-level directory for details.
#
#  Authors:
#    * Sebastian Werner (wpbasti)
#
################################################################################

import os, sys, re, optparse
import filetool



DIRINFO = re.compile("dir\n([0-9]+)\nhttps://.*/svnroot/qooxdoo/(\w+)/(\w+)/", re.M | re.S)



def query(path):
  if os.path.exists(path):
    entries = os.path.join(path, ".svn", "entries")

    if os.path.exists(entries):
      content = filetool.read(entries)

      mtch = DIRINFO.search(content)
      if mtch:
        folder = mtch.group(2)
        if folder in [ "tags", "branches" ]:
          folder = mtch.group(3)

        revision = mtch.group(1)

        return revision, folder

  return None, None



def format(revision, folder):
  return "(r%s) [%s]" % (revision, folder)



if __name__ == '__main__':
  try:
    parser = optparse.OptionParser()

    (options, args) = parser.parse_args()

    revision, folder = query(args[0])
    if revision != None:
      print format(revision, folder)


  except KeyboardInterrupt:
    print
    print "  * Keyboard Interrupt"
    sys.exit(1)