Re-include HMS as git-submodule.

portnov [2008-06-19 13:11:01]
Re-include HMS as git-submodule.
Filename
.gitmodules
hms
hms/__init__.py
hms/debug.py
hms/generate.py
hms/hms.py
hms/hooks.py
hms/modules.py
hms/modules/about.py
hms/modules/blocks.py
hms/modules/bug_chart.py
hms/modules/last_comments.py
hms/modules/login.py
hms/modules/menu.py
hms/modules/node.py
hms/test.py
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..476cc6a
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "hms"]
+	path = hms
+	url = ssh://portnov/home/portnov/progs/my/python/hms
diff --git a/hms b/hms
new file mode 160000
index 0000000..2f8e1c2
--- /dev/null
+++ b/hms
@@ -0,0 +1 @@
+Subproject commit 2f8e1c2a58bc8a3164d30dbfdd3844d0298ad96e
diff --git a/hms/__init__.py b/hms/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/hms/debug.py b/hms/debug.py
deleted file mode 100644
index 11c39d1..0000000
--- a/hms/debug.py
+++ /dev/null
@@ -1,9 +0,0 @@
-
-DEBUG = 0
-
-if DEBUG:
-  def debug(s):
-    print "| "+s
-else:
-  def debug(s):
-    pass
diff --git a/hms/generate.py b/hms/generate.py
deleted file mode 100644
index fb45085..0000000
--- a/hms/generate.py
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/python
-
-"""
-Support of generated content.
-You mark some function with @generates('some_type'). It must return an instance of Generated class.
-"""
-
-generated = dict()
-
-def generates(cls):
-  "Mark function that generates content of some class."
-  def decorator(func):
-    global generated
-    name = func.__name__
-    if cls in generated:
-      generated[cls].append(func)
-    else:
-      generated[cls] = [func]
-    return func
-  return decorator
-
-def generate(cls):
-  "Generate all content of given class."
-  r = []
-  for b in generated[cls]:
-    r.append(b())
-  return r
-
-class Generated(object):
-  name = ""
-  description = ""
-  def show(self):
-    return ""
-  def settings(self):
-    return
diff --git a/hms/hms.py b/hms/hms.py
deleted file mode 100644
index 46e4d11..0000000
--- a/hms/hms.py
+++ /dev/null
@@ -1,4 +0,0 @@
-
-import modules
-from hooks import *
-from generate import *
diff --git a/hms/hooks.py b/hms/hooks.py
deleted file mode 100755
index d4bd142..0000000
--- a/hms/hooks.py
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/python
-
-"""
-Each `hook' is actually event. You mark some function with @hook decorator, then call that function when you need it. Other modules can intercept that event, marking function with @intercept('hook_name') decorator. When you call function `hook_name()', all functions, marked with @intercept('hook_name'), will be called.
-"""
-
-from debug import *
-
-hooks = dict()
-
-def call_hooks(hook,*args):
-  "Call all functions, intercepting given hook."
-  global hooks
-  debug("Test <%s> in %s" % (hook,hooks))
-  if hook in hooks:
-    debug("Calling hooks for %s" % hook)
-    r = args
-    for h in hooks[hook]:
-      prev = r
-      debug("Calling %s (%s)" % (h,r))
-      r = h(*r)
-      if not r:
-        return prev
-    return r
-  else:
-    return args
-
-def hook(func):
-  "Mark given function as a hook."
-  global hooks
-  name = func.__name__
-  def wrapper(*args):
-    r = call_hooks(name,*args)
-    if type(r) in [str,unicode]:
-      return func(r)
-    else:
-      return func(*r)
-  wrapper.__name__ = name
-  wrapper.__doc__ = func.__doc__
-  return wrapper
-
-
-def intercept(hook):
-  "Intercept some hook."
-  def decorator(func):
-    global hooks
-    if hook in hooks:
-      hooks[hook].append(func)
-    else:
-      hooks[hook] = [func]
-    debug("Now hooks = %s" % hooks)
-    return func
-  return decorator
-
-if __name__ == "__main__":
-
-  @hook
-  def one(x,y):
-    print "Op One called: (%s,%s)" % (x,y)
-
-  @intercept('one')
-  def i1(x,y):
-    print "Intercepting one."
-    return (x,y+1)
-
-  @intercept('one')
-  def i2(x,y):
-    print "Intercepting one: %s,%s" % (x,y)
-    return x+3,y
-
-
-  print one(2,3)
-  print hooks
diff --git a/hms/modules.py b/hms/modules.py
deleted file mode 100644
index 61e1db7..0000000
--- a/hms/modules.py
+++ /dev/null
@@ -1,59 +0,0 @@
-
-"""
-This module imports all mods from modules/ directory. Each module must be a *.py file of form:
-
-def init():
-  ... Here goes definitions.
-"""
-
-import sys
-import os
-from os.path import dirname,join
-
-from hooks import *
-from generate import *
-
-MODS_DIR = "modules"
-modules = []
-exports = ['export', 'export_as', 'hook', 'intercept',
-           'generates', 'generate', 'Generated']
-
-def export(func):
-  "Mark this function to export."
-  global exports
-  globals()[func.__name__] = func
-  exports.append(func.__name__)
-  return func
-
-def export_as(obj,name):
-  "Export some object"
-  global exports
-  globals()[name] = obj
-  exports.append(name)
-
-@hook
-def module_load(mod):
-  global exports
-  for n in exports:
-    setattr(mod,n,globals()[n])
-  mod.init()
-
-def init():
-  for w,mod in modules:
-    module_load(mod)
-
-for dirpath, dirs, files in os.walk(join(dirname(__file__),MODS_DIR)):
-  for file in files:
-    if file[-3:] == ".py":
-      name = os.path.join(dirpath,file[:-3])
-      try:
-        sys.path.append(os.path.dirname(name))
-        module = __import__(os.path.basename(name),{},{},[''])
-        try:
-          weight = module.weight
-        except AttributeError:
-          weight = 0
-      except ImportError,e:
-        raise ImportError,"Could not import module '%s': %s" % (name,e)
-      modules.append((weight,module))
-modules.sort()
diff --git a/hms/modules/about.py b/hms/modules/about.py
deleted file mode 100644
index 8a0b066..0000000
--- a/hms/modules/about.py
+++ /dev/null
@@ -1,14 +0,0 @@
-
-weight = 1
-
-def init():
-
-  from django.http import HttpResponse
-
-  @intercept('map_url')
-  def about_page(request):
-    if isinstance(request,HttpResponse):
-      return request
-    if request.path == '/about/':
-      return HttpResponse("<h1>This page is about Projects system.</h1>")
-    return request
diff --git a/hms/modules/blocks.py b/hms/modules/blocks.py
deleted file mode 100644
index 910e722..0000000
--- a/hms/modules/blocks.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#encoding: utf-8
-
-weight = -10
-def init():
-
-  block = generates('block')
-  export_as(block,'block')
-
-  class Block(Generated):
-    name = "Block"
-    title = "<none>"
-    content = "<empty>"
-    def show(self):
-      return u"""<div class='block block-%s'>
-      <h3>%s</h3>
-      <div class='content'>
-      %s
-      </div>
-      </div>""" % (self.name,self.title,self.content)
-
-  export_as(Block,'Block')
diff --git a/hms/modules/bug_chart.py b/hms/modules/bug_chart.py
deleted file mode 100755
index 3b245f4..0000000
--- a/hms/modules/bug_chart.py
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/python
-#encoding: utf-8
-
-if __name__ == '__main__':
-  export = lambda f: f
-
-def init():
-  import os.path
-  import math
-  import cairo
-
-  root = "/home/portnov/www/projects/"
-  labels = [u"Неподтвержденые",u"Подтвержденные",u"В работе",u"Исправлены",u"Неактуальны"]
-  colors = [(0.75,0.75,1),
-            (1,0.75,0.75),
-            (1,1,0.75),
-            (0.75,1,0.75),
-            (0.75,0.75,0.75)]
-  width,height = 200,300
-
-  def piechart(data,outfile):
-    surf = cairo.ImageSurface(cairo.FORMAT_ARGB32,width,height)
-    cx = cairo.Context(surf)
-    centerx,centery = width/2, width/2
-    radius = 0.9*min(width,height)/2
-    s = sum(data)
-    if s == 0:
-      surf.write_to_png(outfile)
-      return
-    n = len(data)
-    current_angle = 0
-    i=0
-    cx.select_font_face("DejaVu Sans", cairo.FONT_SLANT_NORMAL, cairo.FONT_WEIGHT_NORMAL)
-    cx.set_font_size(12)
-
-    for d in data:
-      angle = float(d)*math.pi*2.0/float(s)
-      end_angle = current_angle + angle
-      cx.new_path()
-      cx.set_source_rgb(*colors[i])
-      cx.move_to(centerx,centery)
-      cx.arc(centerx,centery,radius,current_angle,end_angle)
-      cx.line_to(centerx,centery)
-      cx.close_path()
-      current_angle = end_angle
-      cx.fill()
-      cx.set_source_rgb(*colors[i])
-      y = height-20*n+20*i
-      cx.rectangle(15,y,15,15)
-      cx.fill()
-      cx.set_source_rgb(0,0,0)
-      cx.move_to(40,y+12)
-      cx.show_text(labels[i])
-      cx.stroke()
-      i += 1
-    surf.write_to_png(outfile)
-
-  def chart_path(data):
-    return "/media/charts/chart_" + "_".join(map(str,data)) + ".png"
-
-  @export
-  def bug_chart(data):
-    path = chart_path(data)
-    if not os.path.exists(root+path):
-      piechart(data,root+path)
-    return "<img src='%s' alt='Bugs chart'/>" % path
-
-  if __name__ == '__main__':
-    piechart([0,0,1,0,0],'chart.png')
-
-if __name__ == '__main__':
-  init()
-
diff --git a/hms/modules/last_comments.py b/hms/modules/last_comments.py
deleted file mode 100644
index a5e1bdc..0000000
--- a/hms/modules/last_comments.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#encoding: utf-8
-
-def init():
-
-  from mgmt.models import Comment
-  import mgmt.utils
-
-  @block
-  def last_comments():
-    def short_comment(comment):
-      return u"<li><a href='%s'>%s</a></li>" % (mgmt.utils.get_comment_url(comment),comment.title)
-    b = Block()
-    b.name='last_comments'
-    b.title = u"Последние комментарии"
-    comments = Comment.objects.order_by('-created')[:10]
-    b.content = "<ul>\n" + "\n".join(map(short_comment,comments)) + "\n</ul>\n"
-    return b
-
-
diff --git a/hms/modules/login.py b/hms/modules/login.py
deleted file mode 100644
index 66d761f..0000000
--- a/hms/modules/login.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#encoding: utf-8
-
-def init():
-
-  @block
-  def login_block():
-    b = Block()
-    b.name = 'login'
-    b.title = u'Вход в систему'
-    b.content = u"""
-    <form action='/login/' method='post'>
-    <p><label for="username">Логин:</label><input type="text" name="username" value="" id="username"/></p>
-    <p><label for="password">Пароль:</label><input type="password" name="password" value="" id="password"/></p>
-    <input type="submit" value="login" />
-    <input type='hidden' name='next' value='/'/>
-    </form>"""
-    return b
diff --git a/hms/modules/menu.py b/hms/modules/menu.py
deleted file mode 100644
index 09fb21c..0000000
--- a/hms/modules/menu.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#encoding: utf-8
-
-def init():
-
-  @export
-  def menu(request):
-    m = []
-    if request.user.is_authenticated():
-      m = settings.MENU_USER
-    else:
-      m = settings.MENU_ANONYMOUS
-    L = ["<a href='%s'>%s</a>" % (l,t) for t,l in m]
-    return L
diff --git a/hms/modules/node.py b/hms/modules/node.py
deleted file mode 100644
index 41531f1..0000000
--- a/hms/modules/node.py
+++ /dev/null
@@ -1,10 +0,0 @@
-
-def init():
-
-  class Node(object):
-    author=""
-    title = ""
-    content = ""
-    fields = {}
-
-  export_as(Node,"Node")
diff --git a/hms/test.py b/hms/test.py
deleted file mode 100755
index d1b31fb..0000000
--- a/hms/test.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-
-import os.path
-
-import modules
-from hooks import *
-from generate import generate
-modules.init()
-
-@hook
-def do_something(s):
-  print "Doing something with",s
-
-
-print "All modules loaded."
-
-for b in generate('block'):
-  print b.show()
ViewGit