John Louis Del Rosario
John Louis Del Rosario
We ran into an issue when deleting a model's table. I prepared a [repo](https://github.com/john2x/tenant_delete_migration_case/tree/step-a) that reproduces the issue. It is using `django-taggit`, but I guess the issue also happens with...
I think it would be useful to be able to see at a glance a library's statistics like last commit, downloads via clojars, etc. See djangopackages.org for an example. Though...
I just cloned the repo and ran `nosetest .` inside the `tests` directory. Here's a stacktrace of the failure: ``` Traceback (most recent call last): File "/Users/john/.virtualenvs/collabspot/lib/python2.7/site-packages/nose/case.py", line 197, in...
When creating frames with the `name` property specified, the name is used as the title (ignoring `frame-title-format`. It would be nice if the `frame-title-format` is still followed, so that a...
``` from djangoratings.fields import RatingField class MyModel(models.Model): rating = RatingField(range=1, can_change_vote=True, can_delete_vote=True) TypeError: __init__() got an unexpected keyword argument 'can_delete_vote' ``` I get this error when trying to enable `can_delete_vote`...
``` DeprecationWarning: A Field class whose get_db_prep_save method hasn't been updated to take a `connection` argument. class RatingField(IntegerField): ``` using Django development version (1.3)
If ancestor keys are desired, then the whole ancestor path will need to be defined explicitly in the fixture data. Custom keys are specified by the `'__key__'` special attribute with...
I ran into an issue yesterday when using the combo of django-rest-framework + django-taggit + django-rest-swagger. The gist is that: 1. django-rest-swagger attempts to get serializer field metadata via django-rest-framework...
One use-case I'd like to have is to define a function called `launch-erc-frame`, and this would launch a frame dedicated for ERC buffers, with ERC immediately started. I want to...