Learning Website Development with Django
Formats:
save 35%!
save 37%!
Free Shipping!
| Also available on: |
|
- Create a complete Web 2.0-style web application with Django
- Learn rapid development and clean, pragmatic design
- Build a social bookmarking application
- No knowledge of Django required
Book Details
Language : EnglishPaperback : 264 pages [ 235mm x 191mm ]
Release Date : April 2008
ISBN : 1847193358
ISBN 13 : 9781847193353
Author(s) : Ayman Hourieh
Topics and Technologies : All Books, Architecture & Analysis, Content Management (CMS), Open Source
Back to BOOK PAGE
Table of Contents
Preface
Chapter 1: Introduction to Django
Chapter 2: Getting Started
Chapter 3: Building a Social Bookmarking Application
Chapter 4: User Registration and Management
Chapter 5: Introducing Tags
Chapter 6: Enhancing the User Interface with Ajax
Chapter 7: Voting and Commenting
Chapter 8: Creating an Administration Interface
Chapter 9: Advanced Browsing and Searching
Chapter 10: Building User Networks
Chapter 11: Extending and Deploying
Chapter 12: What Next?
Index
Back to BOOK PAGE
Ayman Hourieh
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
- 5 submitted: last submission 05 Jan 2012Errata type: Code | Page number: 33
title=models.CharField(maxlength=200) maxlength should be max_length
Errata type: Code | Page number: 46
{% if form.has_errors %} should be {% if form.errors %}
Errata type: URL change | Page number: 123
jQuery plugin site address is listed as http://docs.jquery.com/Plugins
It should be
http://plugins.jquery.com/
Errata type: Typo | Page number: 58
In the second to last paragraph, the form.clean_data reference should be form.cleaned_data
Errata type: Typo | Page number: 71
At point 6, the constructor and destructor functions must be called Example25FrameListener() and ~Example25FrameListener() respectively.
Sample chapters
You can view our sample chapters and prefaces of this title on PacktLib or download sample chapters in PDF format.
- User registration and management
- Dealing with content customization and searching
- Working with the tag data model
- Creating your own administration interface
- Using AJAX to enhance the user interface
- Building user networks
- Setting up and deploying Django applications on the production web server
Chapter 1 gives you an introduction to MVC web development frameworks, a history of Django, and explains why Python and Django are the best tools to use to achieve the aim of this book.
Chapter 2 provides a step-by-step guide to installing Python, Django, and an appropriate database system so that you can create an empty project and set up the development server.
Chapter 3 creates the main page so that we have the initial view and a URL. You will learn how to create templates for both the main page and the user page.
Chapter 4 is where the application really starts to take shape as user management is implemented. Learn how to log users in and out, create a registration form and allow users to manage their own accounts by changing email or password details.
Chapter 5 explores how to manage your growing bank of content. Create tags, tag clouds, and a bookmark submission form all of which interact with your database. Security features also come into play as you learn how to restrict access to certain pages and protect against malicious input.
Chapter 6 enables you to enhance your application with AJAX and jQuery as users can now edit entries in place and do live searching. Data entry is also made easier with the introduction of auto-completion.
Chapter 7 shows you how to enable users to vote and comment on their bookmark entries.
Chapter 8 focuses on the administration interface. You will learn how to create and customize the interface, which allows you to manage content and to set permissions for users and groups.
Chapter 9 will give your application a much more professional feel through the implementation of RSS feeds and pagination.
Chapter 10 tackles social networks providing the 'social' element of your application. Users will be able to build a friend network, browse the bookmarks of their friends, and invite their friends to join the website.
Chapter 11 covers extending and deploying your application. You will also learn about advanced features including offering the site in multiple languages, managing the site during high traffic, and configuring the site for a production environment.
Chapter 12 takes a brief look at extra Django features that have not been covered elsewhere in the book. You will gain the knowledge required to further your application and build on the basic skills that you have learned throughout the book.
Django is a high-level Python web framework that was developed by a fast-moving online-news operation to meet the stringent twin challenges of newsroom deadlines and the needs of web developers. It is designed to promote rapid development and clean, pragmatic design and lets you build high-performing, elegant web applications rapidly. Django focuses on automating as much as possible and adhering to the DRY (Don't Repeat Yourself) principle, making it easier to build high-performance web applications faster, with less code.
This book will show you how to assemble Django's features and leverage its power to design, develop, and deploy a fully-featured website. It will walk you through the creation of an example web application, with lots of code. Each chapter will add new features to the site, and show what parts of Django to work on to build these features.
This book has been specifically written for Python developers new to Django, and it's goal is to help you put together Django applications as quickly as possible. This book will give you clear, concise and, of course, practical guidance to take you from the basics of creating pages with Django through to learning the skills that will make you a Django developer to be reckoned with.
This book is a beginner's guide to design, develop, and deploy a fully-featured dynamic website using the features of Django.
Being a beginner's guide this book has a very simple and clear approach. It is a practical guide that will help you learn the features of Django and help you build a dynamic website using those features.
This book is for web developers who want to see how to build a complete site with Web 2.0 features, using the power of a proven and popular development system, but do not necessarily want to learn how a complete framework functions in order to do this.
Basic knowledge of Python development is required for this book, but no knowledge of Django is expected.

