Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

root/tags/RELEASE_1_3_4_2/RELEASE_en.html

Revision 236, 18.5 kB (checked in by nakahiro, 8 years ago)

Document for 1.3.4.2

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to author date id revision
Line 
1 <?xml version="1.0"?>
2 <!DOCTYPE html
3     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4     "DTD/xhtml1-strict.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
6 <head>
7 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
8 <meta http-equiv="Content-Style-Type" content="text/css" />
9 <link rev="MADE" href="mailto:nakahiro@sarion.co.jp" />
10 <link rel="StyleSheet" href="rubyStyle.css" type="text/css" media="screen" />
11 <title>Release Notes - SOAP4R</title>
12 </head>
13 <body>
14
15 <div class="header">
16 <h1>
17 Release Notes - SOAP4R
18 </h1>
19
20 <p class="status">
21 Last modified: July 11, 2001<br />
22 Created: July 17, 2000
23 </p>
24 </div>
25
26 <hr />
27
28 <div class="main">
29 <h2>0. In this document...</h2>
30
31 <p>
32 This is Release Notes of SOAP4R.
33 </p>
34
35 <p>
36 Target SOAP4R version: SOAP4R/1.3.4.2
37 </p>
38
39 <ol>
40 <li><a href="#changes">Changes</a></li>
41 <li><a href="#install">Install</a></li>
42 <li><a href="#uninstall">Uninstall</a></li>
43 <li><a href="#whats">What is SOAP4R?</a></li>
44 <li><a href="#dependencies">Dependencies</a></li>
45 <li><a href="#restrictions">Restrictions</a></li>
46 <li><a href="#history">History</a></li>
47 <li><a href="#author">Author</a></li>
48 <li><a href="#copyright">Copyright</a></li>
49 </ol>
50
51 <h2 id="changes" name="changes">1. Changes</h2>
52
53 <p>
54 SOAP4R/1.3.4 was once packed in July 10, 2001.
55 But, thanks to MNeumann and knu,
56 I found I had forgotten to pack 'redist' directory with it.
57 I added some fix from developing version and repack it as 1.3.4.2.
58 Sorry for frequently release...
59 </p>
60
61 <p>
62 Feedback from
63 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
64 and Michael Neumann.  Thanks!
65 </p>
66
67 <ul>
68 <li>Added in 1.3.4.2:
69   <ul>
70     <li>Type Decimal: Silly bug fixed.  0.0001 was converted to 0.1</li>
71     <li>CGIStub returns HTTP status 500 when returning SOAP Fault.
72         Returned 200 because I don't like this spec., but SOAP/1.2 W3C WD
73         9 July 2001 have adopted it.  Hmm...</li>
74     <li>RPC client(driver.rb): Exception#set_backtrace was omitted when transmitting exception by SOAP Fault.</li>
75   </ul>
76 </li>
77 <li>Types changed:
78   <ul>
79     <li>Array: Incomplete sparse array support.  Fixed.</li>
80     <li>Date: Added.</li>
81     <li>Time: Added.</li>
82     <li>DateTime: Added precision of time support.</li>
83     <li>String: Default data should not be nil but ''.</li>
84     <li>Nil: Attribute value of xsi:nil might be '1' instead of 'true'.  Fixed.</li>
85   </ul>
86 </li>
87
88 <li>Supported XML parser:
89   <ul>
90     <li>Added SOAPXMLParser and SOAPSAXDriver for XMLParser which uses expat.
91         You can get the module from RAA: <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=XMLParser">XMLParser module</a>.<br/>
92         To use XMLParser -&gt; add &quot;require 'soap/xmlparser'&quot;.<br/>
93         To use SAX driver of XMLParser -&gt; add &quot;require 'soap/saxdriver'&quot;.<br/>
94         To use NQXMLParser -&gt; nothing to do.<br/>
95         FYI:
96         <ul>
97           <li>XMLParser version is faster than others</li>
98           <li>SAXDriver version is extremely slow</li>
99           <li>NQXMLParser version is somewhat slower than XMLParser version</li>
100           <li>XMLParser is a Ruby extension module; To use it, you must compile and install it.</li>
101           <li>So far, automatic code conversion support is for XMLParser and SAXDriver.  See below.</li>
102         </ul>
103     </li>
104     <li>Added automatic CES conversion support: UTF-8 &lt;-&gt; EUC, SJIS.
105         Requires Uconv module.  Works with XMLParser module only now.</li>
106     <li>Added XMLDecl for CES.</li>
107   </ul>
108 </li>
109
110 <li>RPC related functions changed:</li>
111   <ul>
112     <li>Changed signature of CGIStub#addMethod.  You cannot define namespace with this method.  CGIStub instance supports only one namespace.</li>
113     <li>Added output parameter support.</li>
114     <li>Changed method definition interfaces(RPCRouter#addMethod and Driver#addMethod).  You can specify paramter names and 'in', 'inout', 'out' and 'retval' parameter types of each method.  So far, parameter names are not checked on RPC server side, but should be checked in the future version of SOAP4R.  Thanks to Michael Neumann for valuable comments.</li>
115   </ul>
116 </li>
117 </ul>
118
119 <h2 id="install" name="install">2. Install</h2>
120
121 <p>
122 Simply, get the archived file and extract it.  Then, try;
123 </p>
124
125 <pre>
126 &quot;ruby install.rb&quot;
127 </pre>
128
129 <p>
130 Necessary files will be installed to suitable directory.
131 </p>
132
133 <p>
134 Files in lib/soap directory are SOAP4R library program itself.
135 Followings are redistributed files in redist/.
136 </p>
137
138 <dl>
139 <dt class="path">date3.rb</dt>
140 <dd>by Funaba-san (<a href="http://www.kt.rim.or.jp/~tadf/ruby-en.html">http://www.kt.rim.or.jp/~tadf/ruby-en.html</a>)</dd>
141
142 <dt class="path">parsedate3.rb</dt>
143 <dd>by Funaba-san (<a href="http://www.kt.rim.or.jp/~tadf/ruby-en.html">http://www.kt.rim.or.jp/~tadf/ruby-en.html</a>)</dd>
144
145 <dt class="path">uri.rb</dt>
146 <dd>by Koshimizu-san (<a href="http://www02.so-net.ne.jp/~greentea/ruby/uri/">http://www02.so-net.ne.jp/~greentea/ruby/uri/</a>)</dd>
147 </dl>
148
149 <p>
150 Files in archive:
151 </p>
152
153 <dl>
154 <dt class="path">lib/soap/</dt>
155 <dd>SOAP4R library program.</dd>
156
157 <dt class="path">test/</dt>
158 <dd>Clients/Server for
159 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
160 Because of no documents or &quot;How-to&quot; things there,
161 test/interopR2/server.cgi is a must RPC Server side sample to check.
162 test/interopR2/client*.rb is a must RPC Client side sample to check.
163 test/interopR2/base.rb includes common definitions for client/server side.
164 </dd>
165
166 <dt class="path">sample/</dt>
167 <dd>Sample program using SOAP4R.</dd>
168
169 <dt class="path">sample/apacheClient.rb</dt>
170 <dd>SOAP-RPC client sample.
171 It connects with demonstration server programs stockquote and addressbook in Apache-SOAP.
172 You have to install Apache-SOAP and deploy demostration programs.<br />
173 To execute;
174 <pre class="path">
175 ./apacheClient.rb http://localhsot:2020/xml-soap/rpcrouter/rpcrouter.jsp
176 </pre>
177 </dd>
178
179 <dt class="path">sample/RAA/*</dt>
180 <dd>SOAP-RPC client samples.
181 <ul>
182 <li>soap4r.rb, soap4rApp.rb: Ruby program using SOAP4R</li>
183 <li>xmlrpc4r.rb: Ruby program using xmlrpc4r</li>
184 <li>pocketSOAP.js: JScript program using pocketSOAP</li>
185 <li>SOAP::Lite.pl: Perl program using SOAP::Lite for Perl</li>
186 </ul>
187 There programs connect with testing RAA server on www.ruby-lang.org.
188 Since the server is under testing phase so stable operation is not expected.</dd>
189
190 <dt class="path">redist/</dt>
191 <dd>Redistributed programs which SOAP4R is using.
192 I would appriciate to authors of these programs.
193 </dd>
194
195 <dt class="path">redist/archive/</dt>
196 <dd>Archives.
197 Follow the term of each archive to use these programs.
198 </dd>
199 </dl>
200
201 <h2 id="uninstall" name="uninstall">3. Uninstall</h2>
202
203 <p>
204 Delete created files at installation.
205 </p>
206
207 <pre>
208 ruby -rrbconfig -e 'include Config; puts CONFIG[&quot;sitedir&quot;] + &quot;/&quot; + CONFIG[&quot;MAJOR&quot;] + &quot;.&quot; + CONFIG[&quot;MINOR&quot;]'
209 </pre>
210
211 <p>
212 should be dump installation root directory.
213 Here, check &quot;soap&quot; directory and filename of files in &quot;redist&quot; directory.
214 </p>
215
216 <h2 id="whats" name="whats">4. What is SOAP4R?</h2>
217
218 <p>
219 'SOAP4R' is a Ruby library program to handle
220 <a href="http://www.w3.org/TR/SOAP/">Simple Object Access Protocol (SOAP) 1.1 (W3C Note)</a>.
221 </p>
222
223 <p>
224 Comments, information such as interoperability between SOAP4R and another implementation are welcomed.
225 Feel free sending mail to
226 <a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a>.
227 </p>
228
229 <h2 id="dependencies" name="dependencies">5. Dependencies</h2>
230
231 <p>
232 SOAP4R depends on below programs:
233 </p>
234
235 <ul>
236 <li>SOAP4R is a
237 <a href="http://www.ruby-lang.org">Ruby</a>
238 library program.
239 You have to install Ruby itself.
240 Ruby/1.6 series are required.
241 It does not works on 1.4 series because of class variable.</li>
242
243 <li>SOAP4R delegates XML related processing to
244 <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=NQXML">NQXML module</a>.
245 You have to install NQXML module.</li>
246
247 <li>To play with SOAP-RPC client sample, you have to install
248 <a href="http://xml.apache.org/soap/">Apache SOAP</a>.
249 </li>
250 </ul>
251
252 <h2 id="restrictions" name="restrictions">6. Restrictions</h2>
253
254 <p>
255 The following features of the
256 <a href="http://www.w3.org/TR/SOAP/">SOAP 1.1 (W3C Note)</a>
257 spec are <strong>NOT</strong> currently supported:
258 </p>
259
260 <ul>
261 <li style="margin-top: 2ex;">SOAP Envelope
262 <ul>
263 <li>SOAP actor attribute</li>
264 <li>SOAP mustUnderstand attribute</li>
265 <li>SOAP Fault Codes</li>
266 </ul></li>
267 <li style="margin-top: 2ex;">SOAP Encoding
268 <ul>
269 <li>encoding/decoding using XML Schema;
270 Only xsi:type in SOAP Encoding is checked</li>
271 <li>Marshalling references to href/id (Unmarshalling is OK)</li>
272 </ul></li>
273 <li style="margin-top: 2ex;">Othres
274 <ul>
275 <li>Transport binding except HTTP server(CGI) and client</li>
276 <li>HTTP Extension Framework (M-POST)</li>
277 </ul></li>
278 </ul>
279
280 <h2 id="history" name="history">7. History</h2>
281
282 <dl>
283 <dt>1.3.4.2 - July 11, 2001</dt>
284 <dd>SOAP4R/1.3.4 was once packed in July 10, 2001.
285 But, thanks to MNeumann and knu,
286 I found I had forgotten to pack 'redist' directory with it.
287 I added some fix from developing version and repack it as 1.3.4.2.
288 Sorry for frequently release...
289 <br/><br/>
290
291 Feedback from
292 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
293 and Michael Neumann.  Thanks!
294
295 <ul>
296 <li>Added in 1.3.4.2:
297   <ul>
298     <li>Type Decimal: Silly bug fixed.  0.0001 was converted to 0.1</li>
299     <li>CGIStub returns HTTP status 500 when returning SOAP Fault.
300         Returned 200 because I don't like this spec., but SOAP/1.2 W3C WD
301         9 July 2001 have adopted it.  Hmm...</li>
302     <li>RPC client(driver.rb): Exception#set_backtrace was omitted when transmitting exception by SOAP Fault.</li>
303   </ul>
304 </li>
305 <li>Types changed:
306   <ul>
307     <li>Array: Incomplete sparse array support.  Fixed.</li>
308     <li>Date: Added.</li>
309     <li>Time: Added.</li>
310     <li>DateTime: Added precision of time support.</li>
311     <li>String: Default data should not be nil but ''.</li>
312     <li>Nil: Attribute value of xsi:nil might be '1' instead of 'true'.  Fixed.</li>
313   </ul>
314 </li>
315
316 <li>Supported XML parser:
317   <ul>
318     <li>Added SOAPXMLParser and SOAPSAXDriver for XMLParser which uses expat.
319         You can get the module from RAA: <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=XMLParser">XMLParser module</a>.<br/>
320         To use XMLParser -&gt; add &quot;require 'soap/xmlparser'&quot;.<br/>
321         To use SAX driver of XMLParser -&gt; add &quot;require 'soap/saxdriver'&quot;.<br/>
322         To use NQXMLParser -&gt; nothing to do.<br/>
323         FYI:
324         <ul>
325           <li>XMLParser version is faster than others</li>
326           <li>SAXDriver version is extremely slow</li>
327           <li>NQXMLParser version is somewhat slower than XMLParser version</li>
328           <li>XMLParser is a Ruby extension module; To use it, you must compile and install it.</li>
329           <li>So far, automatic code conversion support is for XMLParser and SAXDriver.  See below.</li>
330         </ul>
331     </li>
332     <li>Added automatic CES conversion support: UTF-8 &lt;-&gt; EUC, SJIS.
333         Requires Uconv module.  Works with XMLParser module only now.</li>
334     <li>Added XMLDecl for CES.</li>
335   </ul>
336 </ul></dd>
337
338 <dt>1.3.3 - July 4, 2001</dt>
339 <dd>Feedback from
340 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
341 and Michael Neumann.  Thanks!
342 <ul>
343 <li>Added SOAP4R Installer by Michael Neumann.  Thanks!</li>
344 <li>Types changed:
345   <ul>
346     <li>Boolean: Accepts 1 and 0 in addition to true and falue.</li>
347     <li>Float: handles single-precision 32-bit floating point.
348         Ruby's float is doule-precision.</li>
349     <li>Double: Added.  Mapped to Ruby's Float.</li>
350     <li>DateTime: Added TZ support.</li>
351     <li>Long: Added.</li>
352     <li>Int: Changed class hierarchy; derived from Long now.</li>
353     <li>Array: Added 'position' and 'offset' support.</li>
354     <li>Array: Added M-D Array support.</li>
355     <li>Decimal: Added but it's incomplete now.</li>
356   </ul>
357 </li>
358 <li>Illegal error message when a type not found in SOAP-ENC.</li>
359 <li>Tries to transmit \r safely.  To be checked...</li>
360 <li>Parse Fault items like 'faultcode' as same as Body ie. href/id.</li>
361 <li>rpcUtils.rb was completely re-written.
362   <ul>
363     <li>Added mappingRegistry interface.</li>
364     <li>Changed soap2obj and obj2soap's interface.</li>
365     <li>Bignum might be int or integer.  It's dependent on platform.
366         Changed to check range  -2147483648~+2147483647 itself.</li>
367     <li>ary2md: Added.  Converting Array ((of Array)...) to M-D Array.</li>
368     <li>struct2obj: Illegal dependency on ordering of Struct#members.  Fixed.</li>
369     <li>Ruby's Array should be converted to SOAP's Array of anyType.  Fixed.</li>
370   </ul>
371 </li>
372 <li>Dump HTTP header even when an error was raised.</li>
373 </ul></dd>
374
375 <dt>1.3.2 - June 21, 2001</dt>
376 <dd>Feedback from
377 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
378
379 <ul>
380 <li>&quot;nil='1'&quot; should be &quot;nil='true'&quot; in 2001 schema
381 whereas &quot;null='1'&quot; in 1999 schema.  Fixed.</li>
382 <li>SOAP Array was not typed with xsi:type.</li>
383 <li>Fixed serialization root handling algorithm.</li>
384 <li>Supported kind of SOAP-ENC:String style typed element.</li>
385 <li>Default namespace was not derived to child element.  Fixed.</li>
386 <li>Support default encodingStyle.</li>
387 <li>Added support for void type (SOAP::RPCUtils::SOAPVoid).</li>
388 </ul></dd>
389
390 <dt>1.3.1 - May 30, 2001</dt>
391 <dd>Feedback from
392 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
393
394 <ul>
395 <li>Heading and trailing whtespaces in Base64 string could not be processed.  Fixed.</li>
396 <li>Illegal typeNamespace of SOAP's base64 type.  Fixed.</li>
397 <li>Added NaN, INF, -INF support of Float type.</li>
398 <li>Extracted xsd:1999 type support to XMLSchemaDatatypes1999.rb.  Use it with 'require &quot;soap/XMLSchemaDatatypes1999&quot;'.</li>
399 <li>Added 'root' attribute support.</li>
400 <li>Return status 500 when Fault.</li>
401 </ul></dd>
402
403 <dt>1.3.0 - May 20, 2001</dt>
404 <dd><ul>
405 <li>Adopted
406 <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=NQXML">NQXML module</a>
407 instead of XMLParser module extensively.
408 (You can implement your SOAP parser with XMLParser module.
409 See the last part of lib/soap/parser.rb)
410 <ul>
411 <li>Use NQXML's streamingParser or tokenizer instead of XMLParser's DOMParser for unmarshalling.</li>
412 <li>Use NQXML's document instead of XMLParser's DOM for marshalling.</li>
413 </ul></li>
414 <li>Passed major(?) part of inteoperability test in
415 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
416 See test/interop/README.txt.</li>
417 <li>Changed module namespace.  SOAPFoo -> SOAP::Foo.</li>
418 <li>Added float datatype support.</li>
419 <li>Changed dateTime marshalling format.  No timezone was added to marshalled string  because SOAP4R does not support timezone now.</li>
420 </ul></dd>
421
422 <dt>1.2.0 - March 30, 2001</dt>
423 <dd>Checked interoperability with
424 <a href="http://xml.apache.org/soap/">Apache-SOAP</a>,
425 <a href="http://www.pocketsoap.com">pocketSOAP/0.91</a>,
426 <a href="http://www.geocities.com/paulclinger/soap.html">SOAP::Lite for Perl</a>,
427 and <a href="http://www.develop.com/soap/">SOAP/Perl/0.28</a>.
428 It seems to work good except SOAP/Perl/0.28.
429
430 <ul>
431 <li>Added href/id unmarshalling support.
432 (href/id marshalling has not been supported yet)</li>
433 <li>Added SOAP's base64 type support.</li>
434 <li>SOAPTimeInstant -&gt; SOAPDateTime.  Following XML Schema PR.</li>
435 <li>SOAPStruct can have multiple accessor which have same name.
436 Should I separate it from original SOAPStruct?</li>
437 <li>Unknown attribute in Header Item raised an exception.  Omitted.</li>
438 <li>Router can handle methods which belong to different namespace.</li>
439 <li>Added an option to allow unqualified SOAP element.</li>
440 <li>Added Apache's Map type support.  Ruby's Hash are mapped to it now.
441 (Ruby's Hash marshalled by 1.1 processor in the old way can be unmarshalled,
442 but 1.2 processor marshals it in the new way and 1.1 processor does not
443 unmarshals it into Hash.  Incompatibility between SOAP4R/1.2 and 1.1)</li>
444 <li>Unknown type 'unknown:SOAPStruct' was incorrectly unmarshalled into SOAPStruct.  Fixed.</li>
445 <li>Added utility methods map! and members to SOAPArray and SOAPStruct.</li>
446 <li>Added methods request, response, and fault to SOAPBody.</li>
447 </ul></dd>
448
449 <dt>1.1.0 - March 23, 2001</dt>
450 <dd>Made many changes.
451 Since it is tested only for my limited use, please be careful to use.
452 Any comments especially "cannot connect to XXX implementation" are welcomed.
453 Feel free sending mail to
454 <a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a>.
455
456 <ul>
457 <li>Added RPC server support.</li>
458 <li>Divided RPC client/server implementation from core.</li>
459 <li>Added Date, Hash type support. (Unknown type is converted to Struct as usual)</li>
460 <li>Adopted Date in date3.rb by Funaba-san instead of Time as TimeInstant.</li>
461 <li>Many encoding/decoding bugs around SOAPArray and SOAPStruct were fixed.</li>
462 </ul></dd>
463
464 <dt>1.0.2 - November 11, 2000</dt>
465 <dd>Since the previous package dated, refreshes some points.
466 <ul>
467 <li>Ruby: ruby 1.6.x</li>
468 <li>uri.rb: 4.22</li>
469 <li>sample: xml-soap/2.0</li>
470 </ul></dd>
471
472 <dt>1.0.1 - July 27, 2000</dt>
473 <dd>Handles SOAP/1.1 arrays.
474 1.0.0 cannot handles SOAP/1.1 arrays...
475 Bare in mind there still be many
476 <a href="#restrictions">restrictions</a>
477 around SOAP arrays.</dd>
478
479 <dt>1.0.0 - July 17, 2000</dt>
480 <dd>It is the initial released version of SOAP4R. :-)</dd>
481 </dl>
482
483 <h2 id="author" name="author">8. Author</h2>
484
485 <dl>
486 <dt>Name</dt>
487 <dd>NAKAMURA, Hiroshi (aka NaHi or nakahiro)</dd>
488
489 <dt>E-mail</dt>
490 <dd><a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a></dd>
491
492 <dt>URL</dt>
493 <dd><a href="http://www.jin.gr.jp/~nahi/" class="path">http://www.jin.gr.jp/~nahi/</a> (Japanese)</dd>
494 </dl>
495
496 <h2 id="copyright" name="copyright">9. Copyright</h2>
497
498 <p style="text-align: center;">
499 SOAP4R<br />
500 Copyright &copy; 2000, 2001 NAKAMURA, Hiroshi.
501 </p>
502
503 <p>
504 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
505 </p>
506
507 <p>
508 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
509 See the GNU General Public License(the file named `COPYING') for more details.
510 </p>
511
512 <p>
513 You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
514 </p>
515
516 </div>
517
518 <hr />
519
520 <div class="footer">
521 <address>
522 <a href="http://www.jin.gr.jp/~nahi/Ruby/SOAP4R/">SOAP4R</a>.<br />
523 Copyright &copy; 2000, 2001
524 <a href="http://www.jin.gr.jp/~nahi/">NAKAMURA, Hiroshi</a>.
525 </address>
526 </div>
527 </body>
528 </html>
Note: See TracBrowser for help on using the browser.