zver

Results 7 comments of zver

simple way for it: find . -name *.py -print0|xargs -0 sed -i -e 's/from jsonrpc/from django_jsonrpc/' sed -i -e 's/from jsonrpc/from django_jsonrpc/' README.mdown sed -i -e "s/packages=['jsonrpc']/packages=['django_jsonrpc']/" setup.py sed -i...

may be.. my english is badly, sorry :( django-jsonrpc can't be install with python-json-rpc on same PC. Because both projects install python-modules in same path by `python setup.py install`. Both...

sed -i -e 's/from jsonrpc/from django_jsonrpc/' README.mdown this command is argument of xargs (line above). Github splited some lines in my comment. You may see clear view of it at...

oh, i missed two slashes in sed expression. final version: http://dpaste.com/172463/ Hmm, may be Github again modify my comment. Test slashes: ['jsonrpc']

Github remove slashes in comments :(

I not use django over wsgi in production.

Hi. I have same issue still.