Trouble deploying Django/wagtail on Ubuntu 14.04

2018-03-19 Thread drone4four
I successfully installed wagtail ’s bakery demo site locally. I ended up leveraging the README for this bakery demo site on their GitHub page which calls to use a

Re: Sample of GeoDjanco websites

2018-03-19 Thread M Hashmi
I've been searching for one from last couple of weeks and after using Djnago-map-widgets, django-google-maps, django-forms I came to conclusion that no much work done in GeoDjango. All these apps do not work very well with everything GeoDjango has to offer. Only way out for me is that using

Re: Sample of GeoDjanco websites

2018-03-19 Thread Zachary Nickens
I’m really interested in this too. Please share if you find anything. On Mon, Mar 19, 2018 at 2:28 PM Ezequias Rocha wrote: > Hi > > I would like to know if there is any list of websites that are using > GeoDjango on the web. > > Could anyone tell me if you have

Sample of GeoDjanco websites

2018-03-19 Thread Ezequias Rocha
Hi I would like to know if there is any list of websites that are using GeoDjango on the web. Could anyone tell me if you have experiences putting Leaflet in the frontend and GeoDjango in the backend (geoprocessing). Sincerely Ezequias -- You received this message because you are subscribed

Re: Is anyone using Channels 2 and asgi_rabbitmq?

2018-03-19 Thread Andrew Godwin
Hi Filbery, asgi_rabbitmq has not been ported to work with the new asynchronous channel layer API in Channels 2 yet, so it's not compatible, I'm afraid, and nobody is currently working on that port as far as I know. Andrew On Mon, Mar 19, 2018 at 8:13 AM, Filbert wrote: >

Re: Running makemigrations in pluggable nested app using AppConfig

2018-03-19 Thread 'Tom Evans' via Django users
In order to make it "work", I imported the models from foo_lib.django app.models into foo_lib.models. Django was then able to find the models, and create the migration files. They are all in the wrong place however, that part of the library should have nothing to do with django and so this

Running makemigrations in pluggable nested app using AppConfig

2018-03-19 Thread 'Tom Evans' via Django users
Hi all I'm writing a small library which will be bundled together with a pluggable django app. The app provides a bunch of different AppConfig instances, the end user chooses one and pops it in their INSTALLED_APPS: INSTALLED_APPS += [ 'foo_lib.contrib.django_app.configs.FooAppConfig', ] All

Re: Dealing with templates in an open source Django project?

2018-03-19 Thread Etienne Robillard
Hey man, First of all you're definitely not stupid. :-) Second, I think you're starting pretty well to understand what I'm trying to explain. I do admit however that I haven't myself experimented with this type of functionality, but I really think it should be possible to define some

Is anyone using Channels 2 and asgi_rabbitmq?

2018-03-19 Thread Filbert
Making a major platform decision a ways out from product release. Running Channels 1.0 and Redis now, but we'd rather use RabbitMQ since our cluster is already provisioned with that for Celery, etc. I'd like to migrate to Channels 2.0 and asgi_rabbitmq, but I can't seem to find anyone that

Re: sharing sessions

2018-03-19 Thread Andy
okay, i made it work like it already should have before my posting .. if only there was no typo in my secret key and askbot was not setting the session serializer to PickleSerializer Works great now! Am Montag, 19. März 2018 12:39:16 UTC+1 schrieb Andy: > > I want to have some sort of

Re: Dealing with templates in an open source Django project?

2018-03-19 Thread 'Simon Connah' via Django users
Hi Etienne, Thank you for your reply. I have to apologise because I think I am a bit stupid. I'm not sure what you mean. I think I might understand what you mean to a degree, but I'm not sure how to go about it. In effect, I should layout a basic template for general use and then create admin

Re: django-admin makemessages --no-obsolete doesn't seem to be working

2018-03-19 Thread Ramiro Morales
On Sun, Mar 18, 2018 at 11:18 AM, Kishor Pawar wrote: > First of all, I am expecting `--no-obsolete` would comment out `msgid` and > `msgstr` if `gettext` is deleted, right? > AFAIK there is no (and there wasn't ever) a `--no-obsolete` modifier to the makemessages command.

Resize autocomplete_fields

2018-03-19 Thread Marketa
Is it possible to resize autocomplete_fields? How? Thanks -- 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 django-users+unsubscr...@googlegroups.com. To post to

Re: How can i use google finance client in django?

2018-03-19 Thread Julio Biason
Sorry, Rakibul, but your question is too broad — there is no way to tell you something because we don’t know what you’re trying to achieve. For example: Are you looking for a Python client for Google Finance? Did you found a library for that already? Do you know how to use it? What exactly it

Re: django-admin makemessages --no-obsolete doesn't seem to be working

2018-03-19 Thread Kishor Pawar
All my emails never are responded, i'm thinking they not going to discussion list. Someone can reply anything just to let me know. On Sun, 18 Mar 2018 at 19:48 Kishor Pawar wrote: > First of all, I am expecting `--no-obsolete` would comment out `msgid` and > `msgstr` if

sharing sessions

2018-03-19 Thread Andy
I want to have some sort of SingleSignOn for my application and a forum based on askbot (also Django). I built a REST API to get the session from my application and want to replicated and also get the user from inside askbot. This kind of works, but i cannot decode the session inside the forum.