From: <var...@us...> - 2013-04-17 10:36:53
|
Revision: 8765 http://sourceforge.net/p/phpwiki/code/8765 Author: vargenau Date: 2013-04-17 10:36:49 +0000 (Wed, 17 Apr 2013) Log Message: ----------- HTML::Raw --> HTML::raw Modified Paths: -------------- trunk/lib/plugin/AppendText.php trunk/lib/plugin/PasswordReset.php trunk/lib/plugin/RateIt.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/WatchPage.php trunk/lib/plugin/WhoIsOnline.php trunk/lib/plugin/WikiFormRich.php Modified: trunk/lib/plugin/AppendText.php =================================================================== --- trunk/lib/plugin/AppendText.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/AppendText.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -146,7 +146,7 @@ } else { $link = HTML::em(WikiLink($pagename)); - $message->pushContent(HTML::Raw(sprintf(_("Go to %s."), $link->asXml()))); + $message->pushContent(HTML::raw(sprintf(_("Go to %s."), $link->asXml()))); } return $message; Modified: trunk/lib/plugin/PasswordReset.php =================================================================== --- trunk/lib/plugin/PasswordReset.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/PasswordReset.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -96,7 +96,7 @@ { if (!$header) { $header = HTML::p(_("Reset password of user: "), - HTML::Raw(' '), + HTML::raw(' '), HTML::input(array('type' => 'text', 'name' => "user", 'value' => $userid)) @@ -107,7 +107,7 @@ $footer = HTML::p(Button('submit:admin_reset[reset]', $isadmin ? _("Yes") : _("Send e-mail"), $isadmin ? 'wikiadmin' : 'button'), - HTML::Raw(' '), + HTML::raw(' '), Button('submit:admin_reset[cancel]', _("Cancel"), 'button')); } return HTML::form(array('action' => $request->getPostURL(), @@ -153,7 +153,7 @@ $buttons = HTML::p(Button('submit:admin_reset[reset]', $isadmin ? _("Yes") : _("Send e-mail"), $isadmin ? 'wikiadmin' : 'button'), - HTML::Raw(' '), + HTML::raw(' '), Button('submit:admin_reset[cancel]', _("Cancel"), 'button')); $header = HTML::strong("Verify"); if (!$user->isAdmin()) { Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/RateIt.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -392,7 +392,7 @@ //This adds a space between the rating smilies: //if (($i%2) == 0) $html->pushContent("\n"); } - $html->pushContent(HTML::Raw(" ")); + $html->pushContent(HTML::raw(" ")); $a0 = HTML::a(array('href' => "javascript:clickRating('$reImgPrefix','$rePagename','$version'," . "'$reImgId','$dimension','X')")); Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/UserPreferences.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -117,7 +117,7 @@ HiddenInputs($request->getArgs()), HTML::p(_("Do you really want to reset all your UserPreferences?")), HTML::p(Button('submit:delete', _("Yes"), 'delete'), - HTML::Raw(' '), + HTML::raw(' '), Button('cancel', _("Cancel"))) )); } elseif ($rp = $request->getArg('pref')) { Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/WatchPage.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -88,12 +88,12 @@ HTML::p(sprintf(_("Do you %s want to add this page \"%s\" to your WatchList?"), ($verified ? _("really") : ""), $page)), HTML::p(Button('submit:add', _("Yes")), - HTML::Raw(' '), + HTML::raw(' '), Button('submit:cancel', _("Cancel")))); } else { $form->pushContent(HTML::p(fmt("The page %s is already watched!", $page)), HTML::p(Button('submit:edit', _("Edit")), - HTML::Raw(' '), + HTML::raw(' '), Button('submit:cancel', _("Cancel")))); } $fieldset = HTML::fieldset(HTML::legend(_("Watch Page")), $form); Modified: trunk/lib/plugin/WhoIsOnline.php =================================================================== --- trunk/lib/plugin/WhoIsOnline.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/WhoIsOnline.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -78,7 +78,7 @@ if (!$request) $request =& $GLOBALS['request']; $stats = $this->getStats($request->_dbi, $request, 'summary'); return $this->makeBox(_("Who is Online"), - HTML(HTML::Raw('· '), + HTML(HTML::raw('· '), WikiLink(_("WhoIsOnline"), 'auto', fmt("%d online users", $stats['NUM_USERS'])))); } Modified: trunk/lib/plugin/WikiFormRich.php =================================================================== --- trunk/lib/plugin/WikiFormRich.php 2013-04-17 10:34:01 UTC (rev 8764) +++ trunk/lib/plugin/WikiFormRich.php 2013-04-17 10:36:49 UTC (rev 8765) @@ -183,7 +183,7 @@ 'class' => 'wikiformrich', 'accept-charset' => 'UTF-8'), HiddenInputs(array('action' => $action))); - $nbsp = HTML::Raw(' '); + $nbsp = HTML::raw(' '); $already_submit = 0; foreach ($this->inputbox as $inputbox) { foreach ($inputbox as $inputtype => $input) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |