porting bracnch fixes to trunk, raising version number

This commit is contained in:
real_nowhereman 2008-09-26 17:22:13 +00:00
parent 9c3f421d64
commit 44168dda8e
5 changed files with 24 additions and 18 deletions

View File

@ -73,7 +73,7 @@
define('SYSTEM_VER', '0.804'); define('SYSTEM_VER', '0.805');
function system_ver() { function system_ver() {
return 'fp-' . SYSTEM_VER; return 'fp-' . SYSTEM_VER;
} }

View File

@ -9,14 +9,20 @@
'head' => 'Manage Widgets (<em>experimental</em>)', 'head' => 'Manage Widgets (<em>experimental</em>)',
'descr' => 'A <a class="hint" '. 'descr' => 'A <a class="hint" '.
'href="http://wiki.flatpress.org/doc:plugins" title="What is a Widget?">'. 'href="http://wiki.flatpress.org/doc:widgets" title="What is a Widget?">'.
'Widget</a> is a visual element of a <a class="hint" '. 'Widget</a> is a dynamic component that can display data and interact with the user.
'href="http://wiki.flatpress.org/doc:plugins" title="What is a Plugin?">'. While <strong>Themes</strong> are meant to change how your blog looks like, Widgets
'Plugin</a> that you can put in some special areas '. <strong>extend</strong> looks and functionalities.</p>
'(the <em>widgetsets</em>) on your blog pages '.
'called <strong>widgetsets</strong> </p>'. <p>Widgets can be dragged to special areas of your theme called the
'<p><strong>Drag</strong> a widget from the right box and <strong>drop</strong> '. <strong>WidgetSets</strong>. The number and the name of the WidgetSets may vary with the
'it to the position you prefer.</p>', theme you choose.</p>
<p>FlatPress comes with several widgets: there are widgets to help with the login, to
display a search box, etc.</p>
<p>Each Widget is defined by a <a class="hint" '.
'href="http://wiki.flatpress.org/doc:plugins" title="What is a Widget?">plugin</a>.',
'availwdgs' => 'Available Widgets', 'availwdgs' => 'Available Widgets',
'trashcan' => 'Drop here to delete', 'trashcan' => 'Drop here to delete',

View File

@ -14,15 +14,15 @@
<fieldset><legend>{$lang.contact.fieldset1}</legend> <fieldset><legend>{$lang.contact.fieldset1}</legend>
<p><label class="textlabel" for="name">{$lang.contact.name}</label><br /> <p><label class="textlabel" for="name">{$lang.contact.name}</label><br />
<input type="text" name="name" id="name" {$error.name|notempty:'class="field-error"'} <input type="text" name="name" id="name" {$error.name|notempty:'class="field-error"'}
value="{$values.name|stripslashes}" /></p> value="{$values.name|stripslashes|wp_specialchars:true}" /></p>
<p><label class="textlabel" for="email">{$lang.contact.email}</label><br /> <p><label class="textlabel" for="email">{$lang.contact.email}</label><br />
<input type="text" name="email" id="email" {$error.email|notempty:'class="field-error"'} <input type="text" name="email" id="email" {$error.email|notempty:'class="field-error"'}
value="{$values.email|stripslashes}" /></p> value="{$values.email|stripslashes|wp_specialchars:true}" /></p>
<p><label class="textlabel" for="url">{$lang.contact.www}</label><br /> <p><label class="textlabel" for="url">{$lang.contact.www}</label><br />
<input type="text" name="url" id="url" {$error.url|notempty:'class="field-error"'} <input type="text" name="url" id="url" {$error.url|notempty:'class="field-error"'}
value="{$values.url|stripslashes}" /></p> value="{$values.url|stripslashes|wp_specialchars:true}" /></p>
{comment_form} {comment_form}
@ -31,7 +31,7 @@
<fieldset><legend>{$lang.contact.fieldset2}</legend> <fieldset><legend>{$lang.contact.fieldset2}</legend>
<p><label for="content">{$lang.contact.comment}</label><br /> <p><label for="content">{$lang.contact.comment}</label><br />
<textarea name="content" id="content" {$error.content|notempty:'class="field-error"'} <textarea name="content" id="content" {$error.content|notempty:'class="field-error"'}
rows="10" cols="74">{$values.content|stripslashes}</textarea></p> rows="10" cols="74">{$values.content|stripslashes|wp_specialchars:true}</textarea></p>
</fieldset> </fieldset>

View File

@ -3,9 +3,9 @@
<form id="login" method="post" action="{$smarty.server.PHP_SELF}" enctype="multipart/form-data"> <form id="login" method="post" action="{$smarty.server.PHP_SELF}" enctype="multipart/form-data">
<fieldset><legend>{$lang.login.fieldset1}</legend> <fieldset><legend>{$lang.login.fieldset1}</legend>
<p><label for="user">{$lang.login.user}</label><br /> <p><label for="user">{$lang.login.user}</label><br />
<input {$error.user|notempty:'class="field-error"'} type="text" name="user" id="user" {if $smarty.post.user}value="{$smarty.post.user}"{/if} /></p> <input {$error.user|notempty:'class="field-error"'} type="text" name="user" id="user" {if $smarty.post.user}value="{$smarty.post.user|wp_specialchars:true}"{/if} /></p>
<p><label for="pass">{$lang.login.pass}</label><br /> <p><label for="pass">{$lang.login.pass}</label><br />
<input type="password" {$error.pass|notempty:'class="field-error"'} name="pass" id="pass" {if $smarty.post.pass}value="{$smarty.post.pass}"{/if} /></p> <input type="password" {$error.pass|notempty:'class="field-error"'} name="pass" id="pass" /></p>
</fieldset> </fieldset>
<div class="buttonbar"> <div class="buttonbar">

View File

@ -23,7 +23,7 @@ LangId: English
'descr' => 'descr' =>
'Thank you for choosing <strong>FlatPress</strong>! 'Thank you for choosing <strong>FlatPress</strong>!
Before you can start having fun with your brand new blog, we have ask you a very few questions. Before you can start having fun with your brand new blog, we have to ask you a very few questions.
Don\'t worry, it won\'t take you long!', Don\'t worry, it won\'t take you long!',
@ -66,7 +66,7 @@ LangId: English
Unbelievable? Unbelievable?
And you\'re right: <strong>the story has just begun</strong>, but <strong>writing it\'s up to you</strong>! And you\'re right: <strong>the story has just begun</strong>, but <strong>writing is up to you</strong>!
<ul> <ul>
<li>See <a href="%s">how the home page looks like</a></li> <li>See <a href="%s">how the home page looks like</a></li>