[sage-support] How fix this script to add accounts to notebook server?

2011-06-13 Thread Chris Seberino
I wrote the script below to automatically add accounts to my notebook server. I ran it as follows $SAGE_DIR/sage-python XXX YYY ZZZ for some values of XXX, YYY and ZZZ. When I tried to login with value in XXX for username and in YYY for password Sage notebook server did not recognize that

[sage-support] Log log plots in sage.

2011-06-13 Thread ancienthart
Aaah. I've found plenty of evidence stating that sage can do log-log plots, but can someone please give me a code example on how to actually achieve it? Joal Heagney -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

Re: [sage-support] Log log plots in sage.

2011-06-13 Thread Rajeev Singh
Hi, One way using pylab is following - sage: import pylab as plt sage: x = plt.array([2^ii for ii in range(10)]) sage: y = x^2 sage: plt.loglog(x, y, '.') [matplotlib.lines.Line2D object at 0x5265d50] sage: plt.savefig('/home/rajeev/a.png') Hope it helps. Rajeev -- To post to this group,

[sage-support] sagenb.notebook.notebook.Notebook(tmp_dir()+'.sagenb') question

2011-06-13 Thread Chris Seberino
Sage notebooks docs here: http://www.sagemath.org/doc/reference/sagenb/notebook/notebook.html suggest creating a notebook object to manage notebook server in a script like so... nb = sagenb.notebook.notebook.Notebook(tmp_dir()+'.sagenb') Is this notebook handle necessary tied to my existing

[sage-support] Re: Memleak when deleting elliptic curve over finite field ?

2011-06-13 Thread Jean-Pierre Flori
I created a ticket concerning the memleak: http://trac.sagemath.org/sage_trac/ticket/11468 I did not have the time to find the origin of the problem. Simon, I guess you could open another ticket with what you spotted. On 8 juin, 14:13, Simon King simon.k...@uni-jena.de wrote: On 8 Jun., 11:19,

[sage-support] Re: Log log plots in sage.

2011-06-13 Thread kcrisman
See also http://trac.sagemath.org/sage_trac/ticket/4529 where this is being tracked. On Jun 13, 5:48 am, Rajeev Singh rajs2...@gmail.com wrote: Hi, One way using pylab is following - sage: import pylab as plt sage: x = plt.array([2^ii for ii in range(10)]) sage: y = x^2 sage:

[sage-support] Re: Memleak when deleting elliptic curve over finite field ?

2011-06-13 Thread Simon King
Hi Jean-Pierre, On 13 Jun., 18:45, Jean-Pierre Flori jpfl...@gmail.com wrote: I created a ticket concerning the memleak:http://trac.sagemath.org/sage_trac/ticket/11468 I did not have the time to find the origin of the problem. Simon, I guess you could open another ticket with what you

Re: [sage-support] Must *all* notebook server pages be under SSL if server uses SSL?

2011-06-13 Thread Michael Orlitzky
On 06/12/11 20:56, Chris Seberino wrote: Is it correct that if one uses SSL for a notebook server than ALL the pages MUST be under SSL? The reason I'm asking is that the notebook server appears unable to handle Apache configs that try to switch from SSL to unencrypted after login. In

[sage-support] Re: Must *all* notebook server pages be under SSL if server uses SSL?

2011-06-13 Thread Chris Seberino
On Jun 13, 4:43 pm, Michael Orlitzky mich...@orlitzky.com wrote: I don't know if there's a way to allow this, but why would you want to? When you log in -- presumably, over SSL, because you want to protect your password -- your browser is sent a session cookie that it uses to identify you in

[sage-support] Re: Must *all* notebook server pages be under SSL if server uses SSL?

2011-06-13 Thread Nils Bruin
On Jun 13, 3:16 pm, Chris Seberino cseber...@gmail.com wrote: Speed is one reason someone may want to only do the login with SSL. I just checked and when I log into PayPal, it stays in SSL mode. However, when I log into eBay, it jumps OUT of SSL mode.  Godaddy seems to do some pages with SSL

[sage-support] How configure notebook server to have ALL new worksheets for ALL users run some customizations?

2011-06-13 Thread Chris Seberino
How configure notebook server to have ALL new worksheets for ALL users run some customizations? e.g. I want implicit_multiplication(True) to be global as well as var(a b c d e f g h z) and var(alpha beta gamma delta omega) cs -- To post to this group, send email to