From 8c9872ca2e2d867236f4f5c3e0160bec499bf144 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Fri, 5 Jul 2002 18:17:10 +0000 Subject: [PATCH] trying to fix 87235 about discarded white spaces in the HTML parser. this * HTMLparser.c: trying to fix 87235 about discarded white spaces in the HTML parser. * result/HTML/*: this changes the output of a number of HTML regression tests Daniel --- ChangeLog | 7 + HTMLparser.c | 42 ++++-- result/HTML/cf_128.html | 4 +- result/HTML/doc2.htm | 5 +- result/HTML/doc3.htm | 242 ++++++++++++++++++++------------- result/HTML/fp40.htm | 91 +++++++++++-- result/HTML/test2.html | 11 +- result/HTML/test3.html | 25 ++-- result/HTML/wired.html | 291 +++++++++++++++++++++++++++++----------- 9 files changed, 507 insertions(+), 211 deletions(-) diff --git a/ChangeLog b/ChangeLog index f5d21b20..bb09dd0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard + + * HTMLparser.c: trying to fix 87235 about discarded white + spaces in the HTML parser. + * result/HTML/*: this changes the output of a number of HTML + regression tests + Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard * xpath.c: applied patch from Richard Jinks for the namespace diff --git a/HTMLparser.c b/HTMLparser.c index 4a24d687..27207cdd 100644 --- a/HTMLparser.c +++ b/HTMLparser.c @@ -1739,6 +1739,20 @@ htmlNewInputStream(htmlParserCtxtPtr ctxt) { * Commodity functions, cleanup needed ? * * * ************************************************************************/ +/* + * all tags allowing pc data from the html 4.01 loose dtd + * NOTE: it might be more apropriate to integrate this information + * into the html40ElementTable array but I don't want to risk any + * binary incomptibility + */ +static const char *allowPCData[] = { + "a", "abbr", "acronym", "address", "applet", "b", "bdo", "big", + "blockquote", "body", "button", "caption", "center", "cite", "code", + "dd", "del", "dfn", "div", "dt", "em", "font", "form", "h1", "h2", + "h3", "h4", "h5", "h6", "i", "iframe", "ins", "kbd", "label", "legend", + "li", "noframes", "noscript", "object", "p", "pre", "q", "s", "samp", + "small", "span", "strike", "strong", "td", "th", "tt", "u", "var" +}; /** * areBlanks: @@ -1752,11 +1766,12 @@ htmlNewInputStream(htmlParserCtxtPtr ctxt) { */ static int areBlanks(htmlParserCtxtPtr ctxt, const xmlChar *str, int len) { - int i; + unsigned int i; + int j; xmlNodePtr lastChild; - for (i = 0;i < len;i++) - if (!(IS_BLANK(str[i]))) return(0); + for (j = 0;j < len;j++) + if (!(IS_BLANK(str[j]))) return(0); if (CUR == 0) return(1); if (CUR != '<') return(0); @@ -1773,14 +1788,23 @@ static int areBlanks(htmlParserCtxtPtr ctxt, const xmlChar *str, int len) { if (lastChild == NULL) { if ((ctxt->node->type != XML_ELEMENT_NODE) && (ctxt->node->content != NULL)) return(0); + /* keep ws in constructs like ... ... + for all tags "b" allowing PCDATA */ + for ( i = 0; i < sizeof(allowPCData)/sizeof(allowPCData[0]); i++ ) { + if ( xmlStrEqual(ctxt->name, BAD_CAST allowPCData[i]) ) { + return(0); + } + } } else if (xmlNodeIsText(lastChild)) { return(0); - } else if (xmlStrEqual(lastChild->name, BAD_CAST"b")) { - return(0); - } else if (xmlStrEqual(lastChild->name, BAD_CAST"bold")) { - return(0); - } else if (xmlStrEqual(lastChild->name, BAD_CAST"em")) { - return(0); + } else { + /* keep ws in constructs like

xy z

+ for all tags "p" allowing PCDATA */ + for ( i = 0; i < sizeof(allowPCData)/sizeof(allowPCData[0]); i++ ) { + if ( xmlStrEqual(lastChild->name, BAD_CAST allowPCData[i]) ) { + return(0); + } + } } return(1); } diff --git a/result/HTML/cf_128.html b/result/HTML/cf_128.html index 9e82e1e7..7e5119b3 100644 --- a/result/HTML/cf_128.html +++ b/result/HTML/cf_128.html @@ -8,6 +8,6 @@

-Foo3 - + Foo3 + diff --git a/result/HTML/doc2.htm b/result/HTML/doc2.htm index 0c929ec6..04466950 100644 --- a/result/HTML/doc2.htm +++ b/result/HTML/doc2.htm @@ -18,6 +18,9 @@ -<body bgcolor="#FFFFFF" text="#000000" link="#000080" vlink="#000080" alink="#000080" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><p>This page uses frames, but your browser doesn't support them.</p></body> + + + <body bgcolor="#FFFFFF" text="#000000" link="#000080" vlink="#000080" alink="#000080" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><p>This page uses frames, but your browser doesn't support them.</p></body> + diff --git a/result/HTML/doc3.htm b/result/HTML/doc3.htm index 4a039777..b823aea0 100644 --- a/result/HTML/doc3.htm +++ b/result/HTML/doc3.htm @@ -33,61 +33,97 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, -

-

+

+

+
- - + - -
-
+
+

-Monday, July 31st, 2000 -

+ + +
-

+

+

+Monday, July 31st, 2000

+
+
+
+

+

-
- - - - - - - -

-Abit BP6 Motherboard specification and information.
BP6 Specs -

-How to cool the BX Chipset on your BP6.
BX Cooling -

-The U;timate Gaming Contest - Coming Soon!
UGM Contest -

-Cooling & Heatsink review for the BP6.
Heatsinks -

-BP6 101 - Class is now in session. Welcome newbies!
BP6 101 -

-Install guide for installing Windows 2000 on the BP6
Win2k Install -

-Taking a first look at the Abit Linux release called
Gentus -

+
+ + + + + + + + +
+

+Abit BP6 Motherboard specification and information.
BP6 Specs +

+
+

+How to cool the BX Chipset on your BP6.
BX Cooling +

+
+

+The U;timate Gaming Contest - Coming Soon!
UGM Contest +

+
+

+Cooling & Heatsink review for the BP6.
Heatsinks +

+
+

+BP6 101 - Class is now in session. Welcome newbies!
BP6 101 +

+
+

+Install guide for installing Windows 2000 on the BP6
Win2k Install +

+
+

+Taking a first look at the Abit Linux release called
Gentus +

+
+
-
+
-
- +
-
REVIEWS

BP6 Reviews
BP6 Watercooling
BX Chipset Cooling
Benchmarks
BP6FSB Utility
PowerLeap NEO S370
SETI on the BP6
Golden Orbs I
Golden Orbs II
VTT Solution

NAVIGATE
News
Online Text Chat
Voice Chat
Messageboard
Temp. Converter
Picture Gallery
Latest BIOS
Drivers & Files
UGM of the week
BP6 Contest

OTHER STUFF
Who is Tim?
Contact BP6.com
Affiliates Section
Sponsors Section
Links

PC SPECIALS
Vendor +
+
+
REVIEWS

BP6 Reviews
BP6 Watercooling
BX Chipset Cooling
Benchmarks
BP6FSB Utility
PowerLeap NEO S370
SETI on the BP6
Golden Orbs I
Golden Orbs II
VTT Solution

NAVIGATE +
News
Online Text Chat
Voice Chat
Messageboard
Temp. Converter
Picture Gallery
Latest BIOS
Drivers & Files
UGM of the week
BP6 Contest

OTHER STUFF + +
Who is Tim?
Contact BP6.com
Affiliates Section
Sponsors Section
Links

PC SPECIALS +
Vendor Specials


Pic of the day
-

No picture is available for today.

+
+

No picture is available for today.

+


-
-
-

-
-
+
+

+
+

+

+
+
+ +

Headlines
Chat with ABIT - 8:09PM PDT
Fixed wallpaper - 11:47PM PDT
Seti @@ -99,24 +135,26 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, CaSe!! - 1:40PM PDT
What the heck is a Peltier?!?! - 10:05AM PDT
HELLO EVERYONE!!! - 10:03PM PDT
BP6 - Q3 server up and running.. - 2:06AM PDT

Sunday, + Q3 server up and running.. - 2:06AM PDT

+
Sunday, July 30, 2000

Chat with ABIT
Posted by Holodeck2 @ 8:09PM PDT  0 comments -  | top
I’m slacking a little. All game no +  | top
I’m slacking a little. All game no work makes Holodeck2 a happy boy :-)

Wallpaper update: I got off my lazy ass and redid the 1280x1024 wall paper, now it has the 2 celerons.

Fullon3d had a live chat with that Eric guy from Abit. Submitted by: MJS

Here’s a little clip:
[Falcon] BP6-2??
[EricBoeing] We already have a micro ATX dual flip-chip board
[EricBoeing] but it's OEM only
[EricBoeing] the full ATX - version should be out Septemberish


Thursday, + version should be out Septemberish


+
Thursday, July 27, 2000

Fixed wallpaper
Posted by Holodeck2 @ 11:47PM PDT  5 comments -  | top
Get them now!!
This is a +  | top

Get them now!!
This is a fixed bp6 wallpaper. In all the popular flavors, err... resolutions.

It's still the Intels Inside one with a spelling change; from "Mothboard" to "Motherboard"

Thanks to Matt for @@ -132,7 +170,7 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, work on the Brand Spanking New Wallpaper.



Seti update
Posted by Holodeck2 @ 10:40PM PDT  5 comments -  | top

You like the +  | top


You like the pic?

Bp6 User Group Update:
Completed 61531 units!!
#168 on Top 200 All Groups (Going to pass CLRC in a few days)
#74 on Top 200 Teams (Gaining fast on @@ -141,7 +179,7 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, least once a day for new stuff :-)


Judge gives Napster the Boot!!
Posted by Holodeck2 @ 2:10PM PDT  0 comments -  | top
Good afternoon for everyone living in +  | top
Good afternoon for everyone living in EST. I was going to post today morning but I didn't. Here's my story:
I woke up and thought about posting something but I decided to wax my car before the sun came up (draw your own @@ -153,14 +191,15 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,


Check out the Goofy guy in the suit
He's Sean Fanning, founder of Napster.

Got news?? mailto:Holodeck2@home.com


Ram Sinks.. more cooling for small places.
Posted by tim @ 8:54AM PDT  0 comments -  | top
Need some cooling for your Videocard +  | top
Need some cooling for your Videocard memory to get a little extra overclockability and FPS? Overclockers Hiedout Ram Sinks They just notified - me of their new design.


+ +
Wednesday, July 26, + me of their new design.


+
Wednesday, July 26, 2000

is it [H]ard?
Posted by Holodeck2 @ 9:19PM PDT  0 comments -  | top
Big heatsinks are good, very good. The +  | top
Big heatsinks are good, very good. The bigger the better.
You can never can have a too big of heatsink on a small chip (CPU, GPU, CHIPSET, etc)


My overclocked Voodoo3 2000 with a BIG mofo heatsink on top.
Peltier and @@ -168,21 +207,23 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, the warranty )

it was originally posted on [H]ardOCP
I’m not only a BP6er but also a [H]ardOCPer


WiLd CaSe!!
Posted by Holodeck2 @ 1:40PM PDT  8 comments -  | top
Now this person really knows how to +  | top
Now this person really knows how to keep his case cool!!
Addin an 18" Fan!! WOW!!


Click to go to his site.


What the heck is a Peltier?!?!
Posted by Holodeck2 @ 10:05AM PDT  6 comments -  | top
This is for all you people who wanted +  | top
This is for all you people who wanted to know what a peltier is.

The quest fo the Perfect - Peltier

Thanks to - TweakMax.com

Note: Today morning when I woke up I saw my whole screen + Peltier

Thanks to + TweakMax.com +

Note: Today morning when I woke up I saw my whole screen cluttered with a bunch of IMs!! I live in the USA on EST. If you live somewhere else please check the time in my area. for example: If you live in Europe and IM me in the morning your time I would be sleeping it would be like 4 in the morning here. Just to let you know
I'm not angry at anyone... - good thing I have a long fuse


Tuesday, + good thing I have a long fuse


+
Tuesday, July 25, 2000

HELLO EVERYONE!!!
Posted by Holodeck2 @ 10:03PM @@ -202,18 +243,19 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, rest of your subject so my e-mail program can sort it, thanks
AIM: Holodeck2 (instant response if I’m in front of my comp and not trying to frag someone)
ICQ: 82640218 (rarely on)

P.S. If someone named “Digital Vortex” on either Quake 3 - or 2 frags you, it’s probably me. ;-)


+ +
Monday, + or 2 frags you, it’s probably me. ;-)


+
Monday, July 24, 2000

BP6 Q3 server up and running..
Posted by tim @ 2:06AM PDT  3 comments -  | top
Setup a Q3 server for anyone wanting +  | top
Setup a Q3 server for anyone wanting to practice in preparation for Quakecon.. Connect to bp6.dyndns.org default port. (SERVER: BP6 system, 256 MB ram, celeron 600 on a T3 connection)... Will be moved to another BP6 server eventually. This is only a temporary test of the system and net connection.
(BTW- there are a few bot's running around in there..)


BIOS Savior to the rescue....
Posted by tim @ 12:53AM PDT  2 comments -  | top
Do you sweat during the BIOS flashing +  | top
Do you sweat during the BIOS flashing procedure on your BP6 mobo? If so then this little gadget maybe worth a first look. It's called the "RD1 BIOS Savior" and it plugs in between your BIOS ROM and the BIOS ROM socket on your mobo. @@ -222,31 +264,33 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, event of a bad flash, just flip a switch on the RDI and boot up your system, and flash again. This is also good as a failsafe in case you don't believe in Virus Protecting your computer. (Thanks to Fred for - link)
Manufacturers Brochure (PDF Format)
Another info page
Available for about $20



+ +
Monday, + link)
Manufacturers Brochure (PDF Format)
Another info page
Available for about $20



+
Monday, July 17, 2000

How To Overclock
Posted by DareDevil @ 4:17PM PDT  3 comments -  | top
For those of you who are new to +  | top
For those of you who are new to overclocking, this guide will explain to you how to overclock, and what some of the terms are. Like 'FSB' (what the heck is that!? - :0))

How To Overclock


The Cardcooler + :0))

How To Overclock


The Cardcooler XT
Posted by DareDevil @ 4:11PM PDT  1 comments -  | top
Wow! I am impressed! Nevermind keeping +  | top
Wow! I am impressed! Nevermind keeping the CPU's cool... Keep your whole board cool!

Even if your not overclocking your system (or planning on it), this unit will provide system stability and longevity. What would happen one day of your GeForce or CPU fan went dead? You can also think of this cooling unit as a backup to essential cooling fans in your - system.

Check this out!

http://www.brokenpixel.com/articles/coolerXT/cardcoolerXT_1.shtml


'Nerd + system.

Check this out!

http://www.brokenpixel.com/articles/coolerXT/cardcoolerXT_1.shtml +


'Nerd Inside'
Posted by DareDevil @ 11:53AM PDT  1 comments -  | top
We all need to have some fun +  | top
We all need to have some fun sometimes! Check out this little web site that sells 'nerd' clothing ;) (I like the bibs in the Junior Hackerz section) :-Þ



Dual PSU Wiring diagram... (preview to Part 1 Watercooling Project)
Posted by tim @ 12:43AM PDT  11 comments -  | top
When is comes to overclocking your +  | top
When is comes to overclocking your system, cooling plays a big role. Powering all of those fans in your system can cause quite a strain on your PSU (Power Supply Unit). Depending on the number of peripherals in your system, adding a more @@ -259,12 +303,13 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, dangerous and is not recommended unless you know what you are doing.

View Diagram 1 here.
View Diagram 2 here.

I used Tap-In Squeeze Connectors and 22 guage wire to connect the wires. You can get them at Radio Shack - Part# 64-3053 or click here.


Sunday, + Part# 64-3053 or click here.

+
Sunday, July 16, 2000

RAM Overclocking? Hmmmmm.
Posted by DareDevil @ 9:57AM PDT  3 comments -  | top
I know we're pretty big overclockers +  | top
I know we're pretty big overclockers here at BP6.Com so, this is a post of choice ;-) I've seen the question in the message boards, 'why can't I overclock any higher?' Well, it's not always the CPU that's holding you back... Many other @@ -282,19 +327,20 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, ÐÐ.

CPU Guide
Posted by DareDevil @ 9:17AM PDT  0 comments -  | top
A follow up on the 'Weekly CPU +  | top
A follow up on the 'Weekly CPU Prices', this guide will help you determine which cpu is best for you (and your board ;-)). Sent to me by Spanky, here's the - link:

  • http://www6.tomshardware.com/howto/00q2/000412/index.html


  • -
    Saturday, + link:

  • http://www6.tomshardware.com/howto/00q2/000412/index.html


  • +
    Saturday, July 15, 2000

    Weekly CPU Prices
    Posted by DareDevil @ 11:29AM PDT  2 comments -  | top
    Wow, found this very useful! Wanting - to buy a new CPU? Check out this detailed price list!

    Click Here.

    Thanks Sharky +  | top

    Wow, found this very useful! Wanting + to buy a new CPU? Check out this detailed price list!

    Click Here.

    Thanks Sharky Extreme!


    Fast Wallpapers
    Posted by DareDevil @ 9:51AM PDT  0 comments -  | top
    FAST-MHz has released some wallpapers! +  | top
    FAST-MHz has released some wallpapers! Click here to view them. They come in sizes 800x600 1024x768 and 1152x864. If you have your desktop set at a larger size, just use the 'stretch' function in desktop properties @@ -305,12 +351,13 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, topic being computers, duh! :0) And no... I don't want to recieve any porno piccies in my mailbox! I have enough of those!) Kidding guys.

    Okay, that's all for now.

    The - ÐÐ.


    Friday, + ÐÐ.

    +
    Friday, July 14, 2000

    Hey There!
    Posted by DareDevil @ 5:05PM PDT  7 comments -  | top
    Hey guys, just wanted to introduce +  | top
    Hey guys, just wanted to introduce myself, some of you may have already met me on the BP6.com board. I'll be posting up news from time to time now so, if you'd like, you may send me some news to be posted if you find any ( we don't want @@ -318,10 +365,13 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, now.

    The ÐÐ.


    -
    -

    - +
    +
    +
    +

    +

    +
    +

    Newsletter


    -
    Search news


    News + + Search news


    News archive -
    -
    +
    +
    -

    + + +

    +

    PC Price Search

    -

    +

    +
    +



    BP6.com Special - Enter CODE: BP6-hd in the order (notes) to receive a discount
    BP6.COM - Special
    Code:BP6-hd
    -
    + Special
    Code:BP6-hd
     
    -
    -
     
     
    - + ©1999-2000 BP6.com, All rights reserved.
    Got news? Send it to Tim

    +

    +

    +

    Copyright - ©1999-2000 BP6.com, All rights reserved.
    Got news? Send it to
    Tim -

    diff --git a/result/HTML/fp40.htm b/result/HTML/fp40.htm index 4020e7eb..501eb610 100644 --- a/result/HTML/fp40.htm +++ b/result/HTML/fp40.htm @@ -6,84 +6,153 @@ -

    Microsoft FrontPage 2000 Server Extensions, UNIX

    -© Copyright Microsoft Corporation, 1999 

    The FrontPage Server Extensions are a set of programs on the Web server that support: + +

    Microsoft FrontPage 2000 Server Extensions, UNIX

    + +© Copyright Microsoft Corporation, 1999  + + +

    The FrontPage Server Extensions are a set of programs on the Web server that support:

    • Authoring FrontPage webs
    • -
    • Administering FrontPage webs
    • -
    • Browse-time FrontPage web functionality
    • +
    • Administering FrontPage webs
    • +
    • Browse-time FrontPage web functionality

    Contents 

    -Release Notes
    Resources for More Information

     

    + +Release Notes
    Resources for More Information +

     


    Release Notes

    +

    This section provides complementary or late-breaking information to supplement the Microsoft FrontPage Server Extensions documentation.

    +

    Apache 1.3.4 Support
    Upgrading from previous version of FrontPage Server Extensions
    Uploading files into executable folders

    + +

    Top of Page

    + +

    Apache 1.3.4 Support

    +

    You need to take some special steps to run the FrontPage Server Extensions with Apache 1.3.4. FrontPage Server Extensions expect to find all resource directives in the main server configuration file, usually http.conf. To prevent the server extensions from using any secondary -configuration files (access.conf, srm.conf), add the following lines to http.conf:

    +configuration files (access.conf, srm.conf), add the following lines to http.conf:

    + + +
    + ResourceConfig /dev/null 
    -AccessConfig /dev/null
    -

    If you have some settings stored in secondary configuration files, move them to http.conf.

    +AccessConfig /dev/null
    +
    + + + +

    If you have some settings stored in secondary configuration files, move them to http.conf.

    +

    You must stop and restart the web server for your changes to http.conf to take effect.

    + + +

    Top of Section

    + + +

    Upgrading from previous version of FrontPage Server Extensions

    +

    Custom entries in frontpage.cnf are not migrated to FrontPage 2000.

    +

    When you install FrontPage 2000 Server Extensions, a new frontpage.cnf file is created in the /usr/local/frontpage/version4.0 directory. Any custom settings stored in a previous-version frontpage.cnf are not used. However, you can copy your custom settings from the previous-version frontpage.cnf file after you install the FrontPage 2000 Server Extensions.

    +

    Do not overwrite the FrontPage 2000 frontpage.cnf file with a frontpage.cnf file from an earlier version of the FrontPage Server Extensions.

    + + +

    Top of Section

    + + +

    Uploading files into executable folders

    + +

    After upgrading to FrontPage 2000, FrontPage authors will not be able to upload files into executable folders. For security reasons, the default setting on FrontPage 2000 webs does not allow authors to upload executable files into executable folders in a FrontPage web. This setting protects servers so that authors do not inadvertently upload a program containing a bug -or a virus.

    +or a virus.

    +

    To allow FrontPage authors to upload executables, set the NoExecutableCgiUpload configuration variable to zero (0). For information about FrontPage Server Extension configuration variables, see the FrontPage 2000 Server Extensions Resource Kit at http://officeupdate.microsoft.com/frontpage/wpp/serk/.

    + + +

    Top of Section

    + + +

    Resources for More Information

    +

    This section lists sources of more information about the FrontPage Server Extensions.

    +

    Server Extensions Resource Kit
    Server Extensions Resource Kit Update
    Knowledge Base

    + +

    Top of Page

    + +

    Server Extensions Resource Kit

    +

    The FrontPage 2000 Server Extensions include a full set of documentation: the Server Extensions Resource Kit. This is an HTML document installed on the server machine (by default) in /usr/local/frontpage/version4.0/serk. To view the Server Extensions Resource Kit, open /usr/local/frontpage/version4.0/serk/default.htm in your Web browser.

    +

    The Server Extensions Resource Kit contains detailed information about installing and administering the FrontPage Server Extensions along with an overview of the Server Extensions, a detailed discussion of Server Extensions security on UNIX and Windows, troubleshooting information, and a full set of appendixes.

    +

    Top of Section

    + +

    Server Extensions Resource Kit Update

    +

    For updated information about installing, setting up, and administrating the FrontPage Server Extensions, see the Server Extensions Resource Kit Update at: http://officeupdate.microsoft.com/frontpage/wpp/serk/.

    + +

    Top of Section

    + +

    Microsoft Knowledge Base

    +

    For further technical information on FrontPage, please consult Support Online. Use Support Online to easily search Microsoft Product Support Services' collection of resources including technical articles from Microsoft's extensive Knowledge Base, FAQs, & troubleshooters to find fast, accurate answers. You can also customize the site to control your search using either keywords or the site's natural language search engine, which uses normal everyday language for answering inquiries, so you can write your question in your own words. To begin, go to -http://support.microsoft.com/support/.

    +http://support.microsoft.com/support/.

    +

    Top of Section

    -

     

    + + +

     

    + +
    diff --git a/result/HTML/test2.html b/result/HTML/test2.html index 7eb8884e..27da4f27 100644 --- a/result/HTML/test2.html +++ b/result/HTML/test2.html @@ -4,11 +4,15 @@
    - - + -
    Atipa Linux solutions. Your reliable cluster, server, and workstation solution. Win a Free Celeron Linux Workstation! + +Atipa Linux solutions. Your reliable cluster, server, and workstation solution. Win a Free Celeron Linux Workstation! + + Linux Today Logo
    linux.com partner

    + +
    [ headlines | features | @@ -25,5 +29,6 @@ link us ]

    +

    diff --git a/result/HTML/test3.html b/result/HTML/test3.html index 9cbb1f17..335fb3c4 100644 --- a/result/HTML/test3.html +++ b/result/HTML/test3.html @@ -2,13 +2,14 @@ -

    Component Package diagram ProblemDomain

    +

    Component Package diagram ProblemDomain

    +


    -Stereotype problem domain
    +Stereotype problem domain
    -Alias Problem Domain
    +Alias Problem Domain
    Note
    The Problem Domain package is the model behind the Human
    Interface, thats stores and manipulates the Family Tree. @@ -19,23 +20,23 @@

    Class HumanInterface.FamilyFrame -

    +

    Class ProblemDomain.Birth -

    +

    Class ProblemDomain.Death -

    +

    Class ProblemDomain.Divorce -

    +

    Class ProblemDomain.Family -

    +

    Class ProblemDomain.Individual -

    +

    Class ProblemDomain.LifeEvent -

    +

    Class ProblemDomain.Marriage -

    +

    Class ProblemDomain.Note -

    +

    Links

    • diff --git a/result/HTML/wired.html b/result/HTML/wired.html index 948ac1d0..2781ec5d 100644 --- a/result/HTML/wired.html +++ b/result/HTML/wired.html @@ -3,12 +3,13 @@ Top Stories News from Wired News -
      + - -
      + - + - -
      +
      True to the Original
      + +
    True to the Original
    @@ -74,14 +76,27 @@ - + + + - + + + - +

       updated 10:15 a.m.  15.Oct.99.PDT
    - - - + + + + + +
    + + + + + + + - -
    + + +
    + +
    +
    - + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + + + - - - - - - - + + + + - - - - - - + + + + + + + + + + + + + + + + + + + +

    SECTIONS
    +
    SECTIONS
    Business
    Culture
    Technology
    Politics
    WIRE SERVICE NEWS
    Top Headlines
    Sports
    Finance
    FREE DELIVERY
    - - -
    -  -
    STOCKS
    Get Quote:
    +
    +WIRE SERVICE NEWS
    Top Headlines
    Sports
    Finance
    + FREE DELIVERY
    + + + +
    + + +   + + + +
    +
    + STOCKS
    Get Quote:
      -
    +
    Financial Services

    + Datek Wired Index Fund internet.com Index Fund GetSmart's MortgageFinder -
    Today's Summary
    Wired Index | All Indexes
    Portfolios
    FIND A BOOK
    - + + + + + + + + + + + + + + - -
    -
    Today's Summary
    Wired Index | All Indexes
    Portfolios
    FIND A BOOK
    + + - + + + + + +
    + + + -
    - +
    +

    + Powered by barnesandnoble.com + +
    +

    +

    -Powered by barnesandnoble.com
    -

    WIRED - MAGAZINE

    Wired Magazine
    +
    WIRED + MAGAZINE
    + + +
    Wired Magazine
    Issue 7.11 -
    Subscribe to Wired.
    Special offer!
    HOTWIRED
    Frontdoor
    Webmonkey
    Webmonkey Guides
    RGB Gallery
    Animation Express
    Suck.com
    HOTBOT
    Search
    Shopping
    -
    - Wired News staff

    Contact us


    Wired News delivered
    by PalmPilot,
    Outlook Express,
    In-Box Direct,
    +
    +
    + + +Subscribe to Wired.
    Special offer!
    + + +
    +
    + HOTWIRED +
    +Frontdoor
    Webmonkey
    Webmonkey Guides
    RGB Gallery
    Animation Express
    Suck.com
    +
    + HOTBOT +
    +Search
    Shopping
    +
    +
    + + Wired News staff

    Contact us
    + + +

    Wired News delivered
    by PalmPilot,
    Outlook Express,
    In-Box Direct,
    or PointCast

    -
    - - + - - - + + +
    -
    +
    +
    Nomad's Land

    Homeless, but ID'd, in Seattle
    8:15 a.m. The city council approves a plan to track the homeless by a numbering system, saying it'll improve services. The implications worry privacy advocates, naturally. By Craig Bicknell.
    in Politics
    - - + + - - + - + @@ -230,44 +345,58 @@ or PointCast
    - - + + - - +
     HITS & MISC.
    HITS & MISC.
      +
    Calendar of E-Vents
    Ongoing goings-on.

    Rants & Raves
    Readers on Apple's G4 ... AOL's passwords ... MS vs. Linux.

       CURRENT HOO-HA
     MEANWHILE...
    MEANWHILE...
      -
    Führer Furor

    +

    +
    Führer Furor

    Contruction workers in Berlin opened an old wound in the German psyche this week when they accidentally stumbled across Adolf Hitler's bunker while excavating near the Brandenburg Gate. The bunker, just south of the Gate, was where Hitler and his closest associates barricaded themselves as the Red Army approached Berlin in the waning days of World War II. It is also where the Führer and his bride, Eva Braun, committed suicide rather than fall into the hands of the Russians. Although the bunker's location has never been a mystery, it has been sealed off since the end of the war to keep neo-Nazis from turning it into a shrine.

  • More from Lycos


  • - 

    Other Top Stories

    Wall Street Keeps Reeling
    10:15 a.m. The Dow and Nasdaq suffer sizeable losses during the first half of Friday trading. Why? Wholesale prices are the highest this decade, and Greenspan is concerned about stock prices.
    in Reuters

    The Market's Madness
    9:10 a.m. The bulls and the bears are in the midst of a Battle Royale, and all this turbulence is not a healthy thing. So say the experts.
    in Reuters

    'Want a Loan? What's Your Race?'
    3:00 a.m. The Federal Reserve is in the middle of changing banking regulations to let banks collect data on the race, sex, religion, and national origin of their customers. By Declan McCullagh.
    in Politics

    Music Regs: A Bagful of Noise
    3:00 a.m. The struggle to come up with a digital music standard that would minimize download piracy is pushing right up against the holiday gift-giving season. By Jennifer Sullivan.
    in Business

    Can't Beat 'Em? Green 'Em
    3:00 a.m. High-tech companies are notoriously environmentally unfriendly, and a growing number of "Greenies" are trying to change things from the inside ... with varying results. By Chris Gaither.
    in Technology

    Y2K Cloud Over MS Office
    3:00 a.m. Windows NT sales remain strong, but corporate clients are wary of upgrading to MS Office 2000. Analysts say that means strong, but not stunning, Microsoft earnings.
    in Business

    Med-Tech
    Biochips for Custom Chemo
    3:00 a.m. Different cancer patients need different medicine, but doctors can rarely determine the best match. New biochip technology promises chemotherapy tailored to a tumor's genetic make-up. By Kristen Philipkoski.
    in Technology

    High Stakes in Priceline Suit
    3:00 a.m. It's not just another round of Redmond-bashing. A Priceline.com lawsuit against Microsoft's Expedia.com may have a big impact on how Net companies protect their business models. By Joanna Glasner.
    in Business

    Biodiversity Merges Online
    3:00 a.m. The far-flung databases on global biodiversity get together to form one monster database. Soon the red-eyed tree frog will be eyeing those Swedish lingonberries. From the Environment News Service.
    in Technology


    Elsewhere Today

    FCC: Hands-Off on Broadband
    The Industry Standard

    White House Lashes Out on Treaty
    Lycos

    Steve Jobs at 44
    Time

    Computers May Run on Gas
    ZDNN

    Much Is Free in the Wired World
    The New York Times (Registration Required)

    Melissa: I'm Baaaack
    USA Today

    Domain Owners Surrender Privacy
    MSNBC

    Dividing to Conquer in VC Game
    The Washington Post

    The Red Hat Diaries
    Salon

    Screensaver to Predict Climate
    BBC News

    + 
    + +
    Other Top Stories

    Wall Street Keeps Reeling
    10:15 a.m. The Dow and Nasdaq suffer sizeable losses during the first half of Friday trading. Why? Wholesale prices are the highest this decade, and Greenspan is concerned about stock prices.
    in Reuters

    The Market's Madness
    9:10 a.m. The bulls and the bears are in the midst of a Battle Royale, and all this turbulence is not a healthy thing. So say the experts.
    in Reuters

    'Want a Loan? What's Your Race?'
    3:00 a.m. The Federal Reserve is in the middle of changing banking regulations to let banks collect data on the race, sex, religion, and national origin of their customers. By Declan McCullagh.
    in Politics

    Music Regs: A Bagful of Noise
    3:00 a.m. The struggle to come up with a digital music standard that would minimize download piracy is pushing right up against the holiday gift-giving season. By Jennifer Sullivan.
    in Business

    Can't Beat 'Em? Green 'Em
    3:00 a.m. High-tech companies are notoriously environmentally unfriendly, and a growing number of "Greenies" are trying to change things from the inside ... with varying results. By Chris Gaither.
    in Technology

    Y2K Cloud Over MS Office
    3:00 a.m. Windows NT sales remain strong, but corporate clients are wary of upgrading to MS Office 2000. Analysts say that means strong, but not stunning, Microsoft earnings.
    in Business

    Med-Tech
    Biochips for Custom Chemo
    3:00 a.m. Different cancer patients need different medicine, but doctors can rarely determine the best match. New biochip technology promises chemotherapy tailored to a tumor's genetic make-up. By Kristen Philipkoski.
    in Technology

    High Stakes in Priceline Suit
    3:00 a.m. It's not just another round of Redmond-bashing. A Priceline.com lawsuit against Microsoft's Expedia.com may have a big impact on how Net companies protect their business models. By Joanna Glasner.
    in Business

    Biodiversity Merges Online
    3:00 a.m. The far-flung databases on global biodiversity get together to form one monster database. Soon the red-eyed tree frog will be eyeing those Swedish lingonberries. From the Environment News Service.
    in Technology


    Elsewhere Today

    FCC: Hands-Off on Broadband
    The Industry Standard

    White House Lashes Out on Treaty
    Lycos

    Steve Jobs at 44
    Time

    Computers May Run on Gas
    ZDNN

    Much Is Free in the Wired World
    The New York Times (Registration Required)

    Melissa: I'm Baaaack
    USA Today

    Domain Owners Surrender Privacy
    MSNBC

    Dividing to Conquer in VC Game
    The Washington Post

    The Red Hat Diaries
    Salon

    Screensaver to Predict Climate
    BBC News

    -




    Send us feedback + +




    + +Send us feedback  |  Work at Wired Digital  |  -Advertise with us
    About Wired Digital +Advertise with us +
    About Wired Digital  |  -Our Privacy Policy

    +Our Privacy Policy + + +

    -Copyright © 1994-99 Wired Digital Inc. All rights reserved.
    +Copyright © 1994-99 Wired Digital Inc. All rights reserved. + +

    + + +