Here are a couple of comments on your slides:

1. Slide: "web2py and j2ee are the only frameworks that allow to byte
code compile applications and distribute them in closed source."

You can distribute Django applications too with just the .pyc/.pyo
compiled files instead of the .py sources. Furthermore, pre-compiling
any Python app takes only a couple of lines of code in a Python shell:
http://effbot.org/librarybook/compileall.htm

2. Slide: "Left Outer Joins: Django: no"

Left outer joings are possible via Django's custom Q objects
interface. See: 
http://blog.michaeltrier.com/2007/8/12/finding-lookup-items-that-are-not-used

So, your slide should say something like: "Yes: via a custom Q
object".

-Rajesh D

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to