Web development with Django cookbook :: over 90 practical recipes to help you create scalable websites using the Django 1.8 framework /
Annotation
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham :
Packt Publishing,
2016.
|
Ausgabe: | Second edition. |
Schriftenreihe: | Quick answers to common problems.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Annotation |
Beschreibung: | Includes index. |
Beschreibung: | 1 online resource (384). |
ISBN: | 1785881329 9781785881329 |
Internformat
MARC
LEADER | 00000cam a2200000 a 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-ocn936630063 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr |n||||||||| | ||
008 | 160205s2016 enk o 001 0 eng d | ||
040 | |a IDEBK |b eng |e pn |c IDEBK |d N$T |d UMI |d TEFOD |d OCLCF |d TEFOD |d VT2 |d DEBSZ |d OCLCQ |d DEBBG |d OCLCQ |d CEF |d NLE |d UKMGB |d MQY |d UAB |d G3B |d IGB |d UKAHL |d RDF |d OCLCO |d OCLCQ |d QGK |d OCLCO |d OCLCL |d TMA |d OCLCQ | ||
015 | |a GBB6G3484 |2 bnb | ||
016 | 7 | |a 018010586 |2 Uk | |
019 | |a 939394726 |a 1259057025 | ||
020 | |a 1785881329 |q (electronic bk.) | ||
020 | |a 9781785881329 |q (electronic bk.) | ||
020 | |z 9781785886775 | ||
020 | |z 1785886770 | ||
035 | |a (OCoLC)936630063 |z (OCoLC)939394726 |z (OCoLC)1259057025 | ||
037 | |a 892673 |b MIL | ||
050 | 4 | |a TK5105.888 | |
072 | 7 | |a COM |x 060130 |2 bisacsh | |
082 | 7 | |a 005.72 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Bendoraitis, Aidas, |e author. | |
245 | 1 | 0 | |a Web development with Django cookbook : |b over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / |c Aidas Bendoraitis. |
250 | |a Second edition. | ||
264 | 1 | |a Birmingham : |b Packt Publishing, |c 2016. | |
300 | |a 1 online resource (384). | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
347 | |a text file | ||
490 | 1 | |a Quick answers to common problems | |
588 | 0 | |a Online resource; title from PDF title page (EBSCO, viewed March 17, 2016). | |
500 | |a Includes index. | ||
520 | 8 | |a Annotation |b Over 70 practical recipes to help you create scalable websites using the Django 1.8 frameworkAbout This Book This is the latest book on the market that will help you take advantage of the new features added to Django 1.8 This book consists of recipes of varying complexities to help you create multilingual, responsive, and scalable websites with Django This updated edition teaches you major Django functions and will help you improve your skills by developing models, forms, views, and templatesWho This Book Is ForThis book is for intermediate-level and professional Django users who need to build projects that are multilingual, functional on devices of different screen sizes, and that scale over a period of time. If you have created websites with Django but you want to sharpen your knowledge and learn some good approaches to different aspects of web development, you should definitely read this book. What You Will Learn Get started with the basic configuration necessary to start any Django project Build a database structure out of reusable model mixins Manage forms and views and get to know some useful patterns that are used to create them Create handy template filters and tags that you can reuse in every project Integrate your own functionality into the Django CMS Manage hierarchical structures with MPTT Import data from local sources and external web services as well as exporting your data to third parties Implement a multilingual search with Haystack Test and deploy your project efficientlyIn DetailDjango is a web framework that was designed to strike a balance between rapid web development and high performance. It has the capacity to handle applications with high levels of user traffic and interaction, and can integrate with massive databases on the backend, constantly collecting and processing data in real time. Through this book, you'll discover that collecting data from different sources and providing it to others in different formats isn't as difficult as you thought. It follows a task-based approach to guide you through all the web development processes using the Django framework. We'll start by setting up the virtual environment for a Django project and configuring it. Then you'll learn to write reusable pieces of code for your models and find out how to manage database schema changes using South migrations. After that, we'll take you through working with forms and views to enter and list data. With practical examples on using templates and JavaScript together, you will discover how to create the best user experience. In the final chapters, you'll be introduced to some programming and debugging tricks and finally, you will be shown how to test and deploy the project to a remote dedicated server. By the end of this book, you will have a good understanding of the new features added to Django 1.8 and be an expert at web development processes. Style and approachEvery chapter consists of practical examples and a mix of basic and advanced recipes that will guide you through the entire web development process, starting from project configuration and taking you right through to deployment. | |
505 | 0 | |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure | |
505 | 8 | |a Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files | |
505 | 8 | |a Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form | |
505 | 8 | |a Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags | |
505 | 8 | |a Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings | |
630 | 0 | 0 | |a Django (Electronic resource) |0 http://id.loc.gov/authorities/names/n2008003529 |
630 | 0 | 7 | |a Django (Electronic resource) |2 fast |
650 | 0 | |a Web site development. |0 http://id.loc.gov/authorities/subjects/sh98004795 | |
650 | 6 | |a Sites Web |x Développement. | |
650 | 7 | |a COMPUTERS |x Web |x Design. |2 bisacsh | |
650 | 7 | |a Web site development |2 fast | |
776 | 0 | 8 | |i Erscheint auch als: |n Druck-Ausgabe |
830 | 0 | |a Quick answers to common problems. |0 http://id.loc.gov/authorities/names/no2015091434 | |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163377 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n AH30053563 | ||
938 | |a EBSCOhost |b EBSC |n 1163377 | ||
938 | |a ProQuest MyiLibrary Digital eBook Collection |b IDEB |n cis33698659 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-ocn936630063 |
---|---|
_version_ | 1816882338482618368 |
adam_text | |
any_adam_object | |
author | Bendoraitis, Aidas |
author_facet | Bendoraitis, Aidas |
author_role | aut |
author_sort | Bendoraitis, Aidas |
author_variant | a b ab |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | T - Technology |
callnumber-label | TK5105 |
callnumber-raw | TK5105.888 |
callnumber-search | TK5105.888 |
callnumber-sort | TK 45105.888 |
callnumber-subject | TK - Electrical and Nuclear Engineering |
collection | ZDB-4-EBA |
contents | Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings |
ctrlnum | (OCoLC)936630063 |
dewey-full | 005.72 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.72 |
dewey-search | 005.72 |
dewey-sort | 15.72 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | Second edition. |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>08528cam a2200637 a 4500</leader><controlfield tag="001">ZDB-4-EBA-ocn936630063</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr |n|||||||||</controlfield><controlfield tag="008">160205s2016 enk o 001 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">IDEBK</subfield><subfield code="b">eng</subfield><subfield code="e">pn</subfield><subfield code="c">IDEBK</subfield><subfield code="d">N$T</subfield><subfield code="d">UMI</subfield><subfield code="d">TEFOD</subfield><subfield code="d">OCLCF</subfield><subfield code="d">TEFOD</subfield><subfield code="d">VT2</subfield><subfield code="d">DEBSZ</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">DEBBG</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">CEF</subfield><subfield code="d">NLE</subfield><subfield code="d">UKMGB</subfield><subfield code="d">MQY</subfield><subfield code="d">UAB</subfield><subfield code="d">G3B</subfield><subfield code="d">IGB</subfield><subfield code="d">UKAHL</subfield><subfield code="d">RDF</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">QGK</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield><subfield code="d">TMA</subfield><subfield code="d">OCLCQ</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBB6G3484</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018010586</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">939394726</subfield><subfield code="a">1259057025</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1785881329</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781785881329</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781785886775</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">1785886770</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)936630063</subfield><subfield code="z">(OCoLC)939394726</subfield><subfield code="z">(OCoLC)1259057025</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">892673</subfield><subfield code="b">MIL</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">TK5105.888</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">060130</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.72</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Bendoraitis, Aidas,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Web development with Django cookbook :</subfield><subfield code="b">over 90 practical recipes to help you create scalable websites using the Django 1.8 framework /</subfield><subfield code="c">Aidas Bendoraitis.</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">Second edition.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2016.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (384).</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="347" ind1=" " ind2=" "><subfield code="a">text file</subfield></datafield><datafield tag="490" ind1="1" ind2=" "><subfield code="a">Quick answers to common problems</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Online resource; title from PDF title page (EBSCO, viewed March 17, 2016).</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Includes index.</subfield></datafield><datafield tag="520" ind1="8" ind2=" "><subfield code="a">Annotation</subfield><subfield code="b">Over 70 practical recipes to help you create scalable websites using the Django 1.8 frameworkAbout This Book This is the latest book on the market that will help you take advantage of the new features added to Django 1.8 This book consists of recipes of varying complexities to help you create multilingual, responsive, and scalable websites with Django This updated edition teaches you major Django functions and will help you improve your skills by developing models, forms, views, and templatesWho This Book Is ForThis book is for intermediate-level and professional Django users who need to build projects that are multilingual, functional on devices of different screen sizes, and that scale over a period of time. If you have created websites with Django but you want to sharpen your knowledge and learn some good approaches to different aspects of web development, you should definitely read this book. What You Will Learn Get started with the basic configuration necessary to start any Django project Build a database structure out of reusable model mixins Manage forms and views and get to know some useful patterns that are used to create them Create handy template filters and tags that you can reuse in every project Integrate your own functionality into the Django CMS Manage hierarchical structures with MPTT Import data from local sources and external web services as well as exporting your data to third parties Implement a multilingual search with Haystack Test and deploy your project efficientlyIn DetailDjango is a web framework that was designed to strike a balance between rapid web development and high performance. It has the capacity to handle applications with high levels of user traffic and interaction, and can integrate with massive databases on the backend, constantly collecting and processing data in real time. Through this book, you'll discover that collecting data from different sources and providing it to others in different formats isn't as difficult as you thought. It follows a task-based approach to guide you through all the web development processes using the Django framework. We'll start by setting up the virtual environment for a Django project and configuring it. Then you'll learn to write reusable pieces of code for your models and find out how to manage database schema changes using South migrations. After that, we'll take you through working with forms and views to enter and list data. With practical examples on using templates and JavaScript together, you will discover how to create the best user experience. In the final chapters, you'll be introduced to some programming and debugging tricks and finally, you will be shown how to test and deploy the project to a remote dedicated server. By the end of this book, you will have a good understanding of the new features added to Django 1.8 and be an expert at web development processes. Style and approachEvery chapter consists of practical examples and a mix of basic and advanced recipes that will guide you through the entire web development process, starting from project configuration and taking you right through to deployment.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings</subfield></datafield><datafield tag="630" ind1="0" ind2="0"><subfield code="a">Django (Electronic resource)</subfield><subfield code="0">http://id.loc.gov/authorities/names/n2008003529</subfield></datafield><datafield tag="630" ind1="0" ind2="7"><subfield code="a">Django (Electronic resource)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Web site development.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh98004795</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Sites Web</subfield><subfield code="x">Développement.</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Web</subfield><subfield code="x">Design.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Web site development</subfield><subfield code="2">fast</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Erscheint auch als:</subfield><subfield code="n">Druck-Ausgabe</subfield></datafield><datafield tag="830" ind1=" " ind2="0"><subfield code="a">Quick answers to common problems.</subfield><subfield code="0">http://id.loc.gov/authorities/names/no2015091434</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163377</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH30053563</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">1163377</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ProQuest MyiLibrary Digital eBook Collection</subfield><subfield code="b">IDEB</subfield><subfield code="n">cis33698659</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-ocn936630063 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:27:02Z |
institution | BVB |
isbn | 1785881329 9781785881329 |
language | English |
oclc_num | 936630063 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (384). |
psigel | ZDB-4-EBA |
publishDate | 2016 |
publishDateSearch | 2016 |
publishDateSort | 2016 |
publisher | Packt Publishing, |
record_format | marc |
series | Quick answers to common problems. |
series2 | Quick answers to common problems |
spelling | Bendoraitis, Aidas, author. Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / Aidas Bendoraitis. Second edition. Birmingham : Packt Publishing, 2016. 1 online resource (384). text txt rdacontent computer c rdamedia online resource cr rdacarrier text file Quick answers to common problems Online resource; title from PDF title page (EBSCO, viewed March 17, 2016). Includes index. Annotation Over 70 practical recipes to help you create scalable websites using the Django 1.8 frameworkAbout This Book This is the latest book on the market that will help you take advantage of the new features added to Django 1.8 This book consists of recipes of varying complexities to help you create multilingual, responsive, and scalable websites with Django This updated edition teaches you major Django functions and will help you improve your skills by developing models, forms, views, and templatesWho This Book Is ForThis book is for intermediate-level and professional Django users who need to build projects that are multilingual, functional on devices of different screen sizes, and that scale over a period of time. If you have created websites with Django but you want to sharpen your knowledge and learn some good approaches to different aspects of web development, you should definitely read this book. What You Will Learn Get started with the basic configuration necessary to start any Django project Build a database structure out of reusable model mixins Manage forms and views and get to know some useful patterns that are used to create them Create handy template filters and tags that you can reuse in every project Integrate your own functionality into the Django CMS Manage hierarchical structures with MPTT Import data from local sources and external web services as well as exporting your data to third parties Implement a multilingual search with Haystack Test and deploy your project efficientlyIn DetailDjango is a web framework that was designed to strike a balance between rapid web development and high performance. It has the capacity to handle applications with high levels of user traffic and interaction, and can integrate with massive databases on the backend, constantly collecting and processing data in real time. Through this book, you'll discover that collecting data from different sources and providing it to others in different formats isn't as difficult as you thought. It follows a task-based approach to guide you through all the web development processes using the Django framework. We'll start by setting up the virtual environment for a Django project and configuring it. Then you'll learn to write reusable pieces of code for your models and find out how to manage database schema changes using South migrations. After that, we'll take you through working with forms and views to enter and list data. With practical examples on using templates and JavaScript together, you will discover how to create the best user experience. In the final chapters, you'll be introduced to some programming and debugging tricks and finally, you will be shown how to test and deploy the project to a remote dedicated server. By the end of this book, you will have a good understanding of the new features added to Django 1.8 and be an expert at web development processes. Style and approachEvery chapter consists of practical examples and a mix of basic and advanced recipes that will guide you through the entire web development process, starting from project configuration and taking you right through to deployment. Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings Django (Electronic resource) http://id.loc.gov/authorities/names/n2008003529 Django (Electronic resource) fast Web site development. http://id.loc.gov/authorities/subjects/sh98004795 Sites Web Développement. COMPUTERS Web Design. bisacsh Web site development fast Erscheint auch als: Druck-Ausgabe Quick answers to common problems. http://id.loc.gov/authorities/names/no2015091434 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163377 Volltext |
spellingShingle | Bendoraitis, Aidas Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / Quick answers to common problems. Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings Django (Electronic resource) http://id.loc.gov/authorities/names/n2008003529 Django (Electronic resource) fast Web site development. http://id.loc.gov/authorities/subjects/sh98004795 Sites Web Développement. COMPUTERS Web Design. bisacsh Web site development fast |
subject_GND | http://id.loc.gov/authorities/names/n2008003529 http://id.loc.gov/authorities/subjects/sh98004795 |
title | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / |
title_auth | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / |
title_exact_search | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / |
title_full | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / Aidas Bendoraitis. |
title_fullStr | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / Aidas Bendoraitis. |
title_full_unstemmed | Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / Aidas Bendoraitis. |
title_short | Web development with Django cookbook : |
title_sort | web development with django cookbook over 90 practical recipes to help you create scalable websites using the django 1 8 framework |
title_sub | over 90 practical recipes to help you create scalable websites using the Django 1.8 framework / |
topic | Django (Electronic resource) http://id.loc.gov/authorities/names/n2008003529 Django (Electronic resource) fast Web site development. http://id.loc.gov/authorities/subjects/sh98004795 Sites Web Développement. COMPUTERS Web Design. bisacsh Web site development fast |
topic_facet | Django (Electronic resource) Web site development. Sites Web Développement. COMPUTERS Web Design. Web site development |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163377 |
work_keys_str_mv | AT bendoraitisaidas webdevelopmentwithdjangocookbookover90practicalrecipestohelpyoucreatescalablewebsitesusingthedjango18framework |