commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue common/doc/Developers-Guide.sxw common/src...


From: Jason Cater
Subject: gnue common/doc/Developers-Guide.sxw common/src...
Date: Sun, 17 Nov 2002 20:17:24 -0500

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    02/11/17 20:17:24

Modified files:
        common/doc     : Developers-Guide.sxw 
        common/src     : __init__.py 
        common/utils   : doc-xml-attrs-openoffice.py 
        designer/src   : __init__.py 
        forms          : MANIFEST.in setup.py 
        forms/doc      : Developers-Guide.sxw 
        forms/src      : __init__.py 
        navigator/src  : __init__.py 
        reports/src    : __init__.py 

Log message:
        doc/version changes in prep for a release

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/common/doc/Developers-Guide.sxw.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/common/src/__init__.py.diff?cvsroot=OldCVS&tr1=1.20&tr2=1.21&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/common/utils/doc-xml-attrs-openoffice.py.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/designer/src/__init__.py.diff?cvsroot=OldCVS&tr1=1.16&tr2=1.17&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/MANIFEST.in.diff?cvsroot=OldCVS&tr1=1.16&tr2=1.17&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/setup.py.diff?cvsroot=OldCVS&tr1=1.73&tr2=1.74&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/doc/Developers-Guide.sxw.diff?cvsroot=OldCVS&tr1=1.16&tr2=1.17&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/src/__init__.py.diff?cvsroot=OldCVS&tr1=1.12&tr2=1.13&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/navigator/src/__init__.py.diff?cvsroot=OldCVS&tr1=1.7&tr2=1.8&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/reports/src/__init__.py.diff?cvsroot=OldCVS&tr1=1.10&tr2=1.11&r1=text&r2=text

Patches:
Index: gnue/common/doc/Developers-Guide.sxw
Index: gnue/common/src/__init__.py
diff -c gnue/common/src/__init__.py:1.20 gnue/common/src/__init__.py:1.21
*** gnue/common/src/__init__.py:1.20    Tue Nov 12 19:39:05 2002
--- gnue/common/src/__init__.py Sun Nov 17 20:17:23 2002
***************
*** 18,34 ****
  #
  # Copyright 2001-2002 Free Software Foundation
  #
- # FILE:
- # gnue.common.__init__
- #
- # DESCRIPTION:
- #
- # NOTES:
- #
- # HISTORY:
- #
- #
  
  # CREATING A RELEASE:
  #   1. Change _version to be the current version number
  #   2. Set _release to 1
--- 18,27 ----
  #
  # Copyright 2001-2002 Free Software Foundation
  #
  
+ 
+ 
+ #
  # CREATING A RELEASE:
  #   1. Change _version to be the current version number
  #   2. Set _release to 1
***************
*** 39,45 ****
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 0
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
--- 32,38 ----
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 1
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
***************
*** 63,65 ****
--- 56,59 ----
  __version__ = VERSION
  __hexversion__ = HEXVERSION
  
+ PACKAGE="GNUe Common"
Index: gnue/common/utils/doc-xml-attrs-openoffice.py
diff -c gnue/common/utils/doc-xml-attrs-openoffice.py:1.3 
gnue/common/utils/doc-xml-attrs-openoffice.py:1.4
*** gnue/common/utils/doc-xml-attrs-openoffice.py:1.3   Sun Nov 17 17:53:27 2002
--- gnue/common/utils/doc-xml-attrs-openoffice.py       Sun Nov 17 20:17:23 2002
***************
*** 97,102 ****
--- 97,105 ----
        if xmlElements[element].has_key('ParentTags') and \
           xmlElements[element]['ParentTags'] != None:
          for parent in xmlElements[element]['ParentTags']:
+ #          if element[:6] == 'import' and element not in self.importSections:
+ #            self.importSections.append(element)
+ #            print "Adding %s" % element
            if not self.parentMappings.has_key(parent):
              self.parentMappings[parent] = {}
            self.parentMappings[parent][element] = 0
***************
*** 109,116 ****
--- 112,122 ----
  
      for element in self.parentMappings[topLevelElement].keys():
        if element[:6] == 'import':
+ #        print "YES: %s" % element
          self.importSections.append(element)
+         pass
        else:
+ #        print "NO: %s" % element
          self.topSections[element] = []
  
  
Index: gnue/designer/src/__init__.py
diff -c gnue/designer/src/__init__.py:1.16 gnue/designer/src/__init__.py:1.17
*** gnue/designer/src/__init__.py:1.16  Tue Nov 12 19:39:05 2002
--- gnue/designer/src/__init__.py       Sun Nov 17 20:17:23 2002
***************
*** 16,25 ****
  # write to the Free Software Foundation, Inc., 59 Temple Place
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # Copyright 2001 Free Software Foundation
  #
  
  
  #
  # CREATING A RELEASE:
  #   1. Change _version to be the current version number
--- 16,26 ----
  # write to the Free Software Foundation, Inc., 59 Temple Place
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # Copyright 2001-2002 Free Software Foundation
  #
  
  
+ 
  #
  # CREATING A RELEASE:
  #   1. Change _version to be the current version number
***************
*** 31,37 ****
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 0
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
--- 32,38 ----
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 1
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
Index: gnue/forms/MANIFEST.in
diff -c gnue/forms/MANIFEST.in:1.16 gnue/forms/MANIFEST.in:1.17
*** gnue/forms/MANIFEST.in:1.16 Wed Oct 23 20:26:08 2002
--- gnue/forms/MANIFEST.in      Sun Nov 17 20:17:23 2002
***************
*** 11,15 ****
  include setup.cfg.in
  include scripts/gnue-forms.in
  recursive-include samples *
! recursive-include doc *.txt *.pdf
  include man/*.1
--- 11,15 ----
  include setup.cfg.in
  include scripts/gnue-forms.in
  recursive-include samples *
! recursive-include doc *.txt *.pdf *.html
  include man/*.1
Index: gnue/forms/doc/Developers-Guide.sxw
Index: gnue/forms/setup.py
diff -c gnue/forms/setup.py:1.73 gnue/forms/setup.py:1.74
*** gnue/forms/setup.py:1.73    Sat Oct  5 03:16:48 2002
--- gnue/forms/setup.py Sun Nov 17 20:17:23 2002
***************
*** 57,74 ****
  
  
  if 'sdist' in sys.argv:
!   print """
! We are going to create the docs needed for the
! source distro.  You'll need lyx installed.
! """
!   raw_input ("Press Control-D to abort or any other key to continue")
!   os.system ("""
! cd doc
! lyx --export text techref.lyx
! lyx --export pdf techref.lyx
! lyx --export text user_guide.lyx
! lyx --export pdf user_guide.lyx
! """)
  
  
    print "Now, we are going to create the man pages for our tools."
--- 57,75 ----
  
  
  if 'sdist' in sys.argv:
! 
! ##  print """
! ##We are going to create the docs needed for the
! ##source distro.  You'll need lyx installed.
! ##"""
! ##  raw_input ("Press Control-D to abort or any other key to continue")
! ##  os.system ("""
! ##cd doc
! ##lyx --export text techref.lyx
! ##lyx --export pdf techref.lyx
! ##lyx --export text user_guide.lyx
! ##lyx --export pdf user_guide.lyx
! ##""")
  
  
    print "Now, we are going to create the man pages for our tools."
***************
*** 241,247 ****
        print "OK"
  
  docfiles = []
! for file in ('doc/techref.pdf','doc/techref.txt',
       'doc/user_guide.txt','doc/user_guide.pdf'):
    if os.path.isfile(file):
      docfiles.append(file)
--- 242,249 ----
        print "OK"
  
  docfiles = []
! for file in ('doc/Developers-Guide.pdf','doc/Developers-Guide.txt',
!      'doc/Developers-Guide.html',
       'doc/user_guide.txt','doc/user_guide.pdf'):
    if os.path.isfile(file):
      docfiles.append(file)
Index: gnue/forms/src/__init__.py
diff -c gnue/forms/src/__init__.py:1.12 gnue/forms/src/__init__.py:1.13
*** gnue/forms/src/__init__.py:1.12     Tue Nov 12 19:39:05 2002
--- gnue/forms/src/__init__.py  Sun Nov 17 20:17:23 2002
***************
*** 32,38 ****
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 0
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
--- 32,38 ----
  #   5. Commit to CVS
  
  _version = (0,4,1)
! _release = 1
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
Index: gnue/navigator/src/__init__.py
diff -c gnue/navigator/src/__init__.py:1.7 gnue/navigator/src/__init__.py:1.8
*** gnue/navigator/src/__init__.py:1.7  Tue Nov 12 19:39:06 2002
--- gnue/navigator/src/__init__.py      Sun Nov 17 20:17:24 2002
***************
*** 31,37 ****
  #   5. Commit to CVS
  
  _version = (0,0,2)
! _release = 0
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
--- 31,37 ----
  #   5. Commit to CVS
  
  _version = (0,0,2)
! _release = 1
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
Index: gnue/reports/src/__init__.py
diff -c gnue/reports/src/__init__.py:1.10 gnue/reports/src/__init__.py:1.11
*** gnue/reports/src/__init__.py:1.10   Tue Nov 12 19:39:06 2002
--- gnue/reports/src/__init__.py        Sun Nov 17 20:17:24 2002
***************
*** 11,23 ****
  # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  # PURPOSE. See the GNU General Public License for more details.
  #
- # Copyright 2000-2002 Free Software Foundation
- #
  # You should have received a copy of the GNU General Public
  # License along with program; see the file COPYING. If not,
  # write to the Free Software Foundation, Inc., 59 Temple Place
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
  
  
  #
--- 11,23 ----
  # 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 program; see the file COPYING. If not,
  # write to the Free Software Foundation, Inc., 59 Temple Place
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
+ # Copyright 2000-2002 Free Software Foundation
+ #
  
  
  #
***************
*** 31,37 ****
  #   5. Commit to CVS
  
  _version = (0,1,0)
! _release = 0
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:
--- 31,37 ----
  #   5. Commit to CVS
  
  _version = (0,1,0)
! _release = 1
  
  # Version will be of the form "1.1.2" if a release or "1.1.1.99" if in CVS
  if _release:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]