-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conflict with python-json-rpc #13
Comments
simple way for it: find . -name *.py -print0|xargs -0 sed -i -e 's/from jsonrpc/from django_jsonrpc/' |
What are you trying to do? The explanation is not clear. |
may be.. my english is badly, sorry :( Above command sequence allow rename to django_jsonrpc in all current code without modify by hands. |
I understand you... but what is the exact sequence of your sed searches? ^^^^ |
sed -i -e 's/from jsonrpc/from django_jsonrpc/' README.mdown |
I saw it... however... I don't think that solved a thing for me.... I am getting this error after or more clearly: |
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 :( |
okay.. have you tried hosting a django app that uses django_json_rpc on a live server such as Apache/mod_wsgi? I have tried to set up my service... it says that it does not support GET requests... but it supports HTTP GET only on my localhost. |
I not use django over wsgi in production. |
Hello,
django-jsonrpc conflict with python-json-rpc (http://json-rpc.org/wiki/python-json-rpc) by module name. May be rename your module to django_jsonrpc ?
The text was updated successfully, but these errors were encountered: