source: products/qPloneResolveUID/tags/0.2.3/tests/test_data.py @ 2111

Last change on this file since 2111 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 1.9 KB
Line 
1orig_text = """<?xml version="1.0" encoding="utf-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<title>Test page for save html rendering including ruid_to_url transformation</title>
7<meta name="date" content="2006-08-11" />
8</head>
9<body>
10<h1>Test page</h1>
11<table>
12<tr>
13<th>Test1</th>
14<td>test2</td>
15</tr>
16</table>
17<p>This is a text used as a blind text.</p>
18<ul>
19<li>A sample list item1</li>
20<li>A sample list item2</li>
21</ul>
22<p>This is again a blind text with a<br>line break.</p>
23<div>
24Can we <q>quote</q> or write something we <del>didn't</del> mean to write? Or how is <ins>this</ins> instead?
25</div>
26<hr>
27<div>
28<a href="resolveuid/%s"><img src="resolveuid/%s"/><img src="resolveuid/%s"/></a> is just great.
29</div>
30</body>
31</html>"""
32result = """<?xml version="1.0" encoding="utf-8" ?>
33<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
34<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
35<head>
36<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
37<title>Test page for save html rendering including ruid_to_url transformation</title>
38<meta name="date" content="2006-08-11" />
39</head>
40<body>
41<h1>Test page</h1>
42<table>
43<tr>
44<th>Test1</th>
45<td>test2</td>
46</tr>
47</table>
48<p>This is a text used as a blind text.</p>
49<ul>
50<li>A sample list item1</li>
51<li>A sample list item2</li>
52</ul>
53<p>This is again a blind text with a<br>line break.</p>
54<div>
55Can we <q>quote</q> or write something we <del>didn't</del> mean to write? Or how is <ins>this</ins> instead?
56</div>
57<hr>
58<div>
59<a href="test1"><img src="test1/test2"/><img src="test1/test2/test3"/></a> is just great.
60</div>
61</body>
62</html>"""
Note: See TracBrowser for help on using the repository browser.