Update of /cvsroot/phpwiki/phpwiki/themes/default/templates
In directory usw-pr-cvs1:/tmp/cvs-serv432
Modified Files:
userprefs.tmpl
Added Files:
htmldump.tmpl
Log Message:
another fix.
--- NEW FILE: htmldump.tmpl ---
<?php // -*-html-*-
/* $Id: htmldump.tmpl,v 1.1 2002/08/27 22:00:04 rurban Exp $
*
* This template is used only for html file dumps, and is responsible mainly for the outer level <html> stuff and the and <head>.
*/
printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- $Id: htmldump.tmpl,v 1.1 2002/08/27 22:00:04 rurban Exp $ -->
<meta http-equiv="Content-Type" content="text/html; charset=<?=CHARSET?>" />
<?php /**
* Additional navigation links are provided here in the html header for browsers
* which support them: Mozilla, iCab, Amaya (and certain versions of Opera??).
*
* See http://www.w3.org/TR/html401/struct/links.html#edef-LINK
* http://www.euronet.nl/~tekelenb/WWW/LINK/index.html
*/ ?>
<link rel="home" title="<?=HOME_PAGE?>" href="<?=WikiURL(HOME_PAGE)?>" />
<link rel="help" title="<?=_("HowToUseWiki")?>" href="<?=WikiURL(_("HowToUseWiki"))?>" />
<link rel="copyright" title="GNU General Public License" href="http://www.gnu.org/copyleft/gpl.html#SEC1" />
<?php
$wikiadminName = _("The PhpWiki Programming Team");
$wikiadminUrl = "http://phpwiki.sourceforge.net/phpwiki/ThePhpWikiProgrammingTeam";
?>
<link rel="author" title="<?= $wikiadminName ?>" href="<?= $wikiadminUrl ?>" />
<?= $Theme->getCSS() ?>
<title><?=WIKI_NAME?> - <?=AsString($TITLE)?></title>
</head>
<?= Template('body') ?>
<!-- phpwiki source:
<?=$RCS_IDS?>
-->
</html>
Index: userprefs.tmpl
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/themes/default/templates/userprefs.tmpl,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -2 -b -p -d -r1.26 -r1.27
--- userprefs.tmpl 27 Aug 2002 21:51:31 -0000 1.26
+++ userprefs.tmpl 27 Aug 2002 22:00:04 -0000 1.27
@@ -165,5 +165,5 @@ if ($errmsg) $msg = HTML(HTML::h4(array(
<?php } ?>
<?=_("Width")?>
- <?php if ($editAreaSize) { ?>
+ <?php if ($isForm) { ?>
<input type="text" name="pref[editWidth]" size="4" maxlength="4" class="numeric"
value="<?=$request->getPref('editWidth')?>" />
|