[ANNOUNCE] Maintenance versions 3.4.1 and 3.3.3 released

2016-10-06 Thread czpython
Hello all, The django CMS core team just released 3.4.1 and 3.3.3 maintenance versions. Please report any issues you find to our issue tracker at https://github.com/divio/django-cms/issues. More information can be found on our blog https://www.django-cms.org/en/blog/2016/10/05/maintenance

Re: Starting maintenance on code.djangoproject.com

2016-09-20 Thread Tim Graham
The maintenance is complete. If you find any issues creating or updating tickets, let me know. Thanks! On Tuesday, September 20, 2016 at 1:17:11 PM UTC-4, Tim Graham wrote: > > https://code.djangoproject.com/ is going down shortly for an upgrade. > I'll send an update if it take

Starting maintenance on code.djangoproject.com

2016-09-20 Thread Tim Graham
https://code.djangoproject.com/ is going down shortly for an upgrade. I'll send an update if it takes more than an hour. -- 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 e

Re: Maintenance on djangoproject.com tomorrow

2013-02-06 Thread Sergei V
Hi, is it a smell of next RC in the air? :) regards, Sergei On Wednesday, February 6, 2013 8:43:38 PM UTC+2, Aymeric Augustin wrote: > > Hi folks, > > We've scheduled maintenance operations on djangoproject.com tomorrow, > starting at 09:00 UTC. > > The website and t

Maintenance on djangoproject.com tomorrow

2013-02-06 Thread Aymeric Augustin
Hi folks, We've scheduled maintenance operations on djangoproject.com tomorrow, starting at 09:00 UTC. The website and the docs may be temporarily unavailable. Please use the mirror of the docs at Read The Docs in the meantime: http://django.readthedocs.org/ Thanks, -- Aymeric. --

Re: Is there anyway to put a Django site into maintenance mode using fabric?

2011-06-11 Thread Garth Humphreys
Thanks Eric for the idea of the server level redirect in the end this is what I did, http://garthhumphreys.com/2011/06/11/painless-django-maintenance-mode-with-fabric/ On Jun 10, 1:43 pm, Eric Chamberlain wrote: > We make the change at the web server and redirect all traffic to a static >

Re: Is there anyway to put a Django site into maintenance mode using fabric?

2011-06-10 Thread Eric Chamberlain
We make the change at the web server and redirect all traffic to a static page. If the site is down for maintenance, then the middleware won't work either. On Jun 10, 2011, at 9:24 AM, Garth Humphreys wrote: > I'm using the MaintenanceModeMiddleware to put my site into > mainten

Is there anyway to put a Django site into maintenance mode using fabric?

2011-06-10 Thread Garth Humphreys
I'm using the MaintenanceModeMiddleware to put my site into maintenance mode, but I was wondering if there is a way to put my site into maintenance via fabric. I would like to do something like; fab maintenance_on If this is not possible what are other common ways of remotely putting a D

Re: maintenance mode UI

2011-02-12 Thread vamsy krishna
Thanks Cal. I'm now using inline styling. On Feb 12, 11:57 am, "Cal Leeming [Simplicity Media Ltd]" wrote: > Hi, > > Maintenance mode pages should be completely self contained. You could even > go to the extent of storing the images in base64 within the HTML (I have

Re: maintenance mode UI

2011-02-11 Thread Cal Leeming [Simplicity Media Ltd]
Hi, Maintenance mode pages should be completely self contained. You could even go to the extent of storing the images in base64 within the HTML (I have seen this done somewhere), but personally I have them hosted on a CDN somewhere. Cal On Sat, Feb 12, 2011 at 4:20 AM, vamsy krishna wrote

maintenance mode UI

2011-02-11 Thread vamsy krishna
Hi, I've set up the django maintenance mode for my site to display a custom message to the users. The message gets picked up fine but all the relevant styling does not get loaded. It would be really nice if it can load the styling info. Any suggestions? Regards, Vamsy -- You received

Re: How to show site down for maintenance page

2009-12-05 Thread Brian Neal
On Dec 5, 6:54 pm, zweb wrote: > What is the best way to show site down for maintenance page ? If you are using mod_wsgi: http://www.caktusgroup.com/blog/2009/05/25/seamlessly-switch-off-and-on-a-django-or-other-wsgi-site-for-upgrades/ -- You received this message because you are subscri

Re: How to show site down for maintenance page

2009-12-05 Thread Chris Moffitt
Try this - http://code.google.com/p/django-maintenancemode/ -Chris On Sat, Dec 5, 2009 at 6:54 PM, zweb wrote: > What is the best way to show site down for maintenance page ? > > -- > > You received this message because you are subscribed to the Google Groups > "Django

How to show site down for maintenance page

2009-12-05 Thread zweb
What is the best way to show site down for maintenance page ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to dj

Clean up and maintenance

2008-05-30 Thread [EMAIL PROTECTED]
I've set up a cron job to run daily-cleanup every night, and modified it to also clean out expired registration profiles from django- registration... what other regular maintenance and clean-up tasks should I be thinking about? --~--~-~--~~~---~--~~ You rec

Seeking Django Developers USA (several projects and maintenance)

2007-08-16 Thread Frank Moten
Must have experience installing, configuring python, etc... contact [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegr

Re: Showing a Maintenance Page

2007-08-08 Thread James Bennett
On 8/8/07, cwurld <[EMAIL PROTECTED]> wrote: > Occasionally, even thought the code works locally, it breaks the live > site. This would be much less of a problem if I could display a static > page describing to the users that the site is temporarily unavailable > because of

Showing a Maintenance Page

2007-08-08 Thread cwurld
users that the site is temporarily unavailable because of maintenance. I have been trying to work with the shared server interface to redirect requests to a static site during maintenance. Then I started thinking that it might be better to handle this in middleware. If the user accessing the site was

Re: Maintenance

2006-11-16 Thread [EMAIL PROTECTED]
Kenneth Gonsalves wrote: > you have to do it manually yes, as far I understand this is easiest and recommended way. Who knows what business logic rules come with update? I think there will be many non-trivial cases which automatic update will not support. So I agree with Kenneth - basic underst

Re: Maintenance

2006-11-16 Thread Kenneth Gonsalves
On 17-Nov-06, at 12:59 AM, cwurld wrote: > I am working on my first Django powered website. I am concerned about > how to modify apps after the site has gone live. For example, I have > created a model that contains a class based on the Django Auth User > class. Lets say that I go live and have

Re: Maintenance

2006-11-16 Thread Russell Keith-Magee
On 11/17/06, cwurld <[EMAIL PROTECTED]> wrote: > Are their any Django tools to make that process easier. Nothing specific in the main trunk; however, the schema evolution branch is intended to address this problem. I believe this branch is feature complete, but requires testing before it will j

Re: Maintenance

2006-11-16 Thread [EMAIL PROTECTED]
ls to make that process easier. > > Also, more generally, can anyone recommend any links,docs, etc... that > discuss maintenance issues? > > Thanks, > Chuck There arent any tools to do migrations yet to my knowledge, but I think that they are being worked on. The best way to do

Maintenance

2006-11-16 Thread cwurld
anyone recommend any links,docs, etc... that discuss maintenance issues? Thanks, Chuck --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj