Re: object_list in html

2018-02-26 Thread Alan
That worked! Many thanks!

On 23 February 2018 at 17:38, Dylan Reinhold  wrote:

> I would add an is_running flag into the context_data
>
> def get_context_data(self, **kwargs):
> data = super().get_context_data(**kwargs)
> data['is_running'] = Submission.objects.filter(juser=self.request.user
> jstatus='Running').exists()
> return data
>
>   Then in your template {% if is_running %}x{% endif %}
>
> Dylan
>
> On Fri, Feb 23, 2018 at 8:00 AM, Alan  wrote:
>
>> Hi Constantine,
>>
>> from my views.py:
>>
>> class status(ListView):
>>
>> model = Submission
>>
>> template_name = 'status.html'
>>
>>
>> def get_queryset(self):
>>
>> return Submission.objects.filter(juse
>> r=self.request.user).exclude(jstatus='Deleted')
>>
>> If I could create a parameter say runFlag (True of False) where it would
>> be true for:
>>
>> select * from submit_submission where jstatus = 'Running' and juser =
>> 'jonhdoe';
>>
>> Would django equivalente be:
>> Submission.objects.filter(juser=self.request.user, jstatus=‘Running)
>>
>> If so, then how to tweak this class so I could have 'runFlag' in the
>> template html?
>>
>> Sorry for those questions, I used to use Django 10 years ago and had
>> solutions for that, now I am trying to learn Django 2.0.
>>
>> Alan
>>
>>
>> On 23 February 2018 at 03:18, Costja Covtushenko 
>> wrote:
>>
>>> Hi Alan,
>>>
>>> How did you receive that `object_list`?
>>> You should filter it based on you user and ‘Running’ inside the view.
>>> And then just check if it has count > 0.
>>>
>>> I hope that does have sense to you.
>>>
>>> Regards,
>>> Constantine C.
>>>
>>> On Feb 22, 2018, at 7:34 PM, Alan  wrote:
>>>
>>> Hi there,
>>>
>>> I am using Django 2 with Python 3.5
>>>
>>> I have this query, simple, in mysql:
>>>
>>> select * from submit_submission where jstatus = 'Running' and juser =
>>> 'jonhdoe';
>>>
>>> Basically, I have a table that tracks the jobs I am running.
>>>
>>> In my html, I'd like to replace this part (in red):
>>>
>>> {% if *object_list.last.jstatus* == 'Running' %}
>>>  Page automatically
>>> refreshed every 5 seconds | {% now "jS M y H:i" %}
>>> {% else %}No running jobs.
>>> {% endif %}
>>>
>>> ​with something equivalent to my query above where I need to know if
>>> there's at least one job running for a given user.
>>>
>>> I've been looking at https://docs.djangoproject.com
>>> /en/2.0/ref/models/querysets ​but I couldn't work out a solution.
>>>
>>> ​Many thanks in advance,
>>>
>>> Alan​
>>>
>>> --
>>> I'll cycle across Britain in 2018 for a charity, would you consider
>>> supporting my cause? http://uk.virginmoneygiving.com/AlanSilva
>>> Many thanks!
>>> --
>>> Alan Wilter SOUSA da SILVA, DSc
>>> Senior Bioinformatician, UniProt
>>> European Bioinformatics Institute (EMBL-EBI)
>>> European Molecular Biology Laboratory
>>> Wellcome Trust Genome Campus
>>> Hinxton
>>> Cambridge CB10 1SD
>>> United Kingdom
>>> Tel: +44 (0)1223 494588 <01223%20494588>
>>>
>>> --
>>> 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 this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-users/CAEznbznNwJW4omM%3DMncj8aoBcg3AW8r-yFTMMkb5
>>> ZBiB%3Dsv96Q%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> 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 this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-users/7E9B0630-E1A7-4759-B082-998273D6B330%40gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> I'll cycle across Britain in 2018 for a charity, would you consider
>> supporting my cause? http://uk.virginmoneygiving.com/AlanSilva
>> Many thanks!
>> --
>> Alan Wilter SOUSA da SILVA, DSc
>> Senior Bioinformatician, UniProt
>> European Bioinformatics Institute (EMBL-EBI)
>> European Molecular Biology Laboratory
>> Wellcome Trust Genome Campus
>> Hinxton
>> Cambridge CB10 1SD
>> United Kingdom
>> Tel: +44 (0)1223 494588 <+44%201223%20494588>
>>
>>

Trying to use tooltips in django 2.0 form

2018-02-26 Thread Alan
Hi there,

I have this in my forms.py:

class SubmissionForm(forms.Form):


molecule_file =
forms.FileField(validators=[FileExtensionValidator(settings.CONTENT_TYPES),
file_size], help_text="Required: Select a PDB, MDL or MOL2 file")

But I am failing to make it work in my submit.html template. Currently, I
am "hacking" with:


{{form.molecule_file.label}}{{ form.molecule_file }}

That will show the tooltip "Required: Sel..." if mouse pause over this
field in the browser, but this is silly, I wish I could use something like:


{{form.molecule_file.label}}{{ form.molecule_file }}

But that is not working, neither any combination I tried with .title etc.

Any suggestion would be very much appreciated.

Many thanks in advance,

Alan

-- 
I'll cycle across Britain in 2018 for a charity, would you consider
supporting my cause? http://uk.virginmoneygiving.com/AlanSilva
Many thanks!
--
Alan Wilter SOUSA da SILVA, DSc
Senior Bioinformatician, UniProt
European Bioinformatics Institute (EMBL-EBI)
European Molecular Biology Laboratory
Wellcome Trust Genome Campus
Hinxton
Cambridge CB10 1SD
United Kingdom
Tel: +44 (0)1223 494588

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEznbzmoK07JfXPp_MOvmYFe84a%3D5YiBQMEFJOtUsUzpjPjTGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to install and use Django

2018-02-26 Thread Bhaskar Bhushan


On Friday, February 9, 2018 at 3:58:19 AM UTC+5:30, Inderjeet Kaur wrote:
>
> Hi 
>
> I am new to Django. can anyone please help me with installation and 
> starting a project. Does Django have IDE like dreamweaver or Visual studio 
> to design a website?
> I have installed Python 3.6 on my Windows machine. Also I have downloaded 
> and installed Django files at 
> location C:\Users\Vismaad\Documents\Django-2.0.2\build\lib\django.
>
>I have no idea how to move ahead. What are Django-admin-tools?
>
> Thanks!
>



Hii Indrajeet,
You can use virtual environment which would help you to 
separate your project from the rest of the project working on your computer 
and is highly recommended.
 make a directory on your desktop(mkdir {name of the 
folder})
 cd (name of the folder)
 virtualenv .  (creates a virtual enviroment)
 source bin/activate (activates the virtualenv)
 pip install django (downloads the latest version of 
django)
 pip install django==(specific version if you want to 
download)
 ls(shows one manage.py file)
 python manage.py runserver generates your first django 
powered page.




 

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/de4f6ed8-702f-4405-803d-0324a4e846ce%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Disconnect WS on server shutdown

2018-02-26 Thread Igor Partola
I am running into an issue with one of my applications that is running on 
Heroku. Basically during a deploy, the old daphne process gets shut down 
and a new one takes over. The problem with this is that some users are 
still connected to the old daphne process and are still members of various 
groups that get notifications via WS. This is problematic because it seems 
that the daphne server being shutdown does not right away get detected by 
the browsers.

Is there a way to close the WS connections from daphne when it receives the 
TERM signal?

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f0aecaae-6b98-4778-9d66-d2a09a449b71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


autocomplete

2018-02-26 Thread Mafabi Emmanuel
how do i design an autocomplete in django 2.0


-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e0da7f80-8b75-4976-bdaf-efec817791b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: autocomplete

2018-02-26 Thread Kasper Laudrup

Hi Mafabi,

On 2018-02-26 15:51, Mafabi Emmanuel wrote:

how do i design an autocomplete in django 2.0



This was the first hit on a Google search:

https://django-autocomplete-light.readthedocs.io/en/master/

I don't have any experience with it though, but at least there seems to 
be quite a lot of documentation.


Kind regards,

Kasper



--
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 this group, send email to django-users@googlegroups.com 
.

Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e0da7f80-8b75-4976-bdaf-efec817791b4%40googlegroups.com 
.

For more options, visit https://groups.google.com/d/optout.


--
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/59c8ce19-b5cb-f7d9-2341-58c2117ac7c5%40stacktrace.dk.
For more options, visit https://groups.google.com/d/optout.


Re: Disconnect WS on server shutdown

2018-02-26 Thread Andrew Godwin
At the moment there is not - you should follow this issue:
https://github.com/django/daphne/issues/177

On Mon, Feb 26, 2018 at 9:37 AM, Igor Partola  wrote:

> I am running into an issue with one of my applications that is running on
> Heroku. Basically during a deploy, the old daphne process gets shut down
> and a new one takes over. The problem with this is that some users are
> still connected to the old daphne process and are still members of various
> groups that get notifications via WS. This is problematic because it seems
> that the daphne server being shutdown does not right away get detected by
> the browsers.
>
> Is there a way to close the WS connections from daphne when it receives
> the TERM signal?
>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/f0aecaae-6b98-4778-9d66-d2a09a449b71%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFwN1up%2BZRs-VPGA03bJxqWHA2MX8gKQJxZsmSXQXOAzueeiHw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: autocomplete

2018-02-26 Thread carlos
Hi django 2 ready autocomplete in admin

https://docs.djangoproject.com/en/2.0/ref/contrib/admin/#django.contrib.admin.ModelAdmin.autocomplete_fields

regards.

On Mon, Feb 26, 2018 at 12:05 PM, Kasper Laudrup 
wrote:

> Hi Mafabi,
>
> On 2018-02-26 15:51, Mafabi Emmanuel wrote:
>
>> how do i design an autocomplete in django 2.0
>>
>>
> This was the first hit on a Google search:
>
> https://django-autocomplete-light.readthedocs.io/en/master/
>
> I don't have any experience with it though, but at least there seems to be
> quite a lot of documentation.
>
> Kind regards,
>
> Kasper
>
>
>> --
>> 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 > django-users+unsubscr...@googlegroups.com>.
>> To post to this group, send email to django-users@googlegroups.com
>> .
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-users/e0da7f80-8b75-4976-bdaf-efec817791b4%40googlegroups.com
>> > 5-4976-bdaf-efec817791b4%40googlegroups.com?utm_medium=email
>> &utm_source=footer>.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/django-users/59c8ce19-b5cb-f7d9-2341-58c2117ac7c5%40stacktrace.dk.
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
att.
Carlos Rocha

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAM-7rO0KfKm7VWdncwTH-cmeZg-zVsUOXoO5CyryVbUqObykow%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Samantha Atkins
Well this is useless to those of us actually on python3.  Exactly what 
version of what fixeds this issue *for* python3?

On Wednesday, August 24, 2016 at 1:16:53 PM UTC-7, Jeff Silverman wrote:
>
> Can anyone point me in the right direction to solve this?  I am running 
> DJANGO with python3.4 in virtualenv.  I get this error running manage.py.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d7d57761-707a-4aa4-b84a-510d964c16d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Dylan Reinhold
The original email was from 2 years ago, So I'm sure a lot has changed.

Dylan

On Mon, Feb 26, 2018 at 12:49 PM, Samantha Atkins 
wrote:

> Well this is useless to those of us actually on python3.  Exactly what
> version of what fixeds this issue *for* python3?
>
> On Wednesday, August 24, 2016 at 1:16:53 PM UTC-7, Jeff Silverman wrote:
>>
>> Can anyone point me in the right direction to solve this?  I am running
>> DJANGO with python3.4 in virtualenv.  I get this error running manage.py.
>>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/d7d57761-707a-4aa4-b84a-510d964c16d5%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHtg44BaCF0iFEm1475Wx98okYtNzBPuf%2BKF4gSH5RRRg%3DhMBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Seeking professional help for frontend design for a small django project

2018-02-26 Thread cjwalter


Hi everybody

I’ve started a small django website which is up and running but could 
benefit from some frontend polish (bootstrap3). As I need to launch it by 
end of this week this is kind of time critical, but I assume for someone 
who is specializing in this kind of work it will take a few hours only. 

We shall communicate via skype with screen sharing and you will get a full 
copy of the django project including a database dump to load it at your 
site. Please contact me via eMail (cjwalt...@gmail.com)

Best regards

cj

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dfb8b079-a445-4e53-95e9-4fec6aa300c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Trying to use tooltips in django 2.0 form

2018-02-26 Thread Matemática A3K
On Mon, Feb 26, 2018 at 9:16 AM, Alan  wrote:

> Hi there,
>
> I have this in my forms.py:
>
> class SubmissionForm(forms.Form):
>
>
> molecule_file = 
> forms.FileField(validators=[FileExtensionValidator(settings.CONTENT_TYPES),
> file_size], help_text="Required: Select a PDB, MDL or MOL2 file")
>
> But I am failing to make it work in my submit.html template. Currently, I
> am "hacking" with:
>
> 
> {{form.molecule_file.label}}{{ form.molecule_file }}
>
> That will show the tooltip "Required: Sel..." if mouse pause over this
> field in the browser, but this is silly, I wish I could use something like:
>
> {{form.
> molecule_file.label}}{{ form.molecule_file }}
>
> But that is not working, neither any combination I tried with .title etc.
>
> Any suggestion would be very much appreciated.
>
> Many thanks in advance,
>
> Alan
>

Alan,

The use of "help_text" in a template is shown here:
https://docs.djangoproject.com/en/2.0/topics/forms/#looping-over-the-form-s-fields

That is an example of how you should render a form field "manually". You
may also try seeing the output of {{ form.as_p }} and then tweak it to your
needs (you can use that in whatever tooltip wrapper - like bootstrap or
other css frameworks).

HTH!

>
> --
> I'll cycle across Britain in 2018 for a charity, would you consider
> supporting my cause? http://uk.virginmoneygiving.com/AlanSilva
> Many thanks!
> --
> Alan Wilter SOUSA da SILVA, DSc
> Senior Bioinformatician, UniProt
> European Bioinformatics Institute (EMBL-EBI)
> European Molecular Biology Laboratory
> Wellcome Trust Genome Campus
> Hinxton
> Cambridge CB10 1SD
> United Kingdom
> Tel: +44 (0)1223 494588
>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAEznbzmoK07JfXPp_MOvmYFe84a%3D5YiBQMEFJOtUsUzpjPjTGg%
> 40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BFDnhJROhWhC8mMx2ycsVX2m37rRyaXR_Mg3EALJfZhFFskJQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Industrial Analytics

2018-02-26 Thread Matemática A3K
On Sun, Feb 25, 2018 at 12:12 PM, Raj  wrote:

> Dear All,
>
> Can we use  Django for  Industrial Analytics ? . Where data volume is huge
> & with frequency in Mill seconds.
>

Yes :)


>
> Can someone name some examples of such industrial analytics application
> developed using Django.
>

Not to my knowledge.
Here is an example of metric processing in Django:
http://django-ai.readthedocs.io/en/latest/apps/examples.html#clustering-with-bayesian-networks-example-2
The whole process is described there, it can tweak it to your needs


>
> Thanks,
> Raj
>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/9ef756da-8b50-4575-9c54-17830f277b51%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BFDnhKkj4OKTFm41prS%3D%2BUp284b0HnHDGNhNE89hw7kpBX7OA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.