Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

layout interact controls #7379

Closed
jasongrout opened this issue Nov 3, 2009 · 23 comments
Closed

layout interact controls #7379

jasongrout opened this issue Nov 3, 2009 · 23 comments

Comments

@jasongrout
Copy link
Member

A user should be able to specify a layout for interact controls.

CC: @qed777 @robert-marik @TimDumol @mwhansen @williamstein @sagetrac-mhampton

Component: notebook

Author: Jason Grout

Reviewer: Marshall Hampton

Merged: sage-4.5.rc1

Issue created by migration from https://trac.sagemath.org/ticket/7379

@jasongrout
Copy link
Member Author

comment:1

Here is a patch to the sagenb directory which allows for the following:

@interact(layout=[['a','b'],['c','d']])
def _(a=(1,2),b=(3,10),c=["test","button"],d=x^2+1):
    print a,b,c,d
diff -r 69309549b229 notebook/interact.py
--- a/notebook/interact.py	Tue Nov 03 03:14:01 2009 -0600
+++ b/notebook/interact.py	Tue Nov 03 03:48:40 2009 -0600
@@ -1795,15 +1795,25 @@
             sage: sagenb.notebook.interact.InteractCanvas([B], 3).render_controls()
             '<table>...'
         """
+        layout = self.__options.get('layout',None)
         tbl_body = ''
-        for c in self.__controls:
-            if c.label() == '':
-                tbl_body += '<tr><td colspan=2>%s</td></tr>\n'%c.render()
-            else:
-                tbl_body += '<tr><td align=right><font color="black">%s&nbsp;</font></td><td>%s</td></tr>\n'%(
-                c.label(), c.render())
+        if layout is None:
+            layout = [[c.var()] for c in self.__controls]
+
+        controls = dict([c.var(), c] for c in self.__controls)
+        for row in layout:
+            tbl_body += '<tr>'
+            for c_name in row:
+                c = controls[c_name]
+                if c.label() == '':
+                    tbl_body += '<td colspan=2>%s</td>\n'%c.render()
+                else:
+                    tbl_body += '<td align=right><font color="black">%s&nbsp;</font></td><td>%s</td>\n'%(c.label(), c.render())
+
+            tbl_body += '</tr>'
+                
         return '<table>%s</table>'%tbl_body
-
+            
     def wrap_in_outside_frame(self, inside):
         """
         Return the entire HTML for the interactive canvas, obtained by
@@ -1907,8 +1917,15 @@
         """
         s = 'interact(%s, "_interact_.recompute(%s)")'%(cell_id, cell_id)
         JavascriptCodeButton.__init__(self, "Update", s)                                     
-        
-def interact(f):
+     
+def interact(*args,**kwds):
+    if len(kwds)==0 and len(args)==1:
+        # call without parentheses
+        return _interact(*args)
+    else:
+        return lambda f: _interact(f, **kwds)
+   
+def _interact(f,**kwds):
     r"""
     Use interact as a decorator to create interactive Sage notebook
     cells with sliders, text boxes, radio buttons, check boxes, and
@@ -2281,7 +2298,9 @@
         i = args.index('auto_update')
         controls[i] = UpdateButton(SAGE_CELL_ID)
 
-    C = InteractCanvas(controls, SAGE_CELL_ID, auto_update=auto_update)
+    layout = kwds.get('layout',None)
+
+    C = InteractCanvas(controls, SAGE_CELL_ID, auto_update=auto_update, layout=layout)
     html(C.render())
 
     def _():

@jasongrout
Copy link
Member Author

Attachment: trac-7379-interact-table-layout.patch.gz

FOR SAGENB REPOSITORY

@jasongrout
Copy link
Member Author

Attachment: trac-7379-decorator-defaults.patch.gz

FOR SAGE DEVEL REPOSITORY

@jasongrout
Copy link
Member Author

comment:4

Two patches are attached: one for sagenb, and one for sage devel repository.

CCing timdumol (naturally, for the notebook/decorator stuff), and mhansen (for the decorator trickery) and was

@jasongrout
Copy link
Member Author

Author: Jason Grout

@jasongrout
Copy link
Member Author

comment:5

CCing mhampton, who has expressed interest in looking at this patch before.

@jasongrout
Copy link
Member Author

comment:6

See #8959 for further extensions of this idea that allow arbitrary HTML in the layout.

@jasongrout
Copy link
Member Author

comment:7

The patch at #8959 doesn't quite allow the user to specify arbitrary HTML yet, but does allow the controls to be placed on any of the four sides of the interact.

Please, please review the patch at #8959 after reviewing this patch. The patch there extends the functionality of the patch here, and should be easy to review after you've looked at this patch.

@sagetrac-mhampton
Copy link
Mannequin

sagetrac-mhampton mannequin commented May 15, 2010

comment:8

This is great, thanks very much for working on it. The only problem I've seen so far is the following doctest failure for the notebook:

sage -t  "local/lib/python2.6/site-packages/sagenb-0.8-py2.6.egg/sagenb/notebook/interact.py"
**********************************************************************
File "/Users/mh/sagestuff/sage-4-x/local/lib/python2.6/site-packages/sagenb-0.8-py2.6.egg/sagenb/notebook/interact.py", line 2205:
    sage: @interact
    def _(n=(Integer(10),Integer(100),Integer(1)), auto_update=False):
        show(factor(x**n - Integer(1)))
Exception raised:
    Traceback (most recent call last):
      File "/Users/mh/sagestuff/sage-4-x/local/bin/ncadoctest.py", line 1231, in run_one_test
        self.run_one_example(test, example, filename, compileflags)
      File "/Users/mh/sagestuff/sage-4-x/local/bin/sagedoctest.py", line 38, in run_one_example
        OrigDocTestRunner.run_one_example(self, test, example, filename, compileflags)
      File "/Users/mh/sagestuff/sage-4-x/local/bin/ncadoctest.py", line 1172, in run_one_example
        compileflags, 1) in test.globs
      File "<doctest __main__.example_99[9]>", line 2, in <module>
        def _(n=(Integer(10),Integer(100),Integer(1)), auto_update=False):
      File "/Users/mh/sagestuff/sage-4-x/local/lib/python/site-packages/sage/misc/misc.py", line 2632, in my_wrap
        return func(*args)
      File "/Users/mh/sagestuff/sage-4-x/local/lib/python2.6/site-packages/sagenb-0.8-py2.6.egg/sagenb/notebook/interact.py", line 2519, in interact
        html(C.render())
      File "/Users/mh/sagestuff/sage-4-x/local/lib/python2.6/site-packages/sagenb-0.8-py2.6.egg/sagenb/notebook/interact.py", line 2058, in render
        s = "%s%s"%(self.render_controls(), self.render_output())
      File "/Users/mh/sagestuff/sage-4-x/local/lib/python2.6/site-packages/sagenb-0.8-py2.6.egg/sagenb/notebook/interact.py", line 1994, in render_controls
        layout = [[c.var()] for c in self.__controls]
    AttributeError: 'UpdateButton' object has no attribute 'var'

I'll try to do a little more testing and look at #8959 this weekend.

@jasongrout
Copy link
Member Author

comment:9

mhampton: that's a corner case in the @interact functionality (a magic parameter). I see two possible fixes: fix @interact to make this not a corner case (i.e., not a magic parameter), or move the auto_update switch into the @interact arguments:

@interact(auto_update=False)
def _(...)
    ...

@jasongrout
Copy link
Member Author

comment:10

The reason auto_update was included in the function arguments, rather than the @interact arguments, is given here: http://groups.google.com/group/sage-devel/browse_thread/thread/9ff935e0d6a729b3/b295d52d195ac9ec?lnk=gst&q=interact#b295d52d195ac9ec

However, with this patch is a decorator that transparently and easily takes care of the objection. Are there any objections now to moving the auto_update argument up to the @interact decorator (other than backwards compatibility)?

Mike? William? You guys were the ones that objected to @interact(auto_update=False) in the thread listed above.

@mwhansen
Copy link
Contributor

comment:11

I think it's fine with the decorator defaults patch.

@jasongrout
Copy link
Member Author

comment:12

I just posted a long message to sage-notebook for a vote.

@jasongrout
Copy link
Member Author

comment:13

I'm posting a fix to the auto_update doctest that Marshall mentioned on #8959.

@jasongrout jasongrout assigned jasongrout and unassigned boothby May 16, 2010
@sagetrac-mhampton
Copy link
Mannequin

sagetrac-mhampton mannequin commented May 16, 2010

comment:14

OK, with the fix in 8959 I see no problems with this. I've tested a bunch of interacts from the wiki, and there seem to be no back-compatibility issues. So I think I can give this a positive review.

@TimDumol
Copy link
Mannequin

TimDumol mannequin commented Jul 7, 2010

Reviewer: M

@TimDumol
Copy link
Mannequin

TimDumol mannequin commented Jul 7, 2010

comment:15

The patch causes the followinger doctest error:

File "/opt/sage/local/lib/python2.6/site-packages/sagenb-0.8.1-py2.6.egg/sagenb/notebook/interact.py", line 2209:
    sage: @interact
    def _(n=(Integer(10),Integer(100),Integer(1)), auto_update=False):
        show(factor(x**n - Integer(1)))
Exception raised:
    Traceback (most recent call last):
      File "/opt/sage/local/bin/ncadoctest.py", line 1231, in run_one_test
        self.run_one_example(test, example, filename, compileflags)
      File "/opt/sage/local/bin/sagedoctest.py", line 38, in run_one_example
        OrigDocTestRunner.run_one_example(self, test, example, filename, compileflags)
      File "/opt/sage/local/bin/ncadoctest.py", line 1172, in run_one_example
        compileflags, 1) in test.globs
      File "<doctest __main__.example_99[9]>", line 2, in <module>
        def _(n=(Integer(10),Integer(100),Integer(1)), auto_update=False):
      File "/opt/sage/local/lib/python/site-packages/sage/misc/misc.py", line 2666, in my_wrap
        return func(*args)
      File "/opt/sage/local/lib/python2.6/site-packages/sagenb-0.8.1-py2.6.egg/sagenb/notebook/interact.py", line 2523, in interact
        html(C.render())
      File "/opt/sage/local/lib/python2.6/site-packages/sagenb-0.8.1-py2.6.egg/sagenb/notebook/interact.py", line 2062, in render
        s = "%s%s"%(self.render_controls(), self.render_output())
      File "/opt/sage/local/lib/python2.6/site-packages/sagenb-0.8.1-py2.6.egg/sagenb/notebook/interact.py", line 1998, in render_controls
        layout = [[c.var()] for c in self.__controls]
    AttributeError: 'UpdateButton' object has no attribute 'var'

Marking this as "needs work."

@TimDumol TimDumol mannequin added s: needs work and removed s: positive review labels Jul 7, 2010
@jasongrout
Copy link
Member Author

comment:16

In the two comments above yours, it says that the doctest is fixed in #8959. Did you apply that patch as well?

@TimDumol
Copy link
Mannequin

TimDumol mannequin commented Jul 7, 2010

comment:17

I didn't notice the comment. Sorry! The doctests do pass now. Marking as positive review (we really do need to add a pathway from needs_info to positive review).

@TimDumol TimDumol mannequin added s: needs review and removed s: needs info labels Jul 7, 2010
@TimDumol
Copy link
Mannequin

TimDumol mannequin commented Jul 7, 2010

Changed reviewer from M to Marshall Hampton

@TimDumol
Copy link
Mannequin

TimDumol mannequin commented Jul 11, 2010

Merged: SageNB 0.8.1

@TimDumol TimDumol mannequin removed the s: positive review label Jul 11, 2010
@TimDumol TimDumol mannequin closed this as completed Jul 11, 2010
@rlmill
Copy link
Mannequin

rlmill mannequin commented Jul 12, 2010

Changed merged from SageNB 0.8.1 to sage-4.5.rc1

@rlmill
Copy link
Mannequin

rlmill mannequin commented Jul 12, 2010

comment:20

Merged the sage-devel patch in sage-4.5.rc1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants