Added:
trunk/template/
trunk/template/bash (contents, props changed)
trunk/template/python (contents, props changed)
Log:
Really add templates
Added: trunk/template/bash
==============================================================================
--- (empty file)
+++ trunk/template/bash Wed Dec 3 03:35:21 2008
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+# GPL
+
+# Author: Yu Fei <yufei...@gmail.com>
+
+# Description.
+
+# Code
+
Added: trunk/template/python
==============================================================================
--- (empty file)
+++ trunk/template/python Wed Dec 3 03:35:21 2008
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+# GPL
+
+"""One-line documentation for module.
+
+A detailed description of module.
+"""
+
+__author__ = 'Yu Fei <yufei...@gmail.com>'
+
+# Import
+
+
+# Code
+
+
+def main(argv):
+ pass
+
+
+if __name__ == '__main__':
+ main()
+