<?php
//Shouldn't need to force status code.
//header('HTTP/1.0 200');
header('HTTP/1.1 200');
header("Content-type: application/xhtml+xml; charset=us-ascii");
echo '<?xml version="1.0" encoding="us-ascii"?>'."\n";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Save OK, with Warning</title>
</head>
<body>
<h1>POST Response</h1>
<h2>status: 1</h2>
<h2>statustext: Saved OK, but...<br />
running out of disk space!</h2>
<mozile xmlns="http://www.mozile.mozdev.org/ns/save/">
<post>
<status>1</status>
<statustext>Saved OK, but...
running out of disk space!</statustext>
<display>yes</display>
</post>
</mozile>
</body>
</html>
Bold and italic text. Superscript: 1001.25. Reference345 uses a subscript. Bold and italic.
Bold and italic and underlined and struck through text. Superscript: 1001.25. Reference345 uses a subscript. Bold, italic and underlined.
àáâãäå (...as HTML character entities)
à áâãäå (...as UTF-8 )
àáâãäå (...as ISO-8859-1 )
©© ®® ÀÀ àà ££ ¢¢ ¥¥ ¤¤
€€ ΒΒ ββ
"&<>
Editable paragraph with small text.
Editable paragraph with big text.
This is a non-editable paragraph nested in the editable <div>.
It has the in-line style "-moz-user-modify: read-only;".
This bold text should be editable.
It has the in-line style "-moz-user-modify: read-write;".
[NB : Nested sections are not currently supported with Mozile. You can quite easily delete this whole paragraph,
even though some of it is "read-only".]
| 1 | space (can't edit!) | |
| 2 | non-break-space, as character entity [ ] | |
| 3 | non-break-space, as numeric entity [ ] | |
| 4 | non-break-space, ISO-8859-1 | |
| 5 | non-break-space, UTF-8 | Â |
<?php
header("Content-type: text/xml");
echo '<?xml version="1.0" ?>'."\n";
?>
<rsd version="1.0">
<settings>
<setting name="mes">XHTML</setting>
<setting name="tagCSS">XHTML</setting>
<setting name="pasteMode">text</setting>
<setting name="savePresetDisallow">all</setting>
<setting name="saveContent">page</setting>
<setting name="saveMethod">post</setting>
<setting name="saveMethodDisallow">webdav</setting>
<setting name="httpSavePath">save_warning.php</setting>
<setting name="httpSavePathModify">false</setting>
</settings>
</rsd>