Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/template
In directory sc8-pr-cvs1:/tmp/cvs-serv20781/lib/HTTP/WebTest/Recorder/template
Modified Files:
wtscript page.inc list
Log Message:
Don't use HTML plugin but rather use html filter
Index: wtscript
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/template/wtscript,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** wtscript 25 Jan 2003 14:54:51 -0000 1.1
--- wtscript 2 Feb 2003 17:25:00 -0000 1.2
***************
*** 3,10 ****
%]
- [% USE HTML %]
-
<pre>
! [% HTML.escape(wtscript) %]
</pre>
--- 3,8 ----
%]
<pre>
! [% wtscript | html %]
</pre>
Index: page.inc
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/template/page.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** page.inc 25 Jan 2003 15:24:47 -0000 1.2
--- page.inc 2 Feb 2003 17:25:00 -0000 1.3
***************
*** 1,13 ****
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
- [% USE HTML %]
-
<html>
<head>
! <title>[% HTML.escape(title) %]</title>
</head>
<body>
! <h1>[% HTML.escape(title) %]</h1>
[% content %]
--- 1,11 ----
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
! <title>[% title | html %]</title>
</head>
<body>
! <h1>[% title | html %]</h1>
[% content %]
Index: list
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/template/list,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** list 25 Jan 2003 15:24:47 -0000 1.2
--- list 2 Feb 2003 17:25:00 -0000 1.3
***************
*** 3,7 ****
%]
- [% USE HTML %]
[% USE enable_url = URL('enable') %]
--- 3,6 ----
***************
*** 21,28 ****
<td>
<a href="[% request_url(num => loop.index) %]">
! [% HTML.escape(test.request.uri) %]
</a>
</td>
! <td>[% HTML.escape(test.response.status_line) %]</td>
</tr>
[% END %]
--- 20,27 ----
<td>
<a href="[% request_url(num => loop.index) %]">
! [% test.request.uri | html %]
</a>
</td>
! <td>[% test.response.status_line | html %]</td>
</tr>
[% END %]
|