Hello,

I continue a preceeding thread opened on the sage-days group. It is
better placed here, it concerns more developers than organizers.

http://groups.google.com/group/sage-combinat-days/browse_thread/thread/faf13e9077eebf0d

For SAGE days in Marseille (France), we aim to develop an elementary
interface to the notebook for usage in secondary school with the
following features:
   * support the non object oriented syntax (provide a roots function
for example). This is not a complicated thing because most of the
function here will be:
{{{
def foo(my_object):
    return my_object.bar()
}}}
   * reduction of the namespace to minimum
   * resolving some specific problems due to symbolic computation (in
particular the sqrt bad  behavior as roots of symbolic polynomials
expression)
   * perhaps a french version (and documentation) of those elementary
commands
   * and more... (we wait for feedback from teachers when the first
version will be ready)

As claimed by William, I erase the line in sage/all_notebook.py
{{{
from sage.all import *
}}}
and replace it with the features I want.
{{{
from sage.all import Integer, RealNumber, ...
}}}

The corresponding patch is here: http://iml.univ-mrs.fr/~delecroi/lycee-vd.patch

I've got now a problem with the plot function. A call to plot pops a
png and does not show it in the worksheet ! What is missing in my
import statement ?


Vincent
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to