Book Image

Plone 3.3 Site Administration

Book Image

Plone 3.3 Site Administration

Overview of this book

In the past few years, we have seen some dramatic changes in the way Plone sites are being developed, deployed, and maintained. As a result, developing and deploying sites, changing their default settings, and performing day to day maintenance tasks can be a challenge. This book covers site administration tasks, from setting up a development instance, to optimizing a deployed production site, and more. It demonstrates how-to perform these tasks in a comprehensive way, and walks the user through the necessary steps to achieve results.We have divided the subject of Plone site administration into three categories: development, deployment, and maintenance. We begin by explaining how a Plone site is built, and how to start using it through the web. Next, we add features by installing add-on products, focusing on themes, blogging, and other common enhancements. After the basics of developing and deploying a Plone site are covered, the book covers the basics of maintaining it.Further, throughout the book we preview some new technologies related to Plone site administration, available now as add-ons to the current Plone release. Finally, we will cover a variety of techniques to help you optimize your site's performance.
Table of Contents (15 chapters)
Plone 3.3 Site Administration
Credits
Foreword
About the Author
About the Reviewer
Preface
Index

How to install Subversion—a version control system


The Plone community maintains several Subversion (http://subversion.apache.org/) software repositories for core and add-on software development.

In addition, the community maintains a Trac (http://trac.edgewall.org/) instance for each repository to facilitate easy browsing.

Below, you will find links to each of the Plone community's Trac instances, one for each repository:

As such, we shall make sure each of our operating systems has a Subversion client available in case we need to access software from any of the repositories.

(In the next section, we will check out a Python buildout from the collective repository, developed by Plone core developer Florian Schulze.)

Using Subversion on Mac OS X

Mac OS X 10.6 ships with Subversion 1.6.5 pre-installed; all we have to do is test it.

Verify that Subversion works

To verify that Subversion works, type:

$ svn

You should see:

We have just demonstrated how to test Subversion on Mac OS X.

Installing Subversion on Windows

Windows 7 does not ship with Subversion pre-installed, but there is an installer available on http://collab.net.

Downloading Subversion

To download Subversion:

  1. Create an account here: http://www.open.collab.net/servlets/Join.

  2. Browse to http://collab.net. Click on Downloads | Subversion | Windows | CollabNet Subversion Command-Line Client v1.6.9 (for Windows) | Download | Run.

  3. Run the installer.

Installing Subversion

Click on Next, accept the default installation location, and so on, and then wait for a few seconds.

You should see:

Verify that Subversion works

To verify that Subversion works, type:

$ svn

You should see:

We have just demonstrated how to install and test Subversion on Windows.

Installing Subversion on Ubuntu Linux

Ubuntu Linux does not ship with Subversion pre-installed, but you can easily install it with the following command:

$ sudo aptitude install subversion

You should see:

Verify that Subversion works

To verify that Subversion works, type:

$ svn

You should see:

We have just demonstrated how to install and test Subversion on Ubuntu Linux.