287
|
1 <!DOCTYPE HTML>
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
11
|
|
12
|
|
13
|
|
14
|
|
15
|
|
16
|
|
17
|
|
18
|
|
19
|
|
20
|
|
21
|
|
22 <html>
|
|
23 <!-- toolshed webapp base_panels.mako-->
|
|
24
|
|
25
|
|
26
|
|
27
|
|
28
|
|
29
|
|
30
|
|
31
|
|
32 <head>
|
|
33 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
34
|
|
35 <title>
|
|
36 Galaxy
|
|
37 | Tool Shed
|
|
38 </title>
|
|
39
|
|
40 <link rel="index" href="/"/>
|
|
41
|
|
42
|
|
43
|
|
44 <!--- base/base_panels.mako stylesheets() -->
|
|
45 <link href="/static/dist/base.css?v=1717170859000" media="screen" rel="stylesheet" type="text/css" />
|
|
46
|
|
47
|
|
48
|
|
49
|
|
50
|
|
51
|
|
52
|
|
53 <!--- base/base_panels.mako javascripts() -->
|
|
54 <script src="/static/dist/libs.bundled.js?v=1717170859000" type="text/javascript"></script>
|
|
55
|
|
56 <!-- base/base_panels.mako javascript_entry -->
|
|
57 <script src="/static/dist/toolshed.bundled.js?v=1717170859000" type="text/javascript"></script>
|
|
58
|
|
59
|
|
60 <script type="text/javascript">
|
|
61 config.addInitialization(function() {
|
|
62 console.log("toolshed/base_panels.mako", "hardcoded dropdown init");
|
|
63
|
|
64 // Masthead dropdown menus
|
|
65 var $dropdowns = $("#masthead ul.nav > li.dropdown > .dropdown-menu");
|
|
66 $("body").on( "click.nav_popups", function( e ) {
|
|
67 $dropdowns.hide();
|
|
68 $("#dd-helper").hide();
|
|
69 // If the target is in the menu, treat normally
|
|
70 if ( $(e.target).closest( "#masthead ul.nav > li.dropdown > .dropdown-menu" ).length ) {
|
|
71 return;
|
|
72 }
|
|
73 // Otherwise, was the click in a tab
|
|
74 var $clicked = $(e.target).closest( "#masthead ul.nav > li.dropdown" );
|
|
75 if ( $clicked.length ) {
|
|
76 $("#dd-helper").show();
|
|
77 $clicked.children( ".dropdown-menu" ).show();
|
|
78 e.preventDefault();
|
|
79 }
|
|
80 });
|
|
81 });
|
|
82 </script>
|
|
83
|
|
84
|
|
85
|
|
86
|
|
87 <!--- base/base_panels.mako javascript_app() -->
|
|
88
|
|
89 <script type="text/javascript">
|
|
90 // galaxy_client_app.mako, load
|
|
91
|
|
92 var bootstrapped;
|
|
93 try {
|
|
94 bootstrapped =
|
|
95 {}
|
|
96 ;
|
|
97 } catch(err) {
|
|
98 console.warn("Unable to parse bootstrapped variable", err);
|
|
99 bootstrapped = {};
|
|
100 }
|
|
101
|
|
102 var options = {
|
|
103 root: '/',
|
|
104 user:
|
|
105
|
|
106 {
|
|
107 "total_disk_usage": 0,
|
|
108 "nice_total_disk_usage": "0 bytes",
|
|
109 "quota_percent": null
|
|
110 }
|
|
111 ,
|
|
112 session_csrf_token: '8dbe9dc0de87584f388838e3710d0c30'
|
|
113 };
|
|
114
|
|
115 config.set({
|
|
116 options: options,
|
|
117 bootstrapped: bootstrapped
|
|
118 });
|
|
119
|
|
120
|
|
121 </script>
|
|
122
|
|
123
|
|
124
|
|
125
|
|
126 </head>
|
|
127
|
|
128
|
|
129
|
|
130
|
|
131 <body scroll="no" class="full-content toolshed">
|
|
132 <div id="everything">
|
|
133
|
|
134 <div id="background"></div>
|
|
135
|
|
136 <div>
|
|
137
|
|
138
|
|
139
|
|
140 <script>
|
|
141 console.log("config_google_analytics ga_code:", 'UA-45719423-12');
|
|
142 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
143 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
144 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
145 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
146 ga('create', 'UA-45719423-12', 'auto');
|
|
147 ga('send', 'pageview');
|
|
148 </script>
|
|
149
|
|
150
|
|
151 <nav id="masthead" class="masthead-simple navbar navbar-expand navbar-fixed-top justify-content-center navbar-dark">
|
|
152
|
|
153 <a href="/" aria-label="homepage" class="navbar-brand">
|
|
154 <img alt="logo" class="navbar-brand-image" src="/static/favicon.svg">
|
|
155 <span class="navbar-brand-title">
|
|
156 Tool Shed
|
|
157 </span>
|
|
158 </a>
|
|
159
|
|
160 <ul class="navbar-nav">
|
|
161
|
|
162
|
|
163
|
|
164
|
|
165
|
|
166 <li class="nav-item" style="">
|
|
167 <a
|
|
168 class="nav-link" target="_parent" href="/repository"
|
|
169 >
|
|
170 Repositories
|
|
171 </a>
|
|
172 </li>
|
|
173
|
|
174
|
|
175
|
|
176
|
|
177
|
|
178 <li class="nav-item" style="">
|
|
179 <a
|
|
180 class="nav-link" target="_parent" href="/groups"
|
|
181 >
|
|
182 Groups
|
|
183 </a>
|
|
184 </li>
|
|
185
|
|
186
|
|
187
|
|
188
|
|
189
|
|
190 <li class="admin-only" style="display: none;">
|
|
191 <a
|
|
192 class="nav-link" target="_parent" href="/admin"
|
|
193 >
|
|
194 Admin
|
|
195 </a>
|
|
196 </li>
|
|
197
|
|
198
|
|
199
|
|
200
|
|
201
|
|
202 <li class="nav-item dropdown" style="">
|
|
203 <a
|
|
204 class="nav-link dropdown-toggle"
|
|
205 role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
|
206 >
|
|
207 Help<b class='caret'></b>
|
|
208 </a>
|
|
209 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
210
|
|
211 <a class="dropdown-item" target="_blank" href="https://galaxyproject.org/toolshed">About Tool Shed</a>
|
|
212
|
|
213 <a class="dropdown-item" target="_blank" href="https://galaxyproject.org/support">Support</a>
|
|
214
|
|
215 <a class="dropdown-item" target="_blank" href="https://vimeo.com/galaxyproject">Videos</a>
|
|
216
|
|
217 <a class="dropdown-item" target="_blank" href="https://galaxyproject.org/citing-galaxy">How to Cite Tool Shed</a>
|
|
218 </div>
|
|
219 </li>
|
|
220
|
|
221
|
|
222
|
|
223
|
|
224
|
|
225 <li class="nav-item dropdown" style="">
|
|
226 <a
|
|
227 class="nav-link dropdown-toggle"
|
|
228 role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
|
229 >
|
|
230 User<b class='caret'></b>
|
|
231 </a>
|
|
232 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
233
|
|
234 <a class="dropdown-item" target="galaxy_main" href="/user/login">Login</a>
|
|
235
|
|
236 <a class="dropdown-item" target="galaxy_main" href="/user/create?cntrller=user">Register</a>
|
|
237 </div>
|
|
238 </li>
|
|
239
|
|
240
|
|
241
|
|
242 <li class="nav-item dropdown" style="display: none;">
|
|
243 <a
|
|
244 class="nav-link dropdown-toggle"
|
|
245 role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
|
246 >
|
|
247 User<b class='caret'></b>
|
|
248 </a>
|
|
249 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
250 <a class="dropdown-item" href="javascript:void(0)" role="button">
|
|
251 Logged in as <span id="user-email"></span>
|
|
252 </a>
|
|
253
|
|
254 <a class="dropdown-item" target="galaxy_main" href="/user?cntrller=user">Preferences</a>
|
|
255
|
|
256 <a class="dropdown-item" target="galaxy_main" href="/user/api_keys?cntrller=user">API Keys</a>
|
|
257
|
|
258 <a class="dropdown-item" target="_top" href="/user/logout">Logout</a>
|
|
259 </div>
|
|
260 </li>
|
|
261
|
|
262 </ul>
|
|
263 </nav>
|
|
264
|
|
265 </div>
|
|
266
|
|
267
|
|
268
|
|
269
|
|
270
|
|
271
|
|
272
|
|
273
|
|
274
|
|
275 <div id="top-modal" class="modal " style='display: none;'>
|
|
276 <div id="top-modal-backdrop" class="modal-backdrop fade " style="z-index: -1"></div>
|
|
277 <div id="top-modal-dialog" class="modal-dialog">
|
|
278 <div class="modal-content">
|
|
279 <div class="modal-header">
|
|
280 <button type='button' class='close' style="display: none;">×</button>
|
|
281 <h4 class='title'></h4>
|
|
282 </div>
|
|
283 <div class="modal-body"></div>
|
|
284 <div class="modal-footer">
|
|
285 <div class="buttons" style="float: right;"></div>
|
|
286 <div class="extra_buttons" style=""></div>
|
|
287 <div style="clear: both;"></div>
|
|
288 </div>
|
|
289 </div>
|
|
290 </div>
|
|
291 </div>
|
|
292
|
|
293
|
|
294 <div id="columns" class="d-flex">
|
|
295 <div id="left">
|
|
296
|
|
297 <div class="unified-panel-header" unselectable="on">
|
|
298 <div class='unified-panel-header-inner'>9963 valid tools on Jul 09, 2024</div>
|
|
299 </div>
|
|
300 <div style="padding: 0.5rem;">
|
|
301 <div class="toolMenu">
|
|
302 <div class="toolSectionList">
|
|
303 <div class="toolSectionPad"></div>
|
|
304 <div class="toolSectionTitle">
|
|
305 All Repositories
|
|
306 </div>
|
|
307 <div class="toolTitle">
|
|
308 <a href="/repository">Browse by category</a>
|
|
309 </div>
|
|
310 </div>
|
|
311 </div>
|
|
312 </div>
|
|
313
|
|
314 </div>
|
|
315 <div id="center" class="inbound">
|
|
316
|
|
317
|
|
318 <iframe name="galaxy_main" id="galaxy_main" frameborder="0" style="position: absolute; width: 75%; height: 100%;" src="/repository/view_repository?id=1a5732c8e4c561e3&changeset_revision=3cba04bd0fbc&message=&status=done"></iframe>
|
|
319
|
|
320 </div>
|
|
321 </div>
|
|
322 </div>
|
|
323
|
|
324 <div id='dd-helper' style="display: none;"></div>
|
|
325
|
|
326 <!--- base/base_panels.mako late_javascripts() -->
|
|
327
|
|
328
|
|
329
|
|
330 </body>
|
|
331 </html>
|