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

XOOPS 2.0.14 released [技术论坛 - XOOPS整合与Hack]

XOOPS China 讨论区 > XOOPS Core (核心) > XOOPS整合与Hack > XOOPS 2.0.14 released

正在浏览:   1 名游客



 到底部   前一个主题   下一个主题  [无发表权] 请登录或者注册

(1) 2 »


XOOPS 2.0.14 released
网站管理员
注册日期:
2004/6/25 19:16
所属群组:
网站管理员
注册会员
Dev+Hack
帖子: 5947 | 精华: 10
等级: 54; EXP: 76
HP: 537 / 1344
MP: 1982 / 29904
离线
哪位有时间把这个说明翻译一下

http://devteam.xoops.org/releases/xoops-2.0.14.html

引用:

The XOOPS development team is pleased to announce the release of XOOPS 2.0.14.

This is mainly a maintenance release containing a lot of bugfixes, but it also provides many enhancements implemented to lessen the gap between the 2.0, 2.2 and 2.3 branches.


What's new

* Many bug fixes and PHP4.4+ / MySQL 4.1+ compatibility enhancements.
* Many XHTML compliance fixes.
* A new authentication layer suppporting authentication against LDAP and Ms-Active Directory (tm) servers.
* The highly requested possibility to show center blocks below content.
* A redesigned theming engine that gives modules writers full control over the output page meta-information.
* Enhancements to the templates system that give themes designers total over the output (templates, files and stylesheets can be customized).

Read the full changelog for details.
System requirements

PHP
Any PHP version >= 4.3+ (PHP 4.2.x may work but is not officially supported)
MySQL
MySQL server 3.23+
Web server
Any server supporting the required PHP version (Apache highly recommended)

Downloading XOOPS

Your can get this release package from the sourceforge.net file repository.
Both .zip and .tgz archives are provided.
Installing XOOPS

1. Copy the content of the htdocs/ folder where it can be accessed by your server
2. Ensure mainfile.php, cache, templates_c and uploads are writable by the webserver
3. Access the folder where you installed the htdocs/ files using your web browser to launch the installation wizard

Upgrading from a previous version

Due to a switch to the Subversion version control system since the release of XOOPS 2.0.13.2, there will be no 2.0.14 incremental upgrade packages released, to ensure both fresh installs and upgraded systems contain the exact same set of file. We apologize for this inconvenience. You may want to use the newly provided checksum verification script to ensure there was no problem during the files upload (see instructions below).
Upgrading from any XOOPS version between 2.0.10 and 2.0.13.2

1. Copy the content of the htdocs/ folder except mainfile.php over your existing installation.
2. Delete the following folders and files:
* class/smarty/core
* class/smarty/plugins/resource.db.php
3. Empty the templates_c folder (except index.html)
4. Upload the upgrade folder to your site
5. Ensure the server can write to mainfile.php
6. Login using an administrator account
7. Access <your.site.url>/upgrade/ using your browser, and follow the instructions
8. Write-protect mainfile.php again
9. Remove the upgrade folder after use

Upgrading from 2.0.14-RC1

If you had previously upgraded from a previous version to 2.0.14-RC1 without applying the 2006/05/23 security patch or were unable to access the authentication preferences panel, follow the above upgrade instructions to ensure the patch gets applied and the authentication related values are inserted into the database.

If you upgrade from a 2.0.14-RC1 installation with the patch installed, you just need to copy the content of the htdocs/ folder except mainfile.php over your existing installation.
Known issues / Things you should be aware of
Files integrity check

XOOPS is now released with an experimental script able to check if all the system files were correctly uploaded to the server. To use it, follow these instructions:

1. Upload the xoops_md5.php and xoops.md5 files located in the XOOPS package root to your XOOPS server folder (putting them next to mainfile.php).
2. Execute xoops_md5.php with your browser
3. If necessary, re-upload the missing or corrupted system files
4. Remove xoops_md5.php and xoops.md5 from your server

Modules

The packages do not contain any module apart from the system one. You are invited to browse the XOOPS modules repository to get some.
Some of the best modules can be found in the following locations:

* Herve Thouzard's site (News, mydownload, shortcuts...)
* Panther Software Publishing (xProject, xAsset)
* Smart Factory (SmartSection and many others)
* XForge site (CBB forum, Wordpress, MediaWiki...)

We also highly recomment the installation of the Protector module which will bring additional protection and logging capabilities to your site.
New blocks positions

Support for the new blocks positions must be added to themes: if you place blocks in the bottom and do not see them, this may be because your theme is too old. Most of the times, such support can be added easily by copying the theme.html portion that inserts the center top blocks just after the <{$xoops_contents}> division, and changing the variables so the duplicated code inserts the bottom blocks (see the default theme for an example).
Templates overriding

Designers can add custom templates to their themes, and those will be used instead of the default ones. To exploit this feature, templates have to be created in subfolders of the themes duplicating the default folders structure and removing the "templates" part:

* To overload system_userinfo.html template located in modules/system/templates/system_userinfo.html you have to create your custom version in <yourthemefolder>/modules/system/system_userinfo.html
* To overload system_block_login.html template located in modules/system/templates/blocks/system_block_login.html you have to create your custom version in <yourthemefolder>/modules/system/blocks/system_block_login.html

Output resources overriding for developers

To allow theme designers to customize images or stylesheets, you have to use the new theme class and xoImgUrl templates plug-in.

* Scripts and stylesheets can be declared to XOOPS using the theme class addScript and addStylesheet methods. The theme instance is available after the inclusion of header.php by using the $xoTheme global variable, and in a template variable of the same name:
<{$xoTheme->addStylesheet('modules/newbb/style.css')}>
* Images and medias URLs have to be generated by using the xoImgUrl plug-in in your templates:
<img src="<{xoImgUrl modules/newbb/images/reply.png}>" alt="reply" />

Output resources overriding for designers

Designers can also provide custom versions of most output-related resources using a mechanism similar to the one available to templates, for modules that support this.

* To create a custom stylesheet that will replace modules/newbb/style.css, create your customized file in <yourthemefolder>/modules/newbb/style.css
* To create a custom image that will replace modules/newbb/images/reply.png, create your customized file in <yourthemefolder>/modules/newbb/images/reply.png

2006/6/27 8:19
_________________
XOOPS Project -- |自由|开源|共享|
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2005/10/29 13:32
来自 北京
所属群组:
网站管理员
注册会员
ComSupp
推广组
帖子: 2214 | 精华: 25
等级: 38; EXP: 43
HP: 187 / 935
MP: 738 / 17144
离线
我来吧!先占个位。

===================================
===== Update 1 ======================
翻译完成,现提供PDF和word两种格式下载

===== Update 2 ======================
翻译修正版推出,下载请看6楼

附件:


zip XOOPS.2.0.14.release.notes.zip 大小: 120.32 KB; 下载次数: 548

2006/6/27 9:20
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
项目管理员
注册日期:
2004/12/29 4:41
所属群组:
注册会员
ComSupp
帖子: 373 | 精华: 5
等级: 18; EXP: 0
HP: 0 / 425
MP: 124 / 8827
离线
辛苦domecc了,我就不做了,正在加紧测试中文安装版,并查找区块标题乱码的原因。

domecc翻译完上传或发布,我可将其打包进2.014中文正式版中。

2006/6/27 12:50
_________________
视频、音频、流媒体
----------------
TV-iO, CCTV3G
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2005/10/29 13:32
来自 北京
所属群组:
网站管理员
注册会员
ComSupp
推广组
帖子: 2214 | 精华: 25
等级: 38; EXP: 43
HP: 187 / 935
MP: 738 / 17144
离线
翻译已完成,下载请看二楼。

2006/6/27 15:30
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2004/6/25 19:16
所属群组:
网站管理员
注册会员
Dev+Hack
帖子: 5947 | 精华: 10
等级: 54; EXP: 76
HP: 537 / 1344
MP: 1982 / 29904
离线
修正版

A.D.Horse可先打包作为中文测试版发布,重点检测有没有编码问题

附件:


doc XOOPS.2.0.14.release.notes.doc 大小: 64.50 KB; 下载次数: 547
txt XOOPS.2.0.14.release.notes.txt 大小: 5.93 KB; 下载次数: 526

2006/6/27 16:42
_________________
XOOPS Project -- |自由|开源|共享|
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2005/10/29 13:32
来自 北京
所属群组:
网站管理员
注册会员
ComSupp
推广组
帖子: 2214 | 精华: 25
等级: 38; EXP: 43
HP: 187 / 935
MP: 738 / 17144
离线
在修正版基础上美化一下排版格式,提供txt、doc和pdf三种格式下载

附件:


zip XOOPS.2.0.14.release.notes.zip 大小: 122.55 KB; 下载次数: 510

2006/6/27 17:13
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2004/6/25 19:16
所属群组:
网站管理员
注册会员
Dev+Hack
帖子: 5947 | 精华: 10
等级: 54; EXP: 76
HP: 537 / 1344
MP: 1982 / 29904
离线

2006/6/28 9:34
_________________
XOOPS Project -- |自由|开源|共享|
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
项目管理员
注册日期:
2004/12/29 4:41
所属群组:
注册会员
ComSupp
帖子: 373 | 精华: 5
等级: 18; EXP: 0
HP: 0 / 425
MP: 124 / 8827
离线
新增加了一个很漂亮的模板风格:zetareticuli ,类似文明猪的2.24 hack方式,可以自由更改系统模板。这是 xoops 2.0.14 的一大进步。

目前发现的问题(在苹果系统的浏览器测试结果):
1、ie 5.2 for mac 区块偏移;
2、safari 2.03 区块不能使用(链接文字无效);
3、firefox 1.5 正常;
4、opera 9.0 正常;
5、速度有些慢。。。

演示站:
http://www.cctv3g.com/

大家测试后的请提出修改意见。

现在我们可以参照 zetareticuli 模板方式,使用 xoops 2.0.14 自由架构任意风格的网站了。。。

2006/6/28 12:30
_________________
视频、音频、流媒体
----------------
TV-iO, CCTV3G
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
网站管理员
注册日期:
2005/10/29 13:32
来自 北京
所属群组:
网站管理员
注册会员
ComSupp
推广组
帖子: 2214 | 精华: 25
等级: 38; EXP: 43
HP: 187 / 935
MP: 738 / 17144
离线
zetareticuli不错。
不过,我用IE 6(win)打开,区块也跑位。

2006/6/28 13:12
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


回复: XOOPS 2.0.14 released
项目管理员
注册日期:
2004/12/29 4:41
所属群组:
注册会员
ComSupp
帖子: 373 | 精华: 5
等级: 18; EXP: 0
HP: 0 / 425
MP: 124 / 8827
离线
在苹果浏览器中,广告条是右对齐,在ie 6 win中是否居中了?ie 7 可能会好点?

zetareticuli 的使用与修改请参照 xoops-2.0.14-schinese 中的 release_notes_schinese.txt 相关说明。

搞懂了它,就可以利用 2.0.14 提供的新功能创建自由风格网站。

2006/6/28 13:19
_________________
视频、音频、流媒体
----------------
TV-iO, CCTV3G
工具箱 短消息 Email PDF 书签 打印 举报 回顶部


(1) 2 »

  [无发表权] 请登录或者注册


可以查看帖子。
不可发帖。
不可回复。
不可编辑自己的帖子。
不可删除自己的帖子。
不可发起投票调查。
不可在投票调查中投票。
不可上传附件。
不可不经审核直接发帖。
不可使用主题类别。
不可使用HTML语法。
不可使用签名档。

[高级搜索]