| Django 1.0 released! |
Sept. 5, 2008, 10:50 a.m. |
|
Django 1.0 released! - hat lange gedauert, aber das kann ja durchaus der Qualität zuträglich sein. Und hier ist es das. Gratulation!
|
| Django, Programmierung, Python |
| Django on Jython: It's here! |
Aug. 14, 2008, 12:47 p.m. |
|
Django on Jython: It's here! - klasse! Damit wird Java als Plattform wieder interessanter für mich - die Fortschritte in Jython in den letzten Monaten sind gigantisch.
|
| Django, Programmierung, Python |
| Django snippets: MintCache |
Feb. 25, 2008, 10:29 a.m. |
|
Django snippets: MintCache - interessante Idee um den "Dogpile-Effect" zu vermeiden: wenn die Regenerierung von Daten länger dauert, als neue Requests kommen, stapeln sich die Requests die eine Regenerierung von alten Daten anstossen, und dadurch wird die Generierungszeit noch länger. Diese Cache-Idee stösst beim ersten Zugriff auf veraltete Daten die Regenerierung an, liefert allen anderen aber einfach die bisherigen alten Daten aus, und vermeidet so die mehrfache Neugenerierung und den damit verbundenen nervigen Lasteffekt.
|
| Django, Programmierung, Python |
| The Django Book |
Nov. 2, 2006, 12:02 p.m. |
|
The Django Book - progressive Beta-Releases der Django-Buch-Kapitel im Web (mit Angaben wann die Kapitel online gehen).
|
| Django, Programmierung, Python |
| Introducing Django 0.95 |
July 31, 2006, 12:03 p.m. |
|
Introducing Django 0.95 - neue Django-Release raus. Magic removed.
|
| Django, Programmierung, Python |
| Generische Tabellenrelationen |
June 19, 2006, 12:06 p.m. |
|
Generische Tabellenrelationen für Django. Sehr interessant, das macht Sachen wie Tags in Datenmodellen wesentlich einfacher. Ich müsste damit einiges aus meiner Stuff-Library loswerden können.
|
| Django, Programmierung, Python |
| Are you generic? |
May 22, 2006, 1:37 p.m. |
|
Are you generic? - Wilson Miner beschreibt wie er als Nicht-Programmierer mit Django und dessen einfachen generischen Viewfunktionen Anwendungen ohne Programmiererhilfe selber erstellen kann.
|
| Django, Programmierung |
| Django for non-programmers |
May 6, 2006, 1:12 p.m. |
|
Django for non-programmers - Django aus der Sicht eines Webdesigners.
|
| Django, Programmierung, Python |
| Django | Weblog | "magic-removal" branch merged |
May 2, 2006, 10:14 p.m. |
Django Weblog "magic-removal" branch merged - gaaaah. Arbeit. Mist.
|
| Django, Programmierung, Python |
| London 2.0 RC 4 - Monday 3rd April |
Feb. 25, 2006, 5:03 p.m. |
| At least they get it right this time and announce early: London 2.0 RC 4 - Monday 3rd April. Hey, if adrian_h is dropping in, that would definitely be an incentive for me to hop over to London (it's just something like 7-9 hours by train from my hometown) and join in Now I only have to check wether ... |
| Django |
| Django Templates are not limited |
Feb. 9, 2006, 11:33 p.m. |
| shannon -jj behrens thinks that Django template language is limited - because it doesn't have functions with parameters to do html snippet reuse. Of course the official - and simplified - answer to this is, that Djangos template language is that simple by design, so that it can easily be learned by ... |
| Django, Programmierung, Python |
| Django Paste |
Jan. 13, 2006, 11:59 a.m. |
|
Django Paste - Ian ist starting to integrate Django with paste (and paste deploy). I for one will most definitely try to support that, so his list of related tickets is already down by one. Paste deploy might even be taken as the future default FCGI/SCGI solution - because it uses the same FLUP lib, it is as capable as my scripts, but due to the structure of Paste, installation should be much easier (and might even be standard in the future with Python hosters).
|
| Django, Programmierung, Python |
| jacobian.org : Django performance tips |
Dec. 13, 2005, 9:56 a.m. |
|
jacobian.org : Django performance tips - Jacob, einer der Dango Core-Devs schreibt über Performance-Tuning für Django Applikationen. Deckt sich stark mit meinen Erfahrungen.
|
| Django, PostgreSQL, Python, Sysadmin |
| setting user passwords in admin |
Dec. 9, 2005, 12:56 p.m. |
| A rather ugly - but still useful - monkeypatch: # monkey-patch for auth.users from django.models.auth import User def user_pre_save(self): if not self.password.startswith('sha1$'): self.set_password(self.password) User._pre_save = user_pre_save Put this into your model file (or somewhere else that ... |
| Django, Programmierung |
| Weblog-Umzug |
Dec. 6, 2005, 7:44 p.m. |
| Tja, also jetzt ist es soweit - ich werde mein Weblog hier auf die neue Software umziehen - endlich kein PHP mehr für mein Haupt-Blog. Im Moment laufen noch beide Systeme getrennt, ich synchronisiere nur die Inhalte auf das neue Blog, in den nächsten Tagen werde ich aber hier einen Redirector ... |
| Blogging, Django |
| Mal wieder was von der Bastelfront |
Nov. 29, 2005, 11:38 p.m. |
| Content-type: matter-transport/sentient-life-form - für die, die mal schnuppern wollen, wo es mit meinem Blog hingehen wird. Noch nicht ganz fertig, einige Bugs in meiner Software, ein paar Sachen warten auf Patches in Django, aber im grossen und ganzen bin ich schon ganz zufrieden. post a comment ... |
| Django, Programmierung, Python |
| JobControl - Django Projects - Trac |
Nov. 27, 2005, 11:12 p.m. |
|
JobControl - Django Projects - Trac - ein einfaches Jobsteuerungssystem für Django, mit dem man Hintergrundjobs einstellen kann.
|
| Django, Python |
| Manches ärgert mich fürchterlich |
Nov. 14, 2005, 6:31 p.m. |
| Zum Beispiel, wenn Umlaute nicht sauber verarbeitet werden - wie bei dem prepopulatefrom bei Django. Daher benutze ich das einfach nicht mehr in meinem CMSProject, sondern fülle den Slug einfach im presave. Und lasse dann dort eine entsprechende Routine laufen. Wobei auch diese nicht wirklich ... |
| Django, Python, Umlaute |
| A Test Framework for Django |
Oct. 31, 2005, 12:59 p.m. |
| DjangoTesting is part of my DjangoStuff project and is the start of a testing framework for Django, modeled after the testing framework that Ruby on Rails provides. Currently only model tests are implemented, request/response tests are planned. The testing framework is built solely on unittest and ... |
| Django, Programmierung, Python |
| Case/When/Otherwise for Django |
Oct. 30, 2005, 1:04 p.m. |
| If you have any evil plans for a switch statement for Django (hia rjwittams! ;-)), you might want to look into my TagLib. There is a case/when/otherwise statement in there. It's quite easy to use: {% case variable %} {% when "value1" %} {% endwhen %} {% when "value2" %} {% endwhen %} {% otherwise %} ... |
| Django, Programmierung, Python |
| Adhoc-Organization in CM-Systems |
Oct. 28, 2005, 10:21 p.m. |
| Adhoc organization is what I named the basic design decisions for my new content management system (blog system, personal wiki, digital image shoebox - whatever). It's coming along nicely, even though up to now I only used it as a sample application to make use of my little tools from the ... |
| Django, Programmierung, Python |
| Markdown for Django |
Oct. 26, 2005, 8:02 p.m. |
| Django already includes a markdown filter (in contrib.markup), but I nonetheless rolled my own Markdown for Django mini-app. The main benefits are link integration with django models (by using generic model queries and getabsoluteurl), a documentation generic view that handles language switching and ... |
| Django, Programmierung, Python |
| "Fitting on" some framework |
Oct. 26, 2005, 2:05 a.m. |
| How do you know wether a framework fits your style of thinking? It's not as if you could just look into a mirror wether it suits you nicely, you need other ways to decide that. One way to decide it is productivity - how fast you get your project up and running. But does that really tell you the ... |
| Django, Programmierung, Python |
| generic search service for Django |
Oct. 23, 2005, 11:11 p.m. |
| If your Django application needs searching capabilities, you can roll your own. Or you can use my generic search view. This provides a parser for queries and a search machinery that is suiteable for moderate database sizes. It provides an extensible google-like syntax. The main problem is that ... |
| Django, Programmierung, Python |
| very simple view functions |
Oct. 22, 2005, 1:11 a.m. |
| Sometimes you have a bunch of really simple view functions in your django project (yes, this is for your, bitprophet! ;-)). View functions that are actually not more than just a rendertoresponse call - take a template, take some data from the request, stuff them in and render a response. It's rather ... |
| Django, Programmierung, Python |
| Module Hacking for Django |
Oct. 21, 2005, 9:31 p.m. |
| Django itself constructs model modules dynamically from your model classes. That's what I used in my first take at the abstract tagging application. Now I found a better way in the current version - I can modify the dynamic module myself quite easily, generate a dynamic model class and push that ... |
| Django, Programmierung, Python |
| Tagging with Django |
Oct. 19, 2005, 4:47 p.m. |
| Since the question about how to do tagging with Django shows up quite often, I have written a small solution to this problem: AbstractTagging. This is a generic application and generic views that give you a very simple solution to add tagging to any model you have in your django apps. It's currently ... |
| Django, Programmierung, Python |
| Using Django as a CMS |
Oct. 16, 2005, 3:44 p.m. |
| I am currently reworking one of my sites - Content-type: matter-transport/sentient-life-form. It was a Apache::MiniWiki based site before and is now in the transition to being a Django based site. The idea of the code for that site is to build a CMS based on Django that fully uses the Django admin. ... |
| Django, Programmierung, Python |
| Django i18n status |
Oct. 11, 2005, 4:29 p.m. |
| I worked a bit more on the i18n stuff in django today and finally switched my gallery to the i18n branch. You can now see the strings on that site with either english or german settings. Other languages get english output (so if you are in Germany and still see english strings - check the language ... |
| Django, Programmierung, Python |
| IRC Logger update |
Oct. 4, 2005, 9:45 p.m. |
| The IRC logger is working fine, but I wasn't happy with the dependence on muh - so I wrote my own little logger bot in python, based on irclib. Does work fine and does only what I want it to do - logging. I allways feel a bit queasy when IRC bots have command structures and stuff like that and I ... |
| Django, Programmierung, Python |
| IRC logger for #django |
Oct. 2, 2005, 2:59 p.m. |
| There now is a IRC logger for #django on freenode.net. Ever since the loglibrary broke down, I thought about rolling my own. So I started to build the stuff needed for an IRC logger. The interface itself is written with django, of course :-) As allways, the source is available in my trac instance. ... |
| Django, Programmierung, Python |
| i18n and django |
Sept. 29, 2005, 7:27 p.m. |
| Jacob did set up branch commit rights for me and a branch for i18n stuff. So I worked today on the ideas in the patch on ticket 65 by nesh. I did write the stuff mostly from scratch because I wanted some things a bit differently and now it is available for testing. So first on how you can use the ... |
| Django, Programmierung, Python |
| Routes für Python |
Sept. 27, 2005, 2:05 p.m. |
| Sehr interessant: Ben Bangert hat Routes für Python portiert. Routes ist der Kern des Mappings von URLs auf Funktionen und zurück der in Ruby on Rails benutzt wird. Also ein allgemeiner Mechanismus mit dem aus einer URL ein Python-Objekt und aus einem Python-Objekt seine URL ermittelt werden kann ... |
| Django, Programmierung, Python |
| DjangoScgi - Django Projects - Trac |
Sept. 15, 2005, 5:07 p.m. |
| Django with Apache and SCGI and Django with Apache and FCGI are two reworked documentations on how to get Django running with both FCGI and SCGI under Apache. I use the same parts as with my previous howtos, only that now SCGI is supported, too. My gallery is currently running the Apache+SCGI setup, ... |
| Django, Python, Sysadmin |
| Django Gallery Status |
Sept. 6, 2005, 5:25 p.m. |
| Again news from my gallery project - it's making good progress, even if some of my latest stuff isn't directly visible. I did a lot of reworking in the code and a lot of admin interface changes. Things in the source that might be interesting for other djangonistas: I still have a fully filesystem ... |
| Django, Programmierung, Python |
| News from the Gallery project |
Aug. 27, 2005, 1:43 a.m. |
| News from my Django Gallery project: it's coming along nicely. If you want sample code for AJAX with Django or XML-RPC with Django - look into it's source. I implemented parts of the blogger API, metaWeblog API and MoveableType API - just enough so that Photon can post pictures to my gallery. AJAX ... |
| Django, Programmierung, Python |
| DjangoGallery - sample app with sample installation |
Aug. 20, 2005, 2:41 p.m. |
| Mal wieder englisch, da auch für #django interessant I have uploaded the source and made available the repository and a trac instance for my django projects. The first one that's there is the DjangoGallery - that's what I am using at viele-bunte-bilder.de. I have written a first take at an ... |
| Django, Programmierung, Python |
| erste Django-Anwendung life |
Aug. 19, 2005, 9:44 p.m. |
| So, meine erste Django-Anwendung ist life - noch nicht fertig, aber im Moment schon mal so gut, das sie besser ist als das alte PHP-Gemölter das da vorher lief. Und zwar gehts hier um meine Bildergalerie unter viele-bunte-bilder.de. Im Moment gibts zwar die Benutzerregistrierung und alles was damit ... |
| Django, Programmierung, Python |
| CRUD mit Django |
Aug. 17, 2005, 2:51 p.m. |
| Create, Read, Update, Delete - die Standardfunktionen klassischer Interfaces - kann man mit Django sehr einfach zusammenbauen. Dazu gibt es die Generic Views. Auf Postneo gibts jetzt ein CRUD Tutorial, welches zeigt wie simpel solche Oberflächen mit Django zusammengestellt werden können. post a ... |
| Django, Programmierung, Python |
| anonyme Sessions |
Aug. 17, 2005, 10:18 a.m. |
|
Django hat einen wichtigen Schritt für den Release 1.0 gemacht: anonyme Sessions. Bisher waren ja Sessions bei Django an eine Benutzeranmeldung gekoppelt, aber jetzt gehts auch ohne Registrierung. Wesentlich netter als tausende Cookies beim Benutzer zu erzeugen.
|
| Django, Programmierung, Python |
| A comparison of Django with Rails |
Aug. 16, 2005, 4:21 p.m. |
|
A comparison of Django with Rails ist ein recht guter Vergleich von Rails und Django. Wobei Vergleich bei zwei Systemen die durchaus unterschiedliche Themen adressieren natürlich recht schwierig ist - aber der Artikel versucht zumindestens die beiden Frameworks gegeneinander zu positionieren.
|
| Django, Programmierung |
| Django, Apache and FCGI |
Aug. 3, 2005, 6:03 p.m. |
| In Django, lighttpd and FCGI, second take I described a method how to run Django with FCGI behind a lighttpd installation. I did run the Django FCGIs as standalone servers so that you can run them under different users than the webserver. This document will give you the needed information to do the ... |
| Apache, Django, Sysadmin |
| Mal wieder neues bei Django |
Aug. 3, 2005, 12:53 a.m. |
| Neues gibts da ja dauernd, aber diesmal wieder ein sehr interessantes Feature: das inspectdb Kommando liefert nämlich aus einer PostgreSQL Datenbank die ganzen Tabellen und Felder im Format eines Python Datenmodells. Zusätzlich werden - sofern in der Datenbank abgelegt - auch Fremdschlüssel ... |
| Django, Programmierung, Python |
| Writing a Simple Filesystem Browser with Django |
July 31, 2005, 1:51 a.m. |
| Dieser Artikel ist mal wieder in Englisch, da er auch für die Leute auf #django interessant sein könnte. This posting will show how to build a very simple filesystem browser with Django. This filesystem browser behaves mostly like a static webserver that allows directory traversal. The only ... |
| Django, Programmierung, Python, Texte |
| Leichen im Keller |
July 29, 2005, 12:34 a.m. |
| Jede Software hat sie - irgendwelche Leichen im Keller die anfangen zu stinken wenn man sie findet. Django leider auch. Und zwar die Behandlung von Unicode. Der automatisch generierte Admin in Django schickt immer XHTML und utf-8 raus an den Browser. Die Browser schicken daher auch utf-8 zurück. ... |
| Django, Programmierung, Python |
| Django, lighttpd and FCGI, second take |
July 27, 2005, 1:27 p.m. |
| In my first take at this stuff I gave a sample on how to run django projects behind lighttpd with simple FCGI scripts integrated with the server. I will elaborate a bit on this stuff, with a way to combine lighttpd and Django that gives much more flexibility in distributing Django applications over ... |
| Django, Programmierung, Python, Sysadmin, Texte |
| es gibt Tage da hasst mein Computer mich |
July 26, 2005, 10:35 p.m. |
| Zum Beispiel wenn ich mit Flup spiele und statt des threaded Servers einen forked Server nehmen will. Und feststelle, das der dann aber die Funktion socketpair benötigt. Die aber dummerweise nur ab Python 2.4 verfügbar ist, welches zwar auf Debian Sarge da ist, aber dafür gibts in der Debian ... |
| Debian, Django, Python, Sysadmin |
| Running Django with FCGI and lighttpd |
July 26, 2005, 12:04 p.m. |
| Diese Dokumentation ist für einen grösseren Kreis als nur .de gedacht, daher das ganze in NeuwestfälischEnglisch. Sorry. Update: I maintain the actually descriptions now in my trac system. See the FCGI+lighty description for Django. There are different ways to run Django on your machine. One way ... |
| Django, Programmierung, Python, Sysadmin, Texte |
| Und wieder mal Django |
July 22, 2005, 11:20 a.m. |
| Django - das kommende Webframework für Python - hat jetzt [SQLite 3 Support][0]. Damit ist eine Installation einer Entwicklungsumgebung für Django-Projekte jetzt extrem simpel geworden: Python 2.3 oder Python 2.4 muss da sein und ansonsten noch SQLite3 und PySQLite2. Auf dem Mac ist also im ... |
| Django, Programmierung, Python |
| Erste Django Tutorials online |
July 17, 2005, 10:47 a.m. |
| Die Django-Programmierer legen mit den Tutorials los. Das erste Tutorial beschäftigt sich primär mit der Erstellung des Datenbankmodells und des Grundcodes für die zu verwaltenden Objekte und das zweite Tutorial beschäftigt sich mit der automatisch generierten Administrationsoberfläche. Sehr ... |
| Apache, Debian, Django, Programmierung, Python |
| Django - neues Webframework für Python |
July 15, 2005, 8:21 p.m. |
| Mal wieder ein weiteres Web-Framework für Python, diesmal mit dem markigen Namen Django. Ich bin zwar skeptisch was weitere Webframeworks angeht - gibt schon haufenweise, und ich muss gestehen das ich zu dem einen oder anderen auch was beigetragen habe - aber dieses bietet einige interessante ... |
| Django, Programmierung, Python |