Author: ArcRiley
Date: 2007-07-02 18:21:05 -0400 (Mon, 02 Jul 2007)
New Revision: 325

Modified:
   trunk/soy-blender/soy_export.py
   trunk/soy-blender/soy_import.py
Log:
fixed up docs and metadata


Modified: trunk/soy-blender/soy_export.py
===================================================================
--- trunk/soy-blender/soy_export.py     2007-07-02 21:19:09 UTC (rev 324)
+++ trunk/soy-blender/soy_export.py     2007-07-02 22:21:05 UTC (rev 325)
@@ -1,38 +1,41 @@
 #!BPY
 
 """
-Name: 'Soya3D (.soy)...'
+Name: 'PySoy (.soy)...'
 Blender: 241
 Group: 'Export'
-Tooltip: 'Export to Soya3D File Format (.soy)'
+Tooltip: "Export to PySoy (.soy)"
 """
 import Blender
 from Blender import NMesh, Material
 from struct import pack
 import sys, os, os.path
 
-__author__ = "Palle Raabjerg & Arc Riley"
-__version__ = "0.11"
+__author__ = "Arc Riley & Palle Raabjerg"
+__url__ = ("http://www.pysoy.org/wiki/Blender";)
+__date__ = 'Last change on '+ \
+           '$Date$'[7:-20]+ \
+           'by '+'$Author$'[9:-2]
+__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')'
+__credits__ = '''Copyright (C) 2006,2007 Arc Riley & Palle Raabjerg
+
+    This program 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 3 of the License, or
+    (at your option) any later version.
+
+    This program 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 this program; if not, see http://www.gnu.org/licenses
+'''
 __bpydoc__ = """\
-This script exports Soya3D .soy files from Blender.  It supports [...]
+This script exports PySoy (.soy) files from Blender.  It supports [...]
 """
 
-# Copyright (C) 2006,2007 Palle Raabjerg & Arc Riley
-#
-# This program 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 3 of the License, or
-# (at your option) any later version.
-#
-# This program 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 this program; if not, see http://www.gnu.org/licenses
-#
-# $Id $ 
 
 # -------------------------------------------------------------------------- #
 # These classes only concern the .soy format, ie, universal to any modeler.  #


Property changes on: trunk/soy-blender/soy_export.py
___________________________________________________________________
Name: svn:keywords
   - Id
   + Author Date Rev

Modified: trunk/soy-blender/soy_import.py
===================================================================
--- trunk/soy-blender/soy_import.py     2007-07-02 21:19:09 UTC (rev 324)
+++ trunk/soy-blender/soy_import.py     2007-07-02 22:21:05 UTC (rev 325)
@@ -4,36 +4,38 @@
 Name: 'Soya3D (.soy)...'
 Blender: 241
 Group: 'Import'
-Tooltip: 'Import from Soya3D File Format (.soy)'
+Tooltip: 'Import PySoy files (.soy)'
 """
 import Blender
 from Blender import NMesh
 from struct import unpack, calcsize
 import sys, os, os.path
 
-__author__ = "Palle Raabjerg & Arc Riley"
-__version__ = "0.11"
+__author__ = "Arc Riley & Palle Raabjerg"
+__url__ = ("http://www.pysoy.org/wiki/Blender";)
+__date__ = 'Last change on '+ \
+           '$Date$'[7:-20]+ \
+           'by '+'$Author$'[9:-2]
+__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')'
+__credits__ = '''Copyright (C) 2006,2007 Arc Riley & Palle Raabjerg
+
+    This program 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 3 of the License, or
+    (at your option) any later version.
+
+    This program 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 this program; if not, see http://www.gnu.org/licenses
+'''
 __bpydoc__ = """\
-This script imports Soya3D .soy files to Blender.  It supports [...]
+This script imports PySoy (.soy) files to Blender.  It supports [...]
 """
 
-# Copyright (C) 2006,2007 Palle Raabjerg & Arc Riley
-#
-# This program 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 3 of the License, or
-# (at your option) any later version.
-#
-# This program 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 this program; if not, see http://www.gnu.org/licenses
-#
-# $Id $
-
 # -------------------------------------------------------------------------- #
 # These classes only concern the .soy format, ie, universal to any modeler.  #
 # -------------------------------------------------------------------------- #


Property changes on: trunk/soy-blender/soy_import.py
___________________________________________________________________
Name: svn:keywords
   - Id
   + Author Date Rev

_______________________________________________
PySoy-SVN mailing list
[email protected]
http://www.pysoy.org/mailman/listinfo/pysoy-svn

Reply via email to