Tobias von Klipstein

Results 14 issues of Tobias von Klipstein

Just wanted to let you know that I've integrated cabbie into a project called [kommando](https://github.com/uxebu/kommando) today (https://github.com/uxebu/kommando/commit/ecf44a09de9713827e26feea27546eb95080c548) and cabbie makes writing / reading selenium tests much easier than any other...

IE8 in standards mode collapses images within the media plugin when max-width is defined on images. The following page showcases the problem and offers a solution: http://jsbin.com/imuni6/edit#preview A fix for...

Taken from a well discussed thread on google group: http://groups.google.com/group/dojango-users/browse_thread/thread/8a8b14f1390f57b0/7595dff267806bcb?#7595dff267806bcb What steps will reproduce the problem? 1.) pull data from a ModelStore into an ItemFileReadStore (works) 2.) dojo pulls a...

I have created a custom field, by subclassing db.models.CharField, which provides its own formfield-method, which points to a custom form field, using the method described here: http://docs.djangoproject.com/en/dev/howto/custom-model-fields/#specifying-the-form-field-for-a-model-field But my method...

What steps will reproduce the problem? 1. Upgrade Django to at least r15304 2. In your template include "dojango/include.html" What is the expected output? What do you see instead? DOJANGO...

Problem occours when we have MultiValueField with required=True. MultiValueField sets required=False on every field it aggregates (in **init**()). Then during validation, on every field it aggregates, it uses MultiValueField.required to...

A lot of the times, I want to serialize an object, but not send all of its properties. This becomes cumbersome with Django models. There should be some way to...

The _build_args method in dojango/data/modelstore/methods.py seems to overwrite self.args in the StoreMethod used in the StoreField: ``` args = [] for arg in self.args: try: arg = self.field.proxied_args.get(arg.__name__, arg) except...

Hi! I had a need for the tag mentioned in the TODO comment in templatetags/dojango_base.py, so I implemented it. I have never written a template tag before, so I just...

What steps will reproduce the problem? 1. Add the dojo.require function calls at the end of the body tag by looping through the DOJANGO.COLLECTOR variable. 2. Open the page in...