Re: Django site as SOAP endpoint

2021-01-31 Thread Xavier Ordoquy
Hi Fenrir, You may give Spyne (http://spyne.io/) a try. It is a RPC framework that can handle SOAP requests and has a Django integration. Spyne has a couple of drawbacks - IMHO it tries to do too any things and may be somewhat complex - but it does the job. Hopes this will help, Xavier O. Le d

Re: Django site as SOAP endpoint

2021-01-31 Thread Ryan Nowakowski
On January 31, 2021 1:44:46 AM CST, Fenrir Sivar wrote: >I’m working on a project where one of the remote parties requires us to >serve a SOAP api. I have plenty experience with DRF, but only found >soap >client examples (using The ’zeep’ module: zeep==soap in Dutch) which I >use >to call the

Re: django site using allauth in an iframe inside a wiki

2020-07-24 Thread Hadisur Rahman
I tried to solve your problem on Freelancer.com at only 10$ USD but you blocked me and yet it did,t solve. Good Luck. On 7/25/20, Anthony Petrillo wrote: > > > We have a django site that we have created, which requires authentication > (using allauth). We would love to have that django site

Re: Django Site/Docs/Tutorials translation

2013-12-23 Thread Lucas Infante
Thanks, Fabio! On Wednesday, December 18, 2013 6:45:44 PM UTC-2, Fabio Caritas Barrionuevo da Luz wrote: > > The translation project is hosted in Transifex.com [1][2] > > [1] https://www.transifex.com/projects/p/django-docs/language/pt_BR/ > [2] https://www.transifex.com/projects/p/django/languag

Re: Django Site/Docs/Tutorials translation

2013-12-18 Thread Fabio Caritas Barrionuevo da Luz
The translation project is hosted in Transifex.com [1][2] [1] https://www.transifex.com/projects/p/django-docs/language/pt_BR/ [2] https://www.transifex.com/projects/p/django/language/pt_BR/members/ Em segunda-feira, 16 de dezembro de 2013 09h20min40s UTC-3, Lucas Infante escreveu: > > Hello guy

Re: django site upload

2012-06-04 Thread 刘耀耀
The same question bother me too , now I trying to figure out today ! 2012/6/5 Mario Gudelj > Upload to where? What's confusing you? > > > On 5 June 2012 02:17, AJAYI THEOPHILUS wrote: > >> I am a newbie to django and i need help on site upload >> >> -- >> You received this message because you a

Re: django site upload

2012-06-04 Thread Mario Gudelj
Upload to where? What's confusing you? On 5 June 2012 02:17, AJAYI THEOPHILUS wrote: > I am a newbie to django and i need help on site upload > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-u

Re: Django site updater

2012-05-26 Thread kooliah
On 05/22/2012 10:17 PM, kooliah wrote: I'm working on a new site and i have often the need to update the server to let other people see the progress. I tought to do a python script that compare the file structure/date/time of my local version with the server version and update only the changed/

Re: Django site updater

2012-05-23 Thread Mike Dewhirst
I use buildbot to export the code from svn whenever I commit to trunk. It also performs other related tasks such as deleting the entire site first then running tests, compiling to .pyc, deleting source, chowning and chmoding etc. I really like buildbot because you can add programmed (in Python

Re: Django site updater

2012-05-23 Thread Alexis Bellido
I use Fabric to automate as much as possible, not only for production but also for my development and staging environments. I have shared some code in github: https://github.com/alexisbellido/The-Django-gunicorn-fabfile-project I'm currently finishing some changes for making this code more flex

Re: Django site updater

2012-05-23 Thread bruno desthuilliers
git (or whatever versioning system you're using) + South for schema migrations + virtualenv / pip for depencies + a simple shell script on the server to update the whole damn thing and restart services (Apache, whatever). You can even have the script run by a cron job so the server is updated every

Re: Django site updater

2012-05-22 Thread Tanuva
You could checkout your project from the repository onto the server - assuming you are using version control. Alternatively, you might like rsync. Marcel Am 22.05.2012 22:17, schrieb kooliah: > I'm working on a new site and i have often the need to update the server > to let other people see the

Re: Django site updater

2012-05-22 Thread Kurtis Mullins
We use a versioning system (Subversion to be precise, git or mercurial would probably be better for you). Then I commit everything to the main repository and just checkout (update after the initial checkout) on the development server. It's not too bad of a system although I still have to go onto th

Re: Django site updater

2012-05-22 Thread Aaron C. de Bruyn
Sounds like you might benefit from Fabric. Fabric lets you define a repeatable process (in Python) for deploying your website to a server. -A On Tue, May 22, 2012 at 1:17 PM, kooliah wrote: > I'm working on a new site and i have often the need to update the server to > let other people see the p

Re: django site home page

2012-01-15 Thread Guddu
Hi Marjenni, Something like this (r'^$','.views.'), Replace the variables in <> accordingly Regards, Guddu On Jan 15, 7:39 pm, marjenni wrote: > Hi all, >    A really simple one. What goes in urls.py to set a callback > function for the base website url? > > thanks > > mark -- You recei

Re: Django site broken after Debian upgrade

2011-07-19 Thread Andre Terra
Glad you got it figured out, after all! Unfortunately, the django book is indeed lacking a serious update. The official docs are still the go-to place for learning how to use django. Users in this list have been active in writing new pages to the official Wiki, but there's also a huge void in ter

Re: Django site broken after Debian upgrade

2011-07-19 Thread bkline
On Jul 19, 8:33 am, bkline wrote: > Thanks for the tip, Andre.  I'll keep digging and see if I can > extricate myself from this mess. Bingo! That was the problem. After clearing out the offending copied admin templates I was able to restore the CSRF code and I'm back on the road again. Thanks

Re: Django site broken after Debian upgrade

2011-07-19 Thread bkline
On Jul 18, 5:25 pm, Andre Terra wrote: > Perhaps you have a replica of the old admin templates on your > project's folder which might be overriding the files shipped with > core, so take a look at that first. This looks like a very useful clue. I set this up years ago to handle my company's fin

Re: Django site broken after Debian upgrade

2011-07-19 Thread bkline
On Jul 19, 1:13 am, Andre Terra wrote: > Like I said, installing python-django isn't canonical, but no body said it's > inherently wrong. Actually, I just paid a visit to Django's installation guide [1], which advises installing Django using the package management system of your OS distro, as th

Re: Django site broken after Debian upgrade

2011-07-18 Thread Kejun He
hi, I met the same problem when updated diango from version 1.2 to version 1.3. And it comes back to normal after back to version 1.2. May be your trouble came from the same reason rgs, he On Tue, Jul 19, 2011 at 1:13 PM, Andre Terra wrote: > On Tue, Jul 19, 2011 at 9:48 AM, bkline wrote: >>

Re: Django site broken after Debian upgrade

2011-07-18 Thread Andre Terra
> > On Tue, Jul 19, 2011 at 9:48 AM, bkline wrote: > > On Jul 18, 5:25 pm, Andre Terra wrote: > > > > Really? It would be better if I went back to the days where we all > > built everything from the source? Do all Django users running on > > Linux (which I assume is the platform for the majorit

Re: Django site broken after Debian upgrade

2011-07-18 Thread Aldiantoro Nugroho
On Tue, Jul 19, 2011 at 9:48 AM, bkline wrote: > On Jul 18, 5:25 pm, Andre Terra wrote: > > Really?  It would be better if I went back to the days where we all > built everything from the source?  Do all Django users running on > Linux (which I assume is the platform for the majority of > install

Re: Django site broken after Debian upgrade

2011-07-18 Thread bkline
On Jul 18, 5:25 pm, Andre Terra wrote: "Installing the python-django package is not the canonical way of using django, let alone running production servers." Really? It would be better if I went back to the days where we all built everything from the source? Do all Django users running on

Re: Django site broken after Debian upgrade

2011-07-18 Thread Andre Terra
Django has a policy of warning about deprecations for two versions and finally dropping support on the third dot release. Installing the python-django package is not the canonical way of using django, let alone running production servers. Perhaps you have a replica of the old admin templates on y

RE: [] Django site broken after Debian upgrade

2011-07-18 Thread Henrik Genssen
feel free to disable the csrf middleware and all problems should go away... >reply to message: >date: 18.07.2011 13:45:56 >from: "bkline" >to: "Django users" >subject: [] Django site broken after Debian >upgrade > >I just upgraded my Debian server, which brought the python-django >package up to

Re: Django site behind an Apache reverse proxy

2010-01-17 Thread Graham Dumpleton
On Jan 17, 3:44 am, AlK wrote: > Hi ! > > I developed a small Website querying some other sites in background > like a "cron". The queries are handled in a separate thread that I can > start and stop when I want from a simple web-interface. It works great > on my development environment, when I

Re: Django site on Apache

2009-07-21 Thread Andrew Fong
The documentation is distribution agnostic, so I'm not sure what you're referring to. It sounds as if you just dropped a Django project into /var/www and expected it to work. Unfortunately, Django is not PHP. I'm going to assume you're unfamiliar with how Django works, so apologies if you already

Re: Django site on Apache

2009-07-21 Thread Kannan
>Only you can help yourself, and you do that by reading the >documentation: >http://docs.djangoproject.com/en/dev/howto/deployment/ I read the documentation of that and configure all the settings. that settings work in Fedora 10 bu

Re: Django site on Apache

2009-07-21 Thread Daniel Roseman
On Jul 21, 12:16 pm, Kannan wrote: > Hi friends... >              I have downloaded the source of > thehttp://in.pycon.org/2009/fromherehttp://bitbucket.org/lawgon/fossconf/downloads/. > I try to run the site in my Apache server. > So i copy the extracted file to my /var/www/ directory named fos

Re: Django site - CSS doesn't render in Safari/Webkit

2008-12-23 Thread Alfonso
OK tracked it down - appears Safari doesn't sit well with a master .css file and @import url(blah.css); I guess that's because of the way I'm serving up static files. Direct " wrote: > Hey, > > I'm getting a weird issue in Django with my css and Safari - displays > great in all browsers except f

Re: django site within 7 hours (a day)

2008-11-21 Thread tom
> Although the submit button at the top doesn't seem to work... the submit button should work now and it is also possible to add releases to an application. looking forward having your app listed! have a nice day! tom --~--~-~--~~~---~--~~ You received this messa

Re: django site within 7 hours (a day)

2008-11-20 Thread Kenneth Gonsalves
On Thursday 20 November 2008 06:12:36 pm Masklinn wrote: > I don't think there's a problem on whether it's appropriate for the   > group, but there's already Django Pluggables (http://djangoplugables.com/ > ) as a "django applications hotspot" so the project is a bit redundant   > isn't it? but w

Re: django site within 7 hours (a day)

2008-11-20 Thread [EMAIL PROTECTED]
> I don't think there's a problem on whether it's appropriate for the > group, but there's already Django Pluggables (http://djangoplugables.com/ > ) as a "django applications hotspot" so the project is a bit redundant > isn't it? Django pluggables is ok, but I can't get my applications listed on

Re: django site within 7 hours (a day)

2008-11-20 Thread Masklinn
On 20 Nov 2008, at 13:22 , tom wrote: > > Hi, > > don't know if this is the right place or not. Please let me know if > not. :) > > On the 18th of November in 2008 I was already working with django for > about one and a half year, writing several applications either for > customers or for myself

Re: Django site speed - I think I have a problem with my config!

2008-10-09 Thread [EMAIL PROTECTED]
Hi Julian, I did actually try setting it to 500, but no joy. I think I may just have a heavy app that needs sorting out! Thanks for all your help guys, Mike. On Oct 3, 4:35 pm, julianb <[EMAIL PROTECTED]> wrote: > On Oct 3, 10:08 am, "[EMAIL PROTECTED]" > > <[EMAIL PROTECTED]> wrote: > > Is t

Re: Django site speed - I think I have a problem with my config!

2008-10-03 Thread julianb
On Oct 3, 10:08 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Is there anything really obvious that I may be missing? Any debug > settings I may have forgotten to turn off? I've set > MaxRequestsPerChild to 10 so I don't think that it's that. > PythonDebug is off in httpd.conf. Did you

Re: Django site speed - I think I have a problem with my config!

2008-10-03 Thread [EMAIL PROTECTED]
Thanks Graham, Regarding the authentication, I am behind a basic auth because this is a development server so I need to enter a username/password to access it. I also use -C (although I didn't write it here) to pass a cookie on pages that have session info associated with them. However for the ti

Re: Django site speed - I think I have a problem with my config!

2008-10-03 Thread Graham Dumpleton
[EMAIL PROTECTED] wrote: > Hi guys, > > Firstly, I want to say that I've had some great help from you guys so > far - you've really helped me solve a lot of problems. I'm looking > forward to the time when I have enough experience to answer other > questions! > > Anyway...I'm having quite a bit

Re: django site-administration

2007-12-27 Thread goober
Thank you for your response. I could have responded a lot ealier, but I forgot my user account password. Anyway, thank you very much!! Greetings from Virginia, USA. On Dec 26, 4:24 pm, "andrea.dipersio" <[EMAIL PROTECTED]> wrote: > This happen because django have the autoescape set to on by def

Re: django site-administration

2007-12-26 Thread andrea.dipersio
This happen because django have the autoescape set to on by default. check this http://www.djangoproject.com/documentation/templates/#autoescape and this http://www.djangoproject.com/documentation/templates/#safe an example: {{ blog.content|safe }} On 26 Dic, 18:22, goober <[EMAIL PROTECTED]> w

Re: Django site.

2006-11-13 Thread Igor Guerrero Fonseca
I dont see any problem with Django Site... El lun, 13-11-2006 a las 21:40 -0500, Gabriel Puliatti escribió: > Is the Django site down? > > I've been getting a (145) Connection timed out for a while now. > -- http://igordevlog.blogspot.com/ --~--~-~--~~~---~--~

Re: django site doesn't seem to display right under firefox

2006-05-23 Thread Steven Armstrong
On 05/23/06 10:03, Alexandre CONRAD wrote: > Hello, > > I am wondering if you all have the same problem as I am using Firefox > (Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.3) Gecko/20060426 > Firefox/1.5.0.3): > > On the home page: > > - the "django" logo doesn't display at all. >

Re: django site doesn't seem to display right under firefox

2006-05-23 Thread Facundo Casco
I'm using Firerox and Opera and it look rigth. Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3 Version8.52 Build7721 PlatformWin32 SystemWindows 2000 Espinas Alexandre CONRAD wrote: > Hello, > > I am wondering if you all ha

Re: django site doesn't seem to display right under firefox

2006-05-23 Thread Jeremy Dunck
On 5/23/06, Alexandre CONRAD <[EMAIL PROTECTED]> wrote: > I am wondering if you all have the same problem as I am using Firefox > (Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.3) Gecko/20060426 > Firefox/1.5.0.3): I'm using 1.5.0.3 on OS X and it looks fine. I'll check on a win box late