From: <du...@us...> - 2012-11-07 16:17:58
|
Revision: 10248 http://sourceforge.net/p/xoops/svn/10248 Author: dugris Date: 2012-11-07 16:17:53 +0000 (Wed, 07 Nov 2012) Log Message: ----------- Fix : help Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help/help.html Added Paths: ----------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/css/help.css XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help.php Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/css/help.css =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/css/help.css (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/css/help.css 2012-11-07 16:17:53 UTC (rev 10248) @@ -0,0 +1,45 @@ +code { + display: block; + width: 90%; + max-height: 400px; + overflow: auto; + padding: 2em; + font-weight: bold; + font-size: 1em; +} +.system-help { + min-height: 650px; +} +.help { + height: 100px; + display: block; +} +.help-item { + margin-bottom: 20px; + display: blockj; +} +.help-title { + width: 80%; + margin-bottom: 10px; + font-size: 1.2em; + font-weight: bold; +} +.help-paypal { + vertical-align: top; + margin: 0; + padding: 0; +} + +.help-submenu { + margin: 10px; + padding: 10px; + background-color: #F7F7F9; + width: 250px; + position: absolute; + right: 50px; +} + +.help-description { + width: 100%; + +} \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help/help.html 2012-11-07 15:31:24 UTC (rev 10247) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help/help.html 2012-11-07 16:17:53 UTC (rev 10248) @@ -0,0 +1,93 @@ +<link rel="stylesheet" type="text/css" media="screen" href="<{xoAppUrl modules/xcaptcha/css/help.css}>" /> + +<div class="help txtcenter"> + <div class="help-submenu floatright txtleft"> + <ul> + <li><a href="#description" title=""><{$smarty.const._HELP_DESCRIPTION_TITLE}></a></li> + <li><a href="#developer" title=""><{$smarty.const._HELP_DEVELOPER_TITLE}></a></li> + <li><a href="#install" title=""><{$smarty.const._HELP_INSTALL_TITLE}></a></li> +<!-- + <li><a href="#uninstall" title=""><{$smarty.const._HELP_UNINSTALL_TITLE}></a></li> +--> + <li><a href="#tutorial" title=""><{$smarty.const._HELP_TUTORIAL_TITLE}></a></li> + </ul> + </div> + + <div class="floatleft"> + <img src="<{$xoops_url}>/modules/<{$module->getVar('dirname')}>/<{$module->getInfo('image')}>" alt="<{$module->getVar('name')}>" title="<{$module->getVar('name')}>" /> + </div> + + <div class="help-title floaleft"> + <h2><{$module->getVar('name')}></h2> + <{if $module->getInfo('paypal')}> + <form class="help-paypal" id="paypal-form" name="_xclick" action="https://www.paypal.com/fr/cgi-bin/webscr" method="post"> + <input type="hidden" name="cmd" value="_xclick"> + <{foreachq from=$module->getInfo('paypal') item=value key=key}> + <{if is_numeric($value)}> + <input type="hidden" name="<{$key}>" value=<{$value}>> + <{else}> + <input type="hidden" name="<{$key}>" value="<{$value}>"> + <{/if}> + <{/foreach}> + <img src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" onclick="$('#paypal-form').submit()" alt="PayPal - The safer, easier way to pay online!" /> + </form> + <{/if}> + </div> +</div> +<div class="clear"></div> + +<a name="description"></a> +<div class="help-item"> + <div class="help-title"> + <{$smarty.const._HELP_DESCRIPTION_TITLE}> + </div> + <div> + <{$module->getInfo('description')}> + <br /> + Version : <{$module->getInfo('version')}> <{$module->getInfo('module_status')}> (<{$module->getInfo('release_date')}>)</div> + </div> +</div> + +<a name="Developer"></a> +<div class="help-item"> + <div class="help-title"> + <{$smarty.const._HELP_DEVELOPER_TITLE}> + </div> + <{if $module->getInfo('module_website_url')}> + <div class="spacer marg5"> + <a href="http://<{$module->getInfo('module_website_url')}>" rel="external"><{$module->getInfo('module_website_name')}></a> + </div> + <{/if}> +</div> + +<a name="install"></a> +<div class="help-item"> + <div class="help-title"> + <{$smarty.const._HELP_INSTALL_TITLE}> + </div> + <div> + <{$smarty.const._HELP_INSTALL_CONTENT}> + </div> +</div> + +<!-- +<a name="uninstall"></a> +<div class="help-item"> + <div class="help-title"> + <{$smarty.const._HELP_UNINSTALL_TITLE}> + </div> + <div> + <{$smarty.const._HELP_UNINSTALL_CONTENT}> + </div> +</div> +--> + +<a name="tutorial"></a> +<div class="help-item"> + <div class="help-title"> + <{$smarty.const._HELP_TUTORIAL_TITLE}> + </div> + <div> + <{$smarty.const._HELP_TUTORIAL_CONTENT}> + </div> +</div> \ No newline at end of file Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help.php (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help.php 2012-11-07 16:17:53 UTC (rev 10248) @@ -0,0 +1,39 @@ +<?php +/** + * Xoocontact module + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @package xoocontact + * @since 2.6.0 + * @author Laurent JEN (Aka DuGris) + * @version $Id$ + */ + +define("_HELP_DESCRIPTION_TITLE", "Description"); +define("_HELP_DEVELOPER_TITLE", "Developer"); + +define("_HELP_INSTALL_TITLE", "Install"); +define("_HELP_INSTALL_CONTENT", " +Extra, or non-core, modules are usually downloadable as compressed files (zip, tar). Always check if a text file with upload instructions is included in the downloaded package. + <ol> + <li> Unzip files in local computer.</li> + <li>FTP/upload all files to appropriate folders in your website directory. This is usually the /modules folder under the Xoops root directory, where all the other modules are found. However, some modules have extra files that need to be uploaded to other folders such as the /include and the /class folders.</li> + <li>After upload, go to your Modules Administration Page and check if the new module is included in the uninstalled modules table.</li> + <li>Follow the steps described above for installing core modules from the Modules Administration page.</li> + </ol> +"); + +define("_HELP_UNINSTALL_TITLE", "Uninstall"); +define("_HELP_UNINSTALL_CONTENT", ""); + +define("_HELP_TUTORIAL_TITLE", "Tutorial"); +define("_HELP_TUTORIAL_CONTENT", "Coming soon"); +?> \ No newline at end of file Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/xcaptcha/language/english/help.php ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Rev URL |