summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author(no author) <(no author)@88d0365b-309c-4eec-8061-d8e0c04ad69e>2012-09-27 17:50:52 +0000
committer(no author) <(no author)@88d0365b-309c-4eec-8061-d8e0c04ad69e>2012-09-27 17:50:52 +0000
commit66f9e44e868a7ec381e110d0b3b2797d86f4dc17 (patch)
treefd76b6d32d69783c18ce0ccb576fb717b6147a29
parentadded seperator comments (diff)
renameing of flufig to flufigut finished
git-svn-id: https://svn.spreadspace.org/flufigut/trunk@14 88d0365b-309c-4eec-8061-d8e0c04ad69e
-rw-r--r--LICENSE19
-rw-r--r--README15
-rwxr-xr-xsrc/flufigut.py (renamed from src/flufig.py)19
3 files changed, 28 insertions, 25 deletions
diff --git a/LICENSE b/LICENSE
index 6f66948..dd2a8c2 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,29 +1,30 @@
#
-# flufig
+# flufigut
#
-# flufig is a simple flumotion configuration generator using
-# pyhton jinja2 template engine and simplejson. flufig generates
-# planet.xml and worker.xml files from configuration templates and
-# an easy representation of the flow structure written in json.
+# flufigut, the flumotion configuration utility, is a simple tool
+# that generates flumotion configuration files using pyhton jinja2
+# template engine and simplejson. flufigut generates planet.xml
+# and worker.xml files from configuration templates and an easy to
+# understand representation of the flow structure written in json.
#
#
# Copyright (C) 2012 Christian Pointner <equinox@spreadspace.org>
# Michael Gebetsroither <michael@mgeb.org>
#
-# This file is part of flufig.
+# This file is part of flufigut.
#
-# flufig is free software: you can redistribute it and/or modify
+# flufigut is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# any later version.
#
-# flufig is distributed in the hope that it will be useful,
+# flufigut is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with flufig. If not, see <http://www.gnu.org/licenses/>.
+# along with flufigut. If not, see <http://www.gnu.org/licenses/>.
#
GNU GENERAL PUBLIC LICENSE
diff --git a/README b/README
index ade9bd9..0c83afb 100644
--- a/README
+++ b/README
@@ -1,10 +1,11 @@
Introduction
============
-flufig is a simple flumotion configuration generator using
-pyhton jinja2 template engine and simplejson. flufig generates
-planet.xml and worker.xml files from configuration templates and
-an easy representation of the flow structure written in json.
+flufigut, the flumotion configuration utility, is a simple tool
+that generates flumotion configuration files using pyhton jinja2
+template engine and simplejson. flufigut generates planet.xml
+and worker.xml files from configuration templates and an easy to
+understand representation of the flow structure written in json.
Dependencies
@@ -20,8 +21,8 @@ Installation/Usage
Getting the source via subversion:
----------------------------------
-svn co https://svn.spreadspace.org/flufig/trunk tcpproxy
-cd flufig/src
+svn co https://svn.spreadspace.org/flufigut/trunk flufigut
+cd flufigut/src
Usage
-----
@@ -29,7 +30,7 @@ Usage
Edit templates to your needs, edit data.json containing your
planet structure.
-# flufig.py <name> <data.json>
+# flufigut.py <name> <data.json>
The script expects planet.xml and worker.xml to be present in
the directory ../templates/<name>/ and loads them as templates
diff --git a/src/flufig.py b/src/flufigut.py
index a765bc3..c55b0ff 100755
--- a/src/flufig.py
+++ b/src/flufigut.py
@@ -1,30 +1,31 @@
#!/usr/bin/python
#
-# flufig
+# flufigut
#
-# flufig is a simple flumotion configuration generator using
-# pyhton jinja2 template engine and simplejson. flufig generates
-# planet.xml and worker.xml files from configuration templates and
-# an easy representation of the flow structure written in json.
+# flufigut, the flumotion configuration utility, is a simple tool
+# that generates flumotion configuration files using pyhton jinja2
+# template engine and simplejson. flufigut generates planet.xml
+# and worker.xml files from configuration templates and an easy to
+# understand representation of the flow structure written in json.
#
#
# Copyright (C) 2012 Christian Pointner <equinox@spreadspace.org>
# Michael Gebetsroither <michael@mgeb.org>
#
-# This file is part of flufig.
+# This file is part of flufigut.
#
-# flufig is free software: you can redistribute it and/or modify
+# flufigut is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# any later version.
#
-# flufig is distributed in the hope that it will be useful,
+# flufigut is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with flufig. If not, see <http://www.gnu.org/licenses/>.
+# along with flufigut. If not, see <http://www.gnu.org/licenses/>.
#
import string