Plone 3 Theming
Formats:
save 25%!
save 37%!
Free Shipping!
| Also available on: |
|
- Best practices for creating a flexible and powerful Plone themes
- Build new templates and refactor existing ones by using Plone's templating system, Zope Page Templates (ZPT) system, Template Attribute Language (TAL) tricks and tips for skinning your Plone site
- Create a fully functional theme to ensure proper understanding of all the concepts
- A step-by- step approach to ensure proper understanding of all the concepts
Book Details
Language : EnglishPaperback : 324 pages [ 235mm x 191mm ]
Release Date : July 2009
ISBN : 1847193870
ISBN 13 : 9781847193872
Author(s) : Veda Williams
Topics and Technologies : All Books, Content Management (CMS), Open Source, Plone, Python
Back to BOOK PAGE
Table of Contents
Preface
Chapter 1: Theming Plone 3: An Overview
Chapter 2: Skinner's Toolkit
Chapter 3: Setting up your Development Environment
Chapter 4: Create and Install a Theme Product
Chapter 5: Making Manual (TTW) Changes or What Not to Do
Chapter 6: Working with Zope 3 Components
Chapter 7: Customizing Viewlets and Portlets
Chapter 8: Understanding Zope Page Templates and the Template Attribute Language
Chapter 9: Creating, Installing, and Tweaking our Theme
Chapter 10: General Styling and Templating Changes
Chapter 11: Custom Page Views and Sectional Styling
Chapter 12: Add-on Tools and Theming Tips
Chapter 13: Plone and Multimedia
Chapter 14: Deploying and Contributing Themes
Chapter 15: The Future of Theming for Plone
Index
Veda Williams
Code Downloads
Download the code and support files for this book.
Submit Errata
Please let us know if you have found any errors not listed on this list by completing our errata submission form. Our editors will check them and add them to this list. Thank you.
Errata
- 16 submitted: last submission 10 Sep 2012Errata type: Technical | Page number: 39
This is purely an addition that the author wants to incorporate: "TextMate can be purchased for 39 Euros, or $57 USD."
Errata type: Technical | Page number: 55
This is purely an addition that the author wants to incorporate: "The Macintosh equivalent of TortoiseSVN is SCPlugin, and can be found at http://scplugin.tigris.org."
Errata type: Code | Page number: 64
$ paster create -t plone3_theme
should read
$ paster create -t plone3_theme plonetheme.mytheme
Errata type:Code | Page number: 64
Enter project name: My Theme
should read
Enter project name: plonetheme.mytheme
Errata type: Technical | Page number: 72
The paragraph that reads "In order to set portal_css....http://localhost:8080/ mysite/portal/css/manage_cssForm." should be "In order to put portal_css in debug mode, go to the portal_css tool in the ZMI by drilling down or by pointing your browser to an address that should look like http://localhost:8080/mysite/portal_css/manage_cssForm."
Errata type: Technical| Page number: 80
Under "Install your theme product", where it mentions editing the mytheme.css file found in the skins/plonetheme_mytheme_styles file, you actually want to modify the main.css file located in the browser/ folder of your theme product instead. Make sure you have your site's portal_css in debug mode (outlined in the next section)
Errata type: Other | Page number: 80
"http://localhost;8080/mysite" should be "http://localhost:8080/mysite"
Errata type: Technical | Page number: 80
“mynewtheme” should be changed to “mytheme”
Errata type: Technical | Page number: 80
Install Your Theme Product: Where it says to modify mytheme.css in skins/plonetheme_mynewtheme_styles, you should actually be modifying main.css in the browser/ folder.
Errata type: Other | Page number: 81
"Uninstallation requires that a theme to have an uninstall profile written for it." Should be "Uninstallation requires a theme to have an uninstall profile written for it."
Errata type: Technical | Page number: 94
At the end of the paragraph that reads "However, to minimize the risk.....into your web site.", there should be a sentence "You can import this step by clicking on the Import tab and by choosing your theme product's profile from the drop-down list at the top of the page.
Errata type: Technical | Page number: 99
“The actual name of the base proptery sheet on the filesystem is base_properties.props, and it can be found in parts/plone/CMFPlone/skins/plone_styles.” In this sentence, the path should be src/plonetheme.mytheme/plonetheme/mytheme/skins/plonetheme_mytheme_styles
Errata type: Other | Page number: 104
Below the heading "Overriding base Plone stylesheets", the paragraph "When a new Plone theme product...if desired." is duplicated - this paragraph appears just above the heading as well.
Errata type: Technical | Page number: 107
"parts/plone/CMFPlone/skins/plone_styles/" should be "buildout-cache/eggs/Plone [some version number]/Products/CMFPlone/skins/plone_styles"
Errata type: Technical | Page number: 108
"skins/plonetheme_mytheme_custom_styles" should be "skins/plonetheme_mytheme_styles"
Errata type: Technical| Page number: 108
"Next,...the following code:" should read "Next, open your cssregistry.xml file, located at profiles/default/cssregistry.xml."
Sample chapters
You can view our sample chapters and prefaces of this title on PacktLib or download sample chapters in PDF format.
- Create attractive themes using Plone 3 programming concepts
- Customize your Plone theme and get a new look and feel for your web site
- Set up a productive development environment for building a quality theme product
- Use graphic design, Subversion, and other helpful tools that make theming easier and more efficient
- Use Zope 3 components for building powerful Plone themes
- Create an actual theme product using the Plone 3 theming concepts
- Embed multimedia in a Plone template to make your theme more attractive and useful
- Deploy and test your theme by following best practices
Chapter 1: Skinning for Plone: Overview – In this chapter, we take a look at how theming has become even more complex with the newest release of Plone. We will also compare Drupal with Plone.
Chapter 2: Skinner's toolkit – In this chapter, we take a look at the tools that are needed for theming. We also take a look at the browser add-ons that are available for debugging our web site's CSS, JavaScript, color palate, and more.
Chapter 3: Getting started – In this chapter we will configure the development environment and learn how Python and ZCML fit into the scenario. We will also learn the jargon associated with Plone 3.0 development.
Chapter 4: Making manual (TTW) changes and how to extract them into a file system – In this chapter, we will learn how to expose a theme product to a file system and install it. We take a look at the elements that comprise the component architecture for a theme product. We will also learn how the skin layers work.
Chapter 5: Working with Zope 3 components – This chapter focuses on the Zope 3 components that are involved in file system theme development. We take a look at the interfaces and adapters. We will learn how to use ZCML code to tie together the Zope 3 components. We will also learn how to use images, style sheets, and browser resources and how to write browser views.
Chapter 6: Customizing Viewlets and Portlets – This chapter focuses on Viewlets, viewlets manager and @@ manage-viewlets. We take a look at Portlets and will learn portlet customization techniques.
Chapter 7: Understanding Zope Page Templates and the Template Attribute Language – In this chapter, we will learn what a Zope Page Templates system is. We also take a look at Template Attribute Language (TAL) and will learn common TAL expressions.
Chapter 8: Building a new theme: A real-world example – In this chapter we will use the concepts that we have learned to build an actual theme product.
Chapter 9: Add-on tools and skinning tricks – In this chapter we take a look at the popular add-ons, the current state of sub-site theming and possible options, and the non-plone products that can be used to alter the site's look and feel.
Chapter 10: Plone and multimedia – In this chapter we will learn how to embed multimedia into the content of a page and into a page template. We also take a look at Plone-specified add-ons that provide multimedia support.
Chapter 11: Deploying and contributing themes – In this chapter we take a look at the suggested development environments, theme deployment workflow, the quality assurance process, where to look for potential problems, and how to contribute to the plone theming community by creating publically available themes.
Themes are among the most powerful features that can be used to customize a web site, especially in Plone. Using custom themes can help you brand your site for a particular corporate image; it ensures standards compliance and creates easily navigable layouts. But most Plone users still continue to use default themes as developing and deploying themes that are flexible and easily maintainable is not always straightforward.
This book teaches best practices of Plone theme development, focusing on Plone 3. It provides you with all the information useful for creating a robust and flexible Plone theme. It also provides a sneak peek into the future of Plone's theming system.
In this book you will learn how to create flexible, powerful, and professional Plone themes. It is a step-by-step tutorial on how to work with Plone themes. It also provides a more holistic look at how a real-world theme is constructed. We look at the tools required for theming a web site. The book covers major topics such as configuring the development environment, creating a basic theme product, add-on tools and skinning tricks, integrating multimedia with Plone, and configuring your site's look and feel through the Zope Management Interface (ZMI). Finally, the book takes a close look at the thrilling and greatly simplified future of theming Plone sites.
A clear, step-by-step guide to create customized Plone web sites
This book provides a holistic look at theming Plone sites as well as step-by-step instructions on how to create Plone themes. The book first briefly introduces the concepts and necessary tools and then moves on to describing the concepts needed for customizing templates in Plone. It also provides handy tips and tricks along the way to simplify the theming process.
This book is targeted at professional web designers working with Plone who want to create their own unique look and feel for a Plone web site.

