Timothy Allen

Results 20 issues of Timothy Allen

I was getting an Adaptive Connection Failed (SQL Server 2014) that ended up being a password that was too long. This problem is at the pymssql level: it works with...

We're having an issues using Django's database cache backend with PostgreSQL and `django-ratelimit`. We're wondering if this rings a bell with anyone. Here's a sample of the errors we're seeing...

Fixes https://github.com/prymitive/bootstrap-breadcrumbs/issues/64 My test suite has started throwing deprecation warnings about this being fully removed in Django 4.0. `smart_str()` can be viewed here: https://github.com/django/django/blob/master/django/utils/encoding.py#L19

This PR makes two changes to the `startproject` template: * instead of putting configuration files such as `settings.py`, `wsgi.py`, and the root `urls.py` in `my_project/my_project`, they are created in `my_project/config`...

# UPDATE: this is unlikely to ever be merged in. Please use the more modern version here: https://github.com/FlipperPA/django-s3-sqlite This upgrades to the latest/greatest version. Django 2.2 deploys using SQLite (or...

I noticed hot linking as a To-Do list item, and this is a feature I'd love. I tried tinkering myself but have run into a brick wall. I've got it...

Greetings, First off, thanks for the amazing work on django-pyodbc. We've been looking at moving our organization to Django, but have many projects which require SQL Server (a common refrain...

help wanted

I'm attempting to use django-shibboleth-remoteuser with the permission mixins from Django braces. However, it seems that the session is being lost after the first click. We had a similar issue...

This used to work before 2.0.1.0: ```sql from django.db import connections cursor = connections['sql_server_connection'].cursor() cursor.execute("SELECT 'ASDF' AS fake_column") row = cursor.fetchone() print(row.fake_column) ``` It now returns `AttributeError: 'tuple' object has...