[sage-devel] Re: Graph Theory Quick Reference

2011-08-06 Thread Alexandre Blondin Massé
The "Search and Shortest Path" section could also include other functions about paths and cycles : sage: g = digraphs.Circuit(4) sage: g.all_ g.all_cycles_iteratorg.all_simple_cycles g.all_paths g.all_simple_paths g.all_paths_iterator The only problem is that these functions are

[sage-devel] Re: public single cell server

2011-08-06 Thread Jason Grout
On 8/6/11 7:55 AM, Ivan Andrus wrote: On Jul 30, 2011, at 11:40 AM, Juanlu001 wrote: I have tested multiple interacts of mine and some computations, and everything seems to work quite well except for the backslash \, which I tried to use to split lines. It gives a syntax error: SyntaxError

[sage-devel] Re: How to perform a sage command from a web page?

2011-08-06 Thread Jason Grout
On 8/6/11 9:02 PM, Rob Beezer wrote: Hi Christian, Following on Eviatar's suggestion, Have you seen the recent thread on Jason Grout's single-cell server? Would it do what you want? You could implement your boxes and button in an interact and then it should behave as you have proposed, I'd thi

[sage-devel] Re: testing sage notebook

2011-08-06 Thread Jason Grout
On 8/6/11 12:47 PM, Rado wrote: I just reverted *.sagenb.org to the state it was in 2 days ago. Thanks for your patience and bug reports in the last two days. A lot of bugs got exposed due to the scale of sagenb.org, and those were bugs not caught doc tests or selenium tests (more selenium tests

[sage-devel] Re: How to perform a sage command from a web page?

2011-08-06 Thread Rob Beezer
Hi Christian, Following on Eviatar's suggestion, Have you seen the recent thread on Jason Grout's single-cell server? Would it do what you want? You could implement your boxes and button in an interact and then it should behave as you have proposed, I'd think. http://groups.google.com/group/sag

[sage-devel] Re: How to perform a sage command from a web page?

2011-08-06 Thread Eviatar
You can write a Python CGI file which interacts with the Sage interpreter instead: #!SAGEPATH from sage import * print RR(4) The problem with this is that you have to launch Sage every time. It would probably be better to use the single-cell server which is now in development: https://github.com/

[sage-devel] How to perform a sage command from a web page?

2011-08-06 Thread Christian Stump
Hi, I would like to be able to set up a web page which provides a computation performed in Sage. Someone can type two numbers into boxes and click a button, and then these numbers are send to the server (via GET), and the server runs a sage command computing the sum of these, and returns the answe

[sage-devel] Re: test driving maxima-5.25.0

2011-08-06 Thread Robert Dodier
On Aug 5, 7:08 am, Francois Bissey wrote: > On Fri, 05 Aug 2011 05:49:41 kcrisman wrote:> Thanks for the detailed > analysis, Francois!  The 'official' > > announcement hadn't been made on their list or the main Maxima page > > yet, just that it had been tagged, so I didn't mention it yet - but

Re: [sage-devel] Re: Graph Theory Quick Reference

2011-08-06 Thread Rafael Turner
Thanks for the feedback everyone. I have added the following new sections: Common Invariants, Boolean Queries, NP-Related. I will add section on common graphs, visualizatio, and frequent iterations soon. Best wishes, Rafael On Fri, Jul 29, 2011 at 3:41 AM, Nathann Cohen wrote: > Yea !!

[sage-devel] Re: testing sage notebook

2011-08-06 Thread Rado
I just reverted *.sagenb.org to the state it was in 2 days ago. Thanks for your patience and bug reports in the last two days. A lot of bugs got exposed due to the scale of sagenb.org, and those were bugs not caught doc tests or selenium tests (more selenium tests would be nice!). We have a lit

Re: [sage-devel] Re: How to trace what happens in imports in a pyx file

2011-08-06 Thread William Stein
On Sat, Aug 6, 2011 at 2:21 AM, Volker Braun wrote: > On Friday, August 5, 2011 9:10:12 PM UTC+1, kcrisman wrote: >> >> [...] this is because Cython puts a lot of cimport and >> other stuff long before the "regular" stuff in the C file. > > Slightly OT, but I recently noticed that Sage is using cy

Re: [sage-devel] trac server not sending e-mails?

2011-08-06 Thread William Stein
On Sat, Aug 6, 2011 at 6:16 AM, Simon King wrote: > Hi! > > Today, I modified several tickets on trac, but did not receive emails > from these tickets. > > Is there a problem with the trac server? Yes. Unfortunately, our most elite special forces have failed to fix it so far. I will likely try r

[sage-devel] Re: [sage-support] Re: public single cell server

2011-08-06 Thread Jason Grout
On 8/6/11 7:39 AM, Maarten Derickx wrote: I tried some computations and first it worked fine but then reading the things about limits I ofcourse wanted to try and reach those so I did a: while True: print 42 After this I can still view the webpage and start computations, but I don't get re

[sage-devel] testing sage notebook

2011-08-06 Thread Jason Grout
Can we put massive changes to sagenb up on a test server so people can play with it a lot before making the changes live? For example, I can't seem to create a new worksheet now---trying to just brings up a seemingly random worksheet I've already written. There are also problems with interact

[sage-devel] trac server not sending e-mails?

2011-08-06 Thread Simon King
Hi! Today, I modified several tickets on trac, but did not receive emails from these tickets. Is there a problem with the trac server? Best regards, Simon -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubsc

Re: [sage-devel] Re: public single cell server

2011-08-06 Thread Ivan Andrus
On Jul 30, 2011, at 11:40 AM, Juanlu001 wrote: > I have tested multiple interacts of mine and some computations, and > everything seems to work quite well except for the backslash \, which I tried > to use to split lines. It gives a syntax error: > > SyntaxError Tr

[sage-devel] Re: [sage-support] Re: public single cell server

2011-08-06 Thread Maarten Derickx
I tried some computations and first it worked fine but then reading the things about limits I ofcourse wanted to try and reach those so I did a: while True: print 42 After this I can still view the webpage and start computations, but I don't get results anymore. Reloading the page or openin

[sage-devel] Sage-based course for about 120 students

2011-08-06 Thread Dima Pasechnik
Here at NTU we'll start next week a semester-long course Experimental Maths, for our 2nd year majors. It's going to be lab-based, with 120 people (should I say "w00t" here?) sitting at the same time for labs (in 2 large computer labs with thin clients). We'll be running two (or even four) multi

[sage-devel] Re: How to trace what happens in imports in a pyx file

2011-08-06 Thread leif
On 5 Aug., 23:07, Robert Bradshaw wrote: > On Fri, Aug 5, 2011 at 1:10 PM, kcrisman wrote: > > The problem occurs in a (to me) odd spot.  Namely, in sage/misc/ > > functional.py, there is an import of CDF.  Print statements show that > > - all inside this one line! - we initialize PariInstance, g

[sage-devel] SAGER OOT in online docs

2011-08-06 Thread Dima Pasechnik
Anywhere $SAGE_ROOT is mentioned in online tutorials, etc., it's displayed by the notebook as SAGER OOT. (at least on recent Chrome and Firefox). Is there a quick way to fix this? (a non-quick way would be to introduce "mini-cells" in the text field, that can be evaluated by Sage, at the loading

[sage-devel] Re: sagemath cluster

2011-08-06 Thread leif
On 6 Aug., 04:17, kcrisman wrote: > On Aug 5, 3:07 pm, Mike Hansen wrote: > > > On Fri, Aug 5, 2011 at 10:51 AM, William Stein wrote: > > >> Are the trac notifications queued somewhere or will they be lost? > > > > I have no clue.  I hope Mike Hansen or somebody can look into this.  I do > > >

[sage-devel] Re: How to trace what happens in imports in a pyx file

2011-08-06 Thread Volker Braun
On Friday, August 5, 2011 9:10:12 PM UTC+1, kcrisman wrote: > > [...] this is because Cython puts a lot of cimport and > other stuff long before the "regular" stuff in the C file. > Slightly OT, but I recently noticed that Sage is using cython --disable-function-redefinition. The http://wiki.c

Re: [sage-devel] Re: Mma CDF doc format

2011-08-06 Thread William Stein
On Fri, Aug 5, 2011 at 7:16 PM, kcrisman wrote: > > > On Aug 5, 5:57 pm, Rob Beezer wrote: >> On Aug 5, 12:11 pm, William Stein wrote: >> >> > Or we could try to get it in this new column: >> >> >    http://www.ams.org/notices/201107/rtx110700893p.pdf >> >> That looks like a perfect place to put