##// END OF EJS Templates
Minor fixes to text and formatting of error message.
Fernando Perez -
Show More
@@ -1,56 +1,53 b''
1
2 /**
1 /**
3 * Primary styles
2 * Primary styles
4 *
3 *
5 * Author: IPython Development Team
4 * Author: IPython Development Team
6 */
5 */
7
6
8
7
9 body {
8 body {
10 background-color: white;
9 background-color: white;
11 /* This makes sure that the body covers the entire window and needs to
10 /* This makes sure that the body covers the entire window and needs to
12 be in a different element than the display: box in wrapper below */
11 be in a different element than the display: box in wrapper below */
13 position: absolute;
12 position: absolute;
14 left: 0px;
13 left: 0px;
15 right: 0px;
14 right: 0px;
16 top: 0px;
15 top: 0px;
17 bottom: 0px;
16 bottom: 0px;
18 overflow: hidden;
17 overflow: hidden;
19 }
18 }
20
19
21
20
22 div#header {
21 div#header {
23 /* Initially hidden to prevent FLOUC */
22 /* Initially hidden to prevent FLOUC */
24 display: none;
23 display: none;
25 position: relative;
24 position: relative;
26 height: 45px;
25 height: 45px;
27 padding: 5px;
26 padding: 5px;
28 margin: 0px;
27 margin: 0px;
29 width: 100%;
28 width: 100%;
30 }
29 }
31
30
32 span#ipython_notebook {
31 span#ipython_notebook {
33 position: absolute;
32 position: absolute;
34 padding: 2px;
33 padding: 2px;
35 }
34 }
36
35
37 span#ipython_notebook h1 {
36 span#ipython_notebook h1 {
38 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
37 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
39 font-size: 197%;
38 font-size: 197%;
40 display: inline;
39 display: inline;
41 color: black;
40 color: black;
42 }
41 }
43
42
44 div#main_app {
43 div#main_app {
45 /* Initially hidden to prevent FLOUC */
44 /* Initially hidden to prevent FLOUC */
46 display: none;
45 display: none;
47 width: 100%;
46 width: 100%;
48 position: relative;
47 position: relative;
49 }
48 }
50
49
51 .ui-button .ui-button-text {
50 .ui-button .ui-button-text {
52 padding: 0.2em 0.8em;
51 padding: 0.2em 0.8em;
53 font-size: 77%;
52 font-size: 77%;
54 }
53 }
55
56
@@ -1,271 +1,276 b''
1 <!DOCTYPE HTML>
1 <!DOCTYPE HTML>
2 <html>
2 <html>
3
3
4 <head>
4 <head>
5 <meta charset="utf-8">
5 <meta charset="utf-8">
6
6
7 <title>IPython Notebook</title>
7 <title>IPython Notebook</title>
8
8
9 <link rel="stylesheet" href="static/jquery/css/themes/aristo/jquery-wijmo.css" type="text/css" />
9 <link rel="stylesheet" href="static/jquery/css/themes/aristo/jquery-wijmo.css" type="text/css" />
10 <!-- <link rel="stylesheet" href="static/jquery/css/themes/rocket/jquery-wijmo.css" type="text/css" /> -->
10 <!-- <link rel="stylesheet" href="static/jquery/css/themes/rocket/jquery-wijmo.css" type="text/css" /> -->
11 <!-- <link rel="stylesheet" href="static/jquery/css/themes/smoothness/jquery-ui-1.8.14.custom.css" type="text/css" />-->
11 <!-- <link rel="stylesheet" href="static/jquery/css/themes/smoothness/jquery-ui-1.8.14.custom.css" type="text/css" />-->
12
12
13 <!-- <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" charset="utf-8"></script> -->
13 <!-- <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" charset="utf-8"></script> -->
14 <script type='text/javascript' src='static/mathjax/MathJax.js?config=TeX-AMS_HTML' charset='utf-8'></script>
14 <script type='text/javascript' src='static/mathjax/MathJax.js?config=TeX-AMS_HTML' charset='utf-8'></script>
15 <script type="text/javascript">
15 <script type="text/javascript">
16 function CheckMathJax(){
16 function CheckMathJax(){
17 var div=document.getElementById("MathJaxFetchingWarning")
17 var div=document.getElementById("MathJaxFetchingWarning")
18 if(window.MathJax){
18 if(window.MathJax){
19 document.body.removeChild(div)
19 document.body.removeChild(div)
20 }
20 }
21 else{
21 else{
22 div.style.display = "block";
22 div.style.display = "block";
23 }
23 }
24 }
24 }
25 if (typeof MathJax == 'undefined') {
25 if (typeof MathJax == 'undefined') {
26 console.log("No local MathJax, loading from CDN");
26 console.log("No local MathJax, loading from CDN");
27 document.write(unescape("%3Cscript type='text/javascript' src='http://cdn.mathjax.org/mathjax/latest/MathJax.js%3Fconfig=TeX-AMS_HTML' charset='utf-8'%3E%3C/script%3E"));
27 document.write(unescape("%3Cscript type='text/javascript' src='http://cdn.mathjax.org/mathjax/latest/MathJax.js%3Fconfig=TeX-AMS_HTML' charset='utf-8'%3E%3C/script%3E"));
28 }else{
28 }else{
29 console.log("Using local MathJax");
29 console.log("Using local MathJax");
30 }
30 }
31 </script>
31 </script>
32
32
33 <link rel="stylesheet" href="static/codemirror-2.12/lib/codemirror.css">
33 <link rel="stylesheet" href="static/codemirror-2.12/lib/codemirror.css">
34 <link rel="stylesheet" href="static/codemirror-2.12/mode/rst/rst.css">
34 <link rel="stylesheet" href="static/codemirror-2.12/mode/rst/rst.css">
35 <link rel="stylesheet" href="static/codemirror-2.12/theme/ipython.css">
35 <link rel="stylesheet" href="static/codemirror-2.12/theme/ipython.css">
36 <link rel="stylesheet" href="static/codemirror-2.12/theme/default.css">
36 <link rel="stylesheet" href="static/codemirror-2.12/theme/default.css">
37
37
38 <link rel="stylesheet" href="static/prettify/prettify.css"/>
38 <link rel="stylesheet" href="static/prettify/prettify.css"/>
39
39
40 <link rel="stylesheet" href="static/css/boilerplate.css" type="text/css" />
40 <link rel="stylesheet" href="static/css/boilerplate.css" type="text/css" />
41 <link rel="stylesheet" href="static/css/layout.css" type="text/css" />
41 <link rel="stylesheet" href="static/css/layout.css" type="text/css" />
42 <link rel="stylesheet" href="static/css/base.css" type="text/css" />
42 <link rel="stylesheet" href="static/css/base.css" type="text/css" />
43 <link rel="stylesheet" href="static/css/notebook.css" type="text/css" />
43 <link rel="stylesheet" href="static/css/notebook.css" type="text/css" />
44 <link rel="stylesheet" href="static/css/renderedhtml.css" type="text/css" />
44 <link rel="stylesheet" href="static/css/renderedhtml.css" type="text/css" />
45
45
46
46
47 </head>
47 </head>
48
48
49 <body onload='CheckMathJax();'>
49 <body onload='CheckMathJax();'>
50
50
51 <div id="header">
51 <div id="header">
52 <span id="ipython_notebook"><h1>IPython Notebook</h1></span>
52 <span id="ipython_notebook"><h1>IPython Notebook</h1></span>
53 <span id="save_widget">
53 <span id="save_widget">
54 <input type="text" id="notebook_name" size="20"></textarea>
54 <input type="text" id="notebook_name" size="20"></textarea>
55 <span id="notebook_id" style="display:none">{{notebook_id}}</span>
55 <span id="notebook_id" style="display:none">{{notebook_id}}</span>
56 <button id="save_notebook"><u>S</u>ave</button>
56 <button id="save_notebook"><u>S</u>ave</button>
57 </span>
57 </span>
58 <span id="kernel_status">Idle</span>
58 <span id="kernel_status">Idle</span>
59 </div>
59 </div>
60
60
61 <div id="MathJaxFetchingWarning" style="width:80%;margin:auto;padding-top:20%;text-align:justify;display:none">
61 <div id="MathJaxFetchingWarning"
62 <p style="font-size:26px;">There was an issues trying to fetch MathJax.js from the internet.</p>
62 style="width:80%; margin:auto;padding-top:20%;text-align: justify; display:none">
63 <p>You may want to consider running the following in order to be able to use the Notebook.
63 <p style="font-size:26px;">There was an issue trying to fetch MathJax.js
64 <pre style="background-color:lightblue;border:thin silver solid">
64 from the internet.</p>
65
66 <p style="padding:0.2em"> With a working internet connection, you can run
67 the following at a Python or IPython prompt, which will install a local
68 copy of MathJax:</p>
69
70 <pre style="background-color:lightblue;border:thin silver solid;padding:0.4em">
65 from IPython.external import mathjax; mathjax.install_mathjax()
71 from IPython.external import mathjax; mathjax.install_mathjax()
66 </pre>
72 </pre>
67 Note that this will require a working internet connection when run, and
73 This will try to install MathJax into the directory where you installed
68 it will try to install MathJax into the directory where you installed
69 IPython. If you installed IPython to a location that requires
74 IPython. If you installed IPython to a location that requires
70 administrative privileges to write, you will need to make this call as
75 administrative privileges to write, you will need to make this call as
71 an administrator. On OSX/Linux/Unix, this can be done at the
76 an administrator. On OSX/Linux/Unix, this can be done at the
72 command-line via:
77 command-line via:
73 <pre style="background-color:lightblue;border:thin silver solid">
78 <pre style="background-color:lightblue;border:thin silver solid;padding:0.4em">
74 sudo python -c "from IPython.external import mathjax; mathjax.install_mathjax()"
79 sudo python -c "from IPython.external import mathjax; mathjax.install_mathjax()"
75 </pre>
80 </pre>
76 </p>
81 </p>
77 </div>
82 </div>
78
83
79 <div id="main_app">
84 <div id="main_app">
80
85
81 <div id="left_panel">
86 <div id="left_panel">
82
87
83 <div id="notebook_section">
88 <div id="notebook_section">
84 <h3 class="section_header">Notebook</h3>
89 <h3 class="section_header">Notebook</h3>
85 <div class="section_content">
90 <div class="section_content">
86 <div class="section_row">
91 <div class="section_row">
87 <span id="new_open" class="section_row_buttons">
92 <span id="new_open" class="section_row_buttons">
88 <button id="new_notebook">New</button>
93 <button id="new_notebook">New</button>
89 <button id="open_notebook">Open</button>
94 <button id="open_notebook">Open</button>
90 </span>
95 </span>
91 <span class="section_row_header">Actions</span>
96 <span class="section_row_header">Actions</span>
92 </div>
97 </div>
93 <div class="section_row">
98 <div class="section_row">
94 <span>
99 <span>
95 <select id="download_format">
100 <select id="download_format">
96 <option value="json">ipynb</option>
101 <option value="json">ipynb</option>
97 <option value="py">py</option>
102 <option value="py">py</option>
98 </select>
103 </select>
99 </span>
104 </span>
100 <span class="section_row_buttons">
105 <span class="section_row_buttons">
101 <button id="download_notebook">Download</button>
106 <button id="download_notebook">Download</button>
102 </span>
107 </span>
103 </div>
108 </div>
104 <div class="section_row">
109 <div class="section_row">
105 <span class="section_row_buttons">
110 <span class="section_row_buttons">
106 <span id="print_widget">
111 <span id="print_widget">
107 <button id="print_notebook">Print</button>
112 <button id="print_notebook">Print</button>
108 </span>
113 </span>
109 </span>
114 </span>
110 </div>
115 </div>
111 </div>
116 </div>
112 </div>
117 </div>
113
118
114 <div id="cell_section">
119 <div id="cell_section">
115 <h3 class="section_header">Cell</h3>
120 <h3 class="section_header">Cell</h3>
116 <div class="section_content">
121 <div class="section_content">
117 <div class="section_row">
122 <div class="section_row">
118 <span class="section_row_buttons">
123 <span class="section_row_buttons">
119 <button id="delete_cell"><u>D</u>elete</button>
124 <button id="delete_cell"><u>D</u>elete</button>
120 </span>
125 </span>
121 <span class="section_row_header">Actions</span>
126 <span class="section_row_header">Actions</span>
122 </div>
127 </div>
123 <div class="section_row">
128 <div class="section_row">
124 <span id="cell_type" class="section_row_buttons">
129 <span id="cell_type" class="section_row_buttons">
125 <button id="to_code"><u>C</u>ode</button>
130 <button id="to_code"><u>C</u>ode</button>
126 <!-- <button id="to_html">HTML</button>-->
131 <!-- <button id="to_html">HTML</button>-->
127 <button id="to_markdown"><u>M</u>arkdown</button>
132 <button id="to_markdown"><u>M</u>arkdown</button>
128 </span>
133 </span>
129 <span class="button_label">Format</span>
134 <span class="button_label">Format</span>
130 </div>
135 </div>
131 <div class="section_row">
136 <div class="section_row">
132 <span id="cell_output" class="section_row_buttons">
137 <span id="cell_output" class="section_row_buttons">
133 <button id="toggle_output"><u>T</u>oggle</button>
138 <button id="toggle_output"><u>T</u>oggle</button>
134 <button id="clear_all_output">ClearAll</button>
139 <button id="clear_all_output">ClearAll</button>
135 </span>
140 </span>
136 <span class="button_label">Output</span>
141 <span class="button_label">Output</span>
137 </div>
142 </div>
138 <div class="section_row">
143 <div class="section_row">
139 <span id="insert" class="section_row_buttons">
144 <span id="insert" class="section_row_buttons">
140 <button id="insert_cell_above"><u>A</u>bove</button>
145 <button id="insert_cell_above"><u>A</u>bove</button>
141 <button id="insert_cell_below"><u>B</u>elow</button>
146 <button id="insert_cell_below"><u>B</u>elow</button>
142 </span>
147 </span>
143 <span class="button_label">Insert</span>
148 <span class="button_label">Insert</span>
144 </div>
149 </div>
145 <div class="section_row">
150 <div class="section_row">
146 <span id="move" class="section_row_buttons">
151 <span id="move" class="section_row_buttons">
147 <button id="move_cell_up">Up</button>
152 <button id="move_cell_up">Up</button>
148 <button id="move_cell_down">Down</button>
153 <button id="move_cell_down">Down</button>
149 </span>
154 </span>
150 <span class="button_label">Move</span>
155 <span class="button_label">Move</span>
151 </div>
156 </div>
152 <div class="section_row">
157 <div class="section_row">
153 <span id="run_cells" class="section_row_buttons">
158 <span id="run_cells" class="section_row_buttons">
154 <button id="run_selected_cell">Selected</button>
159 <button id="run_selected_cell">Selected</button>
155 <button id="run_all_cells">All</button>
160 <button id="run_all_cells">All</button>
156 </span>
161 </span>
157 <span class="button_label">Run</span>
162 <span class="button_label">Run</span>
158 </div>
163 </div>
159 <div class="section_row">
164 <div class="section_row">
160 <span id="autoindent_span">
165 <span id="autoindent_span">
161 <input type="checkbox" id="autoindent" checked="true"></input>
166 <input type="checkbox" id="autoindent" checked="true"></input>
162 </span>
167 </span>
163 <span class="checkbox_label">Autoindent:</span>
168 <span class="checkbox_label">Autoindent:</span>
164 </div>
169 </div>
165 </div>
170 </div>
166 </div>
171 </div>
167
172
168 <div id="kernel_section">
173 <div id="kernel_section">
169 <h3 class="section_header">Kernel</h3>
174 <h3 class="section_header">Kernel</h3>
170 <div class="section_content">
175 <div class="section_content">
171 <div class="section_row">
176 <div class="section_row">
172 <span id="int_restart" class="section_row_buttons">
177 <span id="int_restart" class="section_row_buttons">
173 <button id="int_kernel">Interrupt</button>
178 <button id="int_kernel">Interrupt</button>
174 <button id="restart_kernel">Restart</button>
179 <button id="restart_kernel">Restart</button>
175 </span>
180 </span>
176 <span class="section_row_header">Actions</span>
181 <span class="section_row_header">Actions</span>
177 </div>
182 </div>
178 <div class="section_row">
183 <div class="section_row">
179 <span id="kernel_persist">
184 <span id="kernel_persist">
180 <input type="checkbox" id="kill_kernel"></input>
185 <input type="checkbox" id="kill_kernel"></input>
181 </span>
186 </span>
182 <span class="checkbox_label">Kill kernel upon exit:</span>
187 <span class="checkbox_label">Kill kernel upon exit:</span>
183 </div>
188 </div>
184 </div>
189 </div>
185 </div>
190 </div>
186
191
187 <div id="help_section">
192 <div id="help_section">
188 <h3 class="section_header">Help</h3>
193 <h3 class="section_header">Help</h3>
189 <div class="section_content">
194 <div class="section_content">
190 <div class="section_row">
195 <div class="section_row">
191 <span id="help_buttons0" class="section_row_buttons">
196 <span id="help_buttons0" class="section_row_buttons">
192 <a id="python_help" href="http://docs.python.org" target="_blank">Python</a>
197 <a id="python_help" href="http://docs.python.org" target="_blank">Python</a>
193 <a id="ipython_help" href="http://ipython.org/documentation.html" target="_blank">IPython</a>
198 <a id="ipython_help" href="http://ipython.org/documentation.html" target="_blank">IPython</a>
194 </span>
199 </span>
195 <span class="section_row_header">Links</span>
200 <span class="section_row_header">Links</span>
196 </div>
201 </div>
197 <div class="section_row">
202 <div class="section_row">
198 <span id="help_buttons1" class="section_row_buttons">
203 <span id="help_buttons1" class="section_row_buttons">
199 <a id="numpy_help" href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy</a>
204 <a id="numpy_help" href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy</a>
200 <a id="scipy_help" href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy</a>
205 <a id="scipy_help" href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy</a>
201 </span>
206 </span>
202 </div>
207 </div>
203 <div class="section_row">
208 <div class="section_row">
204 <span id="help_buttons2" class="section_row_buttons">
209 <span id="help_buttons2" class="section_row_buttons">
205 <a id="matplotlib_help" href="http://matplotlib.sourceforge.net/" target="_blank">MPL</a>
210 <a id="matplotlib_help" href="http://matplotlib.sourceforge.net/" target="_blank">MPL</a>
206 <a id="sympy_help" href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy</a>
211 <a id="sympy_help" href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy</a>
207 </span>
212 </span>
208 </div>
213 </div>
209 <div class="section_row">
214 <div class="section_row">
210 <span class="help_string">run selected cell</span>
215 <span class="help_string">run selected cell</span>
211 <span class="help_string_label">Shift-Enter :</span>
216 <span class="help_string_label">Shift-Enter :</span>
212 </div>
217 </div>
213 <div class="section_row">
218 <div class="section_row">
214 <span class="help_string">run in terminal mode</span>
219 <span class="help_string">run in terminal mode</span>
215 <span class="help_string_label">Ctrl-Enter :</span>
220 <span class="help_string_label">Ctrl-Enter :</span>
216 </div>
221 </div>
217 <div class="section_row">
222 <div class="section_row">
218 <span class="help_string">show keyboard shortcuts</span>
223 <span class="help_string">show keyboard shortcuts</span>
219 <span class="help_string_label">Ctrl-m h :</span>
224 <span class="help_string_label">Ctrl-m h :</span>
220 </div>
225 </div>
221 </div>
226 </div>
222 </div>
227 </div>
223
228
224 </div>
229 </div>
225 <div id="left_panel_splitter"></div>
230 <div id="left_panel_splitter"></div>
226 <div id="notebook_panel">
231 <div id="notebook_panel">
227 <div id="notebook"></div>
232 <div id="notebook"></div>
228 <div id="pager_splitter"></div>
233 <div id="pager_splitter"></div>
229 <div id="pager"></div>
234 <div id="pager"></div>
230 </div>
235 </div>
231
236
232 </div>
237 </div>
233
238
234 <script src="static/jquery/js/jquery-1.6.2.min.js" type="text/javascript" charset="utf-8"></script>
239 <script src="static/jquery/js/jquery-1.6.2.min.js" type="text/javascript" charset="utf-8"></script>
235 <script src="static/jquery/js/jquery-ui-1.8.14.custom.min.js" type="text/javascript" charset="utf-8"></script>
240 <script src="static/jquery/js/jquery-ui-1.8.14.custom.min.js" type="text/javascript" charset="utf-8"></script>
236 <script src="static/jquery/js/jquery.autogrow.js" type="text/javascript" charset="utf-8"></script>
241 <script src="static/jquery/js/jquery.autogrow.js" type="text/javascript" charset="utf-8"></script>
237
242
238 <script src="static/codemirror-2.12/lib/codemirror.js" charset="utf-8"></script>
243 <script src="static/codemirror-2.12/lib/codemirror.js" charset="utf-8"></script>
239 <script src="static/codemirror-2.12/mode/python/python.js" charset="utf-8"></script>
244 <script src="static/codemirror-2.12/mode/python/python.js" charset="utf-8"></script>
240 <script src="static/codemirror-2.12/mode/htmlmixed/htmlmixed.js" charset="utf-8"></script>
245 <script src="static/codemirror-2.12/mode/htmlmixed/htmlmixed.js" charset="utf-8"></script>
241 <script src="static/codemirror-2.12/mode/xml/xml.js" charset="utf-8"></script>
246 <script src="static/codemirror-2.12/mode/xml/xml.js" charset="utf-8"></script>
242 <script src="static/codemirror-2.12/mode/javascript/javascript.js" charset="utf-8"></script>
247 <script src="static/codemirror-2.12/mode/javascript/javascript.js" charset="utf-8"></script>
243 <script src="static/codemirror-2.12/mode/css/css.js" charset="utf-8"></script>
248 <script src="static/codemirror-2.12/mode/css/css.js" charset="utf-8"></script>
244 <script src="static/codemirror-2.12/mode/rst/rst.js" charset="utf-8"></script>
249 <script src="static/codemirror-2.12/mode/rst/rst.js" charset="utf-8"></script>
245
250
246 <script src="static/pagedown/Markdown.Converter.js" charset="utf-8"></script>
251 <script src="static/pagedown/Markdown.Converter.js" charset="utf-8"></script>
247
252
248 <script src="static/prettify/prettify.js" charset="utf-8"></script>
253 <script src="static/prettify/prettify.js" charset="utf-8"></script>
249
254
250 <script src="static/js/namespace.js" type="text/javascript" charset="utf-8"></script>
255 <script src="static/js/namespace.js" type="text/javascript" charset="utf-8"></script>
251 <script src="static/js/utils.js" type="text/javascript" charset="utf-8"></script>
256 <script src="static/js/utils.js" type="text/javascript" charset="utf-8"></script>
252 <script src="static/js/cell.js" type="text/javascript" charset="utf-8"></script>
257 <script src="static/js/cell.js" type="text/javascript" charset="utf-8"></script>
253 <script src="static/js/codecell.js" type="text/javascript" charset="utf-8"></script>
258 <script src="static/js/codecell.js" type="text/javascript" charset="utf-8"></script>
254 <script src="static/js/textcell.js" type="text/javascript" charset="utf-8"></script>
259 <script src="static/js/textcell.js" type="text/javascript" charset="utf-8"></script>
255 <script src="static/js/kernel.js" type="text/javascript" charset="utf-8"></script>
260 <script src="static/js/kernel.js" type="text/javascript" charset="utf-8"></script>
256 <script src="static/js/kernelstatus.js" type="text/javascript" charset="utf-8"></script>
261 <script src="static/js/kernelstatus.js" type="text/javascript" charset="utf-8"></script>
257 <script src="static/js/layout.js" type="text/javascript" charset="utf-8"></script>
262 <script src="static/js/layout.js" type="text/javascript" charset="utf-8"></script>
258 <script src="static/js/savewidget.js" type="text/javascript" charset="utf-8"></script>
263 <script src="static/js/savewidget.js" type="text/javascript" charset="utf-8"></script>
259 <script src="static/js/pager.js" type="text/javascript" charset="utf-8"></script>
264 <script src="static/js/pager.js" type="text/javascript" charset="utf-8"></script>
260 <script src="static/js/panelsection.js" type="text/javascript" charset="utf-8"></script>
265 <script src="static/js/panelsection.js" type="text/javascript" charset="utf-8"></script>
261 <script src="static/js/printwidget.js" type="text/javascript" charset="utf-8"></script>
266 <script src="static/js/printwidget.js" type="text/javascript" charset="utf-8"></script>
262 <script src="static/js/leftpanel.js" type="text/javascript" charset="utf-8"></script>
267 <script src="static/js/leftpanel.js" type="text/javascript" charset="utf-8"></script>
263 <script src="static/js/notebook.js" type="text/javascript" charset="utf-8"></script>
268 <script src="static/js/notebook.js" type="text/javascript" charset="utf-8"></script>
264 <script src="static/js/notebook_main.js" type="text/javascript" charset="utf-8"></script>
269 <script src="static/js/notebook_main.js" type="text/javascript" charset="utf-8"></script>
265
270
266
271
267 </body>
272 </body>
268
273
269 </html>
274 </html>
270
275
271
276
General Comments 0
You need to be logged in to leave comments. Login now