ebooksgratis.com

See also ebooksgratis.com: no banners, no cookies, totally FREE.

CLASSICISTRANIERI HOME PAGE - YOUTUBE CHANNEL
Privacy Policy Cookie Policy Terms and Conditions
Drupal - Wikipedia, the free encyclopedia

Drupal

From Wikipedia, the free encyclopedia

Drupal

Home page of a default Drupal installation (with a Lorem Ipsum article).
Latest release 6.2 / April 9th, 2008 changelog
Written in PHP
OS Cross-platform
Genre Content management framework, Content management system, Community and Blog software
License GPL
Website http://drupal.org

Drupal (pronounced /ˈdɹuːpʰəl/) is a free and open source modular framework and content management system (CMS) written in the programming language PHP. Like many modern CMSs, Drupal allows the system administrator to create and organize content, customize the presentation, automate administrative tasks, and manage site visitors and contributors.

Drupal is sometimes described as a "web application framework" as its capabilities extend from content management to enabling a wide range of services and transactions. Although Drupal does offer a sophisticated programming interface, basic web site installation and administration can be accomplished with no programming.

Drupal runs in many environments, including Windows, Mac OS X, Linux, FreeBSD, OpenBSD, Solaris 10, OpenSolaris and any platform that supports either the Apache (version 1.3+), or IIS (version IIS5+) Web server and the PHP language (version 4.3.3+). Drupal requires a database such as MySQL or PostgreSQL to store content and settings.

Contents

History

Originally written by Dries Buytaert as a bulletin board system, Drupal became an open source project in 2001. Drupal is an English transliteration of the Dutch word “druppel,” which means “drop” (as in “a water droplet”). The name was taken from the now-defunct Drop.org website, whose code slowly evolved into Drupal. Buytaert wanted to call the site “dorp” (Dutch for “village,” referring to its community aspects), but made a typo when checking the domain name and thought it sounded better.[1]

From May 2006 to April 2007, Drupal was downloaded from the Drupal.org website more than 600,000 times.[2] A large community now helps develop Drupal.[3]

As of June 2008, Drupal 6.2 is the latest release.[4]

Drupal core

The official release of Drupal, known as "Drupal core", contains basic features common to most CMSs. These include the ability to register and maintain individual user accounts, administration menus, RSS-feeds, customizable layout, flexible account privileges, logging, a blogging system, an Internet forum, and options to create a classic "brochureware" Web site or an interactive community Web site.

Web site content can be contributed by registered or anonymous users (at the discretion of the administrator), and made accessible to Web visitors by a variety of criteria including by date, category, searches, etc. Drupal core also includes a hierarchical taxonomy system which allows content to be categorized or "tagged" with keywords for easier access.

Drupal maintains a detailed changelog of core feature updates by version.[5]

Core modules

Drupal core also includes "core modules" which can be enabled by the administrator to extend the stock functionality of the core Web site.

The core Drupal distribution provides a number of features, including:

  • Multi-user content creation and editing
  • Advanced search functions
  • Comments, forums, and polls
  • User profiles
  • Multi-level menu system
  • RSS Feed and Feed Aggregator
  • Various access control restrictions (user roles, IP addresses, email)
  • Access statistics and logging
  • Caching and feature throttling for improved performance under load
  • Descriptive URLs (for example, "www.example.com/products" rather than "www.example.com/?q=node/432).
  • Workflow tools (Triggers and Actions)
  • Security/new release update notification
  • OpenID support

Core themes

The color editor being used to adjust the "Garland" core theme
The color editor being used to adjust the "Garland" core theme

Drupal core includes several "core themes", which customize the aesthetic look-and-feel of the site. These themes can be chosen by the administrator via a special menu.

The Color Module, introduced in Drupal core 5.0, allows administrators to change the color scheme of certain themes via a Web-browser interface. This feature was added to allow a higher level of customization for the average non-coder.

Translations

As of February 2008, translations for Drupal's interface were available in 44 languages plus English (the default).[6] Some read right to left, such as Arabic and Hebrew. Drupal 6 provides improved support for content and content administration in multiple languages.

Auto-update notification

Beginning in version 6.0, Drupal can automatically notify the administrator when a new version of a contributed module, theme, or the Drupal core itself, becomes available. This is a feature which may help to keep a Drupal installation up-to-date with the latest features and security fixes.

A module for version 5.x provides identical functionality, but it is not included in the core release.

Extending Drupal core

Drupal core is designed to be modular with a system of "hooks" and "callbacks", which are accessed internally via an API[7]. This design allows third-party "contributed" (often abbreviated to "contrib") modules and themes to extend or override Drupal's default behaviors without changing Drupal core's code.

Drupal's modular design, which isolates Drupal core's files from contributed module and themes, increases flexibility and security and allows Drupal administrators to cleanly upgrade to new releases of Drupal core without potentially overwriting their site's customizations.[8] To maintain this separation, Drupal administrators are instructed to avoid altering Drupal core's software.

Contributed modules

Contributed Drupal modules offer a variety of features including image galleries, custom content types and content listings, WYSIWYG editors, private messaging, 3rd-party integration tools, and more. The Drupal Web site lists 2147 [9] free modules (as of June 1st, 2008), written and contributed by the Drupal community.

Two modules are particularly important to typical Drupal installations[10]:

  • Content Construction Kit (CCK)[11], allows site administrators to dynamically create content types. A content type describes any kind of information to be stored in the Web site's database. These may include, but are not limited to, events, invitations, reviews, articles, or products.
  • Views,[12] facilitates the retrieval and presentation of content to site visitors.

The CCK API is scheduled to be integrated into Drupal as a core module starting with Drupal 7, and Views will follow at some point thereafter.[13]

Contributed themes

Contributed themes adapt or replace a Drupal site's default look and feel.

Drupal themes use standardized formats that may be generated by common third-party theme design engines. Many themes for Drupal are written in the PHPTemplate engine[14] or, to a lesser extent, the XTemplate engine[15]. Some templates use hard-coded PHP.

Although early versions of Drupal's theming system were criticized [16] as being less design-oriented and more complicated than those for Mambo, Joomla! and Plone, the inclusion of the PHPTemplate and XTemplate engines in Drupal has addressed some of these concerns. The new Drupal 6 theming system utilizes a template processor in an attempt to further separate HTML/CSS from PHP. A new Drupal development module (Devel) provides assistance to Drupal themers who use Drupal 6.

Criticism

Lack of object orientation

Drupal exclusively uses procedural programming, not object-oriented programming (OOP). While Drupal approximates some of OOP's features[17], its lack of OOP results in the following:

  • No encapsulation enforced by the underlying programming language system. This precludes the use of private data and causes nonexistent enforcement of namespace separation. Because there is no namespace separation, any function or variable in an installed module or theme can cause a serious error, including a white screen of death, if its name is the same as that of any other function or variable in any other installed module, installed theme, or the Drupal core.[18]
  • Less efficient code reuse since object inheritance is "weak" and polymorphism is only approximated in the rendering layer.[19]

Drupal's defendants counter that even though PHP's OOP language features are not directly implemented (to ensure compatibility with older 4.x versions of PHP), OOP and aspect-oriented programming (AOP) principles are present in Drupal's design.[20] This will help ease the transition to future versions of Drupal core, which, starting with version 7, will begin to take advantage of "real opportunities" of OOP provided by PHP 5. Drupal 7 will not be backwards compatible with prior PHP releases.[21]

Lack of adherence to best security practices

Like most open-source projects, design and coding decisions of Drupal core and its third-party modules and themes are made by a group of core developers who at their own discretion choose whether or not to address suggestions or security concerns for official releases. Some Drupal users have expressed concern that these key developers may not be adhering to established security practices.{{{author}}}, {{{title}}}, [[{{{publisher}}}]], [[{{{date}}}]].

The contributed Views module, for example, may violate the "key 3" information security principle of confidentiality and the concept of security by design by exposing unpublished information by default.[22] Although this issue has been brought to the attention of the Views module maintainer, the developer and other high level Drupal contributors do not perceive it as a bug, and no further action was taken.[23][24].

Security holes

From January through May 2008, 5 security vulnerabilities have been reported in Drupal core[25]. 25 of the 2147 user contributed modules were also found to have security holes.[26].

As security holes are discovered, Drupal core is regularly updated to new versions. The administrator is notified automatically of these new releases via the Update Status module.[27] Additionally, Drupal.org maintains a security announcement mailing list, a history of all security advisories[28], a security manual[29], and an RSS feed with the most recent security advisories.[30]

Distributions

Customized Drupal distributions include some repackaged third-party modules, some with modifications to the core, including vbDrupal, which is Drupal integrated with vBulletin.

Drupal 4.2 [31] was used for DeanSpace, which hosted many independent Web sites supporting the 2004 presidential campaign of Howard Dean. After the Dean campaign ended, the DeanSpace project grew into CivicSpace, a Drupal-based "grassroots organizing platform that empowers collective action inside communities and cohesively connects remote groups of supporters." Thus CivicSpace is a spinoff distribution originally based on Drupal 4.2.

Many innovations in CivicSpace have been incorporated back into the Drupal project itself[32]. Features particularly useful for nonprofit organizations and political campaigns are provided in the CiviCRM module for Drupal 5.0 and higher.

It has been suggested to distribute "pre-made" Drupal installations that are pre-customized with third party modules and configured towards a particular type of Web site: an online store, a music review site, a blogging site, etc. Drupal 5.x goes in this direction, providing a set of "installation profiles" tailored to specifics goals[33].

Community

Drupal has a large community of users and developers. More than 300,000 user accounts have been created on Drupal.org, and over 2000 people have signed up for developer accounts[34]. The last major conference, Drupalcon Boston 2008, attracted over 800 people[35].

There are a number of active Drupal forums[36], mailing lists[37], and discussion groups[38]. Drupal also maintains several IRC channels on the Freenode network[39].

Acquia

In 2007, a Drupal-focused company, Acquia, was created by Drupal project lead Dries Buytaert and others. Acquia announced at Drupalcon Boston 2008 that it will offer a subscription-based service for Drupal in the 2nd half of 2008. Subscriptions will include one or more Drupal distributions[40], a set of companion network-supplied value-add services, and access to a Technical Assistance Center.

See also

Notes

  1. ^ History http://drupal.org/node/769
  2. ^ "Drupal Download Statistics," http://buytaert.net/tag/statistics
  3. ^ "Growth Graphs," http://groups.drupal.org/node/1980
  4. ^ History http://drupal.org/drupal-6.0
  5. ^ Changelog http://cvs.drupal.org/viewvc.py/drupal/drupal/CHANGELOG.txt?view=markup
  6. ^ "Translations," Drupal (retrieved 18 February 2008)
  7. ^ API page
  8. ^ [1]
  9. ^ Modules | drupal.org
  10. ^ [2]
  11. ^ Content Construction Kit
  12. ^ Views
  13. ^ My Drupal predictions for 2008 | Dries Buytaert
  14. ^ "PHPTemplate theme engine", Drupal.org.
  15. ^ "XTemplate theme engine", Drupal.org.
  16. ^ "How does Drupal compare to Mambo?" discussion thread, Drupal.org. - Old, but still interesting
  17. ^ Drupal Programming from an Object-Oriented Perspective. drupal.org (2008-02-13). Retrieved on 2008-06-07.
  18. ^ http://drupal.org/node/158043
  19. ^ Drupal Programming from an Object-Oriented Perspective. drupal.org (2008-02-13). Retrieved on 2008-06-07.
  20. ^ Chaffer, Jonathan (2005-03-29). Drupal programming from an object-oriented perspective. drupal.org. Retrieved on 2008-03-28.
  21. ^ Drupal 7 and PHP 5.2
  22. ^ Drupal Views Module Caveat | Digett
  23. ^ by default views should not show 'not published' nodes | drupal.org
  24. ^ What's more important: security and usability or developer's personal whim? | drupal.org
  25. ^ Security announcements | drupal.org
  26. ^ Security announcements | drupal.org
  27. ^ Update Status module
  28. ^ Security advisories
  29. ^ Drupal security manual
  30. ^ Security RSS feed
  31. ^ Predictions for 2004 | drupal.org
  32. ^ CivicSpace
  33. ^ See http://drupal.org/project/Installation+profiles
  34. ^ Drupal.org stats
  35. ^ Drupalcon Boston 2008
  36. ^ Drupal forums
  37. ^ Drupal mailing lists
  38. ^ Drupal groups
  39. ^ Drupal IRC channels
  40. ^ Projects | Acquia - Commercially Supported Drupal

Further reading

External links


aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu -