欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Joomla
第78行: | 第78行: | ||
==Developer== | ==Developer== | ||
− | [[Image: | + | [[Image:joomla_application.png|thumb|left|Application Package]] |
2006年9月25日 (一) 20:49的版本
Joomla! is one of the most powerful Open Source Content Management Systems on the planet.
从 Mambo 衍生构建, 目前正在开发的版本是 1.5
Mambo是世界上最热门的内容管理系统,因为开发这个系统而多次获奖的核心团队将它的名称改为 Joomla!(原因请参考新闻: http://twpug.net/modules/news/article.php?storyid=93 )
目前是由 ・http://www.opensourcematters.org/ Open Source Matters]这个开放源码组织进行开发与支持,这个组织的成员来自全世界各地,小组成员约有150人,包含了开发者、设计者、系统管理者、文件撰写者,以及超过2万名的参与会员.
目录 |
在线演示
英文版:http://demo.huihoo.com/joomla/ admin/admin
在线讨论
Huihoo Joomla 讨论区: http://forum.huihoo.com/forumdisplay.php?fid=190
安装指南
获得 Joomla 1.0.11 http://forge.joomla.org/sf/frs/do/viewRelease/projects.joomla/frs.joomla_1_0.1_0_11
创建数据库
mysqladmin -u root -p create joomla 或 mysql>create database joomla; mysql>GRANT ALL PRIVILEGES ON joomla.* TO joomla@localhost IDENTIFIED BY 'joomla'; mysql>flush privileges;
导入数据, cd joomla/installation/sql 或 通过安装程序导入数据
mysql joomla < joomla.sql -u joomla -p
Joomla 提供了方便的安装向导.
http://localhost/joomla/installation/index.php touch configuration.php 或 cp configuration.php-dist to configuration.php chmod a+w configuration.php
修改 configuration.php
$mosConfig_absolute_path = '/var/www/joomla'; // No trailing slash $mosConfig_live_site = 'http://localhost/joomla';
Joomla! 1.5 is a three tiered system. The bottom tier is the framework level and consists of the libraries and plugins (formerly known as mambots). The second tier is the application level and consists of the JApplication class. Currently there are three applications that ship with Joomla: JInstallation, JAdministrator and JSite. The application acts as the main controller for the page. The third tier is the extension level. This level is where all component, module, and template logic is executed and rendered.
Joomla Packages
- Application Package: JApplication and related libraries
- Cache Package: Cache libraries
- Common Package: The common package houses the base classes as well as compatability and legacy libraries
- Connector Package: Connector libraries such as FTP and LDAP clients
- Database Package: JDatabase and related libraries
- Document Package: Libraries for building and rendering pages
- Filesystem Package: Libraries for interacting with the filesystem
- i18n Package: Internationalization libraries
- Installer Package: Libraries for installing extensions
- Mail Package: E-Mail related libraries
- Model Package: Data Access Object libraries
- Parameter Package: Parameter manipulation and rendering libraries
- Registry Package: Configuration store libraries
- Template Package: Templating libraries
- Utilities Package: Miscellaneous libraries
1.5 Roadmap
- Internationalization
- User Plugins
- Foundational work towards cross database support
- FTP Filesystem Layer
- Overhaul of Joomla! framework // 很关键
- Preparation for usability and accessibility extensions
- Improved caching
- Separation of logic and presentation layer // 很关键