Differences between revisions 7 and 10 (spanning 3 versions)
Revision 7 as of 2006-10-09 22:07:01
Size: 1384
Editor: anonymous
Comment:
Revision 10 as of 2006-10-09 22:34:55
Size: 819
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe dmr/notebookwiki here. Copy cells from wiki-form window in sage worksheet and paste directly into wiki edit.
Line 5: Line 5:
{{{
code
code
///
}}}


Line 12: Line 10:
# Worksheet: _scratch_ # Wiki form worksheet: _scratch_
Line 17: Line 15:
{{{a = 5 {{{sage: a = 5
Line 20: Line 18:
{{{a
# 5}}}
{{{sage: a
5}}}
Line 23: Line 21:
{{{sage.server.notebook.worksheet.Cell.worksheet.im_class.files_html()
# Traceback (most recent call last):
    sage.server.notebook.worksheet.Cell.worksheet.im_class.files_html()
# File "/home/dorian/sage/sage-1.4/local/lib/python2.5/", line 1, in <module>
#
TypeError: unbound method files_html() must be called with Cell instance as first argument (got nothing instead)}}}
{{{sage: sage.server.notebook.worksheet.Cell.worksheet.im_class.files_html()
Traceback (most recent call last):
...
TypeError: unbound method files_html() must be called with Cell instance as first argument (got nothing instead)}}}
Line 29: Line 26:
{{{_scratch___plain__
# Traceback (most recent call last):
    _scratch___plain__
# File "/home/dorian/sage/sage-1.4/local/lib/python2.5/", line 1, in <module>
#
NameError: name '_scratch___plain__' is not defined}}}
{{{sage: _scratch___plain__
Traceback (most recent call last):
...
NameError: name '_scratch___plain__' is not defined}}}
Line 35: Line 31:
{{{sage: for i in range(10):
... print i*i - 2
-2
-1
2
7
14
23
34
47
62
79}}}
Line 36: Line 44:
{{{sage: a = 5 }}} {{{sage: a 5}}} {{{sage: sage.server.notebook.worksheet.Cell.worksheet.im_class.files_html() Traceback (most recent call last): ... TypeError: unbound method files_html() must be called with Cell instance as first argument (got nothing instead)}}} {{{sage: _scratch___plain__ Traceback (most recent call last): ... NameError: name '_scratch___plain__' is not defined}}} {{{sage: for i in range(10): ... print i*i - 2 -2 -1 2 7 14 23 34 47 62 79}}} {{{ }}} {{{
}}}

Copy cells from wiki-form window in sage worksheet and paste directly into wiki edit.

# Wiki form worksheet: _scratch_

{{{sage: a = 5 }}}

{{{sage: a 5}}}

{{{sage: sage.server.notebook.worksheet.Cell.worksheet.im_class.files_html() Traceback (most recent call last): ... TypeError: unbound method files_html() must be called with Cell instance as first argument (got nothing instead)}}}

{{{sage: _scratch_plain Traceback (most recent call last): ... NameError: name '_scratch_plain' is not defined}}}

{{{sage: for i in range(10): ... print i*i - 2 -2 -1 2 7 14 23 34 47 62 79}}}

dmr/notebookwiki (last edited 2008-11-14 13:42:08 by anonymous)