Re: New to django

2017-07-19 Thread Stefano Probst
Hi! New to Django? Read the Getting started . Am Mittwoch, 19. Juli 2017 13:04:50 UTC+2 schrieb dkushwah5: > > I want to connect my bootstrap website with django's database. Please tell > me how to do it. > -- You received this message because

Re: Django URLS

2016-11-18 Thread Stefano Probst
Hi, I think you search something like django-subdomains . regards Stefano Am Donnerstag, 17. November 2016 19:17:37 UTC+1 schrieb Lekan Wahab: > > If i have a url like *fruits.com*, does anyone know how i can write my > subdomain urls in

Re: question about returning file (pdf,image,zip...) in a request that made from temporary URL

2016-10-31 Thread Stefano Probst
You could use a whole deployment setup. Forward Django though nginx by using WSGI (Gnuicorn, etc). Then everything should work. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it,

Re: question about returning file (pdf,image,zip...) in a request that made from temporary URL

2016-10-29 Thread Stefano Probst
Hello, you can use X-Accel-Redirect. See django-downloadview and "Nginx, Django, and X-Accel-Redirects". Best regards Am Freitag, 28. Oktober 2016 16:59:53

Re: Real-Time Data Streaming

2016-07-19 Thread Stefano Probst
Hi, Maybe you can use channels to push data via websockets to your client and plot the new data points via some JS library. Am Montag, 18. Juli 2016 21:49:48 UTC+2 schrieb pvmer...@gmail.com: > > Hello Everyone, > >I am working on a project

Re: Django Live video streaming from ffserver

2016-05-26 Thread Stefano Probst
Hi, eventual something like X-Accel-Redirect can help to do this without a performance penalty. See https://wellfire.co/learn/nginx-django-x-accel-redirects/ Serving protected upstream services Am Donnerstag, 26. Mai 2016 13:44:02 UTC+2 schrieb Jahan Balasubramaniam: > > Hi > > I have setup a

Re: Best Practices for transferring email form data to web server

2015-08-29 Thread Stefano Probst
You can disable the CSRF-protection via csrf_exempt . -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Static version of a Django website ?

2015-08-14 Thread Stefano Probst
Hi, i only know a generic way via HTTrack . If you want a copy of the rendered HTML. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Easy to use graphical reporting tools for SQL

2015-07-21 Thread Stefano Probst
Know the "non-developers" SQL? I guest not, but if you can try MySQL workbench .. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it,

Re: Email Middleware

2015-07-09 Thread Stefano Probst
I implement the software now as a custom email backend . My backend manipulate the content of the message and act as wrapper for the real mail backend. -- You received this message because you are subscribed

Email Middleware

2015-07-08 Thread Stefano Probst
Hello, i search for a universal way to modify the content of a mail before send it. Is there a middleware like system for mails? Background: I want to program a system which encrypt outgoing mails via PGP. Best regard Stefano -- You received this message because you are subscribed to the

Re: Recommendations for hosting service?

2015-01-07 Thread Stefano Probst
OK, i just see you need 100GB. At Uberspace you have only 10GB for Data (excl. OS, etc). Am Mittwoch, 7. Januar 2015 18:25:44 UTC+1 schrieb Stefano Probst: > > I use DigitalOcean <https://www.digitalocean.com/> (VPS) & Uberspace > <https://uberspace.de/> (German, share

Re: Recommendations for hosting service?

2015-01-07 Thread Stefano Probst
I use DigitalOcean (VPS) & Uberspace (German, shared hosting, support Django ). -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Two Django projects with common models and business logic

2014-12-25 Thread Stefano Probst
If you use Git as VCS: Use submodules . Submodules allow foreign repositories to be embedded within a dedicated subdirectory of the source tree, always pointed at a particular commit. Quote from the link: > It often happens that while working

Re: BigInt / Long for Auto Incrementing PK

2014-08-01 Thread Stefano Probst
Hi, you can use a bigintegerfield and set it as primary-key . Am Donnerstag, 31. Juli 2014 17:34:17 UTC+2 schrieb Nicholas Haggmark: > > Hi Guys, > >

Re: Error related to googlebot?

2014-01-26 Thread Stefano Probst
Hi, have you try it with "open a Page like Google" ( https://support.google.com/webmasters/answer/158587 )? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: django debugger

2013-11-06 Thread Stefano Probst
Of course you can use the toolbaralso. The toolbar is a app witch run 'inside' your Project. With the eclipse debugger you can set breakpoints and run your program step by step. This are different types of debugging, The

Re: django debugger

2013-11-06 Thread Stefano Probst
If you use Eclipse, you can set Breakpoints and go forward step by step. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: django security

2013-09-06 Thread Stefano Probst
Hi! Do you mean something like the documentation ? Best regards -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Looking for a session cart

2013-01-21 Thread Stefano Probst
Montag, 21. Januar 2013 15:44:47 UTC+1 schrieb frocco: > > I found django-cart, but it seems to write to the database. > I want to keep items in session until they checkout. > > Thanks for the link to Shop, I will take a look at that also. > > On Monday, January 21, 2013 8:54:00

Re: Looking for a session cart

2013-01-21 Thread Stefano Probst
There is also a finished Shop application if you want looking how other solve this Problem. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: Looking for a session cart

2013-01-21 Thread Stefano Probst
Did you mean something like "sessions"( example )? Am Montag, 21. Januar 2013 13:50:13 UTC+1 schrieb frocco: > > Hello, > > I am learning django and want to port an

Re: Correct way to specifiy database-level column defaults

2013-01-10 Thread Stefano Probst
An example: > from django.db import models > from django.utils.datetime_safe import datetime > class URL(models.Model): > full_URL = models.URLField(max_length=400) > short = models.CharField(max_length=8) > date = models.DateTimeField(default=datetime.now) Django fill in the

Re: Settings in Pythoncode

2013-01-09 Thread Stefano Probst
The answer: I compare my variable with the other setting-variables. All other variables are uppercases (-> constant). When I write my variable big, it works. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web

Settings in Pythoncode

2013-01-09 Thread Stefano Probst
Hi! I want to access variables in my code like in the docs. I have a code like the following in settings.py: > codec_baseString = "...XYZ:::" > In a other file (common.py): > from django.conf import settings

Re: Formset - PlainTextOutput-Widget?

2012-11-28 Thread Stefano Probst
I think i have found a TextOutput-Widget :-) Writing your own django widget<http://www.copyandwaste.com/posts/view/writing-your-own-django-widget/> Am Dienstag, 27. November 2012 15:44:24 UTC+1 schrieb Stefano Probst: > > <http://i.imm.io/N7m1.png> > Hi! > I have a Tabl

Formset - PlainTextOutput-Widget?

2012-11-27 Thread Stefano Probst
Hi! I have a Table with intitialdata from my database. It is implement with a formset. Every row i a form. Now I want to show a text (names) per row. The right in the picture (in black) exist, the red is to do. It should not be an TextInput-widget, it should be a