Book Image

Managing eZ Publish Web Content Management Projects

Book Image

Managing eZ Publish Web Content Management Projects

Overview of this book

open-source CMS (content management system) and development framework with functionality for web publishing, intranets, e-commerce, extranets, and web portals. In this book, Martin Bauer of designit.com.au an eZ publish Silver partner, teaches you how to successfully manage and implement an eZ publish web content management project. He shows you how to produce quality results in a repeatable manner with the minimum of effort, and end up with eZ publish solutions that will delight your clients. The book presents strategies, best practices, and techniques for all steps of your eZ publish project, starting from client requirements, through planning, information architecture and content modeling, design considerations, and right up to deployment, client training, maintenance, support, and upgrades.
Table of Contents (20 chapters)
Managing eZ Publish Web Content Management Projects
Credits
About the Author
About the Reviewers
Preface
Index

Version Control


When there is only one developer working on a project, it's tempting to forget about version control and just do the work, after all, it's not like a single developer is going to have a conflict with himself! But, there are good reasons to implement version control even for projects with a single developer, and many more when there are multiple developers involved.

The main reason for version control is to protect against the fact that we are human and can make mistakes. For example, we have to extend some existing code to allow for additional functionality. In the process of extending the code, we break the original function. It happens, even developers are human! Without version control, we would have to start all over again instead of simply rolling back to the previous version. When there are multiple developers involved, there are times when you'll add code that causes something to break in another part of the system; having version control means you can roll back and...