用户名 密码 记住我 还未注册?

下载中心


下载中心


经过 XOOPS China 初步验证核实的模块
一般可用于正式站点
Open in new window


按字母顺序列表浏览
[ 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F | G | H | I ]
[ J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z ]


[ 最新列表 | 热门 | 评分 ]


网站 : 推荐模块


分类方式: 标题 ( )   日期 ( )   评分 ( )   热门 ( )
当前分类: 标题 ( Z 到 A )


页:

(1) 2 3 4 ... 11 »


分类信息模块(CATADS汉化) 查看全部详细资料
提交者: sinoer
提交日期:   Fri, 20-Apr-2007
 

XOOPS分类信息,二手市场模块(CATADS)。非完全汉化但是不影响使用。水平有限,错误在所难免,请大家指正。
版本: 1.4
下载次数 2447
文件大小: 223.29 KB
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台: None | 许可: 未指明 | 限制: 未指明

多语言内容管理 xlanguage 2.03 查看全部详细资料
提交者: D.J.
提交日期:   Tue, 21-Jun-2005
 

xlanguage 2.03 bugfix:
1 "input" parse improvement, reported by irmtfan @ xoops.org


xlanguage 2.02 bugfix for XSS vulnerability
Thanks domifara @ dev.xoops.org


xlanguage 2.01 bugfix for non existing language

xlangauge 2.0
An eXtensible Multi-language content and character encoding Management Module+Hack

Multilanguage management handles displaying contents of different languages, like English, French and Chinese

Character encoding management handles contents of different encoding sets for one language, like GB2312 (Chinese Simplified) and BIG5 (Chinese Traditional) for Chinese.


What xlanguage CAN do:
1 displaying content of specified language based on user's dynamic choice
2 converting content from one character encoding set to another


What xlanguage canNOT do:
1 xlanguage does NOT have the ability of translating content from one language to another one. You have to input contents of various languages by yourself
2 xlanguage does NOT work without adding one line to XOOPS/include/common.php (see guide below)
3 xlanguage does NOT have the ability of converting content from one character encoding to another if none of "iconv", "mb_string" or "xconv" is available.


Features:
1 auto-detection of visitor's language on his first visitor
2 memorizing users' langauge preferences
3 switching contents of different languges/encoding sets on-fly
4 supporting M-S-M mode for character encoding handler
5 multilanguage contents can be set anywhere on your site, through XOOPS modules, blocks or even themes


Note:
M-S-M: Multiple encoding input, Single encoding storage, Multiple encoding output.
M-S-M allows one site to fit various users with different language character encoding usages.
For example, a site having xlanguage implemented porperly allows users to input content either with GB2312, with BIG5 or UTF-8 encoding and to store the content into DB with specified encoding, for say GB2312, and to display the content either with GB2312, with BIG5 or with UTF-8 encoding.

User guide:
1 upload "xlanguage" folder to XOOPS/modules/

2 insert one line

include_once XOOPS_ROOT_PATH.'/modules/xlanguage/api.php';

into XOOPS/include/common.php
RIGHT BEFORE

// #################### Include site-wide lang file ##################
    
if ( file_exists(XOOPS_ROOT_PATH."/language/".$xoopsConfig['language']."/global.php") ) {
        include_once 
XOOPS_ROOT_PATH."/language/".$xoopsConfig['language']."/global.php";
    } else {
        include_once 
XOOPS_ROOT_PATH."/language/english/global.php";
    }


3 add basic langauges and extended languages from xlanguage's module preference page

4 make the block "langauge selection" visible through system=>block

5 if you use the encoding conversion management only, for instance, switching Schinese and Tchinese, congratulations, you have made it!

6 if you use multi-language contents management, add content with corresponding tags to your content management modules:
[languagecode]Content of the language[/languagecode]
languagecode should be the "language code" of each ___base___ language configured in module admin area, can be for one single language or multiple languages, example:

[en]Thank youXOOPS[/en][fr]MerciXOOPS[/fr][zh]谢谢你XOOPS[/zh]

OR:

[en|fr]Thank youMerci [/en|fr][zh]谢谢你[/zh]

You should not use the tag of "schinese" and "tchinese" together since the content will be converted from one to the other automatically using iconv, mbsting or xconv according to your system configure.

7 xconv module is suggested to Chinese users (module available at http://xoops.org.cn)


Credits:
1 Adi Chiributa - [email protected], language handler
2 wjue - http://www.wjue.org, ziling BIG5-GB2312 conversion
3 GIJOE - http://www.peak.ne.jp, easiest multilanguage hack



"language auto-detection" with xlanguage, adapted from phpmyadmin, allows your XOOPS select a language for a visitor according his browser preferences on his first visit to your site.
For example, the first language I set in my Firefox is S Chinese, then English, French. And you have xlanguage installed and set "french", "english" as basic languages. As a result of language auto-detection, the language to be used is "english" (since my first priority "Schinese" is not available on your site and your first set "french" is with a lower priority in my list).

However, some webmasters do not like the "autodetection" and wanna force $xoopsConfig["language"] as all users' first choice (mowaffa is among such webmasters :=)).
In this case, you need change
xlanguage/api.php
line 38 - 48

if (!empty($_GET[XLANGUAGE_LANG_TAG])) {
    
$cookie_path "/";
    
setcookie($cookie_var$_GET[XLANGUAGE_LANG_TAG], time()+3600*24*30$cookie_path''0);
    
$xlanguage["lang"] = $_GET[XLANGUAGE_LANG_TAG];
} elseif (isset(
$_COOKIE[$cookie_var])) {
    
$xlanguage["lang"] = $_COOKIE[$cookie_var];
//}elseif($lang = xlanguage_detectLang())    {
//    $xlanguage["lang"] = $lang;
}else{
    
$xlanguage["lang"] = $xoopsConfig['language'];
}
版本: 2.03
下载次数 2138
文件大小: 49.98 KB
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台:  | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

XPress (WordPress for XOOPS) 2.04 发布 查看全部详细资料
提交者: D.J.
提交日期:   Mon, 31-Jul-2006
 

适用范围:
XOOPS 2.0, 2.2, 2.3


使用指南:
1 查看 xoops-module-wordpress-203/readme.html 有较为详细的说明
2 确认使用的Frameworks是最新版: xoops-module-wordpress-203/art/version *.** 这个文件名标明了Frameworks版本号(适用于所有使用Frameworks/art/的模块)

引用:

This release contains several important security fixes, so it’s highly recommended for all users. We’ve also rolled in a number of bug fixes (over 50!), so it’s a pretty solid release across the board.
版本: 2.04
下载次数 1668
文件大小: 976.56 KB
网站: 未指明
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台: None | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

XPress (WordPress For Xoops) 2.03 发布 查看全部详细资料
提交者: D.J.
提交日期:   Sat, 10-Jun-2006
 

适用范围:
XOOPS 2.0, 2.2, 2.3


使用指南:
1 查看 xoops-module-wordpress-203/readme.html 有较为详细的说明
2 确认使用的Frameworks是最新版: xoops-module-wordpress-203/art/version *.** 这个文件名标明了Frameworks版本号(适用于所有使用Frameworks/art/的模块)
版本: 0
下载次数 8278
文件大小: 10.02 MB
网站: 未指明
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台: None | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

XPress (WordPress for XOOPS) 2.02 发布 查看全部详细资料
提交者: 游客
提交日期:   Wed, 29-Mar-2006
 

适用于XOOPS所有版本,包括 2.0, 2.2
更新纪录(根据WordPress开发团队的声明):
1 一些bug修正和安全修正
2 这其中的安全问题并非象某些安全邮件列表中所说的那么严重


压缩包文件结构
1. Frameworks
* art: 包含了必需的文件
* xoops22: 如果是XOOPS 2.2*用户,一定删除该目录
2. modules/wordpress: 模块目录

上传到服务器后的效果:
XOOPS_ROOT/Frameworks/art/
(XOOPS_ROOT/Frameworks/xoops22/, 如果是XOOPS 2.2*用户,一定删除该目录)
XOOPS_ROOT/modules/wordpress/
版本: 2.02
下载次数 2135
文件大小: N/A
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台: None | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

XPress (WordPress for XOOPS) 2.01 查看全部详细资料
提交者: D.J.
提交日期:   Mon, 20-Feb-2006
 

WordPress 2.01 For XOOPS

适用于XOOPS所有版本,包括 2.0, 2.2

压缩包文件结构
1. Frameworks
* art: 包含了必需的文件
* xoops22: 如果是XOOPS 2.2*用户,一定删除该目录
2. modules/wordpress: 模块目录

上传到服务器后的效果:
XOOPS_ROOT/Frameworks/art/
(XOOPS_ROOT/Frameworks/xoops22/, 如果是XOOPS 2.2*用户,一定删除该目录)
XOOPS_ROOT/modules/wordpress/
版本: 0
下载次数 1773
文件大小: N/A
网站: 未指明
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台: None | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

XPress (WordPress for Xoops) 1.52 Moon version 查看全部详细资料
提交者: D.J.
提交日期:   Thu, 08-Sep-2005
 

Full package:
http://xoopsforge.com/uploads/xoops/x ... d_wordpress_1_52_moon.zip

Upgrade from XPress 1.52:
http://xoopsforge.com/uploads/xoops/x ... dpress_1_52_moon_diff.zip

Discussion:
http://xoopsforge.com/modules/wordpress/index.php/27/


Thank Latitudes, Carnuke, Tiran_Kenja and other users for bug reports and suggestions.


Changelog:
XPress 1.5.2 (Moon)
Sep 05th, 2005

1 Removed unused template
2 Added module theme selection which allows WordPress has its own theme
3 Added user information with Xoops userinfo
4 Fixed bug in admin user data on installation
5 Added(Rollback) encoding conversion for pingback, trackback and comment
6 Added module header (RSS alert)
7 Fixed language problems in case WP blocks are used outside of WordPress module (reported by Latitudes, http://geekgrl.net/)
8 Added hierarchical structure and post count to categories in sidebar

Note:
Before Xoops 2.23 RC1, WordPress for Xoops can only be installed after the system installation is completely finished.
Since Xoops 2.23 final, it is possible to install WP during system installation as other modules, like pm, profile
版本: 
下载次数 1310
文件大小: N/A
网站: 未指明
镜像网站: 未指明

评分:    (0 个投票)

点评:   (0)
 
价格: 免费 | 支持平台:  | 许可: GNU General Public License (GPL) (v. 2.0) | 限制: 未指明

页:

(1) 2 3 4 ... 11 »