nokogiri-xmlsec1 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.rspec +2 -0
- data/.travis.yml +11 -0
- data/Gemfile +4 -0
- data/Guardfile +13 -0
- data/LICENSE.txt +22 -0
- data/README.md +133 -0
- data/Rakefile +30 -0
- data/dependencies.yml +3 -0
- data/ext/nokogiri_ext_xmlsec/extconf.rb +489 -0
- data/ext/nokogiri_ext_xmlsec/init.c +46 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_decrypt_with_key.c +124 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_encrypt_with_key.c +182 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_helpers_set_attribute_id.c +43 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_init.c +32 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_sign_certificate.c +104 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_sign_rsa.c +95 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_verify_signature_certificates.c +96 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_verify_signature_named_keys.c +106 -0
- data/ext/nokogiri_ext_xmlsec/nokogiri_verify_signature_rsa.c +56 -0
- data/ext/nokogiri_ext_xmlsec/shutdown.c +12 -0
- data/ext/nokogiri_ext_xmlsec/xmlsecrb.h +39 -0
- data/lib/nokogiri-xmlsec.rb +1 -0
- data/lib/xmlsec.rb +110 -0
- data/lib/xmlsec/version.rb +3 -0
- data/nokogiri-xmlsec1.gemspec +46 -0
- data/ports/patches/libxml2/0001-Fix-parser-local-buffers-size-problems.patch +265 -0
- data/ports/patches/libxml2/0002-Fix-entities-local-buffers-size-problems.patch +102 -0
- data/ports/patches/libxml2/0003-Fix-an-error-in-previous-commit.patch +26 -0
- data/ports/patches/libxml2/0004-Fix-potential-out-of-bound-access.patch +26 -0
- data/ports/patches/libxml2/0005-Detect-excessive-entities-expansion-upon-replacement.patch +158 -0
- data/ports/patches/libxml2/0006-Do-not-fetch-external-parsed-entities.patch +78 -0
- data/ports/patches/libxml2/0007-Enforce-XML_PARSER_EOF-state-handling-through-the-pa.patch +480 -0
- data/ports/patches/libxml2/0008-Improve-handling-of-xmlStopParser.patch +315 -0
- data/ports/patches/libxml2/0009-Fix-a-couple-of-return-without-value.patch +37 -0
- data/ports/patches/libxml2/0010-Keep-non-significant-blanks-node-in-HTML-parser.patch +2006 -0
- data/ports/patches/libxml2/0011-Do-not-fetch-external-parameter-entities.patch +39 -0
- data/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch +222 -0
- data/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch +53 -0
- data/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch +60 -0
- data/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch +42 -0
- data/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch +164 -0
- data/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch +587 -0
- data/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch +80 -0
- data/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch +185 -0
- data/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch +126 -0
- data/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch +25 -0
- data/ports/patches/libxslt/0014-Fix-for-bug-436589.patch +43 -0
- data/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch +41 -0
- data/ports/patches/xmlsec1/.keep +0 -0
- data/spec/fixtures/cert/server.crt +14 -0
- data/spec/fixtures/cert/server.csr +11 -0
- data/spec/fixtures/cert/server.key.decrypted +15 -0
- data/spec/fixtures/cert/server.key.encrypted +18 -0
- data/spec/fixtures/rsa.pem +15 -0
- data/spec/fixtures/rsa.pub +6 -0
- data/spec/fixtures/sign2-doc.xml +6 -0
- data/spec/fixtures/sign2-result.xml +24 -0
- data/spec/fixtures/sign3-result.xml +37 -0
- data/spec/lib/nokogiri/xml/document/encryption_and_decryption_spec.rb +22 -0
- data/spec/lib/nokogiri/xml/document/signing_and_verifying_spec.rb +77 -0
- data/spec/spec_helper.rb +10 -0
- metadata +251 -0
@@ -0,0 +1,315 @@
|
|
1
|
+
From ebf9856a335f75d74aea32f2c05fadcad5ce42b1 Mon Sep 17 00:00:00 2001
|
2
|
+
From: Daniel Veillard <veillard@redhat.com>
|
3
|
+
Date: Thu, 11 Apr 2013 15:54:51 +0800
|
4
|
+
Subject: [PATCH 8/9] Improve handling of xmlStopParser()
|
5
|
+
|
6
|
+
Add a specific parser error
|
7
|
+
Try to stop parsing as quickly as possible
|
8
|
+
|
9
|
+
[Origin: e50ba8164eee06461c73cd8abb9b46aa0be81869]
|
10
|
+
---
|
11
|
+
include/libxml/xmlerror.h | 1 +
|
12
|
+
parser.c | 72 +++++++++++++++++++++++++++++++++++++++++++----
|
13
|
+
2 files changed, 67 insertions(+), 6 deletions(-)
|
14
|
+
|
15
|
+
diff --git a/include/libxml/xmlerror.h b/include/libxml/xmlerror.h
|
16
|
+
index e924211..aaf95ca 100644
|
17
|
+
--- a/include/libxml/xmlerror.h
|
18
|
+
+++ b/include/libxml/xmlerror.h
|
19
|
+
@@ -205,6 +205,7 @@ typedef enum {
|
20
|
+
XML_WAR_ENTITY_REDEFINED, /* 107 */
|
21
|
+
XML_ERR_UNKNOWN_VERSION, /* 108 */
|
22
|
+
XML_ERR_VERSION_MISMATCH, /* 109 */
|
23
|
+
+ XML_ERR_USER_STOP, /* 111 */
|
24
|
+
XML_NS_ERR_XML_NAMESPACE = 200,
|
25
|
+
XML_NS_ERR_UNDEFINED_NAMESPACE, /* 201 */
|
26
|
+
XML_NS_ERR_QNAME, /* 202 */
|
27
|
+
diff --git a/parser.c b/parser.c
|
28
|
+
index 409cde8..7de8111 100644
|
29
|
+
--- a/parser.c
|
30
|
+
+++ b/parser.c
|
31
|
+
@@ -2520,6 +2520,8 @@ xmlParserHandlePEReference(xmlParserCtxtPtr ctxt) {
|
32
|
+
NEXT;
|
33
|
+
if ((ctxt->sax != NULL) && (ctxt->sax->getParameterEntity != NULL))
|
34
|
+
entity = ctxt->sax->getParameterEntity(ctxt->userData, name);
|
35
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
36
|
+
+ return;
|
37
|
+
if (entity == NULL) {
|
38
|
+
|
39
|
+
/*
|
40
|
+
@@ -4860,7 +4862,8 @@ get_more:
|
41
|
+
}
|
42
|
+
if (buf != NULL)
|
43
|
+
xmlFree(buf);
|
44
|
+
- ctxt->instate = state;
|
45
|
+
+ if (ctxt->instate != XML_PARSER_EOF)
|
46
|
+
+ ctxt->instate = state;
|
47
|
+
return;
|
48
|
+
}
|
49
|
+
if (buf != NULL) {
|
50
|
+
@@ -5432,6 +5435,8 @@ xmlParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
55
|
+
+ return;
|
56
|
+
SKIP_BLANKS;
|
57
|
+
if (RAW != '>') {
|
58
|
+
xmlFatalErrMsgStr(ctxt, XML_ERR_ENTITY_NOT_FINISHED,
|
59
|
+
@@ -7421,6 +7426,8 @@ xmlParseEntityRef(xmlParserCtxtPtr ctxt) {
|
60
|
+
ent = xmlSAX2GetEntity(ctxt, name);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
64
|
+
+ return(NULL);
|
65
|
+
/*
|
66
|
+
* [ WFC: Entity Declared ]
|
67
|
+
* In a document without any DTD, a document with only an
|
68
|
+
@@ -7611,6 +7618,10 @@ xmlParseStringEntityRef(xmlParserCtxtPtr ctxt, const xmlChar ** str) {
|
69
|
+
ent = xmlSAX2GetEntity(ctxt, name);
|
70
|
+
}
|
71
|
+
}
|
72
|
+
+ if (ctxt->instate == XML_PARSER_EOF) {
|
73
|
+
+ xmlFree(name);
|
74
|
+
+ return;
|
75
|
+
+ }
|
76
|
+
|
77
|
+
/*
|
78
|
+
* [ WFC: Entity Declared ]
|
79
|
+
@@ -7772,8 +7783,9 @@ xmlParsePEReference(xmlParserCtxtPtr ctxt)
|
80
|
+
*/
|
81
|
+
if ((ctxt->sax != NULL) &&
|
82
|
+
(ctxt->sax->getParameterEntity != NULL))
|
83
|
+
- entity = ctxt->sax->getParameterEntity(ctxt->userData,
|
84
|
+
- name);
|
85
|
+
+ entity = ctxt->sax->getParameterEntity(ctxt->userData, name);
|
86
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
87
|
+
+ return;
|
88
|
+
if (entity == NULL) {
|
89
|
+
/*
|
90
|
+
* [ WFC: Entity Declared ]
|
91
|
+
@@ -8001,8 +8013,11 @@ xmlParseStringPEReference(xmlParserCtxtPtr ctxt, const xmlChar **str) {
|
92
|
+
*/
|
93
|
+
if ((ctxt->sax != NULL) &&
|
94
|
+
(ctxt->sax->getParameterEntity != NULL))
|
95
|
+
- entity = ctxt->sax->getParameterEntity(ctxt->userData,
|
96
|
+
- name);
|
97
|
+
+ entity = ctxt->sax->getParameterEntity(ctxt->userData, name);
|
98
|
+
+ if (ctxt->instate == XML_PARSER_EOF) {
|
99
|
+
+ xmlFree(name);
|
100
|
+
+ return;
|
101
|
+
+ }
|
102
|
+
if (entity == NULL) {
|
103
|
+
/*
|
104
|
+
* [ WFC: Entity Declared ]
|
105
|
+
@@ -8104,6 +8119,8 @@ xmlParseDocTypeDecl(xmlParserCtxtPtr ctxt) {
|
106
|
+
if ((ctxt->sax != NULL) && (ctxt->sax->internalSubset != NULL) &&
|
107
|
+
(!ctxt->disableSAX))
|
108
|
+
ctxt->sax->internalSubset(ctxt->userData, name, ExternalID, URI);
|
109
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
110
|
+
+ return;
|
111
|
+
|
112
|
+
/*
|
113
|
+
* Is there any internal subset declarations ?
|
114
|
+
@@ -9819,6 +9836,8 @@ xmlParseElement(xmlParserCtxtPtr ctxt) {
|
115
|
+
* Parse the content of the element:
|
116
|
+
*/
|
117
|
+
xmlParseContent(ctxt);
|
118
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
119
|
+
+ return;
|
120
|
+
if (!IS_BYTE_CHAR(RAW)) {
|
121
|
+
xmlFatalErrMsgStrIntStr(ctxt, XML_ERR_TAG_NOT_FINISHED,
|
122
|
+
"Premature end of data in tag %s line %d\n",
|
123
|
+
@@ -10391,6 +10410,8 @@ xmlParseDocument(xmlParserCtxtPtr ctxt) {
|
124
|
+
*/
|
125
|
+
if ((ctxt->sax) && (ctxt->sax->setDocumentLocator))
|
126
|
+
ctxt->sax->setDocumentLocator(ctxt->userData, &xmlDefaultSAXLocator);
|
127
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
128
|
+
+ return(-1);
|
129
|
+
|
130
|
+
if ((ctxt->encoding == NULL) &&
|
131
|
+
((ctxt->input->end - ctxt->input->cur) >= 4)) {
|
132
|
+
@@ -10442,6 +10463,8 @@ xmlParseDocument(xmlParserCtxtPtr ctxt) {
|
133
|
+
}
|
134
|
+
if ((ctxt->sax) && (ctxt->sax->startDocument) && (!ctxt->disableSAX))
|
135
|
+
ctxt->sax->startDocument(ctxt->userData);
|
136
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
137
|
+
+ return(-1);
|
138
|
+
|
139
|
+
/*
|
140
|
+
* The Misc part of the Prolog
|
141
|
+
@@ -10461,6 +10484,8 @@ xmlParseDocument(xmlParserCtxtPtr ctxt) {
|
142
|
+
if (RAW == '[') {
|
143
|
+
ctxt->instate = XML_PARSER_DTD;
|
144
|
+
xmlParseInternalSubset(ctxt);
|
145
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
146
|
+
+ return(-1);
|
147
|
+
}
|
148
|
+
|
149
|
+
/*
|
150
|
+
@@ -10471,6 +10496,8 @@ xmlParseDocument(xmlParserCtxtPtr ctxt) {
|
151
|
+
(!ctxt->disableSAX))
|
152
|
+
ctxt->sax->externalSubset(ctxt->userData, ctxt->intSubName,
|
153
|
+
ctxt->extSubSystem, ctxt->extSubURI);
|
154
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
155
|
+
+ return(-1);
|
156
|
+
ctxt->inSubset = 0;
|
157
|
+
|
158
|
+
xmlCleanSpecialAttr(ctxt);
|
159
|
+
@@ -10611,6 +10638,8 @@ xmlParseExtParsedEnt(xmlParserCtxtPtr ctxt) {
|
160
|
+
}
|
161
|
+
if ((ctxt->sax) && (ctxt->sax->startDocument) && (!ctxt->disableSAX))
|
162
|
+
ctxt->sax->startDocument(ctxt->userData);
|
163
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
164
|
+
+ return(-1);
|
165
|
+
|
166
|
+
/*
|
167
|
+
* Doing validity checking on chunk doesn't make sense
|
168
|
+
@@ -10621,6 +10650,8 @@ xmlParseExtParsedEnt(xmlParserCtxtPtr ctxt) {
|
169
|
+
ctxt->depth = 0;
|
170
|
+
|
171
|
+
xmlParseContent(ctxt);
|
172
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
173
|
+
+ return(-1);
|
174
|
+
|
175
|
+
if ((RAW == '<') && (NXT(1) == '/')) {
|
176
|
+
xmlFatalErr(ctxt, XML_ERR_NOT_WELL_BALANCED, NULL);
|
177
|
+
@@ -10928,7 +10959,7 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
178
|
+
}
|
179
|
+
xmlParseGetLasts(ctxt, &lastlt, &lastgt);
|
180
|
+
|
181
|
+
- while (1) {
|
182
|
+
+ while (ctxt->instate != XML_PARSER_EOF) {
|
183
|
+
if ((ctxt->errNo != XML_ERR_OK) && (ctxt->disableSAX == 1))
|
184
|
+
return(0);
|
185
|
+
|
186
|
+
@@ -11168,6 +11199,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
187
|
+
ctxt->sax->endElement(ctxt->userData, name);
|
188
|
+
#endif /* LIBXML_SAX1_ENABLED */
|
189
|
+
}
|
190
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
191
|
+
+ goto done;
|
192
|
+
spacePop(ctxt);
|
193
|
+
if (ctxt->nameNr == 0) {
|
194
|
+
ctxt->instate = XML_PARSER_EPILOG;
|
195
|
+
@@ -11349,6 +11382,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
196
|
+
ctxt->sax->characters(ctxt->userData,
|
197
|
+
ctxt->input->cur, tmp);
|
198
|
+
}
|
199
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
200
|
+
+ goto done;
|
201
|
+
SKIPL(tmp);
|
202
|
+
ctxt->checkIndex = 0;
|
203
|
+
}
|
204
|
+
@@ -11384,6 +11419,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
205
|
+
ctxt->sax->characters(ctxt->userData,
|
206
|
+
ctxt->input->cur, base);
|
207
|
+
}
|
208
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
209
|
+
+ goto done;
|
210
|
+
SKIPL(base + 3);
|
211
|
+
ctxt->checkIndex = 0;
|
212
|
+
ctxt->instate = XML_PARSER_CONTENT;
|
213
|
+
@@ -11415,6 +11452,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
214
|
+
"PP: Parsing PI\n");
|
215
|
+
#endif
|
216
|
+
xmlParsePI(ctxt);
|
217
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
218
|
+
+ goto done;
|
219
|
+
ctxt->checkIndex = 0;
|
220
|
+
} else if ((cur == '<') && (next == '!') &&
|
221
|
+
(ctxt->input->cur[2] == '-') &&
|
222
|
+
@@ -11427,6 +11466,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
223
|
+
"PP: Parsing Comment\n");
|
224
|
+
#endif
|
225
|
+
xmlParseComment(ctxt);
|
226
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
227
|
+
+ goto done;
|
228
|
+
ctxt->instate = XML_PARSER_MISC;
|
229
|
+
ctxt->checkIndex = 0;
|
230
|
+
} else if ((cur == '<') && (next == '!') &&
|
231
|
+
@@ -11446,6 +11487,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
232
|
+
#endif
|
233
|
+
ctxt->inSubset = 1;
|
234
|
+
xmlParseDocTypeDecl(ctxt);
|
235
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
236
|
+
+ goto done;
|
237
|
+
if (RAW == '[') {
|
238
|
+
ctxt->instate = XML_PARSER_DTD;
|
239
|
+
#ifdef DEBUG_PUSH
|
240
|
+
@@ -11502,6 +11545,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
241
|
+
"PP: Parsing PI\n");
|
242
|
+
#endif
|
243
|
+
xmlParsePI(ctxt);
|
244
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
245
|
+
+ goto done;
|
246
|
+
} else if ((cur == '<') && (next == '!') &&
|
247
|
+
(ctxt->input->cur[2] == '-') && (ctxt->input->cur[3] == '-')) {
|
248
|
+
if ((!terminate) &&
|
249
|
+
@@ -11512,6 +11557,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
250
|
+
"PP: Parsing Comment\n");
|
251
|
+
#endif
|
252
|
+
xmlParseComment(ctxt);
|
253
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
254
|
+
+ goto done;
|
255
|
+
ctxt->instate = XML_PARSER_PROLOG;
|
256
|
+
} else if ((cur == '<') && (next == '!') &&
|
257
|
+
(avail < 4)) {
|
258
|
+
@@ -11546,6 +11593,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
259
|
+
"PP: Parsing PI\n");
|
260
|
+
#endif
|
261
|
+
xmlParsePI(ctxt);
|
262
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
263
|
+
+ goto done;
|
264
|
+
ctxt->instate = XML_PARSER_EPILOG;
|
265
|
+
} else if ((cur == '<') && (next == '!') &&
|
266
|
+
(ctxt->input->cur[2] == '-') && (ctxt->input->cur[3] == '-')) {
|
267
|
+
@@ -11557,6 +11606,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
268
|
+
"PP: Parsing Comment\n");
|
269
|
+
#endif
|
270
|
+
xmlParseComment(ctxt);
|
271
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
272
|
+
+ goto done;
|
273
|
+
ctxt->instate = XML_PARSER_EPILOG;
|
274
|
+
} else if ((cur == '<') && (next == '!') &&
|
275
|
+
(avail < 4)) {
|
276
|
+
@@ -11685,6 +11736,8 @@ not_end_of_int_subset:
|
277
|
+
|
278
|
+
found_end_int_subset:
|
279
|
+
xmlParseInternalSubset(ctxt);
|
280
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
281
|
+
+ goto done;
|
282
|
+
ctxt->inSubset = 2;
|
283
|
+
if ((ctxt->sax != NULL) && (!ctxt->disableSAX) &&
|
284
|
+
(ctxt->sax->externalSubset != NULL))
|
285
|
+
@@ -11692,6 +11745,8 @@ found_end_int_subset:
|
286
|
+
ctxt->extSubSystem, ctxt->extSubURI);
|
287
|
+
ctxt->inSubset = 0;
|
288
|
+
xmlCleanSpecialAttr(ctxt);
|
289
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
290
|
+
+ goto done;
|
291
|
+
ctxt->instate = XML_PARSER_PROLOG;
|
292
|
+
ctxt->checkIndex = 0;
|
293
|
+
#ifdef DEBUG_PUSH
|
294
|
+
@@ -11902,6 +11957,10 @@ xmldecl_done:
|
295
|
+
xmlParseTryOrFinish(ctxt, 0);
|
296
|
+
else
|
297
|
+
xmlParseTryOrFinish(ctxt, terminate);
|
298
|
+
+
|
299
|
+
+ if (ctxt->instate == XML_PARSER_EOF)
|
300
|
+
+ return(ctxt->errNo);
|
301
|
+
+
|
302
|
+
if ((ctxt->errNo != XML_ERR_OK) && (ctxt->disableSAX == 1))
|
303
|
+
return(ctxt->errNo);
|
304
|
+
|
305
|
+
@@ -12095,6 +12154,7 @@ xmlStopParser(xmlParserCtxtPtr ctxt) {
|
306
|
+
if (ctxt == NULL)
|
307
|
+
return;
|
308
|
+
ctxt->instate = XML_PARSER_EOF;
|
309
|
+
+ ctxt->errNo = XML_ERR_USER_STOP;
|
310
|
+
ctxt->disableSAX = 1;
|
311
|
+
if (ctxt->input != NULL) {
|
312
|
+
ctxt->input->cur = BAD_CAST"";
|
313
|
+
--
|
314
|
+
1.8.4.1
|
315
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
From e86d141d88213af6c7e0bc4b607f879e1e89e406 Mon Sep 17 00:00:00 2001
|
2
|
+
From: =?UTF-8?q?J=C3=BCri=20Aedla?= <aedla@chromium.org>
|
3
|
+
Date: Tue, 16 Apr 2013 22:00:13 +0800
|
4
|
+
Subject: [PATCH 9/9] Fix a couple of return without value
|
5
|
+
|
6
|
+
Error introduced in previous commit !
|
7
|
+
|
8
|
+
[Origin: 9ca816b3a64e7b1bada7baa2cbc09e8937b38215]
|
9
|
+
---
|
10
|
+
parser.c | 4 ++--
|
11
|
+
1 file changed, 2 insertions(+), 2 deletions(-)
|
12
|
+
|
13
|
+
diff --git a/parser.c b/parser.c
|
14
|
+
index 7de8111..1b62bc4 100644
|
15
|
+
--- a/parser.c
|
16
|
+
+++ b/parser.c
|
17
|
+
@@ -7620,7 +7620,7 @@ xmlParseStringEntityRef(xmlParserCtxtPtr ctxt, const xmlChar ** str) {
|
18
|
+
}
|
19
|
+
if (ctxt->instate == XML_PARSER_EOF) {
|
20
|
+
xmlFree(name);
|
21
|
+
- return;
|
22
|
+
+ return(NULL);
|
23
|
+
}
|
24
|
+
|
25
|
+
/*
|
26
|
+
@@ -8016,7 +8016,7 @@ xmlParseStringPEReference(xmlParserCtxtPtr ctxt, const xmlChar **str) {
|
27
|
+
entity = ctxt->sax->getParameterEntity(ctxt->userData, name);
|
28
|
+
if (ctxt->instate == XML_PARSER_EOF) {
|
29
|
+
xmlFree(name);
|
30
|
+
- return;
|
31
|
+
+ return(NULL);
|
32
|
+
}
|
33
|
+
if (entity == NULL) {
|
34
|
+
/*
|
35
|
+
--
|
36
|
+
1.8.4.1
|
37
|
+
|
@@ -0,0 +1,2006 @@
|
|
1
|
+
From f933c898132f20a50ba39ac6116378b71a01c700 Mon Sep 17 00:00:00 2001
|
2
|
+
From: Daniel Veillard <veillard@redhat.com>
|
3
|
+
Date: Fri, 7 Sep 2012 19:32:12 +0800
|
4
|
+
Subject: [PATCH] Keep non-significant blanks node in HTML parser
|
5
|
+
|
6
|
+
For https://bugzilla.gnome.org/show_bug.cgi?id=681822
|
7
|
+
|
8
|
+
Regardless if the option HTML_PARSE_NOBLANKS is set or not, blank nodes
|
9
|
+
are removed from a HTML document, for example:
|
10
|
+
|
11
|
+
<html>
|
12
|
+
<head>
|
13
|
+
<title>This is a test.</title>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<p>This is a test.</p>
|
17
|
+
</body>
|
18
|
+
</html>
|
19
|
+
|
20
|
+
is read as:
|
21
|
+
|
22
|
+
<html><head><title>This is a test.</title></head><body>
|
23
|
+
<p>This is a test.</p>
|
24
|
+
</body></html>
|
25
|
+
|
26
|
+
This changes the default behaviour but the old behaviour is available
|
27
|
+
as expected when using the parser flag HTML_PARSE_NOBLANKS
|
28
|
+
|
29
|
+
Based on original patch from Igor Ignatyuk <igor_ignatiouk@hotmail.com>
|
30
|
+
|
31
|
+
* HTMLparser.c: change various places in the parser where ignorable_space
|
32
|
+
SAX callback was called without checking for the parser flag preference
|
33
|
+
* xmllint.c: make sure we use the new flag even for HTML parsing
|
34
|
+
* result/HTML/*: this modifies the output of a number of tests
|
35
|
+
---
|
36
|
+
HTMLparser.c | 33 ++-
|
37
|
+
result/HTML/53867.html | 8 +-
|
38
|
+
result/HTML/Down.html | 5 +-
|
39
|
+
result/HTML/attrents.html | 8 +-
|
40
|
+
result/HTML/autoclose.html | 4 +-
|
41
|
+
result/HTML/cf_128.html | 22 +-
|
42
|
+
result/HTML/doc2.htm | 4 +-
|
43
|
+
result/HTML/doc3.htm | 286 +++++++++++++++++++-------
|
44
|
+
result/HTML/entities.html | 6 +-
|
45
|
+
result/HTML/entities2.html | 6 +-
|
46
|
+
result/HTML/fp40.htm | 20 +-
|
47
|
+
result/HTML/html5_enc.html | 4 +-
|
48
|
+
result/HTML/liclose.html | 5 +-
|
49
|
+
result/HTML/lt.html | 6 +-
|
50
|
+
result/HTML/noscript.html | 10 +-
|
51
|
+
result/HTML/pre.html | 6 +-
|
52
|
+
result/HTML/python.html | 5 +-
|
53
|
+
result/HTML/reg1.html | 4 +-
|
54
|
+
result/HTML/reg2.html | 4 +-
|
55
|
+
result/HTML/reg3.html | 4 +-
|
56
|
+
result/HTML/reg4.html | 5 +-
|
57
|
+
result/HTML/repeat.html | 4 +-
|
58
|
+
result/HTML/script.html | 3 +-
|
59
|
+
result/HTML/script2.html | 7 +-
|
60
|
+
result/HTML/test2.html | 11 +-
|
61
|
+
result/HTML/test3.html | 32 +--
|
62
|
+
result/HTML/utf8bug.html | 100 ++++++----
|
63
|
+
result/HTML/wired.html | 488 ++++++++++++++++++++++++++++++---------------
|
64
|
+
xmllint.c | 5 +-
|
65
|
+
29 files changed, 768 insertions(+), 337 deletions(-)
|
66
|
+
|
67
|
+
diff --git a/HTMLparser.c b/HTMLparser.c
|
68
|
+
index 09a9a4b..a2976f0 100644
|
69
|
+
--- a/HTMLparser.c
|
70
|
+
+++ b/HTMLparser.c
|
71
|
+
@@ -2981,9 +2981,14 @@ htmlParseCharData(htmlParserCtxtPtr ctxt) {
|
72
|
+
*/
|
73
|
+
if ((ctxt->sax != NULL) && (!ctxt->disableSAX)) {
|
74
|
+
if (areBlanks(ctxt, buf, nbchar)) {
|
75
|
+
- if (ctxt->sax->ignorableWhitespace != NULL)
|
76
|
+
- ctxt->sax->ignorableWhitespace(ctxt->userData,
|
77
|
+
- buf, nbchar);
|
78
|
+
+ if (ctxt->keepBlanks) {
|
79
|
+
+ if (ctxt->sax->characters != NULL)
|
80
|
+
+ ctxt->sax->characters(ctxt->userData, buf, nbchar);
|
81
|
+
+ } else {
|
82
|
+
+ if (ctxt->sax->ignorableWhitespace != NULL)
|
83
|
+
+ ctxt->sax->ignorableWhitespace(ctxt->userData,
|
84
|
+
+ buf, nbchar);
|
85
|
+
+ }
|
86
|
+
} else {
|
87
|
+
htmlCheckParagraph(ctxt);
|
88
|
+
if (ctxt->sax->characters != NULL)
|
89
|
+
@@ -3014,8 +3019,14 @@ htmlParseCharData(htmlParserCtxtPtr ctxt) {
|
90
|
+
*/
|
91
|
+
if ((ctxt->sax != NULL) && (!ctxt->disableSAX)) {
|
92
|
+
if (areBlanks(ctxt, buf, nbchar)) {
|
93
|
+
- if (ctxt->sax->ignorableWhitespace != NULL)
|
94
|
+
- ctxt->sax->ignorableWhitespace(ctxt->userData, buf, nbchar);
|
95
|
+
+ if (ctxt->keepBlanks) {
|
96
|
+
+ if (ctxt->sax->characters != NULL)
|
97
|
+
+ ctxt->sax->characters(ctxt->userData, buf, nbchar);
|
98
|
+
+ } else {
|
99
|
+
+ if (ctxt->sax->ignorableWhitespace != NULL)
|
100
|
+
+ ctxt->sax->ignorableWhitespace(ctxt->userData,
|
101
|
+
+ buf, nbchar);
|
102
|
+
+ }
|
103
|
+
} else {
|
104
|
+
htmlCheckParagraph(ctxt);
|
105
|
+
if (ctxt->sax->characters != NULL)
|
106
|
+
@@ -5687,9 +5698,15 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
|
107
|
+
if ((cur != '<') && (cur != '&')) {
|
108
|
+
if (ctxt->sax != NULL) {
|
109
|
+
if (IS_BLANK_CH(cur)) {
|
110
|
+
- if (ctxt->sax->ignorableWhitespace != NULL)
|
111
|
+
- ctxt->sax->ignorableWhitespace(
|
112
|
+
- ctxt->userData, &cur, 1);
|
113
|
+
+ if (ctxt->keepBlanks) {
|
114
|
+
+ if (ctxt->sax->characters != NULL)
|
115
|
+
+ ctxt->sax->characters(
|
116
|
+
+ ctxt->userData, &cur, 1);
|
117
|
+
+ } else {
|
118
|
+
+ if (ctxt->sax->ignorableWhitespace != NULL)
|
119
|
+
+ ctxt->sax->ignorableWhitespace(
|
120
|
+
+ ctxt->userData, &cur, 1);
|
121
|
+
+ }
|
122
|
+
} else {
|
123
|
+
htmlCheckParagraph(ctxt);
|
124
|
+
if (ctxt->sax->characters != NULL)
|
125
|
+
diff --git a/result/HTML/53867.html b/result/HTML/53867.html
|
126
|
+
index acdad7c..f4902af 100644
|
127
|
+
--- a/result/HTML/53867.html
|
128
|
+
+++ b/result/HTML/53867.html
|
129
|
+
@@ -1,5 +1,7 @@
|
130
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
131
|
+
-<html><head><style>
|
132
|
+
+<html>
|
133
|
+
+<head>
|
134
|
+
+<style>
|
135
|
+
.......
|
136
|
+
...............................................................
|
137
|
+
...............................................................
|
138
|
+
@@ -63,4 +65,6 @@
|
139
|
+
...............................................................
|
140
|
+
...............................................................
|
141
|
+
...............................................................
|
142
|
+
-</style></head></html>
|
143
|
+
+</style>
|
144
|
+
+</head>
|
145
|
+
+</html>
|
146
|
+
diff --git a/result/HTML/Down.html b/result/HTML/Down.html
|
147
|
+
index 929ed8a..8489033 100644
|
148
|
+
--- a/result/HTML/Down.html
|
149
|
+
+++ b/result/HTML/Down.html
|
150
|
+
@@ -1,6 +1,9 @@
|
151
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
152
|
+
<html>
|
153
|
+
-<head><title>This service is temporary down</title></head>
|
154
|
+
+<head>
|
155
|
+
+ <title>This service is temporary down</title>
|
156
|
+
+</head>
|
157
|
+
+
|
158
|
+
<body bgcolor="#FFFFFF">
|
159
|
+
<h1 align="center">Sorry, this service is temporary down</h1>
|
160
|
+
We are doing our best to get it back on-line,
|
161
|
+
diff --git a/result/HTML/attrents.html b/result/HTML/attrents.html
|
162
|
+
index 0433f48..f7feaa6 100644
|
163
|
+
--- a/result/HTML/attrents.html
|
164
|
+
+++ b/result/HTML/attrents.html
|
165
|
+
@@ -1,4 +1,6 @@
|
166
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
167
|
+
-<html><body bgcolor="#FFFFFF">
|
168
|
+
- <a href="mailto:katherine@cbfanc.org,website@bis.doc.gov?subject=South%20San%20Francisco%20BIS%20Seminar%20-%20October%2016th"></a><br>
|
169
|
+
-</body></html>
|
170
|
+
+<html>
|
171
|
+
+<body bgcolor="#FFFFFF">
|
172
|
+
+ <a href="mailto:katherine@cbfanc.org,website@bis.doc.gov?subject=South%20San%20Francisco%20BIS%20Seminar%20-%20October%2016th"></a><br>
|
173
|
+
+</body>
|
174
|
+
+</html>
|
175
|
+
diff --git a/result/HTML/autoclose.html b/result/HTML/autoclose.html
|
176
|
+
index 1a54517..cacf4ed 100644
|
177
|
+
--- a/result/HTML/autoclose.html
|
178
|
+
+++ b/result/HTML/autoclose.html
|
179
|
+
@@ -1,2 +1,4 @@
|
180
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
181
|
+
-<html><body><hr></body></html>
|
182
|
+
+<html><body>
|
183
|
+
+<hr>
|
184
|
+
+</body></html>
|
185
|
+
diff --git a/result/HTML/cf_128.html b/result/HTML/cf_128.html
|
186
|
+
index b3e6b41..e2261ea 100644
|
187
|
+
--- a/result/HTML/cf_128.html
|
188
|
+
+++ b/result/HTML/cf_128.html
|
189
|
+
@@ -1,16 +1,24 @@
|
190
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
191
|
+
<html>
|
192
|
+
-<head><title>gnome-xml push mode bug</title></head>
|
193
|
+
+<head>
|
194
|
+
+<title>gnome-xml push mode bug</title>
|
195
|
+
+</head>
|
196
|
+
<body>
|
197
|
+
|
198
|
+
-<table border="4"><tr>
|
199
|
+
-<td bgcolor="white">
|
200
|
+
+<table border="4">
|
201
|
+
+ <tr>
|
202
|
+
+ <td bgcolor="white">
|
203
|
+
Foo1
|
204
|
+
- <table border="4"><tr><td>Foo2<p></p>
|
205
|
+
+ <table border="4">
|
206
|
+
+ <tr>
|
207
|
+
+ <td>Foo2<p></p>
|
208
|
+
<p></p>
|
209
|
+
-</td></tr></table>
|
210
|
+
</td>
|
211
|
+
+</tr>
|
212
|
+
+</table>
|
213
|
+
+ </td>
|
214
|
+
<td bgcolor="blue">Foo3</td>
|
215
|
+
- </tr></table>
|
216
|
+
-</body>
|
217
|
+
+ </tr>
|
218
|
+
+ </table>
|
219
|
+
+ </body>
|
220
|
+
</html>
|
221
|
+
diff --git a/result/HTML/doc2.htm b/result/HTML/doc2.htm
|
222
|
+
index 2c7e230..4f959e9 100644
|
223
|
+
--- a/result/HTML/doc2.htm
|
224
|
+
+++ b/result/HTML/doc2.htm
|
225
|
+
@@ -7,7 +7,9 @@
|
226
|
+
function NS_NullWindow(){this.window;}
|
227
|
+
function NS_NewOpen(url,nam,atr){return(new NS_NullWindow());}
|
228
|
+
window.open=NS_NewOpen;
|
229
|
+
-</script><!-- END Naviscope Javascript --><!-- saved from url=(0027)http://www.agents-tech.com/ --><meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
|
230
|
+
+</script>
|
231
|
+
+<!-- END Naviscope Javascript --><!-- saved from url=(0027)http://www.agents-tech.com/ -->
|
232
|
+
+<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
|
233
|
+
<meta content="Copernic.com Inc. develops innovative agent technology solutions to efficiently access and manage the overwhelming quantity of information available on the Internet and intranets." name="DESCRIPTION">
|
234
|
+
<meta content="agent,technology,intranet,extranet,management,filtering,ranking,solution,service,intelligent,intelligence,client,server,architecture,developer,development,information,telecommunication,announcement,press,product,profile,contact,multi-agent,meta-search,metasearch,multi-thread,mobile,wireless,shopping,robot,PCS,Copernic,engine,toolkit,CDK,EDK" name="KEYWORDS">
|
235
|
+
<meta content="MSHTML 5.00.3103.1000" name="GENERATOR">
|
236
|
+
diff --git a/result/HTML/doc3.htm b/result/HTML/doc3.htm
|
237
|
+
index e66e256..e9d5e44 100644
|
238
|
+
--- a/result/HTML/doc3.htm
|
239
|
+
+++ b/result/HTML/doc3.htm
|
240
|
+
@@ -1,21 +1,24 @@
|
241
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
242
|
+
<!-- saved from url=(0025)http://bp6.gamesquad.net/ --><!-- BEGIN Naviscope Javascript --><html>
|
243
|
+
<head>
|
244
|
+
-<title>BP6.com #1 online resource for the BP6 Mobo....</title>
|
245
|
+
+<title>BP6.com #1 online resource for the BP6 Mobo....</title>
|
246
|
+
<script language="javascript">
|
247
|
+
NS_ActualOpen=window.open;
|
248
|
+
function NS_NullWindow(){this.window;}
|
249
|
+
function NS_NewOpen(url,nam,atr){return(new NS_NullWindow());}
|
250
|
+
window.open=NS_NewOpen;
|
251
|
+
-</script><!-- END Naviscope Javascript --><!--last modified on Tuesday, February 22, 2000 11:47 PM --><meta content="text/html;CHARSET=iso-8859-1" http-equiv="Content-Type">
|
252
|
+
-<meta content="Tim" name="Author">
|
253
|
+
+</script>
|
254
|
+
+<!-- END Naviscope Javascript --><!--last modified on Tuesday, February 22, 2000 11:47 PM -->
|
255
|
+
+<meta content="text/html;CHARSET=iso-8859-1" http-equiv="Content-Type">
|
256
|
+
+<meta content="Tim" name="Author">
|
257
|
+
<style type="text/css">A.nav {
|
258
|
+
COLOR: #003399; TEXT-DECORATION: none
|
259
|
+
}
|
260
|
+
A.nav:hover {
|
261
|
+
COLOR: #3366cc; TEXT-DECORATION: underline
|
262
|
+
}
|
263
|
+
-</style>
|
264
|
+
+</style>
|
265
|
+
+
|
266
|
+
<script language="JavaScript">
|
267
|
+
<!-- Idea by: Nic Wolfe (Nic@TimelapseProductions.com) -->
|
268
|
+
<!-- Web URL: http://fineline.xs.mw -->
|
269
|
+
@@ -30,33 +33,46 @@ id = day.getTime();
|
270
|
+
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=145, height=250');");
|
271
|
+
}
|
272
|
+
// End -->
|
273
|
+
-</script><meta content="MSHTML 5.00.3103.1000" name="GENERATOR">
|
274
|
+
-</head>
|
275
|
+
+</script>
|
276
|
+
+
|
277
|
+
+<meta content="MSHTML 5.00.3103.1000" name="GENERATOR">
|
278
|
+
+</head>
|
279
|
+
<body alink="red" bgcolor="black" link="red" text="white" vlink="red">
|
280
|
+
<p>
|
281
|
+
</p>
|
282
|
+
<div align="center">
|
283
|
+
-<table border="0" cellpadding="0" cellspacing="0" width="80%"><tbody>
|
284
|
+
-<tr>
|
285
|
+
-<td valign="top" width="31"><a href="http://bp6.gamesquad.net/"><img align="bottom" border="0" height="74" src="doc3_files/logo.gif" width="252"></a></td>
|
286
|
+
+<table border="0" cellpadding="0" cellspacing="0" width="80%">
|
287
|
+
+ <tbody>
|
288
|
+
+ <tr>
|
289
|
+
+ <td valign="top" width="31"><a href="http://bp6.gamesquad.net/"><img align="bottom" border="0" height="74" src="doc3_files/logo.gif" width="252"></a></td>
|
290
|
+
<td align="left" bgcolor="#000000">
|
291
|
+
-<img height="15" src="doc3_files/spacer.gif" width="15"><!-- START GAMESQUAD.NET IFRAME RICH MEDIA CODE --><!-- � 2000 GameSquad.net All Rights Reserved. --><iframe border="0" frameborder="no" height="60" marginheight="0" marginwidth="0" scrolling="no" src="doc3_files/adcycle.htm" width="468">
|
292
|
+
+<img height="15" src="doc3_files/spacer.gif" width="15"><!-- START GAMESQUAD.NET IFRAME RICH MEDIA CODE --> <!-- � 2000 GameSquad.net All Rights Reserved. --><iframe border="0" frameborder="no" height="60" marginheight="0" marginwidth="0" scrolling="no" src="doc3_files/adcycle.htm" width="468">
|
293
|
+
<a href="http://ads.gamesquad.net/addclick.exe/adclick.cgi?REGION=game%7Ctech%7Cent&id=1" target="_top"><img src="http://ads.gamesquad.net/addclick.exe/adcycle.cgi?group=52&media=1&id=1" width="468" height="60" border="0" alt="GSN ROS Ad"></a>
|
294
|
+
-</iframe><!-- END GAMESQUAD.NET IFRAME RICH MEDIA CODE --><br><img height="15" src="doc3_files/spacer.gif" width="400">
|
295
|
+
-</td>
|
296
|
+
-</tr>
|
297
|
+
-<tr><td bgcolor="#003399" colspan="2">
|
298
|
+
+</iframe><!-- END GAMESQUAD.NET IFRAME RICH MEDIA CODE --><br><img height="15" src="doc3_files/spacer.gif" width="400"> </td>
|
299
|
+
+</tr>
|
300
|
+
+ <tr>
|
301
|
+
+ <td bgcolor="#003399" colspan="2">
|
302
|
+
<p align="right"><img align="right" border="0" height="18" hspace="0" src="doc3_files/trcorner.gif" width="20"><img align="left" border="0" height="18" hspace="0" src="doc3_files/tlcorner.gif" width="20"><font face="Verdana" size="2">Monday, July 31st, 2000</font> </p>
|
303
|
+
-</td></tr>
|
304
|
+
-<tr><td colspan="2">
|
305
|
+
- <table bgcolor="#003399" border="0" cellpadding="0" cellspacing="4" width="100%"><tbody><tr><td bgcolor="#666666" width="100%">
|
306
|
+
+</td>
|
307
|
+
+</tr>
|
308
|
+
+ <tr>
|
309
|
+
+ <td colspan="2">
|
310
|
+
+ <table bgcolor="#003399" border="0" cellpadding="0" cellspacing="4" width="100%"><tbody>
|
311
|
+
+ <tr>
|
312
|
+
+ <td bgcolor="#666666" width="100%">
|
313
|
+
<center>
|
314
|
+
<p>
|
315
|
+
</p>
|
316
|
+
-<table bgcolor="black" border="0" cellpadding="0" cellspacing="1" width="100%"><tbody><tr><td background="doc3_files/hscan.gif" bgcolor="#666666" width="100%">
|
317
|
+
-<img height="1" src="doc3_files/spacer.gif" width="738"><br><center>
|
318
|
+
- <table border="0" cellpadding="2" cellspacing="0" width="91%"><tbody><tr>
|
319
|
+
-<td valign="top" width="15%">
|
320
|
+
+<table bgcolor="black" border="0" cellpadding="0" cellspacing="1" width="100%">
|
321
|
+
+ <tbody>
|
322
|
+
+ <tr>
|
323
|
+
+ <td background="doc3_files/hscan.gif" bgcolor="#666666" width="100%">
|
324
|
+
+<img height="1" src="doc3_files/spacer.gif" width="738"><br>
|
325
|
+
+ <center>
|
326
|
+
+ <table border="0" cellpadding="2" cellspacing="0" width="91%">
|
327
|
+
+ <tbody>
|
328
|
+
+ <tr>
|
329
|
+
+ <td valign="top" width="15%">
|
330
|
+
<p align="center"><a href="http://bp6.gamesquad.net/specs.phtml"><img align="bottom" alt="Abit BP6 Motherboard specification and information." border="0" height="45" src="doc3_files/bp6icon.gif" width="70"></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/specs.phtml"><font color="white" face="Verdana" size="1">BP6 Specs</font></a>
|
331
|
+
</p>
|
332
|
+
</td>
|
333
|
+
@@ -84,35 +100,63 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
334
|
+
<p align="center"><a href="http://www.gentus.com/"><img align="bottom" alt="Taking a first look at the Abit Linux release called " border="0" height="45" src="doc3_files/gentusbox.gif" width="70" gentus></a><br><a href="http://www.gentus.com/"><font color="white" face="Verdana" size="1">Gentus</font></a>
|
335
|
+
</p>
|
336
|
+
</td>
|
337
|
+
-</tr></tbody></table>
|
338
|
+
+</tr>
|
339
|
+
+</tbody>
|
340
|
+
+</table>
|
341
|
+
</center>
|
342
|
+
-</td></tr></tbody></table>
|
343
|
+
+</td>
|
344
|
+
+</tr>
|
345
|
+
+</tbody>
|
346
|
+
+</table>
|
347
|
+
</center>
|
348
|
+
-</td></tr></tbody></table>
|
349
|
+
-</td></tr>
|
350
|
+
+</td>
|
351
|
+
+</tr>
|
352
|
+
</tbody></table>
|
353
|
+
-<table bgcolor="#003399" border="0" cellspacing="6" width="80%"><tbody><tr>
|
354
|
+
-<td bgcolor="black" valign="top" width="10%">
|
355
|
+
- <table border="0" cellpadding="3" cellspacing="0" width="100%"><tbody><tr><td width="100%">
|
356
|
+
-<img height="1" src="doc3_files/spacer.gif" width="111"><br><b><font color="yellow" face="Verdana" size="2">REVIEWS</font></b><font face="Verdana" size="2"><br><hr align="center"></font><a href="http://bp6.gamesquad.net/bp6reviews.phtml"><font color="white" face="Verdana" size="1">BP6 Reviews</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/h2o.phtml"><font color="white" face="Verdana" size="1">BP6 Watercooling</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bxcool.phtml"><font color="white" face="Verdana" size="1">BX Chipset Cooling</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/benchmark.phtml"><font color="white" face="Verdana" size="1">Benchmarks</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bp6fsb.phtml"><font color="white" face="Verdana" size="1">BP6FSB Utility</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/powerleap.phtml"><font color="white" face="Verdana" size="1">PowerLeap NEO S370</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/seti.phtml"><font color="white" face="Verdana" size="1">SETI on the BP6</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/orbs.phtml"><font color="white" face="Verdana" size="1">Golden Orbs I</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/orbs/orbs2.phtml"><font color="white" face="Verdana" size="1">Golden Orbs II</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/Q6fix.phtml"><font color="white" face="Verdana" size="1">VTT Solution</font></a><font face="Verdana" size="1"><br><br></font><b><font color="yellow" face="Verdana" size="2">NAVIGATE</font></b><font color="yellow" face="Verdana" size="2">
|
357
|
+
- <hr align="center"></font><a href="http://www.bp6.com/"><font color="white" face="Verdana" size="1">News</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/chat.phtml"><font color="white" face="Verdana" size="1">Online Text Chat</font></a><font face="Verdana" size="1"><br></font><a href="javascript:popUp('chat_popup.htm')"><font color="white" face="Verdana" size="1">Voice Chat</font></a><br><a href="http://216.247.220.192/Forum"><font color="white" face="Verdana" size="1">Messageboard</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/cooling"><font color="white" face="Verdana" size="1">Temp. Converter</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Picture Gallery</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bios.phtml"><font color="white" face="Verdana" size="1">Latest BIOS</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/files/"><font color="white" face="Verdana" size="1">Drivers & Files</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">UGM of the week</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/contest.phtml"><font color="white" face="Verdana" size="1">BP6 Contest</font></a><font face="Verdana" size="1"><br><br></font><b><font color="yellow" face="Verdana" size="2">OTHER STUFF</font></b><font color="yellow" face="Verdana" size="2">
|
358
|
+
+</td>
|
359
|
+
+</tr>
|
360
|
+
+</tbody>
|
361
|
+
+</table>
|
362
|
+
+<table bgcolor="#003399" border="0" cellspacing="6" width="80%">
|
363
|
+
+ <tbody>
|
364
|
+
+ <tr>
|
365
|
+
+ <td bgcolor="black" valign="top" width="10%">
|
366
|
+
+ <table border="0" cellpadding="3" cellspacing="0" width="100%">
|
367
|
+
+ <tbody>
|
368
|
+
+ <tr>
|
369
|
+
+ <td width="100%">
|
370
|
+
+<img height="1" src="doc3_files/spacer.gif" width="111"><br><b><font color="yellow" face="Verdana" size="2">REVIEWS</font></b><font face="Verdana" size="2"><br>
|
371
|
+
+ <hr align="center">
|
372
|
+
+ </font><a href="http://bp6.gamesquad.net/bp6reviews.phtml"><font color="white" face="Verdana" size="1">BP6 Reviews</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/h2o.phtml"><font color="white" face="Verdana" size="1">BP6 Watercooling</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bxcool.phtml"><font color="white" face="Verdana" size="1">BX Chipset Cooling</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/benchmark.phtml"><font color="white" face="Verdana" size="1">Benchmarks</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bp6fsb.phtml"><font color="white" face="Verdana" size="1">BP6FSB Utility</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/powerleap.phtml"><font color="white" face="Verdana" size="1">PowerLeap NEO S370</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/seti.phtml"><font color="white" face="Verdana" size="1">SETI on the BP6</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/orbs.phtml"><font color="white" face="Verdana" size="1">Golden Orbs I</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/orbs/orbs2.phtml"><font color="white" face="Verdana" size="1">Golden Orbs II</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/Q6fix.phtml"><font color="white" face="Verdana" size="1">VTT Solution</font></a><font face="Verdana" size="1"><br><br></font><b><font color="yellow" face="Verdana" size="2">NAVIGATE</font></b><font color="yellow" face="Verdana" size="2">
|
373
|
+
+ <hr align="center">
|
374
|
+
+ </font><a href="http://www.bp6.com/"><font color="white" face="Verdana" size="1">News</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/chat.phtml"><font color="white" face="Verdana" size="1">Online Text Chat</font></a><font face="Verdana" size="1"><br></font><a href="javascript:popUp('chat_popup.htm')"><font color="white" face="Verdana" size="1">Voice Chat</font></a><br><a href="http://216.247.220.192/Forum"><font color="white" face="Verdana" size="1">Messageboard</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/cooling"><font color="white" face="Verdana" size="1">Temp. Converter</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Picture Gallery</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/bios.phtml"><font color="white" face="Verdana" size="1">Latest BIOS</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/files/"><font color="white" face="Verdana" size="1">Drivers & Files</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">UGM of the week</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/contest.phtml"><font color="white" face="Verdana" size="1">BP6 Contest</font></a><font face="Verdana" size="1"><br><br></font><b><font color="yellow" face="Verdana" size="2">OTHER STUFF</font></b><font color="yellow" face="Verdana" size="2">
|
375
|
+
|
376
|
+
- <hr align="center"></font><a href="http://bp6.gamesquad.net/whois.phtml"><font color="white" face="Verdana" size="1">Who is Tim?</font></a><font face="Verdana" size="1"><br></font><a href="mailto:tim@bp6.com"><font color="white" face="Verdana" size="1">Contact BP6.com</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Affiliates Section</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Sponsors Section <br></font></a><a href="http://bp6.gamesquad.net/links.phtml"><font color="white" face="Verdana" size="1">Links<br><br></font></a><b><font color="yellow" face="Verdana" size="2">PC SPECIALS</font></b><font color="yellow" face="Verdana" size="2">
|
377
|
+
- <hr align="center"></font><a href="http://bp6.gamesquad.net/specials.phtml"><font color="white" face="Verdana" size="1">Vendor
|
378
|
+
+ <hr align="center">
|
379
|
+
+ </font><a href="http://bp6.gamesquad.net/whois.phtml"><font color="white" face="Verdana" size="1">Who is Tim?</font></a><font face="Verdana" size="1"><br></font><a href="mailto:tim@bp6.com"><font color="white" face="Verdana" size="1">Contact BP6.com</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Affiliates Section</font></a><font face="Verdana" size="1"><br></font><a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Sponsors Section <br></font></a><a href="http://bp6.gamesquad.net/links.phtml"><font color="white" face="Verdana" size="1">Links<br><br></font></a><b><font color="yellow" face="Verdana" size="2">PC SPECIALS</font></b><font color="yellow" face="Verdana" size="2">
|
380
|
+
+ <hr align="center">
|
381
|
+
+ </font><a href="http://bp6.gamesquad.net/specials.phtml"><font color="white" face="Verdana" size="1">Vendor
|
382
|
+
Specials<br><br></font></a><br><b><font color="yellow" face="Verdana" size="2">Pic of the day</font></b>
|
383
|
+
- <hr>
|
384
|
+
-<center>
|
385
|
+
+ <hr>
|
386
|
+
+
|
387
|
+
+ <center>
|
388
|
+
<p align="center"><font face="Verdana, Arial, Helvetica" size="1"><a href="http://bp6.gamesquad.net/cgi-bin/schlabo/potd.pl"><img alt="No picture is available for today." border="0" src="doc3_files/potd_na_110x83.gif"></a> </font></p>
|
389
|
+
</center>
|
390
|
+
-<br><center></center>
|
391
|
+
+<br>
|
392
|
+
+ <center></center>
|
393
|
+
<br><!--<A HREF="code:javascript:ID_FTPWebView.InvokeHelp()"><FONT SIZE="1" COLOR="white" FACE="Verdana">FTP Help</FONT></A>-->
|
394
|
+
-</td></tr></tbody></table>
|
395
|
+
+</td>
|
396
|
+
+</tr>
|
397
|
+
+</tbody>
|
398
|
+
+</table>
|
399
|
+
</td>
|
400
|
+
<td bgcolor="white" valign="top" width="80%">
|
401
|
+
-<img height="1" src="doc3_files/spacer.gif" width="490"><br><center>
|
402
|
+
+<img height="1" src="doc3_files/spacer.gif" width="490"><br>
|
403
|
+
+ <center>
|
404
|
+
<p>
|
405
|
+
</p>
|
406
|
+
-<table bgcolor="white" border="0" cellpadding="10" cellspacing="0" height="100%" width="100%"><tbody><tr><td bgcolor="white" valign="top" width="100%">
|
407
|
+
+<table bgcolor="white" border="0" cellpadding="10" cellspacing="0" height="100%" width="100%">
|
408
|
+
+ <tbody>
|
409
|
+
+ <tr>
|
410
|
+
+ <td bgcolor="white" valign="top" width="100%">
|
411
|
+
<center>
|
412
|
+
<a href="http://www.encounter2001.com/" target="_blank"><img border="0" height="60" src="doc3_files/banner2.gif" width="468"></a>
|
413
|
+
</center>
|
414
|
+
@@ -128,8 +172,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
415
|
+
the heck is a Peltier?!?! - 10:05AM PDT</a></font><br><font face="arial" size="1"><a class="nav" href="http://bp6.gamesquad.net/index.phtml#newsitem964587833,74573,">HELLO
|
416
|
+
EVERYONE!!! - 10:03PM PDT</a></font><br><font face="arial" size="1"><a class="nav" href="http://bp6.gamesquad.net/index.phtml#newsitem964429577,13375,">BP6
|
417
|
+
Q3 server up and running.. - 2:06AM PDT</a></font><br><br><!-- NP v3.7.5 --><a name="newsitem965012956,78924,"></a>
|
418
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday,
|
419
|
+
- July 30, 2000</b></font></td></tr></tbody></table>
|
420
|
+
+ <table bgcolor="#003399" width="100%">
|
421
|
+
+ <tbody>
|
422
|
+
+ <tr>
|
423
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday,
|
424
|
+
+ July 30, 2000</b></font></td>
|
425
|
+
+</tr>
|
426
|
+
+</tbody>
|
427
|
+
+</table>
|
428
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Chat with
|
429
|
+
ABIT</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 8:09PM
|
430
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/965012956,78924,.html"><img border="0" src="doc3_files/comments.gif">0 comments</a>
|
431
|
+
@@ -141,8 +191,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
432
|
+
BP6-2??<br>[EricBoeing] We already have a micro ATX dual flip-chip
|
433
|
+
board<br>[EricBoeing] but it's OEM only<br>[EricBoeing] the full ATX
|
434
|
+
version should be out Septemberish<br></font><br><br><a name="newsitem964766837,26344,"></a>
|
435
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Thursday,
|
436
|
+
- July 27, 2000</b></font></td></tr></tbody></table>
|
437
|
+
+ <table bgcolor="#003399" width="100%">
|
438
|
+
+ <tbody>
|
439
|
+
+ <tr>
|
440
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Thursday,
|
441
|
+
+ July 27, 2000</b></font></td>
|
442
|
+
+</tr>
|
443
|
+
+</tbody>
|
444
|
+
+</table>
|
445
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Fixed
|
446
|
+
wallpaper</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 11:47PM
|
447
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/964766837,26344,.html"><img border="0" src="doc3_files/comments.gif">5 comments</a>
|
448
|
+
@@ -155,7 +211,9 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
449
|
+
error.<br>And 1 more person, THANK YOU TIM for letting me borrow
|
450
|
+
your server space ;-)<br><br>If you need a weird resolution, feel
|
451
|
+
free to <a href="mailto:Holodeck2@home.com">e-mail</a> me requesting
|
452
|
+
- for one.<br>If you have ideas or more errors to point out, <a href="mailto:Holodeck2@home.com">mailto:Holodeck2@home.com</a><br><br><a href="doc3_files/3-800.jpg" target="800">800x600 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1024.jpg" target="800">1024x768 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1152.jpg" target="800">1152x864 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1280x1024.jpg" target="800">1280x1024 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1600.jpg" target="800">1600x1200 </a><br><p>Enjoy :-)<br></p>
|
453
|
+
+ for one.<br>If you have ideas or more errors to point out, <a href="mailto:Holodeck2@home.com">mailto:Holodeck2@home.com</a><br><br><a href="doc3_files/3-800.jpg" target="800">800x600 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1024.jpg" target="800">1024x768 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1152.jpg" target="800">1152x864 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1280x1024.jpg" target="800">1280x1024 </a><br><a href="http://www.bp6.com/pics/holodeck2/wallpaper/3-1600.jpg" target="800">1600x1200 </a><br>
|
454
|
+
+ <p>Enjoy :-)<br>
|
455
|
+
+ </p>
|
456
|
+
<p><a href="mailto:Holodeck2@home.com">Holodeck2,</a><br>[H]ard at
|
457
|
+
work on the Brand Spanking New Wallpaper.<br></p></font><br><br><a name="newsitem964762841,25865,"></a><b><u><font color="#003366" face="Verdana, Arial" size="2">Seti update</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 10:40PM
|
458
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/964762841,25865,.html"><img border="0" src="doc3_files/comments.gif">5 comments</a>
|
459
|
+
@@ -183,8 +241,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
460
|
+
�|�<a href="http://bp6.gamesquad.net/#news_top">top</a></font> <br><font color="black" face="Arial" size="2">Need some cooling for your Videocard
|
461
|
+
memory to get a little extra overclockability and FPS? <a href="http://www.overclockershideout.com/RamSinks.html" target="_BLANK">Overclockers Hiedout Ram Sinks</a> They just notified
|
462
|
+
me of their new design.<br><img border="1" src="doc3_files/ramsink.jpg"></font><br><br><a name="newsitem964671589,7831,"></a>
|
463
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Wednesday, July 26,
|
464
|
+
- 2000</b></font></td></tr></tbody></table>
|
465
|
+
+ <table bgcolor="#003399" width="100%">
|
466
|
+
+ <tbody>
|
467
|
+
+ <tr>
|
468
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Wednesday, July 26,
|
469
|
+
+ 2000</b></font></td>
|
470
|
+
+</tr>
|
471
|
+
+</tbody>
|
472
|
+
+</table>
|
473
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">is it
|
474
|
+
[H]ard?</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 9:19PM
|
475
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/964671589,7831,.html"><img border="0" src="doc3_files/comments.gif">0 comments</a>
|
476
|
+
@@ -212,8 +276,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
477
|
+
sleeping it would be like 4 in the morning here. Just to let you
|
478
|
+
know <img src="doc3_files/smile.gif"><br>I'm not angry at anyone...
|
479
|
+
good thing I have a long fuse <img src="doc3_files/tongue.gif"><br></font><br><br><a name="newsitem964587833,74573,"></a>
|
480
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Tuesday,
|
481
|
+
- July 25, 2000</b></font></td></tr></tbody></table>
|
482
|
+
+ <table bgcolor="#003399" width="100%">
|
483
|
+
+ <tbody>
|
484
|
+
+ <tr>
|
485
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Tuesday,
|
486
|
+
+ July 25, 2000</b></font></td>
|
487
|
+
+</tr>
|
488
|
+
+</tbody>
|
489
|
+
+</table>
|
490
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">HELLO
|
491
|
+
EVERYONE!!!</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 10:03PM
|
492
|
+
PDT</small>� <br><font color="black" face="Arial" size="2">Hello
|
493
|
+
@@ -233,8 +303,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
494
|
+
if I’m in front of my comp and not trying to frag someone)<br><a href="http://www.icq.com/download">ICQ: </a>82640218 (rarely
|
495
|
+
on)<br><br>P.S. If someone named “Digital Vortex” on either Quake 3
|
496
|
+
or 2 frags you, it’s probably me. ;-)<br></font><br><br><a name="newsitem964429577,13375,"></a>
|
497
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday,
|
498
|
+
- July 24, 2000</b></font></td></tr></tbody></table>
|
499
|
+
+ <table bgcolor="#003399" width="100%">
|
500
|
+
+ <tbody>
|
501
|
+
+ <tr>
|
502
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday,
|
503
|
+
+ July 24, 2000</b></font></td>
|
504
|
+
+</tr>
|
505
|
+
+</tbody>
|
506
|
+
+</table>
|
507
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">BP6 Q3 server up and
|
508
|
+
running..</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 2:06AM PDT</small>� <a href="http://bp6.gamesquad.net/news/964429577,13375,.html"><img border="0" src="doc3_files/comments.gif">3 comments</a>
|
509
|
+
�|�<a href="http://bp6.gamesquad.net/#news_top">top</a></font> <br><font color="black" face="Arial" size="2">Setup a Q3 server for anyone wanting
|
510
|
+
@@ -254,8 +330,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
511
|
+
system, and flash again. This is also good as a failsafe in case you
|
512
|
+
don't believe in Virus Protecting your computer. (Thanks to Fred for
|
513
|
+
link)<br><a href="http://www.ioss.com.tw/eg/rd1/RD1info0004.PDF" target="_NEW">Manufacturers Brochure</a> (PDF Format)<br><a href="http://192.216.185.10/mwave/doc/A06950.html" target='_BLANK"'>Another info page</a><br><a href="http://192.216.185.10/mwave/ProdMB-AC-MW.hmx?UID=&CID=&updepts=MB&DNAME=%3Cb%3EMotherboards%3C%2Fb%3E&Back=ProdMB-AC-MW.hmx?" target="_BLANK">Available for about $20</a><br><br><img src="doc3_files/rd1.jpg"></font><br><br><a name="newsitem963875853,12731,"></a>
|
514
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday,
|
515
|
+
- July 17, 2000</b></font></td></tr></tbody></table>
|
516
|
+
+ <table bgcolor="#003399" width="100%">
|
517
|
+
+ <tbody>
|
518
|
+
+ <tr>
|
519
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday,
|
520
|
+
+ July 17, 2000</b></font></td>
|
521
|
+
+</tr>
|
522
|
+
+</tbody>
|
523
|
+
+</table>
|
524
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">How To
|
525
|
+
Overclock</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 4:17PM
|
526
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/963875853,12731,.html"><img border="0" src="doc3_files/comments.gif">3 comments</a>
|
527
|
+
@@ -277,7 +359,8 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
528
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/963859982,88982,.html"><img border="0" src="doc3_files/comments.gif">1 comments</a>
|
529
|
+
�|�<a href="http://bp6.gamesquad.net/#news_top">top</a></font> <br><font color="black" face="Arial" size="2">We all need to have some fun
|
530
|
+
sometimes! Check out this little web site that sells 'nerd' clothing
|
531
|
+
- ;) (I like the bibs in the Junior Hackerz section) :-�<br><br><div align="center"><a href="http://www.nerdgear.com/" target="_blank"><img border="0" src="doc3_files/nerdinside.gif"></a></div></font><br><br><a name="newsitem963819796,9688,"></a><b><u><font color="#003366" face="Verdana, Arial" size="2">Dual PSU Wiring diagram... (preview to
|
532
|
+
+ ;) (I like the bibs in the Junior Hackerz section) :-�<br><br>
|
533
|
+
+ <div align="center"><a href="http://www.nerdgear.com/" target="_blank"><img border="0" src="doc3_files/nerdinside.gif"></a></div></font><br><br><a name="newsitem963819796,9688,"></a><b><u><font color="#003366" face="Verdana, Arial" size="2">Dual PSU Wiring diagram... (preview to
|
534
|
+
Part 1 Watercooling Project)</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 12:43AM PDT</small>� <a href="http://bp6.gamesquad.net/news/963819796,9688,.html"><img border="0" src="doc3_files/comments.gif">11 comments</a>
|
535
|
+
�|�<a href="http://bp6.gamesquad.net/#news_top">top</a></font> <br><font color="black" face="Arial" size="2">When is comes to overclocking your
|
536
|
+
system, cooling plays a big role. Powering all of those fans in your
|
537
|
+
@@ -293,8 +376,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
538
|
+
<br><br>View Diagram 1 <a href="http://bp6.gamesquad.net/images/wiring.jpg" target="_BLANK">here</a>.<br>View Diagram 2 <a href="http://bp6.gamesquad.net/images/psu2.gif" target="_BLANK">here</a>.<br><br>I used Tap-In Squeeze Connectors and
|
539
|
+
22 guage wire to connect the wires. You can get them at Radio Shack
|
540
|
+
Part# 64-3053 or <a href="http://www.radioshack.com/ProductCatalog/ProductDetail/Index/1,2098,,00.html?SKUString1=64&SKUString2=3053" target="_blank">click here</a>.</font><br><br><a name="newsitem963766655,78511,"></a>
|
541
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday,
|
542
|
+
- July 16, 2000</b></font></td></tr></tbody></table>
|
543
|
+
+ <table bgcolor="#003399" width="100%">
|
544
|
+
+ <tbody>
|
545
|
+
+ <tr>
|
546
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday,
|
547
|
+
+ July 16, 2000</b></font></td>
|
548
|
+
+</tr>
|
549
|
+
+</tbody>
|
550
|
+
+</table>
|
551
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">RAM Overclocking?
|
552
|
+
Hmmmmm.</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 9:57AM
|
553
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/963766655,78511,.html"><img border="0" src="doc3_files/comments.gif">3 comments</a>
|
554
|
+
@@ -319,9 +408,16 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
555
|
+
�|�<a href="http://bp6.gamesquad.net/#news_top">top</a></font> <br><font color="black" face="Arial" size="2">A follow up on the 'Weekly CPU
|
556
|
+
Prices', this guide will help you determine which cpu is best for
|
557
|
+
you (and your board ;-)). Sent to me by Spanky, here's the
|
558
|
+
- link:<br><br><li><a href="http://www6.tomshardware.com/howto/00q2/000412/index.html" target="_blank">http://www6.tomshardware.com/howto/00q2/000412/index.html</a></li></font><br><br><a name="newsitem963685749,28290,"></a>
|
559
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Saturday,
|
560
|
+
- July 15, 2000</b></font></td></tr></tbody></table>
|
561
|
+
+ link:<br><br>
|
562
|
+
+ <li><a href="http://www6.tomshardware.com/howto/00q2/000412/index.html" target="_blank">http://www6.tomshardware.com/howto/00q2/000412/index.html</a></li></font><br><br><a name="newsitem963685749,28290,"></a>
|
563
|
+
+ <table bgcolor="#003399" width="100%">
|
564
|
+
+ <tbody>
|
565
|
+
+ <tr>
|
566
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Saturday,
|
567
|
+
+ July 15, 2000</b></font></td>
|
568
|
+
+</tr>
|
569
|
+
+</tbody>
|
570
|
+
+</table>
|
571
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Weekly CPU
|
572
|
+
Prices</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 11:29AM
|
573
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/963685749,28290,.html"><img border="0" src="doc3_files/comments.gif">2 comments</a>
|
574
|
+
@@ -341,8 +437,14 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
575
|
+
any porno piccies in my mailbox! I have enough of those!) Kidding
|
576
|
+
guys.<br><br>Okay, that's all for now.<br><br>The
|
577
|
+
��.</font><br><br><a name="newsitem963619505,3764,"></a>
|
578
|
+
- <table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Friday,
|
579
|
+
- July 14, 2000</b></font></td></tr></tbody></table>
|
580
|
+
+ <table bgcolor="#003399" width="100%">
|
581
|
+
+ <tbody>
|
582
|
+
+ <tr>
|
583
|
+
+ <td><font color="#ffffff" face="Verdana,arial" size="2"><b>Friday,
|
584
|
+
+ July 14, 2000</b></font></td>
|
585
|
+
+</tr>
|
586
|
+
+</tbody>
|
587
|
+
+</table>
|
588
|
+
<br><!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Hey
|
589
|
+
There!</font></u></b><br><font color="#0066cc" face="Arial" size="1"><small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 5:05PM
|
590
|
+
PDT</small>� <a href="http://bp6.gamesquad.net/news/963619505,3764,.html"><img border="0" src="doc3_files/comments.gif">7 comments</a>
|
591
|
+
@@ -351,15 +453,22 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
592
|
+
I'll be posting up news from time to time now so, if you'd like, you
|
593
|
+
may send me some news to be posted if you find any ( we don't want
|
594
|
+
to flood Tim ;-) ).<br><br>My e-mail address is <a href="mailto:killz@i82hq.com">killz@i82hq.com</a><br><br>Ciao for
|
595
|
+
- now.<br><br>The ��.</font><br><br></font><center><iframe frameborder="0" height="60" marginheight="0" marginwidth="0" noresize scrolling="no" src="doc3_files/ad_iframe.htm" width="468"><a href="http://ads.adflight.com/go_static.asp?asid=7708" target="_top"><img width="468" height="60" border="0" alt="Advertisement" src="http://ads.adflight.com/ad_static.asp?pid=2097&sid=1881&asid=7708"></a></iframe></center>
|
596
|
+
-</td></tr></tbody></table>
|
597
|
+
+ now.<br><br>The ��.</font><br><br>
|
598
|
+
+ </font><center><iframe frameborder="0" height="60" marginheight="0" marginwidth="0" noresize scrolling="no" src="doc3_files/ad_iframe.htm" width="468"><a href="http://ads.adflight.com/go_static.asp?asid=7708" target="_top"><img width="468" height="60" border="0" alt="Advertisement" src="http://ads.adflight.com/ad_static.asp?pid=2097&sid=1881&asid=7708"></a></iframe></center>
|
599
|
+
+</td>
|
600
|
+
+</tr>
|
601
|
+
+</tbody>
|
602
|
+
+</table>
|
603
|
+
</center>
|
604
|
+
</td>
|
605
|
+
<td bgcolor="silver" valign="top" width="10%">
|
606
|
+
<center>
|
607
|
+
<p>
|
608
|
+
</p>
|
609
|
+
-<table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td colstart="1">
|
610
|
+
+<table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%">
|
611
|
+
+ <tbody>
|
612
|
+
+ <tr>
|
613
|
+
+ <td colstart="1">
|
614
|
+
<center>
|
615
|
+
<!-- <FORM ACTION="/cgi-bin/subscribe.pl" METHOD="POST" ENCTYPE="application/x-www-form-urlencoded">
|
616
|
+
<IMG SRC="/images/spacer.gif" WIDTH="111" HEIGHT="1"><BR>
|
617
|
+
@@ -375,7 +484,10 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
618
|
+
<form action="http://bp6.gamesquad.net/cgi-bin/news/viewnews.cgi?search" method="post">Search news<br><input name="searchstring" size="13"><br><input name="submit" style="BACKGROUND-COLOR: #000000; COLOR: #ffffff; FONT-FAMILY: Verdana; FONT-SIZE: xx-small; FONT-WEIGHT: bold" type="submit" value="Submit"><br><a href="http://bp6.gamesquad.net/cgi-bin/news/viewnews.cgi?newsall">News
|
619
|
+
archive</a>
|
620
|
+
</form></font> </center>
|
621
|
+
-</td></tr></tbody></table>
|
622
|
+
+</td>
|
623
|
+
+</tr>
|
624
|
+
+</tbody>
|
625
|
+
+</table>
|
626
|
+
<!-- <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="100%" BGCOLOR="silver">
|
627
|
+
<TR>
|
628
|
+
<TD WIDTH="100%">
|
629
|
+
@@ -384,7 +496,11 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
630
|
+
</TD>
|
631
|
+
</TR>
|
632
|
+
</TABLE>
|
633
|
+
---><table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="middle" width="100%">
|
634
|
+
+-->
|
635
|
+
+ <table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%">
|
636
|
+
+ <tbody>
|
637
|
+
+ <tr>
|
638
|
+
+ <td align="middle" width="100%">
|
639
|
+
<!-- BEGIN GoTo.com Search Box -->
|
640
|
+
<script language="javascript" type="text/javascript">
|
641
|
+
<!--
|
642
|
+
@@ -415,31 +531,49 @@ eval("page" + id + " = window.open(URL, '" + id + "', 'toolbars=0, scrollbars=0,
|
643
|
+
document.write("ype=gif&size=100x90>");
|
644
|
+
}
|
645
|
+
// -->
|
646
|
+
- </script><b><noscript></noscript></b><a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank"><img align="bottom" border="0" height="90" ismap src="doc3_files/100x90.gif" width="100"></a><b><a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank">
|
647
|
+
+ </script>
|
648
|
+
+ <b><noscript></noscript></b><a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank"><img align="bottom" border="0" height="90" ismap src="doc3_files/100x90.gif" width="100"></a><b><a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank">
|
649
|
+
</a></b><b></b><b><!-- END GoTo.com Search Box --></b><!-- Pricewatch Search Box -->
|
650
|
+
<form action="http://www.pricewatch.com/search/search.asp" method="get" target="_Blank">
|
651
|
+
<center>
|
652
|
+
<p><b><font color="white" face="ARIAL, HELVETICA" size="1">PC Price
|
653
|
+
- Search<br></font></b><input maxlength="30" name="criteria" size="10"><br><input name="submit" style="BACKGROUND-COLOR: #000000; COLOR: #ffffff; FONT-FAMILY: Verdana; FONT-SIZE: xx-small; FONT-WEIGHT: bold" type="submit" value="Search"></p>
|
654
|
+
+ Search<br></font></b><input maxlength="30" name="criteria" size="10"><br><input name="submit" style="BACKGROUND-COLOR: #000000; COLOR: #ffffff; FONT-FAMILY: Verdana; FONT-SIZE: xx-small; FONT-WEIGHT: bold" type="submit" value="Search">
|
655
|
+
+ </p>
|
656
|
+
</center>
|
657
|
+
</form>
|
658
|
+
<!-- Pricewatch Search Box --><a href="http://www.puicorp.com/bp6specials.htm" target="_BLANK"><img src="doc3_files/puibp6.gif"></a><br><br><br><br><a href="http://store.yahoo.com/dunamis-site/maxtor.html" target="_BLANK"><img alt="BP6.com Special - Enter CODE: BP6-hd in the order (notes) to receive a discount" src="doc3_files/hd5.gif"><font size="1"><br>BP6.COM
|
659
|
+
- Special<br>Code:BP6-hd</font></a> </td></tr></tbody></table>
|
660
|
+
-<table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%"><tbody><tr><td width="100%">�</td></tr></tbody></table>
|
661
|
+
+ Special<br>Code:BP6-hd</font></a> </td>
|
662
|
+
+</tr>
|
663
|
+
+</tbody>
|
664
|
+
+</table>
|
665
|
+
+ <table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
|
666
|
+
+ <tbody>
|
667
|
+
+ <tr>
|
668
|
+
+ <td width="100%">�</td>
|
669
|
+
+</tr>
|
670
|
+
+</tbody>
|
671
|
+
+</table>
|
672
|
+
</center>
|
673
|
+
</td>
|
674
|
+
-</tr></tbody></table>
|
675
|
+
-<!-- </TABLE>--><center></center>
|
676
|
+
+</tr>
|
677
|
+
+</tbody>
|
678
|
+
+</table>
|
679
|
+
+<!-- </TABLE>-->
|
680
|
+
+<center></center>
|
681
|
+
<tr>
|
682
|
+
-<td colspan="3" valign="TOP" height="70">�</td> </tr>
|
683
|
+
-<table border="0" width="780"><tbody>
|
684
|
+
-<tr><td width="780">
|
685
|
+
+<td colspan="3" valign="TOP" height="70">�</td> </tr>
|
686
|
+
+<table border="0" width="780">
|
687
|
+
+ <tbody>
|
688
|
+
+ <tr>
|
689
|
+
+ <td width="780">
|
690
|
+
<p align="center"><font color="#999999" face="verdana,arial" size="1">Copyright
|
691
|
+
�1999-2000 BP6.com, All rights reserved.<br>Got news? Send it to </font><a href="mailto:tim@bp6.com"><font color="white" face="Verdana" size="1">Tim</font></a> </p>
|
692
|
+
-</td></tr>
|
693
|
+
+</td>
|
694
|
+
+</tr>
|
695
|
+
<!-- <TR> <TD WIDTH="780"> <P ALIGN="CENTER"><FONT SIZE="1" COLOR="#999999" FACE="Verdana,arial">Site design by Tim Brinkley</FONT> </TD> </TR> -->
|
696
|
+
-</tbody></table>
|
697
|
+
+</tbody>
|
698
|
+
+</table>
|
699
|
+
</div>
|
700
|
+
-<script> window.open=NS_ActualOpen; </script>
|
701
|
+
+<script> window.open=NS_ActualOpen; </script>
|
702
|
+
</body>
|
703
|
+
</html>
|
704
|
+
diff --git a/result/HTML/entities.html b/result/HTML/entities.html
|
705
|
+
index 6e53680..f84424c 100644
|
706
|
+
--- a/result/HTML/entities.html
|
707
|
+
+++ b/result/HTML/entities.html
|
708
|
+
@@ -1,6 +1,8 @@
|
709
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
710
|
+
-<html><body><p tst="a&b" tst2="a&b" tst3="a & b">
|
711
|
+
+<html><body>
|
712
|
+
+<p tst="a&b" tst2="a&b" tst3="a & b">
|
713
|
+
a&b
|
714
|
+
a&b
|
715
|
+
a & b
|
716
|
+
-</p></body></html>
|
717
|
+
+</p>
|
718
|
+
+</body></html>
|
719
|
+
diff --git a/result/HTML/entities2.html b/result/HTML/entities2.html
|
720
|
+
index 0b85caf..8e854d3 100644
|
721
|
+
--- a/result/HTML/entities2.html
|
722
|
+
+++ b/result/HTML/entities2.html
|
723
|
+
@@ -1,6 +1,8 @@
|
724
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
725
|
+
-<html><body>
|
726
|
+
+<html>
|
727
|
+
+<body>
|
728
|
+
<form>
|
729
|
+
<input type="text" name="test" value="š">
|
730
|
+
</form>
|
731
|
+
-</body></html>
|
732
|
+
+</body>
|
733
|
+
+</html>
|
734
|
+
diff --git a/result/HTML/fp40.htm b/result/HTML/fp40.htm
|
735
|
+
index a1244dd..8affc19 100644
|
736
|
+
--- a/result/HTML/fp40.htm
|
737
|
+
+++ b/result/HTML/fp40.htm
|
738
|
+
@@ -1,10 +1,12 @@
|
739
|
+
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML//EN">
|
740
|
+
<html>
|
741
|
+
+
|
742
|
+
<head>
|
743
|
+
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
|
744
|
+
<title>README - Microsoft FrontPage 2000 Server Extensions</title>
|
745
|
+
<meta name="Microsoft Theme" content="none">
|
746
|
+
</head>
|
747
|
+
+
|
748
|
+
<body>
|
749
|
+
<font face="Verdana">
|
750
|
+
<h1><a name="top">Microsoft FrontPage 2000 Server Extensions, UNIX</a></h1>
|
751
|
+
@@ -16,13 +18,16 @@
|
752
|
+
|
753
|
+
</p>
|
754
|
+
<ul>
|
755
|
+
-<li>Authoring FrontPage webs</li>
|
756
|
+
+ <li>Authoring FrontPage webs</li>
|
757
|
+
<li>Administering FrontPage webs</li>
|
758
|
+
<li>Browse-time FrontPage web functionality</li>
|
759
|
+
</ul>
|
760
|
+
+
|
761
|
+
+
|
762
|
+
<h2>Contents </h2>
|
763
|
+
|
764
|
+
-<a href="#relnotes">Release Notes</a><br><a href="#moreinfo">Resources for More Information</a>
|
765
|
+
+<a href="#relnotes">Release Notes</a><br>
|
766
|
+
+<a href="#moreinfo">Resources for More Information</a>
|
767
|
+
<p> </p>
|
768
|
+
<hr>
|
769
|
+
<h2><a name="relnotes">Release Notes</a></h2>
|
770
|
+
@@ -30,7 +35,9 @@
|
771
|
+
<p>This section provides complementary or late-breaking
|
772
|
+
information to supplement the Microsoft FrontPage Server Extensions documentation.</p>
|
773
|
+
|
774
|
+
-<p><a href="#apache">Apache 1.3.4 Support</a><br><a href="#upgrading">Upgrading from previous version of FrontPage Server Extensions</a><br><a href="#executables">Uploading files into executable folders</a></p>
|
775
|
+
+<p><a href="#apache">Apache 1.3.4 Support</a><br>
|
776
|
+
+<a href="#upgrading">Upgrading from previous version of FrontPage Server Extensions</a><br>
|
777
|
+
+<a href="#executables">Uploading files into executable folders</a></p>
|
778
|
+
|
779
|
+
|
780
|
+
<p align="right"><font size="1"><a href="#top">Top of Page</a></font></p>
|
781
|
+
@@ -100,12 +107,17 @@ see the FrontPage 2000 Server Extensions Resource Kit at <a href="http://officeu
|
782
|
+
|
783
|
+
|
784
|
+
<hr>
|
785
|
+
+
|
786
|
+
+
|
787
|
+
+
|
788
|
+
<h2><a name="moreinfo">Resources for More Information</a></h2>
|
789
|
+
|
790
|
+
<p>This section lists sources of more information about the
|
791
|
+
FrontPage Server Extensions.</p>
|
792
|
+
|
793
|
+
-<p><a href="#serk">Server Extensions Resource Kit</a><br><a href="#serkupdate">Server Extensions Resource Kit Update</a><br><a href="#kb">Knowledge Base</a></p>
|
794
|
+
+<p><a href="#serk">Server Extensions Resource Kit</a><br>
|
795
|
+
+<a href="#serkupdate">Server Extensions Resource Kit Update</a><br>
|
796
|
+
+<a href="#kb">Knowledge Base</a></p>
|
797
|
+
|
798
|
+
|
799
|
+
<p align="right"><font size="1"><a href="#top">Top of Page</a></font></p>
|
800
|
+
diff --git a/result/HTML/html5_enc.html b/result/HTML/html5_enc.html
|
801
|
+
index 596d54d..44ceebc 100644
|
802
|
+
--- a/result/HTML/html5_enc.html
|
803
|
+
+++ b/result/HTML/html5_enc.html
|
804
|
+
@@ -1,6 +1,8 @@
|
805
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
806
|
+
<html>
|
807
|
+
-<head><meta charset="iso-8859-1"></head>
|
808
|
+
+<head>
|
809
|
+
+<meta charset="iso-8859-1">
|
810
|
+
+</head>
|
811
|
+
<body>
|
812
|
+
<p>très</p>
|
813
|
+
</body>
|
814
|
+
diff --git a/result/HTML/liclose.html b/result/HTML/liclose.html
|
815
|
+
index f4e4edb..62391dc 100644
|
816
|
+
--- a/result/HTML/liclose.html
|
817
|
+
+++ b/result/HTML/liclose.html
|
818
|
+
@@ -1,6 +1,8 @@
|
819
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
820
|
+
<html>
|
821
|
+
-<head><title></title></head>
|
822
|
+
+<head>
|
823
|
+
+ <title></title>
|
824
|
+
+</head>
|
825
|
+
<body>
|
826
|
+
<ul>
|
827
|
+
<li>First item
|
828
|
+
@@ -8,5 +10,6 @@
|
829
|
+
<li>Second item, closes the first one
|
830
|
+
</li>
|
831
|
+
</ul>
|
832
|
+
+
|
833
|
+
</body>
|
834
|
+
</html>
|
835
|
+
diff --git a/result/HTML/lt.html b/result/HTML/lt.html
|
836
|
+
index ca28039..c29f74f 100644
|
837
|
+
--- a/result/HTML/lt.html
|
838
|
+
+++ b/result/HTML/lt.html
|
839
|
+
@@ -1,2 +1,6 @@
|
840
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
841
|
+
-<html><head><meta name="Author" content="Root <root@aol.com>"></head></html>
|
842
|
+
+<html>
|
843
|
+
+<head>
|
844
|
+
+<meta name="Author" content="Root <root@aol.com>">
|
845
|
+
+</head>
|
846
|
+
+</html>
|
847
|
+
diff --git a/result/HTML/noscript.html b/result/HTML/noscript.html
|
848
|
+
index 09d98ce..454e943 100644
|
849
|
+
--- a/result/HTML/noscript.html
|
850
|
+
+++ b/result/HTML/noscript.html
|
851
|
+
@@ -1,10 +1,10 @@
|
852
|
+
<!DOCTYPE html>
|
853
|
+
<html>
|
854
|
+
-<head>
|
855
|
+
-<title>omg</title>
|
856
|
+
-<noscript><link rel="stylesheet" href="http://foo.com"></noscript>
|
857
|
+
-</head>
|
858
|
+
-<body id="xxx">
|
859
|
+
+ <head>
|
860
|
+
+ <title>omg</title>
|
861
|
+
+ <noscript><link rel="stylesheet" href="http://foo.com"></noscript>
|
862
|
+
+ </head>
|
863
|
+
+ <body id="xxx">
|
864
|
+
<p>yo</p>
|
865
|
+
</body>
|
866
|
+
</html>
|
867
|
+
diff --git a/result/HTML/pre.html b/result/HTML/pre.html
|
868
|
+
index 5308b6d..f83a7cb 100644
|
869
|
+
--- a/result/HTML/pre.html
|
870
|
+
+++ b/result/HTML/pre.html
|
871
|
+
@@ -1,4 +1,6 @@
|
872
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
873
|
+
-<html><body>
|
874
|
+
+<html>
|
875
|
+
+<body>
|
876
|
+
<pre><a href="toto"></a><img src="titi"></pre>
|
877
|
+
-</body></html>
|
878
|
+
+</body>
|
879
|
+
+</html>
|
880
|
+
diff --git a/result/HTML/python.html b/result/HTML/python.html
|
881
|
+
index 5fdc6a2..ea0be18 100644
|
882
|
+
--- a/result/HTML/python.html
|
883
|
+
+++ b/result/HTML/python.html
|
884
|
+
@@ -1,6 +1,9 @@
|
885
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
886
|
+
<?xml-stylesheet href="./css/ht2html.css" type="text/css"?><html>
|
887
|
+
-<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --><head><title>Python Programming Language</title></head>
|
888
|
+
+<!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->
|
889
|
+
+<head>
|
890
|
+
+<title>Python Programming Language</title>
|
891
|
+
+</head>
|
892
|
+
<body>
|
893
|
+
</body>
|
894
|
+
</html>
|
895
|
+
diff --git a/result/HTML/reg1.html b/result/HTML/reg1.html
|
896
|
+
index ef9f2e1..893d6a2 100644
|
897
|
+
--- a/result/HTML/reg1.html
|
898
|
+
+++ b/result/HTML/reg1.html
|
899
|
+
@@ -1,6 +1,8 @@
|
900
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
901
|
+
<html>
|
902
|
+
-<head><title>Regression test 1</title></head>
|
903
|
+
+<head>
|
904
|
+
+<title>Regression test 1</title>
|
905
|
+
+</head>
|
906
|
+
<body>
|
907
|
+
<h1>Regression test 1</h1>
|
908
|
+
<p>
|
909
|
+
diff --git a/result/HTML/reg2.html b/result/HTML/reg2.html
|
910
|
+
index ac12028..88cf9d3 100644
|
911
|
+
--- a/result/HTML/reg2.html
|
912
|
+
+++ b/result/HTML/reg2.html
|
913
|
+
@@ -1,6 +1,8 @@
|
914
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
915
|
+
<html>
|
916
|
+
-<head><title>Regression test 2</title></head>
|
917
|
+
+<head>
|
918
|
+
+<title>Regression test 2</title>
|
919
|
+
+</head>
|
920
|
+
<body>
|
921
|
+
<h1>Regression test 2</h1>
|
922
|
+
<p>
|
923
|
+
diff --git a/result/HTML/reg3.html b/result/HTML/reg3.html
|
924
|
+
index 7b1bc1d..d35ac0d 100644
|
925
|
+
--- a/result/HTML/reg3.html
|
926
|
+
+++ b/result/HTML/reg3.html
|
927
|
+
@@ -1,6 +1,8 @@
|
928
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
929
|
+
<html>
|
930
|
+
-<head><title>Regression test 3</title></head>
|
931
|
+
+<head>
|
932
|
+
+<title>Regression test 3</title>
|
933
|
+
+</head>
|
934
|
+
<body>
|
935
|
+
<h1>Regression test 3</h1>
|
936
|
+
<p>
|
937
|
+
diff --git a/result/HTML/reg4.html b/result/HTML/reg4.html
|
938
|
+
index f6a6ab8..eb1ba09 100644
|
939
|
+
--- a/result/HTML/reg4.html
|
940
|
+
+++ b/result/HTML/reg4.html
|
941
|
+
@@ -1,11 +1,14 @@
|
942
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
943
|
+
<html>
|
944
|
+
-<head><title>Regression test 4</title></head>
|
945
|
+
+<head>
|
946
|
+
+<title>Regression test 4</title>
|
947
|
+
+</head>
|
948
|
+
<body>
|
949
|
+
<h1>Regression test 4</h1>
|
950
|
+
<p>
|
951
|
+
Wrong close of tag P
|
952
|
+
</p>
|
953
|
+
<hr>
|
954
|
+
+
|
955
|
+
</body>
|
956
|
+
</html>
|
957
|
+
diff --git a/result/HTML/repeat.html b/result/HTML/repeat.html
|
958
|
+
index 550c66f..71cf72e 100644
|
959
|
+
--- a/result/HTML/repeat.html
|
960
|
+
+++ b/result/HTML/repeat.html
|
961
|
+
@@ -1,5 +1,7 @@
|
962
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
963
|
+
<html><body>
|
964
|
+
<td></td>
|
965
|
+
-<td><!-- <a><b> --></td>
|
966
|
+
+<td>
|
967
|
+
+<!-- <a><b> -->
|
968
|
+
+</td>
|
969
|
+
</body></html>
|
970
|
+
diff --git a/result/HTML/script.html b/result/HTML/script.html
|
971
|
+
index 908723e..5b95a1f 100644
|
972
|
+
--- a/result/HTML/script.html
|
973
|
+
+++ b/result/HTML/script.html
|
974
|
+
@@ -4,6 +4,7 @@
|
975
|
+
<body>
|
976
|
+
<script language="javascript">
|
977
|
+
if (window.open<max) ;
|
978
|
+
-</script><input onclick="if(window.open<max);">
|
979
|
+
+</script>
|
980
|
+
+<input onclick="if(window.open<max);">
|
981
|
+
</body>
|
982
|
+
</html>
|
983
|
+
diff --git a/result/HTML/script2.html b/result/HTML/script2.html
|
984
|
+
index 2be4f93..2ad9b95 100644
|
985
|
+
--- a/result/HTML/script2.html
|
986
|
+
+++ b/result/HTML/script2.html
|
987
|
+
@@ -1,14 +1,15 @@
|
988
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
989
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
990
|
+
-<head>
|
991
|
+
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
992
|
+
+ <head>
|
993
|
+
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
994
|
+
<title>Test Page</title>
|
995
|
+
</head>
|
996
|
+
<body>
|
997
|
+
<div id="portal">
|
998
|
+
<script type="text/javascript">
|
999
|
+
documen.write("Příliš žluťoučký kůň úpěl ďábelksé ódy");
|
1000
|
+
-</script><p>
|
1001
|
+
+</script>
|
1002
|
+
+ <p>
|
1003
|
+
Příliš žluťoučký kůň úpěl ďábelksé ódy;
|
1004
|
+
</p>
|
1005
|
+
</div>
|
1006
|
+
diff --git a/result/HTML/test2.html b/result/HTML/test2.html
|
1007
|
+
index 98a2716..eaa8864 100644
|
1008
|
+
--- a/result/HTML/test2.html
|
1009
|
+
+++ b/result/HTML/test2.html
|
1010
|
+
@@ -1,11 +1,13 @@
|
1011
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
1012
|
+
<html>
|
1013
|
+
-<head><title>Linux Today</title></head>
|
1014
|
+
+<head> <title>Linux Today</title>
|
1015
|
+
+</head>
|
1016
|
+
<body bgcolor="White" link="Blue" text="Black" vlink="Black" alink="Red">
|
1017
|
+
|
1018
|
+
<center>
|
1019
|
+
-<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr bgcolor="#FFFFFF">
|
1020
|
+
-<td height="90">
|
1021
|
+
+<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
1022
|
+
+ <tr bgcolor="#FFFFFF">
|
1023
|
+
+ <td height="90">
|
1024
|
+
<a href="http://linuxtoday.com/cgi-bin/click.pl?adnum=49"><img src="/pics/door_linux.gif" border="0" width="468" height="60" alt="Atipa Linux solutions. Your reliable cluster, server, and workstation solution. Win a Free Celeron Linux Workstation!"></a>
|
1025
|
+
|
1026
|
+
</td>
|
1027
|
+
@@ -13,7 +15,8 @@
|
1028
|
+
<img src="/pics/lt.gif" vspace="5" alt="Linux Today Logo"><br><font size="-1"><a href="http://linux.com">linux.com</a> partner</font><p></p>
|
1029
|
+
</td>
|
1030
|
+
|
1031
|
+
- </tr></table>
|
1032
|
+
+ </tr>
|
1033
|
+
+</table>
|
1034
|
+
<font size="2" face="Helvetica">
|
1035
|
+
[ <a href="http://linuxtoday.com/">headlines</a> |
|
1036
|
+
<a href="http://features.linuxtoday.com/">features</a> |
|
1037
|
+
diff --git a/result/HTML/test3.html b/result/HTML/test3.html
|
1038
|
+
index 903723c..b37a1c7 100644
|
1039
|
+
--- a/result/HTML/test3.html
|
1040
|
+
+++ b/result/HTML/test3.html
|
1041
|
+
@@ -1,11 +1,13 @@
|
1042
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
1043
|
+
-<html>
|
1044
|
+
-<head><base target="contents"></head>
|
1045
|
+
+<html>
|
1046
|
+
+<head>
|
1047
|
+
+<base target="contents">
|
1048
|
+
+</head>
|
1049
|
+
<body>
|
1050
|
+
<a name="ProblemDomain.Package"><h2>Component Package diagram ProblemDomain</h2>
|
1051
|
+
</a><p></p>
|
1052
|
+
-<hr>
|
1053
|
+
-<dl>
|
1054
|
+
+<hr>
|
1055
|
+
+<dl>
|
1056
|
+
<dt>
|
1057
|
+
<b>Stereotype </b>problem domain</dt>
|
1058
|
+
<dt>
|
1059
|
+
@@ -15,10 +17,11 @@
|
1060
|
+
<dd>Interface, thats stores and manipulates the Family Tree.
|
1061
|
+
</dd>
|
1062
|
+
</dd>
|
1063
|
+
-</dl>
|
1064
|
+
+</dl>
|
1065
|
+
<p></p>
|
1066
|
+
-<hr>
|
1067
|
+
-<dl>
|
1068
|
+
+<hr>
|
1069
|
+
+<dl>
|
1070
|
+
+
|
1071
|
+
<dt><h4>Class <a href="HumanInterface.FamilyFrame.html#HumanInterface.FamilyFrame">HumanInterface.FamilyFrame</a>
|
1072
|
+
</h4></dt>
|
1073
|
+
<dt><h4>Class <a href="ProblemDomain.Birth.html#ProblemDomain.Birth">ProblemDomain.Birth</a>
|
1074
|
+
@@ -37,19 +40,20 @@
|
1075
|
+
</h4></dt>
|
1076
|
+
<dt><h4>Class <a href="ProblemDomain.Note.html#ProblemDomain.Note">ProblemDomain.Note</a>
|
1077
|
+
</h4></dt>
|
1078
|
+
-</dl>
|
1079
|
+
+</dl>
|
1080
|
+
+
|
1081
|
+
<h4><b>Links</b></h4>
|
1082
|
+
<ul><li>
|
1083
|
+
<b>Link to </b><a href="HumanInterface.Package.html#HumanInterface.Package">HumanInterface</a>
|
1084
|
+
-</li></ul>
|
1085
|
+
-<dir></dir>
|
1086
|
+
+</li></ul>
|
1087
|
+
+<dir></dir>
|
1088
|
+
<ul><li>
|
1089
|
+
<b>Link to </b><a href="DataManagement.FlatFile.Package.html#DataManagement.FlatFile.Package">DataManagement.FlatFile</a>
|
1090
|
+
-</li></ul>
|
1091
|
+
-<dir></dir>
|
1092
|
+
+</li></ul>
|
1093
|
+
+<dir></dir>
|
1094
|
+
<ul><li>
|
1095
|
+
<b>Link to </b><a href="DataManagement.Package.html#DataManagement.Package">DataManagement</a>
|
1096
|
+
-</li></ul>
|
1097
|
+
-<dir></dir>
|
1098
|
+
+</li></ul>
|
1099
|
+
+<dir></dir>
|
1100
|
+
</body>
|
1101
|
+
</html>
|
1102
|
+
diff --git a/result/HTML/utf8bug.html b/result/HTML/utf8bug.html
|
1103
|
+
index 42fbb43..66a498a 100644
|
1104
|
+
--- a/result/HTML/utf8bug.html
|
1105
|
+
+++ b/result/HTML/utf8bug.html
|
1106
|
+
@@ -1,5 +1,6 @@
|
1107
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
1108
|
+
<html>
|
1109
|
+
+
|
1110
|
+
<head>
|
1111
|
+
<meta http-equiv="Content-Language" content="en-us">
|
1112
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
1113
|
+
@@ -7,24 +8,28 @@
|
1114
|
+
<link rel="SHORTCUT ICON" href="favicon.ico">
|
1115
|
+
<title>شهير بلاگ</title>
|
1116
|
+
</head>
|
1117
|
+
+
|
1118
|
+
<body>
|
1119
|
+
|
1120
|
+
<table border="0" width="100%" id="MainTBL" cellspacing="0" cellpadding="0">
|
1121
|
+
-<tr>
|
1122
|
+
-<td class="Header1">
|
1123
|
+
- <table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%"><tr>
|
1124
|
+
-<td>
|
1125
|
+
+ <tr>
|
1126
|
+
+ <td class="Header1">
|
1127
|
+
+ <table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%">
|
1128
|
+
+ <tr>
|
1129
|
+
+ <td>
|
1130
|
+
<img border="0" src="Shell/Shahir.ShahidSales1.png" width="442" height="110">
|
1131
|
+
</td>
|
1132
|
+
<td> </td>
|
1133
|
+
- </tr></table>
|
1134
|
+
-</td>
|
1135
|
+
+ </tr>
|
1136
|
+
+ </table>
|
1137
|
+
+ </td>
|
1138
|
+
</tr>
|
1139
|
+
-<tr>
|
1140
|
+
-<td height="28">
|
1141
|
+
+ <tr>
|
1142
|
+
+ <td height="28">
|
1143
|
+
<div id="SideBar1">
|
1144
|
+
- <table width="100%"><tr>
|
1145
|
+
-<td>
|
1146
|
+
+ <table width="100%">
|
1147
|
+
+ <tr>
|
1148
|
+
+ <td>
|
1149
|
+
<span class="Item">
|
1150
|
+
<a href="Index.asp">
|
1151
|
+
خانه </a></span> <span class="Item">
|
1152
|
+
@@ -52,13 +57,19 @@ RSS </a></span> <span class="Item">
|
1153
|
+
</p>
|
1154
|
+
</div>
|
1155
|
+
</td>
|
1156
|
+
- </tr></table>
|
1157
|
+
-</div>
|
1158
|
+
+ </tr>
|
1159
|
+
+ </table>
|
1160
|
+
+ </div>
|
1161
|
+
</td>
|
1162
|
+
</tr>
|
1163
|
+
-<tr><td valign="top">
|
1164
|
+
- <table border="0" width="100%" cellspacing="0" cellpadding="0" id="Content"><tr><td class="Right" valign="top" style="padding-right: 60px">
|
1165
|
+
- <table width="100%"><tr><td valign="top">
|
1166
|
+
+ <tr>
|
1167
|
+
+ <td valign="top">
|
1168
|
+
+ <table border="0" width="100%" cellspacing="0" cellpadding="0" id="Content">
|
1169
|
+
+ <tr>
|
1170
|
+
+ <td class="Right" valign="top" style="padding-right: 60px">
|
1171
|
+
+ <table width="100%">
|
1172
|
+
+ <tr>
|
1173
|
+
+ <td valign="top">
|
1174
|
+
|
1175
|
+
<script>
|
1176
|
+
var tgs = new Array( 'div','td','tr','a');
|
1177
|
+
@@ -78,9 +89,11 @@ function ChangeSize( trgt,sz ) {
|
1178
|
+
for ( j = 0 ; j < cTags.length ; j++ ) cTags[ j ].style.fontSize = sz; //szs[ sz ];
|
1179
|
+
}
|
1180
|
+
}
|
1181
|
+
-</script><table width="100%" id="NewsDetail">
|
1182
|
+
-<tr>
|
1183
|
+
-<td valign="top">
|
1184
|
+
+</script>
|
1185
|
+
+
|
1186
|
+
+<table width="100%" id="NewsDetail">
|
1187
|
+
+ <tr>
|
1188
|
+
+ <td valign="top">
|
1189
|
+
<div class="News_Info">
|
1190
|
+
تاريخ درج: <font color="#000000">چهارشنبه، 29 اسفند 1386
|
1191
|
+
- Wednesday, March 19, 2008</font>
|
1192
|
+
@@ -88,32 +101,42 @@ function ChangeSize( trgt,sz ) {
|
1193
|
+
دفعات مشاهده: <font color="#000000">2688</font>
|
1194
|
+
بار كد: <font color="#000000">341</font>
|
1195
|
+
</div>
|
1196
|
+
- <br><!--
|
1197
|
+
+ <br>
|
1198
|
+
+ <!--
|
1199
|
+
<div>اندازه فونت:
|
1200
|
+
<a href="javascript:ChangeSize('NewsBody','7pt')"><font size="1">کوچک</font></a>
|
1201
|
+
<a href="javascript:ChangeSize('NewsBody','10pt')"><font size="2">معمولی</font></a>
|
1202
|
+
<a href="javascript:ChangeSize('NewsBody','13pt')"><font size="3">بزرگ</font></a>
|
1203
|
+
- </div>--><div class="Titr1">
|
1204
|
+
+ </div>-->
|
1205
|
+
+
|
1206
|
+
+
|
1207
|
+
+ <div class="Titr1">
|
1208
|
+
</div>
|
1209
|
+
- <br><div id="NewsBody">
|
1210
|
+
+ <br>
|
1211
|
+
+ <div id="NewsBody">
|
1212
|
+
|
1213
|
+
<div class="Image">
|
1214
|
+
|
1215
|
+
<a href="showimage.aspx?path=Files_Upload%5C302.JPG&Width=" rel="lightbox" title="شهير بلاگ">
|
1216
|
+
- <img src="showimage.aspx?path=Files_Upload%5C302.JPG&Width=220" align="left" border="1"></a>
|
1217
|
+
+ <img src="showimage.aspx?path=Files_Upload%5C302.JPG&Width=220" align="left" border="1">
|
1218
|
+
+ </a>
|
1219
|
+
</div>
|
1220
|
+
- <strong><font size="4"><font color="#0000ff">عکس</font> <font color="#0000ff">محصول هنر یکی از همکاران است. روی آن کلیک کند.</font></font></strong><s1></s1>
|
1221
|
+
+ <strong><font size="4"><font color="#0000ff">عکس</font> <font color="#0000ff">محصول هنر یکی از همکاران است. روی آن کلیک کند.</font></font></strong><s1> </s1>
|
1222
|
+
</div>
|
1223
|
+
- <br><div align="left">
|
1224
|
+
+ <br>
|
1225
|
+
+ <div align="left">
|
1226
|
+
<a href="printfriendly.asp?id=341">
|
1227
|
+
<img src="shell/PrintFriendly.png" border="0"></a>
|
1228
|
+
<a href="#" onclick="window.open('SendNews.asp?PageID=341','myWin','toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=no,width=500, height=200'); return false">
|
1229
|
+
- <img border="0" src="Shell/SendToFriends.jpg" width="140" height="30"></a>
|
1230
|
+
+ <img border="0" src="Shell/SendToFriends.jpg" width="140" height="30">
|
1231
|
+
+ </a>
|
1232
|
+
</div>
|
1233
|
+
<br>
|
1234
|
+
-</td>
|
1235
|
+
+ </td>
|
1236
|
+
</tr>
|
1237
|
+
-<tr><td> <br><hr>
|
1238
|
+
+ <tr>
|
1239
|
+
+ <td> <br>
|
1240
|
+
+ <hr>
|
1241
|
+
<div id="Comments"><ul>
|
1242
|
+
<b>نظرات
|
1243
|
+
کاربران:</b><br><li>
|
1244
|
+
@@ -153,15 +176,18 @@ function ChangeSize( trgt,sz ) {
|
1245
|
+
دیشلمه....شما تشریف نمی آورید؟</li>
|
1246
|
+
<br><br><li>
|
1247
|
+
<font color="blue">سیاوش:</font><br><font size="1">4/3/2008 - 9:28:00 PM</font><br>مرد هزار چهره مرد هزار چهره کیست؟شخصیتی ساخته و پرداخته مهران مدیری، پیمان قاسم خانی و دیگر نویسندگان؟ تنها هدفش آنست که چند روز تعطیلات، مارا سرگم کند و دیگر هیچ؟ مرد هزار چهره یک طنز است یک طنز تلخ، برداشتی واقعی از جامعه ایرانی. من جوانم پس دردآشنای جوانانم و خود را با خود و دیگر جوانان طرف می کنم بسیار اند جوانانی که مصداق مرد هزار چهره هستند جوانانی سودا زده یا به قول خود مسعود "جو گیر" که هر با محصولی کهنه را با تعریفی جدید به آنها ارائه کنند چنان با تمام و جود می پذیرند که گویی راه فائق آمدن بر تمام مشکلاتشان را یافته اند و می خرند، خواه این تحفه تئوری بر گرفته از تفکرات خشک و فسیلی گروهی باشد یا مدل ملیجک وار لباسی در پشت ویترین فروشگاه. مهم نیست چه باشد! مهم نیست دلیل انتخابش چه باشد! مهم نیست نتیجه این انتخاب چیست! تنها مهم است که می گویند از این طرف بفرمائید!حال این بفرمائید چه معنایی دارد باز هم مهم نیست!!! وای بر ما که نه خود را می شناسیم و نه در جهت شناخت خویش قدم می گذاریم. وای بر ما که دیگر حتی ندای درون خویش را نمی توانیم بشنویم. وای بر ما که نمی دانیم چه می خواهیم و هر بار که چیزی می خواهیم و در مسیر وصال پا می گذاریم به میانه راه نرسیده چنان مجذوب زرق و برق راههای دیگر می شویم که مبدا و مقصد را یکجا فراموش می کنیم. وای بر ما که نمی توانیم در برابر هر آنچه در مقابل انسانیت ما ایستاده "نه"بگوییم. درست است که ما جوانان به تنهایی مقصر نیستیم اما چون شروع تقصیریم پس می توانیم از ابتدا مانع مشکل هم باشیم. با احترام سیاوش<br>
|
1248
|
+
- <br><font color="#800000">بسیار زیبا سیاوش جان. درود بر تو. شهیر</font>
|
1249
|
+
+ <br>
|
1250
|
+
+<font color="#800000">بسیار زیبا سیاوش جان. درود بر تو. شهیر</font>
|
1251
|
+
</li>
|
1252
|
+
<br><br><li>
|
1253
|
+
<font color="blue">احسان __ خط سوم:</font><br><font size="1">4/3/2008 - 8:21:00 PM</font><br>با سلام و ادای احترام وکسب اجازه از شهیر عزیز . از عماد جان عزیزم بخاطر زحمتی که کشیدند و اطلاعات خوبی که دادند ، به سهم خودم تشکر می کنم . با کمال شرمندگی از اینکه "بدون هماهنگی" و " اجازه ای قبلی شما" و "بسرعت" ، معدود اشتباهات تایپی را که با توجه به حجم مطلب ، امری کاملا اجتناب ناپذیر است ، سعی کردم که اصلاح کنم ، از شما پوزش می خواهم . البته عماد جان عزیزم ، بد نیست بدانید که در میزان اشتباه در تایپ هرگز به پای بنده نخواهید رسید ! شاهد ادعای حقیر، شهیر و حسین جان عزیزم هستند که خبردارند که چگونه بنده در یک فقره عملیات تایپ ، دو صفحه ای کامل را جا انداختم !!! کافی است بپرسید ، در نهایت صداقت ، بر این رکورد بی نظیر و تاریخی شهادت خواهند داد ! باز هم از زحمات عماد جان و نیز سوالات خوب حسین جان تشکر می کنم که ان وعده ای مقاله ای عیدانه ای مفصل شهیر را در باره ای زنده یاد مرحوم مصدق ، در وسع خود بجای اوردند . ضمن انکه هیچکدام از دوستان، این زحمت ارزشمند عماد جان را دلیل ان نخواهند دانست که شهیرعزیز بعد از بازگشت از مسافرت ، سر فرصت وعده ای خود را عمل نکنند . مشتاقانه اما نه عجولانه ، منتظر مقاله ای شهیر هم خواهیم ماند. با احترام : احسان<br>
|
1254
|
+
- <br><font color="#800000">احسان جان، من فکر کردم قضیه شامل مرور زمان شده است. تا امروز که نرسیده ام دست به این پروژه بزنم. اگر عشق به حفظ ارتباط با شما ها نبود تا روز 25 اپریل به خودم مرخصی می دادم. در این سفر خدا می داند چند هزار مایل در 3 قاره را پیموده ام. از پوست کلفت خودم در عجبم که چطوری تونستم اخبار را دنبال کنم و چند مقاله کوتاه بنویسم. گرفتاری زیاد بود. شهیر</font>
|
1255
|
+
+ <br>
|
1256
|
+
+<font color="#800000">احسان جان، من فکر کردم قضیه شامل مرور زمان شده است. تا امروز که نرسیده ام دست به این پروژه بزنم. اگر عشق به حفظ ارتباط با شما ها نبود تا روز 25 اپریل به خودم مرخصی می دادم. در این سفر خدا می داند چند هزار مایل در 3 قاره را پیموده ام. از پوست کلفت خودم در عجبم که چطوری تونستم اخبار را دنبال کنم و چند مقاله کوتاه بنویسم. گرفتاری زیاد بود. شهیر</font>
|
1257
|
+
</li>
|
1258
|
+
<br><br><li>
|
1259
|
+
<font color="blue">عماد ۲۴ ساله از اصفهان:</font><br><font size="1">4/3/2008 - 7:14:00 PM</font><br>شهير جان اگر طولانی شد ببخشيد چاره ای نبود احسان جان از کمک شما نيز در ويرايش اين مطلب متشکرم اميدوارم حسين عزیز نيز راضی باشد<br>
|
1260
|
+
- <br><font color="#800000">ممنون از زحمتی که کشیدی عماد جان. شهیر</font>
|
1261
|
+
+ <br>
|
1262
|
+
+<font color="#800000">ممنون از زحمتی که کشیدی عماد جان. شهیر</font>
|
1263
|
+
</li>
|
1264
|
+
<br><br><li>
|
1265
|
+
<font color="blue">حسین:</font><br><font size="1">4/3/2008 - 7:04:00 PM</font><br>سلام آقا شهیر با اجازه شما خواستم از عماد عزیز وهمچنین سرور بزرگوار آقااحسان تشکر کنم وبه آقا عمادبگویم دستت درد نکنه بابت زحمتت وفوق العاده عالی بود.قسمتی که نوشتید" خود دکتر مصدق در تقریراتشان به اشتباه بودن تصمیمشان مبنی بر استعفاء اقرار می کنند"واقعا جالب وحاکی از روح بلند دکتر مصدق هست .بااینکه سوالات خرد وریز زیاد هست اما از اینکه به سوالات عمده من با توجه به کتاب دکتر مصدق پاسخ دادید بازهم تشکر میکنم .میخواستم این پاسخ را برای نویسنده مقاله رجانیوز copy&paste <br>
|
1266
|
+
@@ -173,11 +199,17 @@ function ChangeSize( trgt,sz ) {
|
1267
|
+
<font color="blue">حاجی جفرسون:</font><br><font size="1">4/3/2008 - 6:06:00 PM FOO!</font><br>با درود از قدیم گفته اند که یک کلمه هم از مادر عروس بشنوید. بنابراین به افاضات اخیر کشور دوست و برادر و سوسیالیست چین عزیز و جان جانان کمونیست عنایت بفرمایید: رادیو فردا: ديپلمات ها در وين گفته اند: که چين، از مخالفان تشديد تحريم های ايران در شورای امينت، اطلاعات خود درباره ارتباط برنامه هسته ای تهران با تلاش برای دستيابی سلاح اتمی را در اختيار آژانس بين المللی انرژی اتمی قرار داده است. العجب!!!!!! انتخاب :با وجود اینکه چین به شدت با تحریمهای شورای امنیت سازمان ملل علیه ایران مخالفت می کرد، اطلاعاتی در رابطه با فعالیتهای هسته ای ایران در اختیار مقامات آژانس بین المللی انرژی اتمی قرار داده که بر اساس آن ایران در تلاش برای دست یابی به سلاح های اتمی است. به گزارش خبرنگار سرویس بین الملل خبرگزاری انتخاب به نقل از فاکس نیوز؛جان بولتون ،نمایندۀ پیشین ایالات متحدۀ امریکا در سازمان ملل،در این باره گفت: اقدام اینچنینی از سوی چین به دلیل روابط نظامی که میان دو کشور [ایران و چین] برقرار است، بسیار قابل توجه است. خبرنگار انتخاب می افزاید؛ در حالی چین به این اقدام دست زده است که همکاری های تجاری و نظامی ایران با این کشور بطور بی سابقه ای افزایش یافته است. یا باب الحوائج!!!!! رادیو زمانه: چین با وجود مخالفت با تحریمهای شدید شورای امنیت علیه تهران، اطلاعاتی درباره تلاشهای تهران برای ساخت تسلیحات هستهای به آژانس بینالمللی انرژی اتمی ارائه کرده است. آسوشیتدپرس با اعلام این خبر به نقل از چند دیپلمات آشنا با پرونده هستهای ایران نوشت، پکن به همراه مسکو همواره بر سر راه شورای امنیت و امریکا برای اعمال مجازات های سخت تر علیه تهران به دلیل مقاومت هسته ای این کشور به صورت یک مانع عمل کردهاند. این گزارش می افزاید، تصمیم چین برای ارائه اطلاعاتی جهت استفاده در تحقیقات آژانس انرژی اتمی درباره برنامه تسلیحات هستهای ایران، گویای افزایش نارضایتی بینالمللی درباره برنامه هستهای جمهوری اسلامی است که حتی تلاش برای ساخت چنین تسلیحاتی را نیز تکذیب میکند. بر اساس این گزارش، دو دیپلمات بلندپایه که ارتباط نزدیکی با آژانس بینالمللی انرژی اتمی دارند این اقدام چین را برملا کردهاند. آژانس بینالمللی انرژی اتمی از اظهار نظر در این باره خودداری کرده است. العجب. من مامور و معذور..حالا از پدر عروس چند کلمه بشنوید: سخنگوی آژانس بین المللی انرژی اتمی ادعای برخی از رسانه های غربی را درباره این که چین اطلاعاتی را درباره برنامه هسته ای ایران در اختیار آژانس قرار داده است ، تکذیب کرد . ملیسا فلمینگ در گفت و گو با خبرنگار واحد مرکزی خبر تاکید کرد : آژانس بین المللی انرژی اتمی هرگز درباره اطلاعات محرمانه دریافتی از کشورها اظهار نظر نمی کند . وی گفت: هم
|
1268
|
+
</li>
|
1269
|
+
</ul></div>
|
1270
|
+
-</td></tr>
|
1271
|
+
+</td>
|
1272
|
+
+</tr>
|
1273
|
+
</table>
|
1274
|
+
-</td></tr></table>
|
1275
|
+
-</td></tr></table>
|
1276
|
+
-</td></tr>
|
1277
|
+
+</td>
|
1278
|
+
+</tr>
|
1279
|
+
+</table>
|
1280
|
+
+</td>
|
1281
|
+
+</tr>
|
1282
|
+
+</table>
|
1283
|
+
+</td>
|
1284
|
+
+</tr>
|
1285
|
+
</table>
|
1286
|
+
</body>
|
1287
|
+
</html>
|
1288
|
+
diff --git a/result/HTML/wired.html b/result/HTML/wired.html
|
1289
|
+
index f7123e8..74d366e 100644
|
1290
|
+
--- a/result/HTML/wired.html
|
1291
|
+
+++ b/result/HTML/wired.html
|
1292
|
+
@@ -3,81 +3,91 @@
|
1293
|
+
<head><title>Top Stories News from Wired News</title></head>
|
1294
|
+
<body bgcolor="#FFFFFF" text="#000000" link="#333399" vlink="#660066" alink="#666699">
|
1295
|
+
|
1296
|
+
-<table border="0" width="600" cellspacing="0" cellpadding="0"><tr>
|
1297
|
+
-<td valign="top" align="LEFT"><table border="0" cellpadding="0" cellspacing="0" width="468" height="60" bgcolor="#FFFFFF">
|
1298
|
+
+<table border="0" width="600" cellspacing="0" cellpadding="0">
|
1299
|
+
+ <tr>
|
1300
|
+
+ <td valign="top" align="LEFT"><table border="0" cellpadding="0" cellspacing="0" width="468" height="60" bgcolor="#FFFFFF">
|
1301
|
+
<form method="GET" action="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=9688&RunID=14074&AdID=22584&GroupID=1&FamilyID=2684&TagValues=8.25.156.159.166.171.172.174.179.180.181.182.183.196.197.199.208.389.412.436.2041.6750.78456.79630.81880&Redirect=http://www.springstreet.com/aa/citysearch.htm" id="form1" name="form1">
|
1302
|
+
<tr>
|
1303
|
+
<td bgcolor="#330099"><input name="city" type="text" size="7" maxlength="20" value="Seattle"></td>
|
1304
|
+
<td rowspan="2" align="LEFT" bgcolor="FFFFFF"><input type="IMAGE" src="http://static.wired.com/advertising/blipverts/allapartments/990625jpa_ssthome.gif" width="375" height="60" border="0" value="search" hspace="0" alt="Search over 6,000,000 Apts with SpringStreet"></td>
|
1305
|
+
-</tr>
|
1306
|
+
+</tr>
|
1307
|
+
<tr><td bgcolor="#330099">
|
1308
|
+
-<select name="state"><option value="WA" selected>WA
|
1309
|
+
+<select name="state">
|
1310
|
+
+<option value="WA" selected>WA
|
1311
|
+
</option>
|
1312
|
+
<option value="AL">AL</option>
|
1313
|
+
-<option value="AK">AK</option>
|
1314
|
+
-<option value="AZ">AZ</option>
|
1315
|
+
-<option value="AR">AR</option>
|
1316
|
+
-<option value="CA">CA</option>
|
1317
|
+
-<option value="CO">CO</option>
|
1318
|
+
-<option value="CT">CT</option>
|
1319
|
+
-<option value="DE">DE</option>
|
1320
|
+
-<option value="DC">DC</option>
|
1321
|
+
-<option value="FL">FL</option>
|
1322
|
+
+<option value="AK">AK</option>
|
1323
|
+
+<option value="AZ">AZ</option>
|
1324
|
+
+<option value="AR">AR</option>
|
1325
|
+
+<option value="CA">CA</option>
|
1326
|
+
+<option value="CO">CO</option>
|
1327
|
+
+<option value="CT">CT</option>
|
1328
|
+
+<option value="DE">DE</option>
|
1329
|
+
+<option value="DC">DC</option>
|
1330
|
+
+<option value="FL">FL</option>
|
1331
|
+
<option value="GA">GA</option>
|
1332
|
+
-<option value="HI">HI</option>
|
1333
|
+
-<option value="ID">ID</option>
|
1334
|
+
-<option value="IL">IL</option>
|
1335
|
+
+<option value="HI">HI</option>
|
1336
|
+
+<option value="ID">ID</option>
|
1337
|
+
+<option value="IL">IL</option>
|
1338
|
+
<option value="IN">IN</option>
|
1339
|
+
<option value="IA">IA</option>
|
1340
|
+
<option value="KS">KS</option>
|
1341
|
+
-<option value="KY">KY</option>
|
1342
|
+
-<option value="LA">LA</option>
|
1343
|
+
+<option value="KY">KY</option>
|
1344
|
+
+<option value="LA">LA</option>
|
1345
|
+
<option value="ME">ME</option>
|
1346
|
+
-<option value="MD">MD</option>
|
1347
|
+
-<option value="MA">MA</option>
|
1348
|
+
+<option value="MD">MD</option>
|
1349
|
+
+<option value="MA">MA</option>
|
1350
|
+
<option value="MI">MI</option>
|
1351
|
+
<option value="MN">MN</option>
|
1352
|
+
-<option value="MS">MS</option>
|
1353
|
+
-<option value="MO">MO</option>
|
1354
|
+
+<option value="MS">MS</option>
|
1355
|
+
+<option value="MO">MO</option>
|
1356
|
+
<option value="MT">MT</option>
|
1357
|
+
-<option value="NE">NE</option>
|
1358
|
+
+<option value="NE">NE</option>
|
1359
|
+
<option value="NV">NV</option>
|
1360
|
+
-<option value="NH">NH</option>
|
1361
|
+
-<option value="NJ">NJ</option>
|
1362
|
+
+<option value="NH">NH</option>
|
1363
|
+
+<option value="NJ">NJ</option>
|
1364
|
+
<option value="NM">NM</option>
|
1365
|
+
-<option value="NY">NY</option>
|
1366
|
+
-<option value="NC">NC</option>
|
1367
|
+
-<option value="ND">ND</option>
|
1368
|
+
+<option value="NY">NY</option>
|
1369
|
+
+<option value="NC">NC</option>
|
1370
|
+
+<option value="ND">ND</option>
|
1371
|
+
<option value="OH">OH</option>
|
1372
|
+
-<option value="OK">OK</option>
|
1373
|
+
-<option value="OR">OR</option>
|
1374
|
+
-<option value="PA">PA</option>
|
1375
|
+
+<option value="OK">OK</option>
|
1376
|
+
+<option value="OR">OR</option>
|
1377
|
+
+<option value="PA">PA</option>
|
1378
|
+
<option value="PR">PR</option>
|
1379
|
+
-<option value="RI">RI</option>
|
1380
|
+
-<option value="SC">SC</option>
|
1381
|
+
+<option value="RI">RI</option>
|
1382
|
+
+<option value="SC">SC</option>
|
1383
|
+
<option value="SD">SD</option>
|
1384
|
+
<option value="TN">TN</option>
|
1385
|
+
-<option value="TX">TX</option>
|
1386
|
+
-<option value="UT">UT</option>
|
1387
|
+
-<option value="VT">VT</option>
|
1388
|
+
-<option value="VA">VA</option>
|
1389
|
+
-<option value="WA">WA</option>
|
1390
|
+
-<option value="WV">WV</option>
|
1391
|
+
-<option value="WI">WI</option>
|
1392
|
+
-<option value="WY">WY</option></select><input type="hidden" name="source" value="2hb8bhc059">
|
1393
|
+
+<option value="TX">TX</option>
|
1394
|
+
+<option value="UT">UT</option>
|
1395
|
+
+<option value="VT">VT</option>
|
1396
|
+
+<option value="VA">VA</option>
|
1397
|
+
+<option value="WA">WA</option>
|
1398
|
+
+<option value="WV">WV</option>
|
1399
|
+
+<option value="WI">WI</option>
|
1400
|
+
+<option value="WY">WY</option>
|
1401
|
+
+</select><input type="hidden" name="source" value="2hb8bhc059">
|
1402
|
+
</td></tr>
|
1403
|
+
</form>
|
1404
|
+
</table></td>
|
1405
|
+
<td valign="top" align="RIGHT"><a href="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=5597&RunID=17167&AdID=22588&GroupID=1&FamilyID=3228&TagValues=8.25.159.171.172.174.179.180.181.182.183.196.197.199.208.241.389.412.436.2035.6749.6750.70367.78456.79630.81880&Redirect=http:%2F%2Fwww.hp.com%2Fgo%2Foriginal%20" target="_top"><img src="http://static.wired.com/advertising/blipverts/hp_colorinkjet/hp_970c_120x60_6.gif" border="1" height="60" width="120" alt="True to the Original"></a></td>
|
1406
|
+
- </tr></table>
|
1407
|
+
-<!-- WIRED NEWS header --><!-- CMD_HOST = scoop.hotwired.com --><a name="#"></a>
|
1408
|
+
+ </tr>
|
1409
|
+
+</table>
|
1410
|
+
+
|
1411
|
+
+<!-- WIRED NEWS header -->
|
1412
|
+
+<!-- CMD_HOST = scoop.hotwired.com -->
|
1413
|
+
+
|
1414
|
+
+<a name="#"></a>
|
1415
|
+
<table border="0" width="600" cellspacing="0" cellpadding="0">
|
1416
|
+
-<tr>
|
1417
|
+
+
|
1418
|
+
+ <tr>
|
1419
|
+
<td></td>
|
1420
|
+
<td colspan="2"><img src="http://static.wired.com/news/images/spacer.gif" height="5" width="447" alt=""></td>
|
1421
|
+
-</tr>
|
1422
|
+
-<tr>
|
1423
|
+
-<td valign="BOTTOM" align="RIGHT" class="wired" bgcolor="#FFFFFF"><a href="/news/0,1287,,00.html"><img src="http://static.wired.com/news/images/wired_000000.gif" width="153" height="30" border="0"></a></td>
|
1424
|
+
+</tr>
|
1425
|
+
+
|
1426
|
+
+ <tr>
|
1427
|
+
+ <td valign="BOTTOM" align="RIGHT" class="wired" bgcolor="#FFFFFF"><a href="/news/0,1287,,00.html"><img src="http://static.wired.com/news/images/wired_000000.gif" width="153" height="30" border="0"></a></td>
|
1428
|
+
<td bgcolor="#FF0000" valign="BOTTOM" align="LEFT" width="97"><a href="/news/0,1287,,00.html"><img src="http://static.wired.com/news/images/news_ffffff.gif" width="103" height="30" border="0"></a></td>
|
1429
|
+
|
1430
|
+
|
1431
|
+
@@ -85,36 +95,42 @@
|
1432
|
+
|
1433
|
+
|
1434
|
+
</tr>
|
1435
|
+
-<tr>
|
1436
|
+
-<td valign="MIDDLE" align="RIGHT" bgcolor="#FFFFFF"><img src="http://static.wired.com/news/images/spacer.gif" width="1" height="30"></td>
|
1437
|
+
+ <tr>
|
1438
|
+
+ <td valign="MIDDLE" align="RIGHT" bgcolor="#FFFFFF"><img src="http://static.wired.com/news/images/spacer.gif" width="1" height="30"></td>
|
1439
|
+
|
1440
|
+
<td colspan="2" bgcolor="#999999">
|
1441
|
+
|
1442
|
+
<table border="0" cellspacing="0" cellpadding="5">
|
1443
|
+
<form name="RedirectSearch" action="http://redirect.wired.com/search">
|
1444
|
+
- <tr>
|
1445
|
+
-<td>
|
1446
|
+
+ <tr>
|
1447
|
+
+ <td>
|
1448
|
+
<font face="courier" size="1"><input type="TEXT" name="query" size="20" value=""></font>
|
1449
|
+
</td>
|
1450
|
+
|
1451
|
+
<td>
|
1452
|
+
-<select name="url"><option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=vignette.hts&Collection=vignette&QueryMode=Internet&Query=" selected>Wired News</option>
|
1453
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=webmonkey.hts&Collection=webmonkey&QueryMode=Internet&Query=">Webmonkey</option>
|
1454
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?collection=webmonkey_guides&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=webmonkey_guides.hts&QueryMode=Internet&Query=">Webmonkey Guides</option>
|
1455
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?collection=hotwired&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=hotwired_archive.hts&QueryMode=Internet&Query=">HotWired Archives</option>
|
1456
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=magazine.hts&Collection=magazine&QueryMode=Internet&Query=">Wired Magazine</option>
|
1457
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=animation.hts&Collection=animation&QueryMode=Internet&Query=">Animation Express</option>
|
1458
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?collection=suck&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=suck.hts&QueryMode=Internet&Query=">Suck.com</option>
|
1459
|
+
-<option value="http://search.hotwired.com/search97/s97.vts?collection=uber_hotwired&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=uber_hotwired.hts&QueryMode=Internet&Query=">All of HotWired</option>
|
1460
|
+
-<option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs=MDRTP&MT=">The Web -> HotBot</option></select>
|
1461
|
+
-</td>
|
1462
|
+
+<select name="url">
|
1463
|
+
+
|
1464
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=vignette.hts&Collection=vignette&QueryMode=Internet&Query=" selected>Wired News</option>
|
1465
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=webmonkey.hts&Collection=webmonkey&QueryMode=Internet&Query=">Webmonkey</option>
|
1466
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?collection=webmonkey_guides&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=webmonkey_guides.hts&QueryMode=Internet&Query=">Webmonkey Guides</option>
|
1467
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?collection=hotwired&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=hotwired_archive.hts&QueryMode=Internet&Query=">HotWired Archives</option>
|
1468
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=magazine.hts&Collection=magazine&QueryMode=Internet&Query=">Wired Magazine</option>
|
1469
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?Action=FilterSearch&Filter=docs_filter.hts&ResultTemplate=animation.hts&Collection=animation&QueryMode=Internet&Query=">Animation Express</option>
|
1470
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?collection=suck&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=suck.hts&QueryMode=Internet&Query=">Suck.com</option>
|
1471
|
+
+ <option value="http://search.hotwired.com/search97/s97.vts?collection=uber_hotwired&Action=FilterSearch&filter=docs_filter.hts&ResultTemplate=uber_hotwired.hts&QueryMode=Internet&Query=">All of HotWired</option>
|
1472
|
+
+ <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs=MDRTP&MT=">The Web -> HotBot</option>
|
1473
|
+
+</select>
|
1474
|
+
+
|
1475
|
+
+
|
1476
|
+
+
|
1477
|
+
+ </td>
|
1478
|
+
<td>
|
1479
|
+
<input type="SUBMIT" name="SUBMIT" value="SEARCH">
|
1480
|
+
-</td>
|
1481
|
+
+ </td>
|
1482
|
+
</tr>
|
1483
|
+
-</form>
|
1484
|
+
+ </form>
|
1485
|
+
</table>
|
1486
|
+
-</td>
|
1487
|
+
+ </td>
|
1488
|
+
</tr>
|
1489
|
+
<!--
|
1490
|
+
<TR>
|
1491
|
+
@@ -124,11 +140,16 @@
|
1492
|
+
</TR>
|
1493
|
+
-->
|
1494
|
+
</table>
|
1495
|
+
-<!-- end WIRED NEWS header --><!-- begin upper left side Navigation --><table border="0" cellpadding="3" cellspacing="0" align="LEFT" bgcolor="#FFFFFF">
|
1496
|
+
-<tr>
|
1497
|
+
-<td bgcolor="#FF0000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1498
|
+
+<!-- end WIRED NEWS header -->
|
1499
|
+
+
|
1500
|
+
+<!-- begin upper left side Navigation -->
|
1501
|
+
+
|
1502
|
+
+<table border="0" cellpadding="3" cellspacing="0" align="LEFT" bgcolor="#FFFFFF">
|
1503
|
+
+ <tr>
|
1504
|
+
+ <td bgcolor="#FF0000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1505
|
+
<img src="http://static.wired.com/news/images/spacer.gif" width="147" height="1" border="0"><br><b>SECTIONS</b></font></td>
|
1506
|
+
</tr>
|
1507
|
+
+
|
1508
|
+
<tr><td bgcolor="#CCFFCC"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/business/0,1367,,00.html">Business</a></font></td></tr>
|
1509
|
+
<tr><td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/culture/0,1284,,00.html">Culture</a></font></td></tr>
|
1510
|
+
<tr><td bgcolor="#CCFFCC"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/technology/0,1282,,00.html">Technology</a></font></td></tr>
|
1511
|
+
@@ -137,76 +158,102 @@
|
1512
|
+
<td bgcolor="#FF0000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1513
|
+
<b>WIRE SERVICE NEWS</b></font></td>
|
1514
|
+
</tr>
|
1515
|
+
+
|
1516
|
+
<tr>
|
1517
|
+
<td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/news/reuters/">Top Headlines</a></font></td>
|
1518
|
+
</tr>
|
1519
|
+
+
|
1520
|
+
<tr>
|
1521
|
+
<td bgcolor="#CCFFCC"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/news/reuters/sports/">Sports</a></font></td>
|
1522
|
+
</tr>
|
1523
|
+
+
|
1524
|
+
<tr>
|
1525
|
+
<td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="/news/news/reuters/business/">Finance</a></font></td>
|
1526
|
+
</tr>
|
1527
|
+
-<!-- End upper left nav --><!-- Begin lower Left Nav --><tr>
|
1528
|
+
-<td bgcolor="#FF0000"><font face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1529
|
+
+<!-- End upper left nav --><!-- Begin lower Left Nav -->
|
1530
|
+
+ <tr>
|
1531
|
+
+ <td bgcolor="#FF0000"><font face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1532
|
+
<b><font size="1">FREE DELIVERY</font></b></font></td>
|
1533
|
+
</tr>
|
1534
|
+
-<tr>
|
1535
|
+
-<td bgcolor="#99FF99">
|
1536
|
+
-<table cellspacing="0" cellpadding="0" border="0"><tr>
|
1537
|
+
+ <tr>
|
1538
|
+
+ <td bgcolor="#99FF99">
|
1539
|
+
+<table cellspacing="0" cellpadding="0" border="0">
|
1540
|
+
+ <tr>
|
1541
|
+
<td bgcolor="#99FF99">
|
1542
|
+
<form action="http://r.hotwired.com/r/hw_wm_r_nav_nwsltr/http://perl.hotwired.com/massmail/cgiParser.cgi" method="get" target="_top">
|
1543
|
+
|
1544
|
+
- <input type="hidden" name="success_page" value="http://www.hotwired.com/email/signup/wirednews-ascii.html"><input type="hidden" name="failure_page" value="http://www.hotwired.com/email/signup/wirednews-ascii.html"><input type="hidden" name="LIST" value="wn_ascii"><input type="hidden" name="SOURCE" value="other"><input type="hidden" name="ACTION" value="subscribe"><input type="TEXT" name="from" size="10" value="enter email">
|
1545
|
+
+ <input type="hidden" name="success_page" value="http://www.hotwired.com/email/signup/wirednews-ascii.html">
|
1546
|
+
+
|
1547
|
+
+<input type="hidden" name="failure_page" value="http://www.hotwired.com/email/signup/wirednews-ascii.html">
|
1548
|
+
+
|
1549
|
+
+<input type="hidden" name="LIST" value="wn_ascii">
|
1550
|
+
+<input type="hidden" name="SOURCE" value="other">
|
1551
|
+
+ <input type="hidden" name="ACTION" value="subscribe">
|
1552
|
+
+
|
1553
|
+
+<input type="TEXT" name="from" size="10" value="enter email">
|
1554
|
+
</form>
|
1555
|
+
</td>
|
1556
|
+
<td valign="top" bgcolor="#99FF99">
|
1557
|
+
- <input type="SUBMIT" name="SUBMIT" value="GO">
|
1558
|
+
-</td>
|
1559
|
+
- </tr></table>
|
1560
|
+
+ <input type="SUBMIT" name="SUBMIT" value="GO">
|
1561
|
+
+
|
1562
|
+
+ </td>
|
1563
|
+
+ </tr>
|
1564
|
+
+</table>
|
1565
|
+
</td>
|
1566
|
+
</tr>
|
1567
|
+
-<tr>
|
1568
|
+
-<td bgcolor="#FF0000"><font face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1569
|
+
+ <tr>
|
1570
|
+
+ <td bgcolor="#FF0000"><font face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF">
|
1571
|
+
<b><font size="1">STOCKS</font></b></font></td>
|
1572
|
+
</tr>
|
1573
|
+
-<tr>
|
1574
|
+
-<td bgcolor="#99FF99"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Get Quote:</font></td>
|
1575
|
+
+ <tr>
|
1576
|
+
+ <td bgcolor="#99FF99"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Get Quote:</font></td>
|
1577
|
+
</tr>
|
1578
|
+
-<tr>
|
1579
|
+
-<td bgcolor="#99FF99" marginwidth="0" marginheight="0"><form method="get" action="http://r.wired.com/r/10020/http://stocks.wired.com/stocks_quotes.asp">
|
1580
|
+
+ <tr>
|
1581
|
+
+ <td bgcolor="#99FF99" marginwidth="0" marginheight="0"><form method="get" action="http://r.wired.com/r/10020/http://stocks.wired.com/stocks_quotes.asp">
|
1582
|
+
<input type="TEXT" name="Symbol" size="12"> <input type="SUBMIT" name="submit" value="GO">
|
1583
|
+
</form></td>
|
1584
|
+
</tr>
|
1585
|
+
-<!-- BEGIN BUTTON ADS --><tr>
|
1586
|
+
+<!-- BEGIN BUTTON ADS -->
|
1587
|
+
+
|
1588
|
+
+ <tr>
|
1589
|
+
<td bgcolor="#CCFFCC">
|
1590
|
+
-<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">Financial Services</font><br><center>
|
1591
|
+
+<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">Financial Services</font><br>
|
1592
|
+
+<center>
|
1593
|
+
<img src="http://static.wired.com/news/images/spacer.gif" height="3" width="5" alt=""><br><img src="http://static.wired.com/news/images/button_ads_news10.gif" width="143" height="56" border="0" alt="" usemap="#buttons" hspace="0" vspace="0">
|
1594
|
+
</center>
|
1595
|
+
|
1596
|
+
-<map name="buttons"><area shape="RECT" alt="Datek" coords="0,0,69,24" href="http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631">
|
1597
|
+
-<area shape="RECT" alt="Wired Index Fund" coords="73,0,142,24" href="http://r.wired.com/r/227/http://www.gffunds.com/wired">
|
1598
|
+
-<area shape="RECT" alt="internet.com Index Fund" coords="73,31,142,55" href="http://r.wired.com/r/298/http://www.gffunds.com/isdex/">
|
1599
|
+
-<area shape="RECT" alt="GetSmart's MortgageFinder" coords="0,31,69,55" href="http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25"></map>
|
1600
|
+
-</td>
|
1601
|
+
- </tr>
|
1602
|
+
-<!-- END BUTTON ADS --><tr>
|
1603
|
+
-<td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://redirect.wired.com/redir/51/http://stocks.wired.com/">Today's Summary</a></font></td>
|
1604
|
+
+<map name="buttons">
|
1605
|
+
+ <area shape="RECT" alt="Datek" coords="0,0,69,24" href="http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631">
|
1606
|
+
+ <area shape="RECT" alt="Wired Index Fund" coords="73,0,142,24" href="http://r.wired.com/r/227/http://www.gffunds.com/wired">
|
1607
|
+
+ <area shape="RECT" alt="internet.com Index Fund" coords="73,31,142,55" href="http://r.wired.com/r/298/http://www.gffunds.com/isdex/">
|
1608
|
+
+ <area shape="RECT" alt="GetSmart's MortgageFinder" coords="0,31,69,55" href="http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25"></map>
|
1609
|
+
+ </td>
|
1610
|
+
+ </tr> <!-- END BUTTON ADS -->
|
1611
|
+
+
|
1612
|
+
+ <tr>
|
1613
|
+
+ <td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://redirect.wired.com/redir/51/http://stocks.wired.com/">Today's Summary</a></font></td>
|
1614
|
+
</tr>
|
1615
|
+
-<tr>
|
1616
|
+
-<td bgcolor="#CCFFCC"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://r.wired.com/r/hb_fin_r_wn_top/http://stocks.wired.com/stocks_indexes_detail.asp?Symbol=%24WIRED">Wired Index</a> | <a href="http://redirect.wired.com/redir/52/http://stocks.wired.com/stocks_indexes.asp%20">All Indexes</a></font></td>
|
1617
|
+
+ <tr>
|
1618
|
+
+ <td bgcolor="#CCFFCC"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://r.wired.com/r/hb_fin_r_wn_top/http://stocks.wired.com/stocks_indexes_detail.asp?Symbol=%24WIRED">Wired Index</a> | <a href="http://redirect.wired.com/redir/52/http://stocks.wired.com/stocks_indexes.asp%20">All Indexes</a></font></td>
|
1619
|
+
</tr>
|
1620
|
+
-<tr>
|
1621
|
+
-<td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://redirect.wired.com/redir/53/http://stocks.wired.com/stocks_portfolios.asp">Portfolios</a></font></td>
|
1622
|
+
+ <tr>
|
1623
|
+
+ <td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://redirect.wired.com/redir/53/http://stocks.wired.com/stocks_portfolios.asp">Portfolios</a></font></td>
|
1624
|
+
</tr>
|
1625
|
+
-<!-- BEGIN B&N spot --><tr>
|
1626
|
+
-<td bgcolor="#FF0000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>FIND A BOOK</b></font></td>
|
1627
|
+
+
|
1628
|
+
+<!-- BEGIN B&N spot -->
|
1629
|
+
+
|
1630
|
+
+<tr>
|
1631
|
+
+ <td bgcolor="#FF0000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>FIND A BOOK</b></font></td>
|
1632
|
+
</tr>
|
1633
|
+
<tr><td bgcolor="#CCFFCC">
|
1634
|
+
<table cellspacing="0" cellpadding="0" border="0" width="145">
|
1635
|
+
-<tr><td bgcolor="#CCFFCC">
|
1636
|
+
+ <tr><td bgcolor="#CCFFCC">
|
1637
|
+
<form action="http://r.wired.com/r/wn_nav_c_bn/http://barnesandnoble.bfast.com/booklink/click">
|
1638
|
+
-<input type="hidden" name="sourceid" value="383471"><input type="hidden" name="categoryid" value="categorydropdown"><font size="2">
|
1639
|
+
- <select name="Subjects" size="4"><option value="301">Business Top 20
|
1640
|
+
+<input type="hidden" name="sourceid" value="383471">
|
1641
|
+
+<input type="hidden" name="categoryid" value="categorydropdown">
|
1642
|
+
+ <font size="2">
|
1643
|
+
+ <select name="Subjects" size="4">
|
1644
|
+
+<option value="301">Business Top 20
|
1645
|
+
</option>
|
1646
|
+
<option value="500">Computers
|
1647
|
+
</option>
|
1648
|
+
@@ -244,38 +291,53 @@
|
1649
|
+
</option></select></font>
|
1650
|
+
</form>
|
1651
|
+
</td></tr>
|
1652
|
+
-<tr align="left" valign="top">
|
1653
|
+
-<td valign="top" bgcolor="#CCFFCC"> <input type="submit" value="GO"><img src="http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&is_search=Y" border="0" align="top"><!--
|
1654
|
+
+ <tr align="left" valign="top">
|
1655
|
+
+ <td valign="top" bgcolor="#CCFFCC"> <input type="submit" value="GO">
|
1656
|
+
+
|
1657
|
+
+<img src="http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&is_search=Y" border="0" align="top">
|
1658
|
+
+<!--
|
1659
|
+
<IMG SRC="http://www.wired.com/partner/bn/trackingimg/ot_wn_nav_c_bn.gif" border=0 width=1 height=1 align=top>
|
1660
|
+
-->
|
1661
|
+
</td>
|
1662
|
+
|
1663
|
+
</tr>
|
1664
|
+
-<tr align="left" valign="top">
|
1665
|
+
-<td align="left" valign="top" colspan="2" rowspan="1" bgcolor="#CCFFCC">
|
1666
|
+
+ <tr align="left" valign="top">
|
1667
|
+
+
|
1668
|
+
+ <td align="left" valign="top" colspan="2" rowspan="1" bgcolor="#CCFFCC">
|
1669
|
+
<p>
|
1670
|
+
<font size="1" face="Verdana, Arial, Helvetica, " color="#000000">Powered by <a href="http://r.wired.com/r/wn_nav_c_bn/http://barnesandnoble.bfast.com/booklink/click?sourceid=383471">barnesandnoble.com</a>
|
1671
|
+
</font>
|
1672
|
+
-<br clear="all"></p>
|
1673
|
+
+<br clear="all">
|
1674
|
+
+
|
1675
|
+
+
|
1676
|
+
+</p>
|
1677
|
+
</td>
|
1678
|
+
- </tr>
|
1679
|
+
-</table>
|
1680
|
+
+ </tr>
|
1681
|
+
+ </table>
|
1682
|
+
+
|
1683
|
+
</td></tr>
|
1684
|
+
-<!-- END B&N spot --><!-- BEGIN MAGAZINE SPOT --><tr>
|
1685
|
+
-<td bgcolor="#000000"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="1"><b>WIRED
|
1686
|
+
+ <!-- END B&N spot -->
|
1687
|
+
+
|
1688
|
+
+<!-- BEGIN MAGAZINE SPOT -->
|
1689
|
+
+
|
1690
|
+
+ <tr>
|
1691
|
+
+ <td bgcolor="#000000"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="1"><b>WIRED
|
1692
|
+
MAGAZINE </b></font></td>
|
1693
|
+
</tr>
|
1694
|
+
-<tr>
|
1695
|
+
+<tr>
|
1696
|
+
<td bgcolor="#FFFF99" align="CENTER">
|
1697
|
+
<font face="verdana, arial, helvetica, sans-serif" size="1">
|
1698
|
+
<b>
|
1699
|
+
-<br><a href="http://www.wired.com/wired/"><img src="http://static.wired.com/news/images/wiredcover.gif" width="91" height="109" border="0" alt="Wired Magazine"></a><br></b>
|
1700
|
+
+<br>
|
1701
|
+
+
|
1702
|
+
+<a href="http://www.wired.com/wired/"><img src="http://static.wired.com/news/images/wiredcover.gif" width="91" height="109" border="0" alt="Wired Magazine"></a><br></b>
|
1703
|
+
|
1704
|
+
Issue 7.11
|
1705
|
+
</font>
|
1706
|
+
</td>
|
1707
|
+
</tr>
|
1708
|
+
-<tr>
|
1709
|
+
+
|
1710
|
+
+<tr>
|
1711
|
+
<td bgcolor="#FFFF99" align="center">
|
1712
|
+
<font face="verdana, arial, helvetica, sans-serif" size="1">
|
1713
|
+
|
1714
|
+
@@ -285,96 +347,201 @@ Issue 7.11
|
1715
|
+
</font>
|
1716
|
+
</td>
|
1717
|
+
</tr>
|
1718
|
+
-<!-- END MAGAZINE SPOT --><tr>
|
1719
|
+
-<td bgcolor="#000000">
|
1720
|
+
+<!-- END MAGAZINE SPOT -->
|
1721
|
+
+
|
1722
|
+
+ <tr>
|
1723
|
+
+ <td bgcolor="#000000">
|
1724
|
+
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>HOTWIRED</b></font>
|
1725
|
+
</td>
|
1726
|
+
</tr>
|
1727
|
+
-<tr>
|
1728
|
+
-<td bgcolor="#FFFF99"> <font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">
|
1729
|
+
-<a href="http://www.hotwired.com/">Frontdoor</a><br><a href="http://www.hotwired.com/webmonkey/">Webmonkey</a><br><a href="http://www.hotwired.com/webmonkey/guides/index.html">Webmonkey Guides</a><br><a href="http://www.hotwired.com/rgb/">RGB Gallery</a><br><a href="http://www.hotwired.com/animation/">Animation Express</a><br><a href="http://go.suck.com/su_wnfd">Suck.com</a><br></font>
|
1730
|
+
+ <tr>
|
1731
|
+
+ <td bgcolor="#FFFF99"> <font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">
|
1732
|
+
+<a href="http://www.hotwired.com/">Frontdoor</a><br>
|
1733
|
+
+<a href="http://www.hotwired.com/webmonkey/">Webmonkey</a><br>
|
1734
|
+
+<a href="http://www.hotwired.com/webmonkey/guides/index.html">Webmonkey Guides</a><br>
|
1735
|
+
+<a href="http://www.hotwired.com/rgb/">RGB Gallery</a><br>
|
1736
|
+
+<a href="http://www.hotwired.com/animation/">Animation Express</a><br>
|
1737
|
+
+<a href="http://go.suck.com/su_wnfd">Suck.com</a><br>
|
1738
|
+
+</font>
|
1739
|
+
</td>
|
1740
|
+
</tr>
|
1741
|
+
-<tr>
|
1742
|
+
-<td bgcolor="#000000">
|
1743
|
+
+
|
1744
|
+
+ <tr>
|
1745
|
+
+ <td bgcolor="#000000">
|
1746
|
+
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>HOTBOT</b></font>
|
1747
|
+
</td>
|
1748
|
+
</tr>
|
1749
|
+
-<tr>
|
1750
|
+
-<td bgcolor="#FFFF99"> <font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">
|
1751
|
+
-<a href="http://redirect.wired.com/redir/54/http://www.hotbot.com/">Search</a><br><a href="http://shop.hotbot.com/">Shopping</a><br></font>
|
1752
|
+
+ <tr>
|
1753
|
+
+ <td bgcolor="#FFFF99"> <font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">
|
1754
|
+
+<a href="http://redirect.wired.com/redir/54/http://www.hotbot.com/">Search</a><br>
|
1755
|
+
+<a href="http://shop.hotbot.com/">Shopping</a><br>
|
1756
|
+
+</font>
|
1757
|
+
</td>
|
1758
|
+
</tr>
|
1759
|
+
-<tr>
|
1760
|
+
+
|
1761
|
+
+ <tr>
|
1762
|
+
<td>
|
1763
|
+
- <br><font face="Verdana, Arial, Helvetica, sans-serif" size="1">
|
1764
|
+
+ <br>
|
1765
|
+
+ <font face="Verdana, Arial, Helvetica, sans-serif" size="1">
|
1766
|
+
<font face="Verdana, Arial, Helvetica, sans-serif" size="1">
|
1767
|
+
- Wired News <a href="/news/who/0,1362,,00.html">staff</a><br><br><!-- Wired News is <a href="http://www.wired.com/news/jobs.html">hiring</a><br><br> --><b><a href="/news/feedback/0,1364,,00.html">Contact us</a></b></font>
|
1768
|
+
+ Wired News <a href="/news/who/0,1362,,00.html">staff</a><br><br>
|
1769
|
+
+
|
1770
|
+
+ <!-- Wired News is <a href="http://www.wired.com/news/jobs.html">hiring</a><br><br> -->
|
1771
|
+
+
|
1772
|
+
+ <b><a href="/news/feedback/0,1364,,00.html">Contact us</a></b></font>
|
1773
|
+
|
1774
|
+
|
1775
|
+
- <br><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Wired News delivered<br>by <a href="/news/palmpilot/0,1365,,00.html">PalmPilot</a>,<br><a href="http://www.hotwired.com/email/signup/wn_outlook.html">Outlook Express</a>,<br><a href="http://redirect.wired.com/redir/55/http://form.netscape.com/ibd/html/ibd_frameset.html">In-Box Direct</a>,<br>
|
1776
|
+
-or <a href="/news/pointcast/0,1366,,00.html">PointCast</a></font><br><!-- TRACKING --><img src="http://www.wired.com/special/modx/news.gif" height="1" width="1" alt=""></font>
|
1777
|
+
+ <br><br>
|
1778
|
+
+
|
1779
|
+
+ <font face="Verdana, Arial, Helvetica, sans-serif" size="1">Wired News delivered<br>by <a href="/news/palmpilot/0,1365,,00.html">PalmPilot</a>,<br><a href="http://www.hotwired.com/email/signup/wn_outlook.html">Outlook Express</a>,<br><a href="http://redirect.wired.com/redir/55/http://form.netscape.com/ibd/html/ibd_frameset.html">In-Box Direct</a>,<br>
|
1780
|
+
+or <a href="/news/pointcast/0,1366,,00.html">PointCast</a></font><br>
|
1781
|
+
+
|
1782
|
+
+<!-- TRACKING -->
|
1783
|
+
+<img src="http://www.wired.com/special/modx/news.gif" height="1" width="1" alt="">
|
1784
|
+
+</font>
|
1785
|
+
</td>
|
1786
|
+
</tr>
|
1787
|
+
+
|
1788
|
+
</table>
|
1789
|
+
-<!-- end lower left side Navigation --><!-- CONTENT TABLE --><table border="0" width="447" cellspacing="0" cellpadding="0" bordercolor="#66FF00">
|
1790
|
+
-<tr>
|
1791
|
+
-<td valign="TOP" align="LEFT" rowspan="2">
|
1792
|
+
+
|
1793
|
+
+<!-- end lower left side Navigation -->
|
1794
|
+
+<!-- CONTENT TABLE -->
|
1795
|
+
+
|
1796
|
+
+<table border="0" width="447" cellspacing="0" cellpadding="0" bordercolor="#66FF00">
|
1797
|
+
+ <tr>
|
1798
|
+
+ <td valign="TOP" align="LEFT" rowspan="2">
|
1799
|
+
<img src="http://static.wired.com/news/images/spacer.gif" height="1" width="15" alt=""><br>
|
1800
|
+
-</td>
|
1801
|
+
+ </td>
|
1802
|
+
<td colspan="3" valign="TOP" align="LEFT">
|
1803
|
+
-<img src="http://static.wired.com/news/images/spacer.gif" height="7" width="432" alt=""><br><!-- SQL query for Package here --><font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Nomad's Land</i></b></font><br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br><!-- IBD_SUBJECT: Homeless, but ID'd, in Seattle --><font face="Arial, Helvetica, sans-serif" size="5"><b><a href="/news/politics/0,1283,31911,00.html">Homeless, but ID'd, in Seattle</a></b></font><br><font size="1" face="Verdana, Arial, Geneva, sans-serif" color="#FF0000">8:15 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/politics/0,1283,,00.html">in Politics</a></i></font><br><table bgcolor="#F0F0F0" cellpadding="0" cellspacing="0" border="0" width="147" align="RIGHT">
|
1804
|
+
-<!-- Commentary Frag Begin --><tr>
|
1805
|
+
-<td bgcolor="#000000"> </td>
|
1806
|
+
+<img src="http://static.wired.com/news/images/spacer.gif" height="7" width="432" alt=""><br>
|
1807
|
+
+
|
1808
|
+
+
|
1809
|
+
+<!-- SQL query for Package here -->
|
1810
|
+
+
|
1811
|
+
+<font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Nomad's Land</i></b></font><br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br><!-- IBD_SUBJECT: Homeless, but ID'd, in Seattle --><font face="Arial, Helvetica, sans-serif" size="5"><b><a href="/news/politics/0,1283,31911,00.html">Homeless, but ID'd, in Seattle</a></b></font><br><font size="1" face="Verdana, Arial, Geneva, sans-serif" color="#FF0000">8:15 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/politics/0,1283,,00.html">in Politics</a></i></font><br><table bgcolor="#F0F0F0" cellpadding="0" cellspacing="0" border="0" width="147" align="RIGHT">
|
1812
|
+
+ <!-- Commentary Frag Begin -->
|
1813
|
+
+ <tr>
|
1814
|
+
+ <td bgcolor="#000000"> </td>
|
1815
|
+
<td bgcolor="#000000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>HITS & MISC.</b></font></td>
|
1816
|
+
</tr>
|
1817
|
+
-<tr>
|
1818
|
+
-<td> </td>
|
1819
|
+
+ <tr>
|
1820
|
+
+ <td> </td>
|
1821
|
+
<td>
|
1822
|
+
-<img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt=""><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/commentarySection/0,1292,31664,00.html">Calendar of E-Vents</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Ongoing goings-on. </font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/commentarySection/0,1292,31926,00.html">Rants & Raves</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Readers on Apple's G4 ... AOL's passwords ... MS vs. Linux.</font><br><br></font></font>
|
1823
|
+
+<img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt=""><br>
|
1824
|
+
+
|
1825
|
+
+ <font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/commentarySection/0,1292,31664,00.html">Calendar of E-Vents</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Ongoing goings-on. </font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/commentarySection/0,1292,31926,00.html">Rants & Raves</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Readers on Apple's G4 ... AOL's passwords ... MS vs. Linux.</font><br><br> </font></font>
|
1826
|
+
</td>
|
1827
|
+
</tr>
|
1828
|
+
-<!-- Commentary Frag End --><tr>
|
1829
|
+
+<!-- Commentary Frag End -->
|
1830
|
+
+<tr>
|
1831
|
+
<td align="left" bgcolor="#000000"> </td>
|
1832
|
+
<td bgcolor="#000000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>CURRENT HOO-HA</b></font></td>
|
1833
|
+
</tr>
|
1834
|
+
-<tr>
|
1835
|
+
+
|
1836
|
+
+<tr>
|
1837
|
+
<td> </td>
|
1838
|
+
<td>
|
1839
|
+
-<img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt=""><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/mp3/0,1285,,00.html">MP3 Rocks the Web</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Download the sound. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_fd_mp3_r_mscm_txt/http://webfarm.mediaplex.com/click_thru_request/164-1361b-1052" style="text-decoration:none"><font color="#000000">Musicmaker</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/wireless/0,1382,,00.html">The Wireless World</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Networking gets unplugged. <br><i>Sponsored by <a href="http://www.ericsson.se/get/internet/default.shtml" style="text-decoration:none"><font color="#000000">Ericsson</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/digiwood/0,1412,,00.html">Digital Hollywood</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">The buzz of tech.</font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/ipo/0,1350,,00.html">IPO Outlook</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Deals in the pipeline. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_ipo_r_sun_txt/http://sun.com/ads/smi/brand/hotwired.html" style="text-decoration:none"><font color="#000000">Sun</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/ebiz/0,1272,,00.html">E-Biz</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Business unusual. <br><i>Sponsored by <a href="http://r.wired.com/r/wn_fd_r_ebiz_ibm_txt/http://www.ibm.com" style="text-decoration:none"><font color="#000000">IBM</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/medtech/0,1286,,00.html">Med-Tech Center</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">From the bleeding edge.<br><i>Sponsored by WebMD</i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/linux/0,1411,,00.html">The Linux Effect</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Not just for geeks.</font><br><br><img src="http://static.wired.com/news/images/spacer.gif" height="7" width="5" alt=""><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/exec/0,1370,,00.html">Executive Summary</a></b></font><br><font size="1" face="Arial, Helvetica, sans-serif" color="#000000">CEOs, COOs, CIOs unite. <br><i>Sponsored by <a href="http://r.wired.com/r/wn_exec_r_vign/http://www.vignette.com/" style="text-decoration:none"><font color="#000000">Vignette</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/school/0,1383,,00.html">Making the Grade</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Reading, writing, and ROM. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_sch_r_nav_uop/http://ads25.focalink.com/SmartBanner/page?12630.53" style="text-decoration:none"><font color="#000000">U of Phoenix</font></a></i></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/infostructure/0,1377,,00.html">Infostructure</a></b></font><br><font size="1" face="Arial, Helvetica, sans-serif" color="#000000">An IS/IT resource <br><i>Sponsored by <a href="http://r.wired.com/r/wn_is_r_ssec/http://ad.doubleclick.net/clk;653163;3599571;s?http://www.sprintbiz.com/s%0Aervlet/appservlet?from=/wired/sprint/&template=/security/security.html&SITE=%0Awired.com&BANNER=Sprint" style="text-decoration:none"><font color="#000000">Sprint</font></a></i></font></font><br><br><font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/y2k/0,1360,,00.html">Y2K Watch</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Tick... Tick... Tick...</font><br><br><font face="Arial, Helvetica, sans-serif" size="2"><b><i><a href="/news/special_reports/1,1293,,00.html">More Hoo-Ha</a></i></b></font><br> <br></font></font></font></font></font></font></font></font>
|
1840
|
+
+<img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt="">
|
1841
|
+
+<br>
|
1842
|
+
+
|
1843
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/mp3/0,1285,,00.html">MP3 Rocks the Web</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Download the sound. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_fd_mp3_r_mscm_txt/http://webfarm.mediaplex.com/click_thru_request/164-1361b-1052" style="text-decoration:none"><font color="#000000">Musicmaker</font></a></i></font><br><br>
|
1844
|
+
+
|
1845
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/wireless/0,1382,,00.html">The Wireless World</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Networking gets unplugged. <br><i>Sponsored by <a href="http://www.ericsson.se/get/internet/default.shtml" style="text-decoration:none"><font color="#000000">Ericsson</font></a></i></font><br><br>
|
1846
|
+
+
|
1847
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/digiwood/0,1412,,00.html">Digital Hollywood</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">The buzz of tech.</font><br><br>
|
1848
|
+
+
|
1849
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/ipo/0,1350,,00.html">IPO Outlook</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Deals in the pipeline. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_ipo_r_sun_txt/http://sun.com/ads/smi/brand/hotwired.html" style="text-decoration:none"><font color="#000000">Sun</font></a></i></font><br><br>
|
1850
|
+
+
|
1851
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/ebiz/0,1272,,00.html">E-Biz</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Business unusual. <br><i>Sponsored by <a href="http://r.wired.com/r/wn_fd_r_ebiz_ibm_txt/http://www.ibm.com" style="text-decoration:none"><font color="#000000">IBM</font></a></i></font><br><br>
|
1852
|
+
+
|
1853
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/medtech/0,1286,,00.html">Med-Tech Center</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">From the bleeding edge.<br><i>Sponsored by WebMD</i></font><br><br>
|
1854
|
+
+
|
1855
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/linux/0,1411,,00.html">The Linux Effect</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Not just for geeks.</font><br><br> <img src="http://static.wired.com/news/images/spacer.gif" height="7" width="5" alt=""><br>
|
1856
|
+
+
|
1857
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/exec/0,1370,,00.html">Executive Summary</a></b></font><br><font size="1" face="Arial, Helvetica, sans-serif" color="#000000">CEOs, COOs, CIOs unite. <br><i>Sponsored by <a href="http://r.wired.com/r/wn_exec_r_vign/http://www.vignette.com/" style="text-decoration:none"><font color="#000000">Vignette</font></a></i></font><br><br>
|
1858
|
+
+
|
1859
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/school/0,1383,,00.html">Making the Grade</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Reading, writing, and ROM. <br><i>Sponsored by <a href="http://r.hotwired.com/r/wn_sch_r_nav_uop/http://ads25.focalink.com/SmartBanner/page?12630.53" style="text-decoration:none"><font color="#000000">U of Phoenix</font></a></i></font><br><br>
|
1860
|
+
+
|
1861
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/infostructure/0,1377,,00.html">Infostructure</a></b></font><br><font size="1" face="Arial, Helvetica, sans-serif" color="#000000">An IS/IT resource <br><i>Sponsored by <a href="http://r.wired.com/r/wn_is_r_ssec/http://ad.doubleclick.net/clk;653163;3599571;s?http://www.sprintbiz.com/s%0Aervlet/appservlet?from=/wired/sprint/&template=/security/security.html&SITE=%0Awired.com&BANNER=Sprint" style="text-decoration:none"><font color="#000000">Sprint</font></a></i></font></font><br><br>
|
1862
|
+
+
|
1863
|
+
+<font size="2" face="Arial,Helvetica, sans-serif"><b><a href="/news/y2k/0,1360,,00.html">Y2K Watch</a></b></font><br><font size="2" face="Arial, Helvetica, sans-serif"><font size="1" face="Arial, Geneva, sans-serif" color="#000000">Tick... Tick... Tick...</font><br><br>
|
1864
|
+
+
|
1865
|
+
+<font face="Arial, Helvetica, sans-serif" size="2"><b><i><a href="/news/special_reports/1,1293,,00.html">More Hoo-Ha</a></i></b></font><br> <br>
|
1866
|
+
+
|
1867
|
+
+</font></font></font></font></font></font></font></font>
|
1868
|
+
</td>
|
1869
|
+
</tr>
|
1870
|
+
-<!-- start of Gen News --><tr>
|
1871
|
+
-<td bgcolor="#000000"> </td>
|
1872
|
+
+<!-- start of Gen News -->
|
1873
|
+
+ <tr>
|
1874
|
+
+ <td bgcolor="#000000"> </td>
|
1875
|
+
<td bgcolor="#000000"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF"><b>MEANWHILE...</b></font></td>
|
1876
|
+
</tr>
|
1877
|
+
-<tr>
|
1878
|
+
-<td> </td>
|
1879
|
+
+
|
1880
|
+
+ <tr>
|
1881
|
+
+ <td> </td>
|
1882
|
+
<td align="left" valign="top">
|
1883
|
+
- <img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt=""><br><!-- 31942 --><font size="2" face="Arial, Helvetica, sans-serif" color="#000000"><b>Führer Furor</b></font><br><font size="1" face="Arial, Geneva, sans-serif" color="#000000"><p>
|
1884
|
+
+ <img src="http://static.wired.com/news/images/spacer.gif" height="5" width="5" alt=""><br>
|
1885
|
+
+
|
1886
|
+
+
|
1887
|
+
+<!-- 31942 -->
|
1888
|
+
+<font size="2" face="Arial, Helvetica, sans-serif" color="#000000"><b>Führer Furor</b></font><br><font size="1" face="Arial, Geneva, sans-serif" color="#000000"><p>
|
1889
|
+
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.
|
1890
|
+
<br></p>
|
1891
|
+
<li>More from <a href="http://www.lycos.com/news/flash/hitlerbunker.html?v=wn1015&lpv=1">Lycos</a>
|
1892
|
+
</li></font><br><br>
|
1893
|
+
-</td>
|
1894
|
+
+ </td>
|
1895
|
+
</tr>
|
1896
|
+
<!-- end of Gen News -->
|
1897
|
+
</table>
|
1898
|
+
+
|
1899
|
+
+
|
1900
|
+
<font size="1"> <br></font>
|
1901
|
+
|
1902
|
+
-<br><font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Other Top Stories</i></b></font><br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br><!-- SQL query here --><!-- IBD_SUBJECT:Wall Street Keeps Reeling --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/reuters/0,1349,31934,00.html">Wall Street Keeps Reeling</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">10:15 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/reuters/0,1349,,00.html">in Reuters</a></i></font><br><br><!-- IBD_SUBJECT:The Market's Madness --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/reuters/0,1349,31935,00.html">The Market's Madness</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">9:10 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/reuters/0,1349,,00.html">in Reuters</a></i></font><br><br><!-- IBD_SUBJECT:'Want a Loan? What's Your Race?' --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/politics/0,1283,31533,00.html">'Want a Loan? What's Your Race?'</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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. </font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/politics/0,1283,,00.html">in Politics</a></i></font><br><br><!-- IBD_SUBJECT:Music Regs: A Bagful of Noise --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31832,00.html">Music Regs: A Bagful of Noise</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><!-- IBD_SUBJECT:Can't Beat 'Em? Green 'Em --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31927,00.html">Can't Beat 'Em? Green 'Em</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- IBD_SUBJECT:Y2K Cloud Over MS Office --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31932,00.html">Y2K Cloud Over MS Office</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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. </font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><font color="#FF0000" face="Verdana, Arial, Geneva, sans-serif" size="1">Med-Tech</font><br><!-- IBD_SUBJECT:Biochips for Custom Chemo --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31914,00.html">Biochips for Custom Chemo</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- IBD_SUBJECT:High Stakes in Priceline Suit --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31916,00.html">High Stakes in Priceline Suit</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><!-- IBD_SUBJECT:Biodiversity Merges Online --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31918,00.html">Biodiversity Merges Online</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- SQL above --><!------TRADES---------><br><font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Elsewhere Today</i></b></font><br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br><!-- SQL query here --><font face="helvetica, arial" size="3"><b><a href="http://www.thestandard.com/articles/display/0,1449,6975,00.html?home.tf">FCC: Hands-Off on Broadband</a></b></font><br><font face="geneva, arial" size="2"><cite>The Industry Standard</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://news.lycos.com/stories/TopNews/19991014RTNEWS-ARMS-TREATY.asp">White House Lashes Out on Treaty</a></b></font><br><font face="geneva, arial" size="2">Lycos</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.pathfinder.com/time/magazine/articles/0,3266,32207,00.html">Steve Jobs at 44</a></b></font><br><font face="geneva, arial" size="2"><cite>Time</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.zdnet.com/zdnn/stories/news/0,4586,2353608,00.html">Computers May Run on Gas</a></b></font><br><font face="geneva, arial" size="2">ZDNN</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.nytimes.com/library/tech/99/10/biztech/articles/14free.html">Much Is Free in the Wired World</a></b></font><br><font face="geneva, arial" size="2"><cite>The New York Times</cite> (Registration Required)</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.usatoday.com/life/cyber/nb/nb4.htm">Melissa: I'm Baaaack</a></b></font><br><font face="geneva, arial" size="2"><cite>USA Today</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.msnbc.com/news/322926.asp">Domain Owners Surrender Privacy</a></b></font><br><font face="geneva, arial" size="2">MSNBC</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.washingtonpost.com/wp-srv/business/longterm/tech/techthursday/download/download.htm">Dividing to Conquer in VC Game</a></b></font><br><font face="geneva, arial" size="2"><cite>The Washington Post</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.salon.com/tech/books/1999/10/14/redhat_book/index.html">The Red Hat Diaries</a></b></font><br><font face="geneva, arial" size="2">Salon</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://news.bbc.co.uk/hi/english/sci/tech/newsid_473000/473856.stm">Screensaver to Predict Climate</a></b></font><br><font face="geneva, arial" size="2">BBC News</font><br><br><!-- SQL above --><!-- - - - - - - - - - - - - -->
|
1903
|
+
-</td>
|
1904
|
+
+<br>
|
1905
|
+
+
|
1906
|
+
+<font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Other Top Stories</i></b></font><br>
|
1907
|
+
+<img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br>
|
1908
|
+
+
|
1909
|
+
+<!-- SQL query here -->
|
1910
|
+
+<!-- IBD_SUBJECT:Wall Street Keeps Reeling --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/reuters/0,1349,31934,00.html">Wall Street Keeps Reeling</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">10:15 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/reuters/0,1349,,00.html">in Reuters</a></i></font><br><br><!-- IBD_SUBJECT:The Market's Madness --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/reuters/0,1349,31935,00.html">The Market's Madness</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">9:10 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/reuters/0,1349,,00.html">in Reuters</a></i></font><br><br><!-- IBD_SUBJECT:'Want a Loan? What's Your Race?' --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/politics/0,1283,31533,00.html">'Want a Loan? What's Your Race?'</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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. </font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/politics/0,1283,,00.html">in Politics</a></i></font><br><br><!-- IBD_SUBJECT:Music Regs: A Bagful of Noise --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31832,00.html">Music Regs: A Bagful of Noise</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><!-- IBD_SUBJECT:Can't Beat 'Em? Green 'Em --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31927,00.html">Can't Beat 'Em? Green 'Em</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- IBD_SUBJECT:Y2K Cloud Over MS Office --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31932,00.html">Y2K Cloud Over MS Office</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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. </font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><font color="#FF0000" face="Verdana, Arial, Geneva, sans-serif" size="1">Med-Tech</font><br><!-- IBD_SUBJECT:Biochips for Custom Chemo --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31914,00.html">Biochips for Custom Chemo</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- IBD_SUBJECT:High Stakes in Priceline Suit --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/business/0,1367,31916,00.html">High Stakes in Priceline Suit</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/business/0,1367,,00.html">in Business</a></i></font><br><br><!-- IBD_SUBJECT:Biodiversity Merges Online --><font face="Arial, Helvetica, sans-serif" size="3"><b><a href="/news/technology/0,1282,31918,00.html">Biodiversity Merges Online</a></b></font><br><font color="#ff0000" face="Verdana, Arial, Geneva, sans-serif" size="1">3:00 a.m.</font> <font face="Verdana, Arial, Geneva, sans-serif" size="2">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.</font><br><font face="Verdana, Arial, Helvetica, sans-serif" size="1"><i><a href="/news/technology/0,1282,,00.html">in Technology</a></i></font><br><br><!-- SQL above -->
|
1911
|
+
+
|
1912
|
+
+
|
1913
|
+
+
|
1914
|
+
+<!------TRADES--------->
|
1915
|
+
+<br>
|
1916
|
+
+<font face="Verdana, Arial, Geneva, sans-serif" size="2"><b><i>Elsewhere Today</i></b></font><br>
|
1917
|
+
+<img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" alt=""><br>
|
1918
|
+
+
|
1919
|
+
+<!-- SQL query here -->
|
1920
|
+
+<font face="helvetica, arial" size="3"><b><a href="http://www.thestandard.com/articles/display/0,1449,6975,00.html?home.tf">FCC: Hands-Off on Broadband</a></b></font><br><font face="geneva, arial" size="2"><cite>The Industry Standard</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://news.lycos.com/stories/TopNews/19991014RTNEWS-ARMS-TREATY.asp">White House Lashes Out on Treaty</a></b></font><br><font face="geneva, arial" size="2">Lycos</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.pathfinder.com/time/magazine/articles/0,3266,32207,00.html">Steve Jobs at 44</a></b></font><br><font face="geneva, arial" size="2"><cite>Time</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.zdnet.com/zdnn/stories/news/0,4586,2353608,00.html">Computers May Run on Gas</a></b></font><br><font face="geneva, arial" size="2">ZDNN</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.nytimes.com/library/tech/99/10/biztech/articles/14free.html">Much Is Free in the Wired World</a></b></font><br><font face="geneva, arial" size="2"><cite>The New York Times</cite> (Registration Required)</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.usatoday.com/life/cyber/nb/nb4.htm">Melissa: I'm Baaaack</a></b></font><br><font face="geneva, arial" size="2"><cite>USA Today</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.msnbc.com/news/322926.asp">Domain Owners Surrender Privacy</a></b></font><br><font face="geneva, arial" size="2">MSNBC</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.washingtonpost.com/wp-srv/business/longterm/tech/techthursday/download/download.htm">Dividing to Conquer in VC Game</a></b></font><br><font face="geneva, arial" size="2"><cite>The Washington Post</cite></font><br><br><font face="helvetica, arial" size="3"><b><a href="http://www.salon.com/tech/books/1999/10/14/redhat_book/index.html">The Red Hat Diaries</a></b></font><br><font face="geneva, arial" size="2">Salon</font><br><br><font face="helvetica, arial" size="3"><b><a href="http://news.bbc.co.uk/hi/english/sci/tech/newsid_473000/473856.stm">Screensaver to Predict Climate</a></b></font><br><font face="geneva, arial" size="2">BBC News</font><br><br><!-- SQL above -->
|
1921
|
+
+
|
1922
|
+
+
|
1923
|
+
+
|
1924
|
+
+<!-- - - - - - - - - - - - - -->
|
1925
|
+
+
|
1926
|
+
+ </td>
|
1927
|
+
</tr>
|
1928
|
+
-<tr>
|
1929
|
+
-<td valign="TOP" align="LEFT">
|
1930
|
+
|
1931
|
+
- <img src="http://static.wired.com/news/images/spacer.gif" height="1" width="280" alt=""><br><!-- FOOTER --><br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" border="0" usemap="#navstrip.map" alt=""><br><img src="http://static.wired.com/news/images/navstrip_off.gif" height="17" width="126" usemap="#navstrip.map" border="0" alt=""><br><br><p><font face="Verdana, Arial, Geneva, sans-serif" size="1">
|
1932
|
+
+ <tr>
|
1933
|
+
+ <td valign="TOP" align="LEFT">
|
1934
|
+
+
|
1935
|
+
+ <img src="http://static.wired.com/news/images/spacer.gif" height="1" width="280" alt=""><br>
|
1936
|
+
+
|
1937
|
+
+ <!-- FOOTER -->
|
1938
|
+
+
|
1939
|
+
+<br><img src="http://static.wired.com/news/images/pix155.gif" height="10" width="155" border="0" usemap="#navstrip.map" alt="">
|
1940
|
+
+<br>
|
1941
|
+
+
|
1942
|
+
+<img src="http://static.wired.com/news/images/navstrip_off.gif" height="17" width="126" usemap="#navstrip.map" border="0" alt=""><br><br>
|
1943
|
+
+
|
1944
|
+
+<p><font face="Verdana, Arial, Geneva, sans-serif" size="1">
|
1945
|
+
<a href="http://www.wired.com/news/feedback.html">Send us feedback</a>
|
1946
|
+
|
|
1947
|
+
<a href="http://www.hotwired.com/jobs/">Work at Wired Digital</a>
|
1948
|
+
|
|
1949
|
+
<a href="http://home.wired.com/advertising/">Advertise with us</a>
|
1950
|
+
-<br><a href="http://home.wired.com/">About Wired Digital</a>
|
1951
|
+
+<br>
|
1952
|
+
+<a href="http://home.wired.com/">About Wired Digital</a>
|
1953
|
+
|
|
1954
|
+
<a href="http://www.wired.com/home/digital/privacy/">Our Privacy Policy</a></font>
|
1955
|
+
|
1956
|
+
@@ -382,19 +549,28 @@ Contruction workers in Berlin opened an old wound in the German psyche this week
|
1957
|
+
</p>
|
1958
|
+
<p><font face="Verdana, Arial, Geneva" size="1"><a href="http://www.wired.com/home/copyright.html">Copyright</a> © 1994-99 Wired Digital Inc. All rights reserved.</font>
|
1959
|
+
|
1960
|
+
-<br><!-- TRACKING --><img src="http://www.wired.com/special/modx/news.gif" height="1" width="1" alt=""><map name="navstrip.map"><area shape="rect" coords="0,0,14,16" href="/news">
|
1961
|
+
+<br>
|
1962
|
+
+<!-- TRACKING -->
|
1963
|
+
+<img src="http://www.wired.com/special/modx/news.gif" height="1" width="1" alt="">
|
1964
|
+
+
|
1965
|
+
+<map name="navstrip.map">
|
1966
|
+
+<area shape="rect" coords="0,0,14,16" href="/news">
|
1967
|
+
<area shape="rect" coords="15,0 31,16" href="/news/business/">
|
1968
|
+
<area shape="rect" coords="32,0,48,16" href="/news/culture/">
|
1969
|
+
<area shape="rect" coords="49,0,65,16" href="/news/technology/">
|
1970
|
+
-<area shape="rect" coords="66,0,83,16" href="/news/politics/"></map></p>
|
1971
|
+
+<area shape="rect" coords="66,0,83,16" href="/news/politics/">
|
1972
|
+
+</map>
|
1973
|
+
+ </p>
|
1974
|
+
</td>
|
1975
|
+
<td valign="TOP" align="LEFT">
|
1976
|
+
<img src="http://static.wired.com/news/images/spacer.gif" height="1" width="5" alt="">
|
1977
|
+
-</td>
|
1978
|
+
+ </td>
|
1979
|
+
<td valign="TOP" align="LEFT">
|
1980
|
+
</td>
|
1981
|
+
</tr>
|
1982
|
+
</table>
|
1983
|
+
+
|
1984
|
+
+
|
1985
|
+
<br>
|
1986
|
+
</body>
|
1987
|
+
</html>
|
1988
|
+
diff --git a/xmllint.c b/xmllint.c
|
1989
|
+
index b58d184..9415d9a 100644
|
1990
|
+
--- a/xmllint.c
|
1991
|
+
+++ b/xmllint.c
|
1992
|
+
@@ -3340,8 +3340,9 @@ main(int argc, char **argv) {
|
1993
|
+
}
|
1994
|
+
else if ((!strcmp(argv[i], "-noblanks")) ||
|
1995
|
+
(!strcmp(argv[i], "--noblanks"))) {
|
1996
|
+
- noblanks++;
|
1997
|
+
- xmlKeepBlanksDefault(0);
|
1998
|
+
+ noblanks++;
|
1999
|
+
+ xmlKeepBlanksDefault(0);
|
2000
|
+
+ options |= XML_PARSE_NOBLANKS;
|
2001
|
+
}
|
2002
|
+
else if ((!strcmp(argv[i], "-maxmem")) ||
|
2003
|
+
(!strcmp(argv[i], "--maxmem"))) {
|
2004
|
+
--
|
2005
|
+
1.9.2
|
2006
|
+
|