Plone Training Documentation Publicación 1.2.5A

Total Page:16

File Type:pdf, Size:1020Kb

Plone Training Documentation Publicación 1.2.5A Plone Training Documentation Publicación 1.2.5a Plone Community sept. 28, 2017 Índice general 1. About Plone Trainings 3 2. Trainings 9 I II Plone Training Documentation, Publicación 1.2.5a A collection of trainings developed and created by the Plone Community. Índice general 1 Plone Training Documentation, Publicación 1.2.5a 2 Índice general CAPÍTULO 1 About Plone Trainings Plone Training is a collection of different trainings, developed and created by the Plone Community. About Mastering Plone This training was created by Philip Bauer and Patrick Gerken of starzel.de to create a canonical training for future Plone developers. The aim is that anyone with the appropriate knowledge can give a training based on it and contribute to it. It is published as Open Source on github and training.plone.org. If you want to inquire the original authors about organizing a training please contact them at [email protected]. Upcoming Trainings If you want to have a training near you please ask for trainings on https://community.plone.org Previous Trainings The Mastering Plone Training was so far held publicly at the following occasions: Ploneconf 2016 in Boston October 2015, Bucharest March 2015, Munich Plone Conference 2014, Bristol June 2014, Caracas May 2014, Munich PythonBrasil/Plone Conference 2013, Brasilia PyCon DE 2012, Leipzig Plone Conference 2012, Arnheim PyCon De 2011, Leipzig 3 Plone Training Documentation, Publicación 1.2.5a Trainers The following trainers have given trainings based on Mastering Plone: Philip Bauer Philip Bauer is a web developer from Munich who fell in love with Plone in 2005 and since then works almost exclusively with Plone. A historian by education he drifted towards creating websites in the 90’s and founded the company Starzel.de in 2000. He is a member of the Plone foundation, loves teaching and is dedicated to Open Source. Among other Plone-related projects he started creating the Mastering Plone Training so that everyone can become a Plone-Developer. Patrick Gerken Patrick Gerken works with Python since 2002. He started working with pure Zope applications and now develops mainly with Plone, Pyramid and Javascript as well as doing what is called DevOps. He works at Zumtobel Group. Steve McMahon Steve McMahon is a long-time Plone community member, contributor and trainer. He is the creator of PloneFormGen and maintainer of the Unified installer. Steve also wrote several chapters of Practical Plone and is an experienced speaker and instructor. Steffen Lindner Steffen Lindner started developing Plone in 2006. He worked on small Plone sites and also with huge intranet sites. As Open Source / Free Software developer he joined the Plone core developer team 2011 and works at Starzel.de. Fulvio Casali Fulvio Casali has been working almost exclusively with Plone since 2008. He struggled for years to find his way around the source code of Plone when there was no documentation and no trainings, and feels passionate about helping users and developers become proficient. He loves participating in Plone community events, and organized two strategic Plone sprints on the northwest coast of the USA and helped galvanized the developer community there. Johannes Raggam Johannes Raggam from Graz/Austria works most of the time with a technology stack based around Python, Plone, Pyramid and Javascript. As an active Open Source / Free Software developer he be- lieves in the power of collaborative work. He is a BlueDynamics Alliance Partner and Plone Core Contributor since 2009, a member of the Plone Framework Team since 2012 and Plone Foundation member. Franco Pellegrini Franco Pellegrini is a software developer from Cordoba, Argentina. He started developing Plone in 2005 in a small software company, and as an independent contractor since 2011. He believes in free software philosophy, and so, he has been a Plone core developer since 2010 and Framework Team member since 2012. Fred van Dijk Fred, from Rotterdam the Netherlands, has been exposed to Plone early on as a user. In 2007 he joined Zest Software to work on and with Plone and Python web apps full time. He can focus on the business side, helping users decide on which features are most valuable to develop or when to stick with standard functionality. He also gives training on using and administering the CMS. On the IT side he has plenty technical knowledge to work on code, system administration and do project management in a team of developers. Leonardo Caballero Leonardo J. Caballero G. of Maracaibo, Venezuela, is a Technical Director at Covantec R.L. and Conectivo C.A. Leonardo maintains the Spanish translations of more than 49 Plone Add-ons as well as Spanish-language documentation for Plone itself. He has contributed several Plone Add-ons that are part of PloneGov. Currently serving the Plone Board as a Plone Ambassador, Leonardo has also served as an Advisory Board member and has spoken at or helped organize Plone and open-source events throughout South America. Using the documentation for a training Feel free to organize a training yourself. Please be so kind to contribute any bug fixes or enhancements you made to the documentation for your training. The training is rendered using sphinx and builds in two flavors: default The verbose version used for the online documentation and for the trainer. Build it in sphinx with make html or use the online version. 4 Capítulo 1. About Plone Trainings Plone Training Documentation, Publicación 1.2.5a presentation A abbreviated version used for the projector during a training. It should use more bullet points than verbose text. Build it in sphinx with make presentation. Nota: By prefixing an indented block of text or code with .. only:: presentation you can control that this block is used for the presentation version only. To hide a block from the presentation version use .. only:: not presentation Content without a prefix will be included in both versions. The readthedocs theme We slightly tweaked readthedocs theme in _static/custom.css so that it works better with projectors: We start hiding the navigation bar much earlier so that it does not interfere with the text. We enlarge the default width of the content-area. Exercises Some additional javascript shows hidden solutions for exercises by clicking. Just prepend the solution with this markup: .. admonition:: Solution :class: toggle Here is a full example: Exercise1 ^^^^^^^^^^ Your mission, should you choose to accept it... .. admonition:: Solution :class: toggle To save the world with only seconds to spare do the following: .. code-block:: python from plone import api It will be rendered like this: Exercise 1 Your mission, should you choose to accept it... Solution To save the world with only seconds to spare do the following: 1.1. About Mastering Plone 5 Plone Training Documentation, Publicación 1.2.5a from plone import api Building the documentation locally Dependencies Please make sure that you have Enchant installed, this is needed for spell-checking. Install Enchant on OS X: brew install enchant Install Enchant on Ubuntu: sudo apt-get install enchant To build the documentation follow these steps: $ git clone https://github.com/plone/training.git --recursive $ cd training $ virtualenv --python=python2.7 . $ source bin/activate Now install dependencies and build. $ pip install -r requirements.txt $ make html You can now open the output from _build/html/index.html. To build the presentation version use make presentation instead of make html. You can open the presentation at presentation/index.html. Build new $ git clone https://github.com/plone/training.git --recursive $ cd training $ virtualenv --python=python2.7 . $ source bin/activate $ pip install -r requirements.txt $ make html Now you can open documentation with your web-bowser. If you use OS X you can just do: $ open _build/html/index.html In the case of Linux, Ubuntu for example you can do: $ firefox _build/html/index.html Nota: If you do not use Firefox but Chrome, please replace firefox with google-chrome e.g 6 Capítulo 1. About Plone Trainings Plone Training Documentation, Publicación 1.2.5a $ google-chrome _build/html/index.html Update existing $ git pull $ source bin/activate $ make html $ open _build/html/index.html Technical set up to do before a training (as a trainer) Prepare a mailserver for the user registration mail (See Configure a Mailserver) If you do only a part of the training (Advanced) prepare a database with the steps of the previous sections. Be aware that the file- and blobstorage in the Vagrant box is here: /home/vagrant/var/ (not at the buildout path /vagrant/buildout/) Upgrade the vagrant and buildout to a new Plone-version In https://github.com/collective/training_buildout change buildout.cfg to extend from the new versions.cfg on http://dist.plone.org/release Check if we should to update any versions in https://github.com/collective/training_buildout/blob/master/ versions.cfg Commit and push the changes to the training_buildout Modify the vagrant-setup by modifying plone_training_config/manifests/plone.pp. Set the new Plone-version as $plone_version in line 3. Test the vagrant-setup it by creating a new vagrant-box using the new config. Create a new zip-file of all files in plone_training_config and move it to _static: $ cd plone_training_config $ zip -r plone_training_config.zip * $ mv plone_training_config.zip ../_static/ Commit and push the changes to https://github.com/plone/training Train the trainer If you are a trainer there is a special mini training about giving technical trainings. We really want this material to be used, re-used, expanded and improved by Plone trainers world wide. These chapters don’t contain any Plone specific advice, there’s background, theory, check lists and tips for anyone trying to teach technical subjects. ../trainthetrainer/index Contributing Everyone is very welcome to contribute.
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]