ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapper/SiteMapper.hpp
(Generate patch)

Comparing SiteMapper/SiteMapper.hpp (file contents):
Revision 138 by Douglas Thrift, 2004-03-25T15:52:54-08:00 vs.
Revision 299 by douglas, 2004-12-12T16:39:07-08:00

# Line 7 | Line 7
7   #ifndef _SiteMapper_hpp_
8   #define _SiteMapper_hpp_
9  
10 < #include <iostream>
11 < #include <fstream>
12 < #include <string>
13 < #include <sstream>
14 < #include <vector>
15 < #include <set>
10 > #ifdef MENES_PRAGMA_ONCE
11 > #pragma once
12 > #endif
13 >
14 > #ifdef _WIN32
15 > #pragma warning(disable:4267)
16 > #endif
17 >
18 > #include <menes/platform.hpp>
19 > #include <menes-api/console.hpp>
20 > #include <menes-api/files.hpp>
21 > #include <menes-ios/string.hpp>
22 > #include <menes-xml/document.hpp>
23 > #include <menes-xml/nodeset.hpp>
24 > #include <menes-xml/parse.hpp>
25 > #include <menes-xml/textwriter.hpp>
26  
27 < using namespace std;
27 > #include <string>
28 > #include <map>
29  
30 < extern string program;
30 > extern ext::String program;
31   extern bool debug;
32  
33   #include "Page.hpp"
34  
24 #include <xalanc/Include/PlatformDefinitions.hpp>
25 #include <xercesc/util/PlatformUtils.hpp>
26 #include <xercesc/framework/LocalFileInputSource.hpp>
27 #include <xalanc/XPath/XObject.hpp>
28 #include <xalanc/XPath/XPathEvaluator.hpp>
29 #include <xalanc/XPath/NodeRefList.hpp>
30 #include <xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp>
31 #include <xalanc/XalanSourceTree/XalanSourceTreeDOMSupport.hpp>
32 #include <xalanc/XalanSourceTree/XalanSourceTreeInit.hpp>
33 #include <xalanc/XalanSourceTree/XalanSourceTreeParserLiaison.hpp>
34
35 XALAN_USING_XERCES(XMLPlatformUtils)
36 XALAN_USING_XERCES(LocalFileInputSource)
37 XALAN_USING_XALAN(XObjectPtr)
38 XALAN_USING_XALAN(XPath)
39 XALAN_USING_XALAN(XPathEvaluator)
40 XALAN_USING_XALAN(NodeRefList)
41 XALAN_USING_XALAN(XalanDocument)
42 XALAN_USING_XALAN(XalanDocumentPrefixResolver)
43 XALAN_USING_XALAN(XalanDOMString)
44 XALAN_USING_XALAN(XalanNode)
45 XALAN_USING_XALAN(XalanSourceTreeInit)
46 XALAN_USING_XALAN(XalanSourceTreeDOMSupport)
47 XALAN_USING_XALAN(XalanSourceTreeParserLiaison)
48
35   class SiteMapper
36   {
37   private:
38 <        vector<Page> pages;
39 <        set<Page> newPages;
40 <        XalanSourceTreeInit init;
41 <        XalanSourceTreeDOMSupport support;
42 <        XalanSourceTreeParserLiaison liaison;
43 <        XPathEvaluator evaluator;
44 <        XPath* item;
45 <        XPath* address;
46 <        XPath* link;
61 <        XPath* list;
62 <        XPath* path;
63 <        XPath* port;
64 <        XPath* title;
65 <        void oldMap(const string& siteMap);
66 <        void oldMap(vector<Page>& pages, XalanNode* list);
67 <        void index(const string& siteIndex);
68 <        void newMap(const string& siteMap);
38 >        ext::String comment;
39 >        ext::Vector<Page> pages;
40 >        std::map<std::string, std::multimap<std::string, Page> > newPages;
41 >        void oldMap(const ext::String& siteMap);
42 >        void oldMap(ext::Vector<Page>& pages, xml::Node* list);
43 >        void newIndex(const ext::String& siteIndex);
44 >        bool newIndex(ext::Vector<Page>& pages, Page& page);
45 >        void newMap(const ext::String& siteMap);
46 >        void newMap(ext::Vector<Page>& pages, const ext::String& childOf, std::multimap<std::string, Page>& newPages);
47   public:
48 <        SiteMapper(const string& siteIndex, const string& siteMap);
48 >        SiteMapper(const ext::String& siteIndex, const ext::String& siteMap);
49          ~SiteMapper() {}
50   };
51  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines