Troy Grosfield

Results 19 issues of Troy Grosfield

I don't think this repo is setup correctly in travis-ci. When I go to look at the test runs, this is what I see: https://travis-ci.org/matthewwithanm/django-imagekit/

The line height isn't being calculated correctly for `ImageDraw's multiline_text()` function [1]. It's making an assumption that a capital "A" is as large as the font can be. However, if...

Bug
Conversion

I don't currently see a way for inline checkboxes: - http://getbootstrap.com/css/#forms-controls Any way we can get that support added. Also, allowing the ability to pass a class to the top...

Here's the script that was used for the test: ``` python from datetime import datetime from bootstrapform.templatetags.bootstrap import bootstrap from django import forms class SomeTestForm(forms.Form): field_1 = forms.CharField(max_length=20) field_2 =...

Currently, I don't believe there's a way to output fieldsets. This would help make the markup more flexible.

Currently, form rendering doesn't add the csrf token when rendering forms if you have django's CsrfViewMiddleware installed. It's kind of a pain in the butt to have to add that...

The warning message on the readme makes it sound like this project is no longer being maintained or needed (at all) by django apps running celery. I'm not sure if...

The bower.json file for this repo says it's named `jquery-fullscreen-plugin`. When I go to bower to search for it, I see: ![screen shot 2015-06-01 at 1 48 34 pm](https://cloud.githubusercontent.com/assets/1551551/7921819/557a093c-0865-11e5-838d-fa68e1962618.png) Which...

A common use case for the SQL query panel is to check and see if you're running over a loop in your code which is causing many queries over the...

Feature

Receiving the following warning which shouldn't be there in django 1.8: > Required context processor django_facebook.context_processors.facebook wasnt found The `TEMPLATE_CONTEXT_PROCESSORS` setting is deprecated starting in django 1.8: - https://docs.djangoproject.com/en/1.8/ref/settings/#template-context-processors It...