[Synopsis-changes] Synopsis/Synopsis/Synopsis/Formatters/HTML ASTFormatter.py,1.32,1.33 CommentFormatter.py,1.20,1.21 DirBrowse.py,1.7,1.8 FileDetails.py,1.2,1.3 FileIndexer.py,1.2,1.3 FileLayout.py,1.21,1.22 FileListing.py,1.1,1.2 FileSource.py,1.3,1.4 FileTreeJS.py,1.7,1.8 FormatStrategy.py,1.30,1.31 Formatter.py,1.1,1.2 InheritanceGraph.py,1.24,1.25 InheritanceTree.py,1.10,1.11 ModuleIndexer.py,1.13,1.14 ModuleListing.py,1.11,1.12 ModuleListingJS.py,1.9,1.10 NameIndex.py,1.10,1.11 Page.py,1.17,1.18 RawFilePages.py,1.5,1.6 ScopePages.py,1.19,1.20 ScopeSorter.py,1.8,1.9 TreeFormatterJS.py,1.3,1.4 XRefPages.py,1.9,1.10 core.py,1.47,1.48 doxygen.py,1.5,1.6
Stefan Seefeld stefan at synopsis.fresco.orgTue Nov 11 06:01:15 UTC 2003
- Previous message: [Synopsis-changes] Synopsis/Synopsis/Synopsis/dist/command build_doc.py,1.4,1.5 config.py,1.5,1.6
- Next message: [Synopsis-changes] Synopsis/Synopsis/Synopsis/Parsers/Cxx Parser.py,1.3,1.4 __init__.py,1.9,1.10 emul.py,1.8,1.9
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML
In directory frida:/tmp/cvs-serv11169/Synopsis/Formatters/HTML
Modified Files:
ASTFormatter.py CommentFormatter.py DirBrowse.py
FileDetails.py FileIndexer.py FileLayout.py FileListing.py
FileSource.py FileTreeJS.py FormatStrategy.py Formatter.py
InheritanceGraph.py InheritanceTree.py ModuleIndexer.py
ModuleListing.py ModuleListingJS.py NameIndex.py Page.py
RawFilePages.py ScopePages.py ScopeSorter.py
TreeFormatterJS.py XRefPages.py core.py doxygen.py
Log Message:
adjust to directory/package layout changes
Index: ASTFormatter.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ASTFormatter.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -p -d -r1.32 -r1.33
--- ASTFormatter.py 20 Jan 2003 06:43:02 -0000 1.32
+++ ASTFormatter.py 11 Nov 2003 06:01:13 -0000 1.33
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.33 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.32 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -134,7 +137,7 @@ and are defined in the FormatStrategy mo
import types, os
# Synopsis modules
-from Synopsis.Core import AST, Type, Util
+from Synopsis import AST, Type, Util
# HTML modules
import Tags, core, FormatStrategy
@@ -174,7 +177,7 @@ class Part(Type.Visitor, AST.Visitor):
def _init_formatters(self, config_option, type_msg):
"""Loads strategies from config file"""
- base = 'Synopsis.Formatter.HTML.FormatStrategy.'
+ base = 'Synopsis.Formatters.HTML.FormatStrategy.'
try:
config_obj = getattr(config.obj.ScopePages, config_option)
if type(config_obj) not in (types.ListType, types.TupleType):
Index: CommentFormatter.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/CommentFormatter.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -p -d -r1.20 -r1.21
--- CommentFormatter.py 20 Jan 2003 06:43:02 -0000 1.20
+++ CommentFormatter.py 11 Nov 2003 06:01:13 -0000 1.21
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.21 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.20 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -87,7 +90,7 @@
import re, string
# Synopsis modules
-from Synopsis.Core import AST, Type, Util
+from Synopsis import AST, Type, Util
# HTML modules
import core
Index: DirBrowse.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/DirBrowse.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -d -r1.7 -r1.8
--- DirBrowse.py 8 Nov 2003 19:49:54 -0000 1.7
+++ DirBrowse.py 11 Nov 2003 06:01:13 -0000 1.8
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.8 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.7 2003/11/08 19:49:54 stefan
# replace statcache.stat by os.stat
#
@@ -47,7 +50,7 @@
import os, stat, os.path, string, time
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import Page
Index: FileDetails.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileDetails.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -d -r1.2 -r1.3
--- FileDetails.py 16 Jan 2003 13:31:33 -0000 1.2
+++ FileDetails.py 11 Nov 2003 06:01:13 -0000 1.3
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.3 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.2 2003/01/16 13:31:33 chalky
# Quote the scope name
#
@@ -47,7 +50,7 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import Page
Index: FileIndexer.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileIndexer.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -d -r1.2 -r1.3
--- FileIndexer.py 20 Jan 2003 06:43:02 -0000 1.2
+++ FileIndexer.py 11 Nov 2003 06:01:13 -0000 1.3
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.3 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.2 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -48,7 +51,7 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import Page
Index: FileLayout.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileLayout.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -d -r1.21 -r1.22
--- FileLayout.py 16 Jan 2003 12:46:46 -0000 1.21
+++ FileLayout.py 11 Nov 2003 06:01:13 -0000 1.22
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.22 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.21 2003/01/16 12:46:46 chalky
# Renamed FilePages to FileSource, FileTree to FileListing. Added FileIndexer
# (used to be part of FileTree) and FileDetails.
@@ -92,8 +95,8 @@ default implementation stores everything
import os, sys, stat, string, re
# Synopsis modules
-from Synopsis.Core import Util, AST
-from Synopsis.Formatter import TOC
+from Synopsis import Util, AST
+from Synopsis.Formatters import TOC
# HTML modules
import core
Index: FileListing.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileListing.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -d -r1.1 -r1.2
--- FileListing.py 16 Jan 2003 12:46:46 -0000 1.1
+++ FileListing.py 11 Nov 2003 06:01:13 -0000 1.2
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.2 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.1 2003/01/16 12:46:46 chalky
# Renamed FilePages to FileSource, FileTree to FileListing. Added FileIndexer
# (used to be part of FileTree) and FileDetails.
@@ -44,8 +47,8 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
-from Synopsis.Core.FileTree import FileTree
+from Synopsis import AST, Util
+from Synopsis.FileTree import FileTree
# HTML modules
import Page
Index: FileSource.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileSource.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -d -r1.3 -r1.4
--- FileSource.py 11 Nov 2003 04:54:22 -0000 1.3
+++ FileSource.py 11 Nov 2003 06:01:13 -0000 1.4
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.4 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.3 2003/11/11 04:54:22 stefan
# the C++ parser is now spelled Parser.Cxx...
#
@@ -69,7 +72,7 @@
import time, os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import Page
@@ -81,7 +84,7 @@ from Tags import *
# Link module
link = None
try:
- link = Util._import("Synopsis.Parser.Cxx.link")
+ link = Util._import("Synopsis.Parsers.Cxx.link")
except ImportError:
print "Warning: unable to import link module. Continuing..."
Index: FileTreeJS.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FileTreeJS.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -d -r1.7 -r1.8
--- FileTreeJS.py 2 Nov 2002 06:37:37 -0000 1.7
+++ FileTreeJS.py 11 Nov 2003 06:01:13 -0000 1.8
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.8 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.7 2002/11/02 06:37:37 chalky
# Allow non-frames output, some refactoring of page layout, new modules.
#
@@ -59,7 +62,7 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import JSTree
Index: FormatStrategy.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/FormatStrategy.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -p -d -r1.30 -r1.31
--- FormatStrategy.py 20 Jan 2003 06:43:02 -0000 1.30
+++ FormatStrategy.py 11 Nov 2003 06:01:13 -0000 1.31
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.31 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.30 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -136,7 +139,7 @@ comments.
import types, os, string
# Synopsis modules
-from Synopsis.Core import AST, Type, Util
+from Synopsis import AST, Type, Util
# HTML modules
import Tags, core
@@ -568,12 +571,12 @@ class ClassHierarchySimple (Strategy):
class ClassHierarchyGraph (ClassHierarchySimple):
"""Prints a graphical hierarchy for classes, using the Dot formatter.
- @see Formatter.Dot
+ @see Formatters.Dot
"""
def formatClass(self, clas):
try:
import tempfile
- from Synopsis.Formatter import Dot
+ from Synopsis.Formatters import Dot
except:
print "HierarchyGraph: Dot not found"
return ""
Index: Formatter.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/Formatter.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -d -r1.1 -r1.2
--- Formatter.py 11 Nov 2003 04:53:41 -0000 1.1
+++ Formatter.py 11 Nov 2003 06:01:13 -0000 1.2
@@ -7,7 +7,7 @@
#
from Synopsis.Processor import Processor, Parameter
-from Synopsis.Core import AST
+from Synopsis import AST
from FramesIndex import *
from ScopePages import *
from ModuleListing import *
@@ -37,7 +37,7 @@ class ConfigHTML:
datadir = '/usr/local' + '/share/synopsis'
stylesheet = 'style.css'
stylesheet_file = datadir + '/html.css'
- file_layout = 'Synopsis.Formatter.HTML.FileLayout.FileLayout'
+ file_layout = 'Synopsis.Formatters.HTML.FileLayout.FileLayout'
pages = ['FramesIndex',
'ScopePages',
'ModuleListing',
Index: InheritanceGraph.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/InheritanceGraph.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -p -d -r1.24 -r1.25
--- InheritanceGraph.py 1 Feb 2003 05:35:45 -0000 1.24
+++ InheritanceGraph.py 11 Nov 2003 06:01:13 -0000 1.25
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.25 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.24 2003/02/01 05:35:45 chalky
# Remove warning
#
@@ -111,7 +114,7 @@
import os
-from Synopsis.Core import AST, Type, Util
+from Synopsis import AST, Type, Util
import core, Page
from core import config
@@ -223,7 +226,7 @@ class InheritanceGraph(Page.Page):
self.write(entity('h1', "Inheritance Graph"))
try:
- from Synopsis.Formatter import Dot
+ from Synopsis.Formatters import Dot
except:
print "InheritanceGraph: Can't load the Dot formatter"
self.end_file()
Index: InheritanceTree.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/InheritanceTree.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -d -r1.10 -r1.11
--- InheritanceTree.py 4 Jul 2002 06:43:18 -0000 1.10
+++ InheritanceTree.py 11 Nov 2003 06:01:13 -0000 1.11
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.11 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.10 2002/07/04 06:43:18 chalky
# Improved support for absolute references - pages known their full path.
#
@@ -56,7 +59,7 @@
#
import os
-from Synopsis.Core import Util
+from Synopsis import Util
import core, Page
from core import config
Index: ModuleIndexer.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ModuleIndexer.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -d -r1.13 -r1.14
--- ModuleIndexer.py 2 Nov 2002 06:37:37 -0000 1.13
+++ ModuleIndexer.py 11 Nov 2003 06:01:13 -0000 1.14
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.14 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.13 2002/11/02 06:37:37 chalky
# Allow non-frames output, some refactoring of page layout, new modules.
#
@@ -66,7 +69,7 @@
#
import os
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
import core, Page
from core import config
Index: ModuleListing.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ModuleListing.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -d -r1.11 -r1.12
--- ModuleListing.py 2 Nov 2002 06:37:37 -0000 1.11
+++ ModuleListing.py 11 Nov 2003 06:01:13 -0000 1.12
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.12 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.11 2002/11/02 06:37:37 chalky
# Allow non-frames output, some refactoring of page layout, new modules.
#
@@ -80,7 +83,7 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import core
Index: ModuleListingJS.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ModuleListingJS.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -d -r1.9 -r1.10
--- ModuleListingJS.py 5 Jul 2001 05:39:58 -0000 1.9
+++ ModuleListingJS.py 11 Nov 2003 06:01:13 -0000 1.10
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.10 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.9 2001/07/05 05:39:58 stefan
# advanced a lot in the refactoring of the HTML module.
# Page now is a truely polymorphic (abstract) class. Some derived classes
@@ -62,7 +65,7 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# HTML modules
import core
Index: NameIndex.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/NameIndex.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -d -r1.10 -r1.11
--- NameIndex.py 1 Nov 2002 07:21:15 -0000 1.10
+++ NameIndex.py 11 Nov 2003 06:01:13 -0000 1.11
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.11 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.10 2002/11/01 07:21:15 chalky
# More HTML formatting fixes eg: ampersands and stuff
#
@@ -60,8 +63,8 @@
#
import os
-from Synopsis.Core import AST, Type
-from Synopsis.Formatter.HTML import core, Tags, Page
+from Synopsis import AST, Type
+from Synopsis.Formatters.HTML import core, Tags, Page
from Tags import *
from core import config
Index: Page.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/Page.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -d -r1.17 -r1.18
--- Page.py 21 Oct 2003 20:53:30 -0000 1.17
+++ Page.py 11 Nov 2003 06:01:13 -0000 1.18
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.18 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.17 2003/10/21 20:53:30 stefan
# reenable logging of page instance to aid debugging
#
@@ -80,7 +83,7 @@ Page base class, contains base functiona
"""
import os.path, cStringIO
-from Synopsis.Core import Util
+from Synopsis import Util
import core
from core import config
@@ -253,7 +256,7 @@ class Page:
self.__os = None
format_class = PageFormat
if config.page_format:
- format_class = Util.import_object(config.page_format, basePackage = 'Synopsis.Formatter.HTML.Page.')
+ format_class = Util.import_object(config.page_format, basePackage = 'Synopsis.Formatters.HTML.Page.')
self.__format = format_class()
def filename(self):
Index: RawFilePages.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/RawFilePages.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -d -r1.5 -r1.6
--- RawFilePages.py 8 Nov 2003 19:49:54 -0000 1.5
+++ RawFilePages.py 11 Nov 2003 06:01:13 -0000 1.6
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.6 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.5 2003/11/08 19:49:54 stefan
# replace statcache.stat by os.stat
#
@@ -41,7 +44,7 @@
import time, os, stat, os.path, string
# Synopsis modules
-from Synopsis.Core import AST, Util
+from Synopsis import AST, Util
# Formatter modules
from Synopsis.Formatter import TOC
Index: ScopePages.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ScopePages.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -p -d -r1.19 -r1.20
--- ScopePages.py 7 Oct 2003 14:06:16 -0000 1.19
+++ ScopePages.py 11 Nov 2003 06:01:13 -0000 1.20
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.20 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.19 2003/10/07 14:06:16 stefan
# refer to the new site
#
@@ -86,10 +89,10 @@
import time, os
# Synopsis modules
-from Synopsis.Core import AST
+from Synopsis import AST
# Formatter modules
-from Synopsis.Formatter import TOC
+from Synopsis.Formatters import TOC
# HTML modules
import Page
@@ -105,7 +108,7 @@ class ScopePages (Page.Page):
ASTFormatter to do the actual formatting. The classes to use may be
controlled via the config script, resulting in a very configurable output.
@see ASTFormatter The ASTFormatter module
- @see Config.Formatter.HTML.ScopePages Config for ScopePages
+ @see Config.Formatters.HTML.ScopePages Config for ScopePages
"""
def __init__(self, manager):
Page.Page.__init__(self, manager)
@@ -124,7 +127,7 @@ class ScopePages (Page.Page):
parts = config.obj.ScopePages.parts
except AttributeError:
parts = ['Heading', 'Summary', 'Detail']
- base = 'Synopsis.Formatter.HTML.ASTFormatter.'
+ base = 'Synopsis.Formatters.HTML.ASTFormatter.'
for part in parts:
obj = core.import_object(part, basePackage=base)(self)
self.__parts.append(obj)
Index: ScopeSorter.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/ScopeSorter.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -d -r1.8 -r1.9
--- ScopeSorter.py 28 Oct 2002 06:12:31 -0000 1.8
+++ ScopeSorter.py 11 Nov 2003 06:01:13 -0000 1.9
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.9 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.8 2002/10/28 06:12:31 chalky
# Add structs_as_classes option
#
@@ -53,7 +56,7 @@ This module contains the class for sorti
import string
# Synopsis modules
-from Synopsis.Core import AST
+from Synopsis import AST
# HTML modules
import core
Index: TreeFormatterJS.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/TreeFormatterJS.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -d -r1.3 -r1.4
--- TreeFormatterJS.py 26 Jun 2001 04:32:16 -0000 1.3
+++ TreeFormatterJS.py 11 Nov 2003 06:01:13 -0000 1.4
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.4 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.3 2001/06/26 04:32:16 stefan
# A whole slew of changes mostly to fix the HTML formatter's output generation,
# i.e. to make the output more robust towards changes in the layout of files.
@@ -45,7 +48,7 @@
import os
-from Synopsis.Core import AST
+from Synopsis import AST
import Page
from core import config
from Tags import *
Index: XRefPages.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/XRefPages.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -d -r1.9 -r1.10
--- XRefPages.py 9 Dec 2002 04:00:59 -0000 1.9
+++ XRefPages.py 11 Nov 2003 06:01:13 -0000 1.10
@@ -19,6 +19,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.10 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.9 2002/12/09 04:00:59 chalky
# Added multiple file support to parsers, changed AST datastructure to handle
# new information, added a demo to demo/C++. AST Declarations now have a
@@ -53,10 +56,10 @@
import os
# Synopsis modules
-from Synopsis.Core import AST, Type, Util
+from Synopsis import AST, Type, Util
# Formatter modules
-from Synopsis.Formatter import TOC
+from Synopsis.Formatters import TOC
# HTML modules
import Page
Index: core.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/core.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -p -d -r1.47 -r1.48
--- core.py 20 Jan 2003 06:43:02 -0000 1.47
+++ core.py 11 Nov 2003 06:01:13 -0000 1.48
@@ -19,6 +19,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.48 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.47 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -215,12 +218,12 @@ import sys, getopt, os, os.path, string,
# Synopsis modules
from Synopsis.Config import Base
-from Synopsis.Core import AST, Type, Util
-from Synopsis.Core.FileTree import FileTree
-from Synopsis.Formatter import TOC, ClassTree, xref
-from Synopsis.Formatter.HTML import TreeFormatter
+from Synopsis import AST, Type, Util
+from Synopsis.FileTree import FileTree
+from Synopsis.Formatters import TOC, ClassTree, xref
+from Synopsis.Formatters.HTML import TreeFormatter
-from Synopsis.Core.Util import import_object
+from Synopsis.Util import import_object
verbose=0
@@ -321,7 +324,7 @@ class Config:
def _config_comment_formatters(self, comment_formatters):
if self.verbose > 1: print "Using comment formatters:", comment_formatters
- basePackage = 'Synopsis.Formatter.HTML.CommentFormatter.'
+ basePackage = 'Synopsis.Formatters.HTML.CommentFormatter.'
for formatter in comment_formatters:
if type(formatter) == types.StringType:
if CommentFormatter.commentFormatters.has_key(formatter):
@@ -348,7 +351,7 @@ class Config:
def _config_tree_formatter(self, tree_class):
if self.verbose > 1: print "Using tree class",tree_class
- clas = import_object(tree_class, basePackage='Synopsis.Formatter.HTML.')
+ clas = import_object(tree_class, basePackage='Synopsis.Formatters.HTML.')
self.treeFormatterClass = clas
def _config_file_layout(self, layout):
@@ -601,7 +604,7 @@ class PageManager:
strings means load the module from the first string, and look for an
attribute using the second string."""
defaultAttr = 'htmlPageClass'
- basePackage = 'Synopsis.Formatter.HTML.'
+ basePackage = 'Synopsis.Formatters.HTML.'
for page in list(config.pages):
obj = self.addPage(import_object(page, defaultAttr, basePackage))
self.__page_objects[page] = obj
Index: doxygen.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Formatters/HTML/doxygen.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -d -r1.5 -r1.6
--- doxygen.py 20 Jan 2003 06:43:02 -0000 1.5
+++ doxygen.py 11 Nov 2003 06:01:13 -0000 1.6
@@ -20,6 +20,9 @@
# 02111-1307, USA.
#
# $Log$
+# Revision 1.6 2003/11/11 06:01:13 stefan
+# adjust to directory/package layout changes
+#
# Revision 1.5 2003/01/20 06:43:02 chalky
# Refactored comment processing. Added AST.CommentTag. Linker now determines
# comment summary and extracts tags. Increased AST version number.
@@ -42,11 +45,11 @@
import string
-from Synopsis.Core import AST
-from Synopsis.Formatter.HTML import ScopeSorter, core
-from Synopsis.Formatter.HTML.core import config
-from Synopsis.Formatter.HTML.Tags import *
-from Synopsis.Formatter.HTML import ASTFormatter, FormatStrategy
+from Synopsis import AST
+from Synopsis.Formatters.HTML import ScopeSorter, core
+from Synopsis.Formatters.HTML.core import config
+from Synopsis.Formatters.HTML.Tags import *
+from Synopsis.Formatters.HTML import ASTFormatter, FormatStrategy
class DOScopeSorter (ScopeSorter.ScopeSorter):
- Previous message: [Synopsis-changes] Synopsis/Synopsis/Synopsis/dist/command build_doc.py,1.4,1.5 config.py,1.5,1.6
- Next message: [Synopsis-changes] Synopsis/Synopsis/Synopsis/Parsers/Cxx Parser.py,1.3,1.4 __init__.py,1.9,1.10 emul.py,1.8,1.9
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Synopsis-changes mailing list