davidchern

Results 5 issues of davidchern

The solution is, according the documents of Django and based on my test, in file `admin.py`, after line 104, you have to add such line: ```python obj.id = None ```...

According to my test, the method `_caller_path()` just return name of the executed file, but not the full path. Thus, `os.path.dirname(file_name)` will always return an empty string `''`. Although with...

I would like to use xapian as backend of haystack, but I find no apparent place in xapian-haystack for integration of a word segmentator, just like the way in whoosh.

The Nginx server is compiled with the latest version of nginx-upload-module, no other modules compiled with. When configuration is set as below: ```nginx location /uploads { upload_max_file_size 50m; send_timeout 120s;...

For the single list page of Task model in Admin, it takes 300+ queries for fetching query set. I have eliminated a few columns and make some query optimizations, then...