![]() |
|
|
#1156 | |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
1C3516 Posts |
Quote:
|
|
|
|
|
|
|
#1157 |
|
"James Heinrich"
May 2004
ex-Northern Ontario
1101011000112 Posts |
For me it shows in exponent ascending order. I can click the column header to reorder to any column, but on page reload it returns to exponent order (as expected?)
|
|
|
|
|
|
#1158 | |
|
Oct 2015
2×7×19 Posts |
Quote:
|
|
|
|
|
|
|
#1159 | |
|
Serpentine Vermin Jar
Jul 2014
331310 Posts |
Quote:
Anyway, as you point out, they can be sorted. As far as I know, it *should* be sorting on the exponent field by default, but if there was a problem loading jquery, for instance, then the sorting code wouldn't load and it may display in whatever order they came out of SQL, which may be assignment date or something else. The 3rd party jquery library is needed for the sorting, and a few weeks ago I noticed it was failing to load for a short time. It's setup to load it from the shared ASPNet CDN cache (Microsoft's setup). I use that for other projects and it's the fastest across the board although Google's cache is pretty close behind. I guess if there are issues I can switch it to the Google location instead. |
|
|
|
|
|
|
#1160 | |
|
Undefined
"The unspeakable one"
Jun 2006
My evil lair
2·11·283 Posts |
Quote:
But anyhow I don't use JS so I don't notice when it is down. So I take it all back, the proper metric for me is <null>. :P |
|
|
|
|
|
|
#1161 | |
|
Jul 2004
Milan, Ita
18210 Posts |
Quote:
Nothing more than a minimal annoyance, after all - what surprised me was its sudden appeareance around mid of current week. |
|
|
|
|
|
|
#1162 | |
|
Serpentine Vermin Jar
Jul 2014
3,313 Posts |
Quote:
|
|
|
|
|
|
|
#1163 | |
|
Jul 2004
Milan, Ita
101101102 Posts |
Quote:
Assignment details are returned "unsorted" (i.e. not sorted accordingly to any in-page criteria), so your point about a failure/delay to load an external library might be the cause (on "this side" of the Atlantic pond, maybe?) In any case, I made a diff of the <head> sections for account results and assignments page, showing a missing stylesheet and two missing scripts on assignments' side: Code:
4c4
< <title>Account Results Details - PrimeNet</title>
---
> <title>GIMPS Assignment Details - PrimeNet</title>
17c17
< <meta name="description" content="GIMPS is the Great Internet Mersenne Prime Search, an organized search for Mersenne prime numbers. Free software provided.">
---
> <meta name="description" content="View your account's current assignments and work in progress.">
55,56c55
< <link rel="canonical" href="http://www.mersenne.org/results/" />
< <link rel="stylesheet" href="/scripts/tablesorter/css/theme.blue.css?v=20141025.1">
---
> <link rel="canonical" href="http://www.mersenne.org/workload/" />
58,59d56
< <script type="text/javascript" src="/scripts/tablesorter/js/jquery.tablesorter.widgets.js"></script>
< <script type="text/javascript" src="/scripts/tablesorter/js/widgets/widget-cssStickyHeaders.js"></script>
63,72c60
< sortLocaleCompare: true,
< theme : 'blue',
< widgets: [ 'cssStickyHeaders' ],
< widgetOptions: {
< cssStickyHeaders_offset : 0,
< cssStickyHeaders_addCaption : false,
< cssStickyHeaders_attachTo : null,
< cssStickyHeaders_filteredToTop : true,
< cssStickyHeaders_zIndex : 1
< }
---
> sortLocaleCompare: true
|
|
|
|
|
|
|
#1164 | |
|
Serpentine Vermin Jar
Jul 2014
3,313 Posts |
Quote:
Maybe it's a browser specific thing... what browser are you using? In Chrome you can hit F12 and bring up the debugging pane. Look at the "console" tab and refresh the page to see what errors show up or if some resources failed to load. I don't get any errors and all of my 481 assignments show up. I do note that with a large # of assignments, that tablesorter javascript can be a little sluggish if you sort on a different column. There was a lag of maybe 2 seconds when I click to sort on the % done column, for instance. ---- Side note ---- Actually now that I look at that page, maybe I never did add in the same table sorting code as the others (it's there, just with a more basic setup)... It looks like I started working on an update of it which includes the category info, when assignments will expire, etc but somehow since I started that work back in March I lost track of it. Try that out here, and note it's a work in progress: http://www.mersenne.org/workload/default.mock.php Last fiddled with by Madpoo on 2016-11-16 at 18:17 |
|
|
|
|
|
|
#1165 | ||||
|
Jul 2004
Milan, Ita
2·7·13 Posts |
Quote:
Quote:
All of those in bare metal mode (= no VMs), in different locations (= different connection providers, to reduce risk of implausible glitches) and showing the same behavior. Regarding the Chrome console thing, the only messages I get are related to not loading Google analytics, due to an adblocker/do not track options. And, naturally, disabling that adblocker (Ublock)/re-enabling tracking does not change results. I know that triaging an apparently random thing is not for the faint of heart <g>, but I'm used to. And appreciate your patience. Mine as well. Only in "wrong" order <g> Quote:
Quote:
Code:
55a56,58 > <link rel="stylesheet" href="/scripts/tablesorter/css/theme.blue.css?v=20141025.1"> > <link rel="stylesheet" href="//ajax.aspnetcdn.com/ajax/jquery.ui/1.10.4/themes/smoothness/jquery-ui.css"> > <script src="//ajax.aspnetcdn.com/ajax/jquery.ui/1.10.4/jquery-ui.min.js"></script> 56a60,61 > <script type="text/javascript" src="/scripts/tablesorter/js/jquery.tablesorter.widgets.js"></script> > <script type="text/javascript" src="/scripts/tablesorter/js/widgets/widget-cssStickyHeaders.js"></script> 60c65,75 And, yes, I've learnt from experience that speculating on someone's else artifacts is a risky thing, so please keep your flamethrower in the drawer <vbg>. One last thing: I tend to clean caches/cookies frequently - I'm wondering if this can have any impact on "this happening to me only". No idea, indeed. As I said, thanks again for your patience and support |
||||
|
|
|
|
|
#1166 |
|
"James Heinrich"
May 2004
ex-Northern Ontario
23×149 Posts |
@Aaron: Is there any reason there's no ORDER BY `exponent` when fetching from the database? Or if that adds appreciable overhead to the query for some reason then it should be easy to sort by exponent in PHP between fetching it from the database and displaying as HTML.
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Official "Faits erronés dans de belles-lettres" thread | ewmayer | Lounge | 39 | 2015-05-19 01:08 |
| Official "all-Greek-to-me Fiction Literature and Cinema" Thread | ewmayer | Science & Technology | 41 | 2014-04-16 11:54 |
| Official "Lasciate ogne speranza" whinge-thread | cheesehead | Soap Box | 56 | 2013-06-29 01:42 |
| Official "Ernst is a deceiving bully and George is a meanie" thread | cheesehead | Soap Box | 61 | 2013-06-11 04:30 |
| Official "String copy Statement Considered Harmful" thread | Dubslow | Programming | 19 | 2012-05-31 17:49 |