Zope: Content Management Framework

Total Page:16

File Type:pdf, Size:1020Kb

Zope: Content Management Framework Zope: Content Management Framework An internship report submitted in partial satisfaction of the requirements for the degree of MASTER OF SCIENCE in APPLIED COMPUTER SCIENCE By Ramakrishna Reddy Enugala Matriculation # 1338250 MS in Applied Computer Science [email protected] Internship done at Chair of Computer Architecture Institute of Computer Science, Albert Ludwigs University, Georges Köhler Allee, Gebäude 51 D-79110 Freiburg im Breisgau Germany Introduction I have done my internship in The Chair of Computer Architecture. The Duration of my internship was 10 weeks, beginning on 5th of August and lasted up to 12th October, 2002. During this period I was working under the guidance of Prof. Dr. Bernd Becker and Dipl.-Inf. Marc Herbstritt. My task during this period was to get familiar with ZOPE and to verify whether or not the features provided by ZOPE satisfy the needs of the Chair of Computer Architecture to setup a Content management System (CMS). In order to accomplish this task I developed a beta site( on the local server) using ZOPE to test whether or not it meets our requirements. Desirable changes in CMS(Implementing the dynamic menu structure, etc.) were done using PYTHON programming language. Enterprises today have lot of content to deal with. This includes information generated by different departments, divisions and research facilities, corporate policies and procedures, product overviews and presentations, press releases, etc. A good Content Management System must make it possible for teams or individuals in varied roles to collaboratively add, edit and delete content. Some of the basic functionalities that cover this are - role based security schemes, content syndication, catalogs, indexing, searching, and workflow. Content Management System Content Management System is to manage the content of the website, either in the form of text, image, animation, file etc. What it means by managing is that it enables the non-technical people to manage the content of the website and they should not have to know anything beyond viewing, typing and clicking. It offers more than just a tool to manage content. It delivers a comprehensive set of solution that will enable the non-technical person to control website easily and efficiently. Zope Zope is a open source web application server, written in Python. It is a scalable, stable, powerful system that includes an object database, a web server and several templating languages. Zope is developed and supported primarily by Zope Corporation, but also by many developers worldwide Python Python is a powerful, interpreted, interactive, object-oriented programming language. Python is open source and can run on almost any platform or system. Zope is written primarily in Python, with some optimisations in C. Content Management Framework (CMF) The Content Management Framework (CMF) is an application that contains a series of tools for Zope. These tools form a framework that provide many of the key services a Content Management System would need. The CMF can be used as a standalone product, or in Plone's case, built on top of. The CMF provides core tools like Workflow, Personalisation and Cataloguing. The CMF development is lead by Zope Corporation and is an open source product that benefits from the input and hard work of many developers around the world. Plone Plone is a free, open source Content Management System. The focus of Plone is to provide value at every level of an organization. It comes with a workflow engine, pre-configured security and roles, a set of content types and multi-lingual support. There are many developers, writers and testers from all over the world, contributing to Plone everyday. Plone is based on the Content Management Framework. Following in this document are the detailed features present in ZOPE which I have gone through during the internship period. Zope: Content Management Framework Zope is often labelled a web application server, but its main strength and organizing principle stems directly from its name - Z Object Publishing Environment. Centred around the Python scripting language, Zope’s main reason for existence is to publish "objects" - which can be plain pages, structured content or whatever else we can put on the Web. Zope didn't seem robust enough to compete with Java or Vignette for enterprise applications, and wasn't simple enough to take the place of PHP for throw-away mini-applications. The core product, was built by talented programmers working with consistent web design philosophies, including: • everything should be an object • objects should be manageable through the web • objects should be able to easily inherit properties and methods from each other A large and dedicated user community has sprung up around Zope, providing support, guidance, and extensions in the form of "products" (essentially a collection of Zope classes that work together). This is generally a benefit, but it can be difficult to penetrate the morass as a beginner. As we might expect, there is variation in the extent to which the original design principles are understood and upheld, both in documentation and development. There’s good stuff in there, but it takes digging and community support to find. Zope is neither strictly commercial nor open source; the broader Zope code base exists in several states at once: • An open source code release that is a publicly available server we can download from www.zope.org and install freely on our own machine. • Open source extensions ("products") contributed by developers, both employees of the Zope Corporation and third parties. • Commercial extensions (both "products" and other plugins) developed by the Zope Corporation, such as the ZEO clustering plug in, which enables several distributed ZServers to act as one. Zope the Product has been released into open source by Zope the Corporation (a US-based consulting firm formerly known as Digital Creations). the core product is free, Zope Corp. services are commercial, and there are a large number of privately developed object classes that can come with a commercial consulting contract. On the one hand, since Zope is open source, we can address problems ourselves. On the other hand, Python developers are still scarce in the marketplace, so we may have to rely on public Product releases (which generally seem to be well supported by their authors). The Python development experience has its own ups and downs. Python is not a hard language to pick up - it’s elegant, not particularly hung up on syntax, and decent documentation abounds. However, hardcore Python programmers tend to be among the most zealous -- topping even Perl gurus for platform dedication. Therefore, Python tends to be a very self-contained universe. The lack of good Zope documentation is a problem. In the online docs, and even in the ZWACK (Zope Web Application Construction Kit) book, the people explaining Zope can't seem to decide if it's about hardcore development or rapid prototyping without programming. This indecision makes the documentation situation troublesome, since there is no concise, centralized explanation of many of the features. Most of the documentation that's missing is that critical next level where we understand the basics, but aren't sure where to go next, because most of what exists is of one of two flavours: 1) "I’m new to Zope but here’s what I love about it" and 2) "I’m a Zope expert; here’s a highly detailed analysis of one complicated part that we won’t understand unless we’re also an expert." the problem is that there are very straightforward questions, the answers should be easy to find (particularly in the FAQs, which are woefully inadequate), and they often weren't. Installation and Configuration Installing the server can be trivial or complicated, depending on what configuration we want and what else we need to integrate with it. If we only want to use the ZServer (a python-based free webserver bundled with Zope), installation is as simple as unpacking the distribution, running the install script or Windows Installer, and starting the server. Installing Zope with an existing webserver is trickier, and requires some wrangling to get everything working. It also requires some up-front planning about where we want to do authentication - in the webserver or in Zope. there is no common authentication/authorization mechanism for the webserver authentication configuration. That is, if we want to have users that have permissions in Zope, and we also want to have the webserver authenticate them, we need to maintain two separate lists. With that exception, once we get everything hooked up, it seems to work fine, with the caveat that we don’t get Zserver’s additional FTP and WebDAV functionality if we are fronting our system with another webserver. In practice, we'll never use a Zope installation out of the box. There are several products which we'll want to install immediately, since they provide functionality that will probably eventually end up in the core product in future versions. Zope is a product continually under development by a dedicated and vocal community, so expect this to always be the case. Zope is a mostly self-contained web publishing environment in which every item - document, image, binary file, folder, whatever - is a first-class object derived from a base object class. Instead of storing its basic documents in the file system or relational database (although developers can access both of these with freely available objects), Zope puts everything in its Zope Object Database (ZODB). This way, every entity in the system can have properties and methods, security settings, and managed transaction support (including rollback). Objects and Zope Many of the built-in objects are simple - they represent files or documents. The basic "page" object type is currently a "DTML" document.
Recommended publications
  • Zope Documentation Release 5.3
    Zope Documentation Release 5.3 The Zope developer community Jul 31, 2021 Contents 1 What’s new in Zope 3 1.1 What’s new in Zope 5..........................................4 1.2 What’s new in Zope 4..........................................4 2 Installing Zope 11 2.1 Prerequisites............................................... 11 2.2 Installing Zope with zc.buildout .................................. 12 2.3 Installing Zope with pip ........................................ 13 2.4 Building the documentation with Sphinx ............................... 14 3 Configuring and Running Zope 15 3.1 Creating a Zope instance......................................... 16 3.2 Filesystem Permissions......................................... 17 3.3 Configuring Zope............................................. 17 3.4 Running Zope.............................................. 18 3.5 Running Zope (plone.recipe.zope2instance install)........................... 20 3.6 Logging In To Zope........................................... 21 3.7 Special access user accounts....................................... 22 3.8 Troubleshooting............................................. 22 3.9 Using alternative WSGI server software................................. 22 3.10 Debugging Zope applications under WSGI............................... 26 3.11 Zope configuration reference....................................... 27 4 Migrating between Zope versions 37 4.1 From Zope 2 to Zope 4 or 5....................................... 37 4.2 Migration from Zope 4 to Zope 5.0..................................
    [Show full text]
  • Table of Content Plone Installation
    Table of content 1. Plone Installation • Plone dependencies • Download Plone 4.3 Unified Installer • Install Plone 2. Install Baobab LIMS 3. Test your installation Plone Installation Here we describe how to install Plone onto the Ubuntu Linux system. For an installation in a different operating system check the Plone online documentation, here. The installation process requires users to have root privileges and a basic knowledge of Linux command lines using the Terminal. If you are not familiar with a UNIX operating system, read this tutorial Linux shell tutorial. Please note that a single line must be complete at a time. Plone dependencies Plone framework requires the installation of additional system packages. Without these packages available in your system, Plone will not compile. sudo apt-get install build-essential gcc python-dev git-core libffi-dev sudo apt-get install libpcre3 libpcre3-dev autoconf libtool pkg-config sudo apt-get install zlib1g-dev libssl-dev libexpat1-dev libxslt1.1 sudo apt-get install gnuplot libcairo2 libpango1.0-0 libgdk-pixbuf2.0-0 Download Plone 4.3 Unified Installer The Baobab LIMS is implemented and tested with Plone 4.3.11, a version released in 2016-09-12. You can download Plone 4.3.x by visiting the Plone site. Select and click on the Unified installer of your choice or use wget command line in your terminal with the path to the Plone version to install. Only Plone 4.3.11 can be used. wget --no-check-certificate https://launchpad.net/plone/4.3/4.3.11/+download/Plone- 4.3.11-r1-UnifiedInstaller.tgz Version 1.1 Installation If the download has been done from the Plone site, the installer would be located in the ~/Downloads directory.
    [Show full text]
  • The Application of Drupal to Website Development in Academic Libraries Cristina Tofan Eastern Kentucky University, [email protected]
    Eastern Kentucky University Encompass Library Faculty and Staff aP pers and Presentations EKU Libraries January 2010 The Application of Drupal to Website Development in Academic Libraries Cristina Tofan Eastern Kentucky University, [email protected] Follow this and additional works at: http://encompass.eku.edu/faculty_staff Part of the Library and Information Science Commons Recommended Citation Tofan, Cristina, "The Application of Drupal to Website Development in Academic Libraries" (2010). Library Faculty and Staff aP pers and Presentations. Paper 2. http://encompass.eku.edu/faculty_staff/2 This is brought to you for free and open access by the EKU Libraries at Encompass. It has been accepted for inclusion in Library Faculty and Staff Papers and Presentations by an authorized administrator of Encompass. For more information, please contact [email protected]. The Application of Drupal to Website Development in Academic Libraries Cristina Tofan Eastern Kentucky University Libraries 1. Introduction Academic libraries think very carefully about how they design their website, because the website is the primary avenue to provide access to resources, do library instruction, promote collections, services and events, and connect with students, faculty and potential donors. Library websites are expected to be able to respond to two major types of needs: to offer high functionality to the patrons, and to allow librarians and library staff to participate in the un‐intermediated creation and publication of content. Web content management systems are software systems that provide tools for both. In the realm of open source content management systems, Drupal has the lead compared to other systems, in its adoption in libraries.
    [Show full text]
  • Web CMS Comparison: Plone Vs. Drupal
    Web CMS Comparison: Plone vs. Drupal" Ken Wasetis - Contextual " [email protected]" twitter: @ctxlken" irc: ctxlken" www.contextualcorp.com 1 2 Why Compare? To Learn To Advise: Be able to compare/contrast in Web CMS discussion To Improve Every problem doesn’t require a hammer http://www.contextualcorp.com3 What is a CMS? Database-driven Content Repository + User Interface + Content Services ----------------------------------------------------- = CMS + Web ------------ = WCMS http://www.contextualcorp.com4 Content Services of CMS Version Control / Audit Trail & Rollback Capabilities Locking (check-in/check-out) Workflow / Approval Process Review Lists and Notifications Content Types - Built-in and/or Custom Fine-grained Permissions Searching/Indexing of Content *Plone is a Web CMS (WCMS) Tool (CMS for managing websites/web content) http://www.contextualcorp.com5 Content Versioning / Audit Trail http://www.contextualcorp.com6 Additional CMS Features Simple WYSIWYG Visual Editor / Rich Text Editing In-context Editing (sometimes) Content Preview with Theme Applied Accessibility (WCAG, Section 508, etc.) Visual Comparison of Revision Differences Management of Metadata (tags, keywords, pub dates, author, credits, other) Sitemap and Taxonomy Management Scheduling of Publishing/Expiration of Content http://www.contextualcorp.com7 Built-in Search http://www.contextualcorp.com8 Typical Add-on Features/Modules Web Forms Slideshows Calendar Microsites Faceted Navigation/Search Embed Videos RSS Feeds/Syndication SEO Enhancements Email Campaign
    [Show full text]
  • An Introduction to Plone for Developers
    An introduction to Plone for developers Roché Compaan Founder of Upfront Systems A small consultancy founded in 1998, that specialises in web development with Zope and Plone Why do we love Plone? ● It is written in Python ● Rapid development ● Huge amount of web infrastructure (workflow, session, membership, security, webdav, ftp, xmlrpc) ● ZODB (Z Object Database) ● It scales ● Huge amount of 3rd party products (plone.org/products) Goals of this talk ● Show you how to install Zope and Plone ● Introduce Zope concepts (ZODB, Page Templates, Acquisition, ZEO) ● Do some development ● Introduce Plone features ● General Plone Plug Installing Plone ● Learn how to install from source so that you can experiment with versions that are not bundled in your distro. It©s the familiar configure make install dance. ● Always install a ZEO cluster so that you debug a running Zope. ● Some commands to remember: – Create a zope instance: /path/to/zope/bin/mkzopeinstance.py – Create a zeo instance: /path/to/zope/bin/mkzeoinstance.py – Start zope: /path/to/instance/bin/zopectl start – Run zope in debug mode: /path/to/instance/bin/zopectl fg – Debug zope: /path/to/instance/bin/zopectl debug – Start zeo: /path/to/zeoinstance/bin/zeoctl start ZODB ● Powerful object database for Python ● High read, low write database ● Use Python pickle module to serialise objects ● Transactional ● Uses multi-version concurrency control (MVCC) ● No locking, raise ConflictErrors ● Example Page Templates ● HTML-editor-safe way of dynamically generating HTML or XML: <span tal:content="request/name"> name appears here </span> ● Consists of: – Template Attribute Language (or TAL) – Macro Expansion for TAL (or METAL) Acquisition ● Allows dynamic behavior to be shared between Zope objects via containment.
    [Show full text]
  • Assessment of Content Management System Joomla and Plone for the Development of Dynamic Web Applications
    SIIPRIN Conference Proceedings Simposio Iberoamericano en Programación Informática (Ibero-American Symposium on Computer Programming) SIIPRIN’2017 Conference Paper Assessment of Content Management System Joomla and Plone for the development of dynamic web applications Valeria Andino1, Vinicio Ramos2, and Blanca Hidalgo2 1Empresa F&R Constructores, Riobamba, Ecuador 2Escuela Superior Politécnica de Chimborazo, Riobamba, Ecuador Resumen One of the tasks of content managers is to automatically perform the technical tasks of publishing on the web, which allows to control the content management for a website. This work is a compilation of the thesis of degree of its same name developed in the ESPOCH in him a performance analysis was implemented; comparing two prototypes one developed in PLONE and another in JOOMLA. The study establishes Corresponding Author: benefits, disadvantages and similarities between them. The method used was the Valeria Andino scientific inductive method that was applied to obtain and measure the results of [email protected] the performance variables. The result obtained in the comparative study, shows Received: 28 July 2017 that the content manager PLONE allows to obtain a yield of 99.92% of fulfillment, in Accepted: 5 September 2017 Published: 30 January 2018 comparison with JOOMLA with a percentage of 89.09%. Therefore, the study points to PLONE as the most efficient technology. Publishing services provided by Knowledge E Keywords: Ploone, Joomla, Dynamic web, Web Application Valeria Andino et al. This article is distributed under the terms of the Creative Commons Attribution License, which 1. Introducción permits unrestricted use and redistribution provided that the Hace algún tiempo la idea de web consistía en simplemente indicar una colección original author and source are credited.
    [Show full text]
  • State of Plone 4 and 5
    Stability versus new features STATE OF PLONE 4 AND 5 STATE OF PLONE 4 AND 5 Maurits van Rees, Dec 7 2020 PLONE CONFERENCE Hello everyone. I will be presenting the State of Plone 4 and 5. As a general theme throughout this talk I will focus on stability versus new features. WHO AM I? Maurits van Rees Netherlands -> Belgium Zest Software, Netherlands 15 years Plone Security Team Release Team I have lived in The Netherlands for most of my life. Two years ago I moved to Belgium, where I got married with Fiorella, the lovely lady on the right. And there is my daughter Nika and since 15 October I have a sonTobias. Since the beginning of 2020 I am the second release manager. The idea is that I focus on the current versions of Plone, getting regular, stable releases out. Since then I made four Plone releases: 4.3.20, 5.1.7, 5.2.2 and 5.2.3. I will talk a bit about those. https://plone.org/download/release-schedule But one of the first things that I did, was to create a Plone release schedule. This was inspired by the Django release schedule. Django has it a bit easier, because its core is only one package, where Plone has lots. So the Plone release schedule is by nature less predictable. You can fine the schedule at https://plone.org/download/release-schedule This is the place to go when you are looking for information on what is the latest version within a Plone release, and is this Plone release still supported, and how long will it be supported.
    [Show full text]
  • Zope Project and Community Documentation
    Zope Project and Community Documentation The Zope developer community Jun 21, 2021 Contents 1 The World of Zope 3 1.1 Frameworks...............................................3 1.2 Databases.................................................4 1.3 Application Servers...........................................4 1.4 Tools...................................................4 2 Documentation 5 2.1 Documentation..............................................5 3 Community 7 3.1 Community................................................7 3.2 Developer Information..........................................8 i ii Zope Project and Community Documentation Zope is a free and open source web application server written in the object-oriented programming language Python. Since its release in 1998, Zope continues to grow into many distinct applications, frameworks, libraries and tools. The World of Zope highlights the most important components. Zope community projects are hosted in the Zope Foundation organization on GitHub. Contents 1 Zope Project and Community Documentation 2 Contents CHAPTER 1 The World of Zope A Bit of History In 1996 Jim Fulton, now Zope Corporation CTO, was drafted to teach a class on common gateway interface (CGI) programming, despite not knowing very much about the subject. CGI programming is a commonly-used web development model that allows developers to construct dynamic web sites. Traveling to the class, Jim studied all the existing documentation on CGI. On the way back, Jim considered what he didn’t like about traditional CGI- based programming environments. From these initial musings the core of Zope was written while flying back from the CGI class. Zope Corporation (then known as Digital Creations) went on to release three open-source software packages to support web publishing: Bobo, Document Template, and BoboPOS. These packages were written in a language called Python, and provided a web publishing facility, text templating, and an object database, respectively.
    [Show full text]
  • Integrated Development Environments
    INTEGRATED DEVELOPMENT ENVIRONMENTS VENDOR PRODUCT LANGUAGES SUPPORTED DEPLOYMENT PLATFORM INCLUDES OTHER KEY FEATURES PRICE CODE-VERSIONING SYSTEM? ACTIVESTATE SOFTWARE INC. Komodo Perl, PHP, Python, Ruby, XSLT; Any PHP, Perl, Python or Ruby-based applica- Yes Fully-integrated XSLT support, including an XSLT editor, $295; $495 bundled with Vancouver, British Columbia Professional 3.5.3 customizable context-aware editor tion server; client applications supported debugger and code intelligence. Komodo installs on Linux, one year of ActivePerl www.activestate.com supports many other languages through GUI builder Mac OS X, Solaris and Windows; all four platforms are includ- Profesional or ActiveTcl (778) 786-1114 ed with each license Professional subscription service BEA SYSTEMS INC. BEA Workshop Java, SOA, J2EE and Support for debugging and deployment Yes AppXRay creates a database of all the artifacts and their hierar- San Jose, Calif. Studio 3.0 Web applications requires Apache Jakarta Tomcat, BEA chy of relationships and interdependencies; benefits include code Starts at $899 www.bea.com WebLogic Server, Caucho Resin, IBM completion that reaches multiple levels, page variable names and (408) 570-8000 WebSphere, JBoss or Mortbay Jetty their fields, real-time consistency and validation checking BORLAND SOFTWARE CORP. Jbuilder 2006 Java J2EE 1.4 and J2EE application servers, including BEA Yes Eclipse-based; JSF, Struts and Web Services designers, UML Cupertino, Calif. JDK 5.0 WebLogic, IBM WebSphere, Sybase EAServer, code visualization,
    [Show full text]
  • An Empirical Study of the Effects of Open Source
    AN EMPIRICAL STUDY OF THE EFFECTS OF OPEN SOURCE ADOPTION ON SOFTWARE DEVELOPMENT ECONOMICS by Di Wu A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfillment of the requirements for the degree of Master of Applied Science in Technology Innovation Management Department of Systems and Computer Engineering, Carleton University Ottawa, Canada, K1S 5B6 March 2007 © Copyright 2007 Di Wu Reproduced with permission of the copyright owner. Further reproduction prohibited without permission. Library and Bibliotheque et Archives Canada Archives Canada Published Heritage Direction du Branch Patrimoine de I'edition 395 Wellington Street 395, rue Wellington Ottawa ON K1A 0N4 Ottawa ON K1A 0N4 Canada Canada Your file Votre reference ISBN: 978-0-494-27005-9 Our file Notre reference ISBN: 978-0-494-27005-9 NOTICE: AVIS: The author has granted a non­ L'auteur a accorde une licence non exclusive exclusive license allowing Library permettant a la Bibliotheque et Archives and Archives Canada to reproduce,Canada de reproduire, publier, archiver, publish, archive, preserve, conserve,sauvegarder, conserver, transmettre au public communicate to the public by par telecommunication ou par I'lnternet, preter, telecommunication or on the Internet,distribuer et vendre des theses partout dans loan, distribute and sell theses le monde, a des fins commerciales ou autres, worldwide, for commercial or non­ sur support microforme, papier, electronique commercial purposes, in microform,et/ou autres formats. paper, electronic and/or any other formats. The author retains copyright L'auteur conserve la propriete du droit d'auteur ownership and moral rights in et des droits moraux qui protege cette these.
    [Show full text]
  • ZODB Documentation and Articles
    ZODB documentation and articles Zope Developer Community May 03, 2021 Contents 1 Learning more 3 2 What is the expansion of “ZODB”? 191 3 Downloads 193 4 Community and contributing 195 Python Module Index 197 Index 199 i ii ZODB documentation and articles Because ZODB is an object database: • no separate language for database operations • very little impact on your code to make objects persistent • no database mapper that partially hides the database. Using an object-relational mapping is not like using an object database. • almost no seam between code and database. • Relationships between objects are handled very naturally, supporting complex object graphs without joins. Check out the Tutorial! ZODB runs on Python 2.7 or Python 3.4 and above. It also runs on PyPy. Contents 1 ZODB documentation and articles 2 Contents CHAPTER 1 Learning more 1.1 Introduction 1.1.1 Transactions Transactions make programs easier to reason about. Transactions are atomic Changes made in a transaction are either saved in their entirety or not at all. This makes error handling a lot easier. If you have an error, you just abort the current transaction. You don’t have to worry about undoing previous database changes. Transactions provide isolation Transactions allow multiple logical threads (threads or processes) to access databases and the database prevents the threads from making conflicting changes. This allows you to scale your application across multiple threads, processes or machines without having to use low-level locking primitives. You still have to deal with concurrency on some level. For timestamp-based systems like ZODB, you may have to retry conflicting transactions.
    [Show full text]
  • Comparing Open Source Content Management Systems: Wordpress, Joomla, Drupal and Plone Report
    COMPARING OPEN SOURCE CONTENT MANAGEMENT SYSTEMS: WORDPRESS, JOOMLA, DRUPAL AND PLONE FULLY UPDATED December 2010 TABLE OF CONTENTS Introduction ........................................................................................................................................ 5 What is An Open Source Content Management System? ......................................................... 8 What Other Content Management Systems are Available? ......................................................10 How Do These Systems Compare? ................................................................................................12 The Comparison Chart .....................................................................................................................19 Recommendations ...........................................................................................................................20 Methodology ..................................................................................................................................... 23 Appendix A: Detailed System Reviews ........................................................................................24 WordPress .............................................................................................................................................24 Joomla ....................................................................................................................................................31 Drupal ..................................................................................................................................................
    [Show full text]