##// END OF EJS Templates
Add help files for igrid.
walter.doerwald -
Show More
@@ -0,0 +1,45 b''
1 body
2 {
3 background-color: #fff;
4 color: #000;
5 font-family: "Verdana", "Arial", "XHelvetica", "Helvetica", sans-serif;
6 padding: 20px 30px;
7 margin: 0px;
8 font-size: 11px;
9 }
10 h1
11 {
12 font-family: "Trebuchet MS", sans-serif;
13 font-size: 24px;
14 margin: -20px -30px 4px -30px;
15 padding: 6px 30px;
16 font-weight: normal;
17 border-bottom: 1px solid #000;
18 letter-spacing: 1px;
19 background-color: #666;
20 color: #fff;
21 }
22 h2
23 {
24 font-family: "Trebuchet MS", sans-serif;
25 font-size: 20px;
26 padding: 14px 0px 2px 0px;
27 margin: 0px;
28 font-weight: bold;
29 color: #333;
30 }
31 h3
32 {
33 font-family: "Trebuchet MS", sans-serif;
34 font-size: 14px;
35 padding: 12px 0px 2px 0px;
36 margin: 0px;
37 font-weight: bold;
38 color: #333;
39 }
40 p
41 {
42 line-height: 120%;
43 margin: 0px 0px 6px 0px;
44 padding: 0px;
45 }
@@ -0,0 +1,86 b''
1 <?xml version='1.0' encoding='iso-8859-1'?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
6 <link rel="stylesheet" href="igrid_help.css" type="text/css" />
7 <title>igrid help</title>
8 </head>
9 <body>
10 <h1>igrid help</h1>
11
12
13 <h2>Commands</h2>
14
15
16 <h3>pick (P)</h3>
17 <p>Pick the whole row (object is available as "_")</p>
18
19 <h3>pickattr (Shift-P)</h3>
20 <p>Pick the attribute under the cursor</p>
21
22 <h3>pickallattrs (Shift-C)</h3>
23 <p>Pick' the complete column under the cursor (i.e. the attribute under the
24 cursor) from all currently fetched objects. These attributes will be returned
25 as a list.</p>
26
27 <h3>enter (E)</h3>
28 <p>Enter the object under the cursor. (what this mean depends on the object
29 itself, i.e. how it implements iteration). This opens a new browser 'level'.</p>
30
31 <h3>enterattr (Shift-E)</h3>
32 <p>Enter the attribute under the cursor.</p>
33
34 <h3>detail (D)</h3>
35 <p>Show a detail view of the object under the cursor. This shows the name,
36 type, doc string and value of the object attributes (and it might show more
37 attributes than in the list view, depending on the object).</p>
38
39 <h3>detailattr (Shift-D)</h3>
40 <p>Show a detail view of the attribute under the cursor.</p>
41
42 <h3>pickrows (M)</h3>
43 <p>Pick multiple selected rows (M)</p>
44
45 <h3>pickrowsattr (CTRL-M)</h3>
46 <p>From multiple selected rows pick the cells matching the attribute the cursor is in (CTRL-M)</p>
47
48 <h3>find (CTRL-F)</h3>
49 <p>Find text</p>
50
51 <h3>find_next (F3)</h3>
52 <p>Find next occurrence of the searchtext</p>
53
54 <h3>find_previous (Shift-F3)</h3>
55 <p>Find previous occurrence of the searchtext </p>
56
57 <h3>sortattrasc (V)</h3>
58 <p>Sort the objects (in ascending order) using the attribute under the cursor as the sort key.</p>
59
60 <h3>sortattrdesc (Shift-V)</h3>
61 <p>Sort the objects (in descending order) using the attribute under the cursor as the sort key.</p>
62
63 <h3>leave (Backspace, DEL, X)</h3>
64 <p>Close current tab (and all the tabs to the right of the current one).</h3>
65
66 <h3>quit (ESC,Q)</h3>
67 <p>Quit igrid and return to the IPython prompt.</p>
68
69
70 <h2>Navigation</h2>
71
72
73 <h3>Jump to the last column of the current row (END, CTRL-E, CTRL-Right)</h3>
74
75 <h3>Jump to the first column of the current row (HOME, CTRL-A, CTRL-Left)</h3>
76
77 <h3>Move the cursor one column to the left (&lt;)</h3>
78
79 <h3>Move the cursor one column to the right (&gt;)</h3>
80
81 <h3>Jump to the first row in the current column (CTRL-Up)</h3>
82
83 <h3>Jump to the last row in the current column (CTRL-Down)</h3>
84
85 </body>
86 </html>
@@ -704,7 +704,7 b' class IGridFrame(wx.Frame):'
704 """
704 """
705 Display a help dialog
705 Display a help dialog
706 """
706 """
707 filename = os.path.join(os.path.dirname(__file__), "help.html")
707 filename = os.path.join(os.path.dirname(__file__), "igrid_help.html")
708 frm = IGridHTMLHelp(None, title="Help", filename=filename, size=wx.Size(600,400))
708 frm = IGridHTMLHelp(None, title="Help", filename=filename, size=wx.Size(600,400))
709 frm.Show()
709 frm.Show()
710
710
General Comments 0
You need to be logged in to leave comments. Login now