Re: Electronic Notebook (ELN)

2015-09-03 Thread Aref
Thanks Cowdawg. My computer at home is running Ubuntu and at work I am stuck with Windows. Ideally would like something that is platform independent. Anyway. will take a look and see if Evernote would do it. On Thursday, September 3, 2015 at 7:57:49 AM UTC-6, Cowdawg wrote: > > On Wed, Sep

API Google Calendar

2015-09-03 Thread Marcelo Moro Brondani
someone already used the Google calendar API with Django ?? I'm sorry for bad english -- 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 and Wiki

2015-09-03 Thread James Schneider
Try looking through these: https://www.djangopackages.com/search/?q=Wiki -James On Sep 3, 2015 7:01 AM, "Ricardo Vitorino" wrote: > Tom is right: > https://builtwith.com/?https%3a%2f%2fcode.djangoproject.com%2fwiki > > Best regards > Ricardo Vitorino > > On

Re: Django for data management in a no-UI application?

2015-09-03 Thread Mulianto
Hi , Gui as webapp in django is included, which is admin interface. But if you will build own web gui for the frontend, you still can use django , but with the result as an API , whic you can build with DRF or without. With the API your client can be web client, mobile phone, desktop app,

Re: DRF API deployment

2015-09-03 Thread Daniel Roseman
On Thursday, 3 September 2015 11:00:22 UTC+1, Prashant wrote: > > Hi guys, > > I've just created an api from drf generator which is working fine on > localhost, it is a web service for an android app. Now I've to deploy it on > a server with IP 12.112.23.54 (ip is false) with an id and password.

Re: Electronic Notebook (ELN)

2015-09-03 Thread Peter L. Berghold
On Thu, Sep 03, 2015 at 07:22:04AM -0700, Derek wrote: > On Thursday, 3 September 2015 15:57:49 UTC+2, Cowdawg wrote: > > Off-topic ... but I assume you mean "an official Linux client"? What > third-party party clients have you tried and why have they failed? > I tried "nevernote"

Re: Electronic Notebook (ELN)

2015-09-03 Thread Derek
On Thursday, 3 September 2015 15:57:49 UTC+2, Cowdawg wrote: > > On Wed, Sep 02, 2015 at 07:39:14PM -0700, Aref wrote: > > I am looking for an electronic notebook for general engineering notes. > It > > seems that this would be a good candidate application for Django. Does > > > You might want

Re: Django and Wiki

2015-09-03 Thread Ricardo Vitorino
Tom is right: https://builtwith.com/?https%3a%2f%2fcode.djangoproject.com%2fwiki Best regards Ricardo Vitorino On Thursday, 3 September 2015 13:04:39 UTC+1, Tom Evans wrote: > > On Thu, Sep 3, 2015 at 12:01 PM, Нина Белявская > wrote: > > Is anywhere in the Web examples

Re: Electronic Notebook (ELN)

2015-09-03 Thread Peter L. Berghold
On Wed, Sep 02, 2015 at 07:39:14PM -0700, Aref wrote: > I am looking for an electronic notebook for general engineering notes. It > seems that this would be a good candidate application for Django. Does You might want to take a look at Evernote. Been using that application for a while and it

Django: Relation does not exist in Postgresql

2015-09-03 Thread Alex Sh.
W henever I run python manage.py of my project in ubuntu, it throws the following error. I am stuck. I cannot find solution, please help. /home/vagrant/.envs/mycars/lib/python3.4/site-packages/djorm_pgfulltext/models.py:323: RemovedInDjango18Warning: `SearchManagerMixIn.get_query_set`

Re: Django and Wiki

2015-09-03 Thread 'Tom Evans' via Django users
On Thu, Sep 3, 2015 at 12:01 PM, Нина Белявская wrote: > Is anywhere in the Web examples of Wiki projects on Django? https://www.djangopackages.com/grids/g/wikis/ > Which wiki-engine is used on https://code.djangoproject.com/wiki/? That is not a django site, it is a Trac

Re: Using AWS Redshift database Django 1.6

2015-09-03 Thread Varsha Mane
Hi Anyone knows how to integrate,https://github.com/binarydud/django-redshift i Django 1.6 based project.. Thanks in Advance.. On Thursday, May 29, 2014 at 7:43:55 PM UTC+5:30, jpk wrote: > > Greetings, > > I'm attempting to set up a django project using amazon redshift as the > database

Django and Wiki

2015-09-03 Thread Нина Белявская
Is anywhere in the Web examples of Wiki projects on Django? Which wiki-engine is used on https://code.djangoproject.com/wiki/? Thank you! Nina. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: How to serve any static directory?

2015-09-03 Thread Remco Gerlich
Do you use a webserver "in front" of Django, like Nginx or Apache? What we do: - In *development* (when DEBUG=True), use django.views.static.serve to serve a file: https://docs.djangoproject.com/en/1.8/ref/views/#django.views.static.serve - In *production*, let Django do what it needs to do

DRF API deployment

2015-09-03 Thread Prashant
Hi guys, I've just created an api from drf generator which is working fine on localhost, it is a web service for an android app. Now I've to deploy it on a server with IP 12.112.23.54 (ip is false) with an id and password. I've tried various blogs and posts but no success. Configuration I'm

Re: Receive post_save signal from another project

2015-09-03 Thread Shawn Milochik
Yes, it works. Just try it. If you put a post_save handler in any app it is called when any model is saved in any app. -- 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

Re: Strip ArrayField input from admin

2015-09-03 Thread Erik Cederstrand
> Den 18/08/2015 kl. 10.54 skrev Erik Cederstrand : > > Hi list > > I have a model with a field defined like this: > > categories = ArrayField(models.CharField(max_length=32)) > > > This field is accessible via the admin interface, and when I enter >

Receive post_save signal from another project

2015-09-03 Thread Kishan Mehta
Hi All, I am working on requirement where after user sign up, User model of one app should send some data to another app in different project. For that we are thinking if we can use "post_save" signal on model. Is there any way if I can listen to signal of other porject's app. Regards, --