
deseb - Google Code WARNING: This is been unmaintained for several years. I have no idea if it works with more current versions of Django. Co-maintainers welcome! Django, via the command . destroy your existing schema (along with all your data) and let . Project deseb aims to fill this void by providing s third option: generate schema upgrades via the command: . Look at usage and a sample run. django-0.96.1 or latest django trunk or django-newforms-admin branch Worked with mysql 5.0 and postgresql 8.2. PostgreSQL: The world's most advanced open source database Zinnia - Django Weblog django-command-extensions - Google Code This is a repository for collecting global custom management extensions for the Django Framework. The easiest way to figure out what Django Extensions are all about is to watch the excellent screencast by Eric Holscher. In a couple minutes Eric walks you through a half a dozen command extensions. Once you've done that check out our InstallationInstructions. Enjoy. create_app - creates an application directory structure for the specified app name.
Nathan's Revit API Notebook <<< Return to the Program Lab This page is my personal diary for exploring the API for Revit and Vasari. This page is as much a resource for me as I hope it will be for others. Developing custom tools for Revit using the API can be a complicated endeavor. This notebook attempts to remedy a few 'resource deficiencies' in learning and applying the Revit API in the context of a design workflow… Design-Related Techniques: Most API examples I have found on the web are related to model management. My hope is that this will save designers time in being productive with the Revit API and perhaps contribute to the creation of a more serious 'scripting culture' around Revit and BIM tools in general…. This is still work in progress and I am learning new things every day. Enjoy! -Nathan Miller SharpDevelop is a free, open source integrated development environment (IDE) and is a great alternative to Microsoft Visual Studio environments. About RevitPythonShell is a Revit Add-In created by Daren Thomas.
Haystack - Search for Django robhudson's django-debug-toolbar at master — GitHub Migrating your Django Project to Heroku In this tutorial, we'll be taking a simple local Django project, backed by a MySQL database, and converting it to run on Heroku. Amazon S3 will be used to host our static files, while Fabric will automate the deployment process. The Project is a simple message system. It could be a todo app or a blog or even a Twitter clone. To simulate a real-live scenario, the Project will first be created with a MySQL backend, then converted to Postgres for deployment on Heroku. I've personally had five or six projects where I've had to do this exact thing: convert a local Project, backed with MySQL, to a live app on Heroku. Setup Pre-requisites: Read the official Django Quick Start guide over at Heroku. Let's begin: Convert from MySQL to Postgres Note: In this hypothetical situation, let's pretend that you have been working on this Project for a while using MySQL and now you want to convert it to Postgres. Add a local_settings.py file We need to make three changes to our current settings.py file: Amazon S3
DjangoOnWindowsWithIISAndSQLServer - Django - Trac Goals ¶ Getting Django to run on Windows, with pages served by IIS, and a SQL Server backend. Assume Windows Server 2003, IIS 6 and SQL Server 2005 where no versions are specified. You should already have Windows, IIS and SQL installed and working before following this guide. Note: As of PyISAPIe version 1.0.4, this works with Python 2.5. Note2: PyISAPIe also provides a WSGI adapter that may work with earlier versions of Django. Note3: This article is outdated. Note4: While the site listed as part of note 3 puts forth a solution, the tutorial is missing steps and relies on a closed solution. Steps ¶ Install Python Install PyISAPIe - an extension for IIS to connect Python with IIS Install Django and connect Django to PyISAPIe ADODB-API - the Python / SQL Server driver Configure Django to look at SQL Server Test, celebrate Install Python ¶ A simple download and install for this bit, so open and look for "Quick Links" -> "Windows Installer" in the menu on the left.
Usage — django-floppyforms dev documentation Forms¶ Floppyforms are supposed to work just like Django forms: import floppyforms as forms class ProfileForm(forms.Form): name = forms.CharField() email = forms.EmailField() url = forms.URLField() With some template code: <form method="post" action="/some-action/"> {% csrf_token %} {{ form.as_p }} <p><input type="submit" value="Yay!" The form will be rendered using the floppyforms/layouts/p.html template. Each field has a default widget and widgets are rendered using templates. Default templates are provided and their output is relatively similar to Django widgets, with a few minor differences: HTML5 <input> types are supported: url, email, date, datetime, time, number, range, search, color, tel.The required and placeholder attributes are also supported. Widgets are rendered with the following context variables: hidden: set to True if the field is hidden.required: set to True if the field is required.type: the input type. Some widgets may provide extra context variables and extra attributes:
sleepy-django - Google Code What is Sleepy? Sleepy, allows you to create a static site by rendering Django templates to HTML. Why? This allows for, easy prototyping and easier creation of static websites, where the whole workhorse of Django is not needed. You are allowed to use all of Django's builtin tags and filters. If you want more, you can always move to the actual Django, since the templates are totally compatible. How? You can start a new project by typing: sleepy.py --startproject=myfunsite Add your templates in there, when you're ready you can compile them by doing: sleepy.py --make And voila!