What am I supposed to see in the "Build History of Hudson" diagram? - hudson

When clicking on Build History in the Web UI of the Hudson CI, I get a list of builds that happend in the past. Fine.
But above that is a diagram, sort of a timeline that I can drag back and forth. But there is nothing in that timeline!?
What is supposed to be displayed there?

Not an answer perhaps, but it seems that this feature just isn't working
http://issues.hudson-ci.org/browse/HUDSON-6439

Just a touch up note!
Currently Internet Explorer displays this feature as blank...
But using Firefox I can see Dates (scrolling in this frame is enabled)!!! …but Dates only...
These dates start around (maybe a day or two before) the creation of the Job!!

Related

Html input of type "file" freeze the browser sometimes

i'm struggling with the classic HTML input of type file. I was using it on my angular application and i had freeze sometimes, the whole browser became unresponsive, and the only thing that works is the scroll.
You can't click any buttons, select any text or even change tab on the browser for about 5 seconds. I tried a lot of different file type and sizes and it doesn't change any of this, it even freeze sometimes when i don't select any file in the explorer and i click the close button directly.
So I thought it was my implementation that was bad and i went to the Mozilla developper website where you have an example and I have exactly the same behaviour. I also tried to take only the HTML from the Mozilla website and put it alone on a .html file and again, same behaviour.
This does not occur 100% of the time, but I would argue that on my end it does it about 60/70 % of the times.
I tried it on chrome and Firefox (both up to date), on multiple computer (all running Windows though) and i have the same behaviour on all of them.
I don't have any error or anyting in the consoles.
I don't know what to do with this, i'm pretty sure it can't be the file's input on the whole web that are bugged, but i tried a lot of various things with always the same results. Should i report it somewhere? ( if so, where? ) Or what would you suggest to do to investigate this further?
I couldn't find anyone discussing this issue on the internet apart for this thread that had no solution, they also say in this thread that the bug is not reproducible in Edge, but i just tried and it does the same thing.
Thanks for reading me and for any help about this.
Chrome freezes for few seconds when after any use of file field.
It was because I had a shortcut in "Quick Access" menu in windows explorer. This shortcut has been linked with a folder shared by network. I've removed this shortcut and everything is good now.
Same here, I have a mapped network drive that is not responding, this make a 5 seconds delay. After unmapping the drive, no more delay. The delay is the same in firefox or chrome.
Same here, if you want to remove it, on Windows 10, click on the icon Quick access (blue star), then right click on the dead link appearing in the "Frequent folders" panel on the right panel and choose "Unpin/Remove from Quick access". There should be no error message.

Frame size issue in metaphone3 cluster and edit

I am using OpenRefine to clean text from a CSV file. I've been working on the same project for several weeks, and it was working fine until this week.
I am trying to use the 'Cluster and Edit' function from the 'Edit cells' menu. When I use the 'fingerprint' and 'ngram fingerprint' keying function, the frame that opens up inside the browser window is sized appropriately, and I have access to all the buttons and selection menus. However, when I try to use the 'metaphone3' keying function, the frame that opens up is way wider than the browser window, the sliding selection boxes that usually appear in the right side of the frame are not visible, and the buttons across the bottom of the frame ('Select All', 'Unselect All', etc.) are not available. I'd really like to be able to use this keying function option again. Does anyone know what's going on, or how I might be able to fix it.
I am using the OpenRefine 3.3 beta, although a similar issue was happening earlier this week with all keying function options in 3.2 (all were working fine in 3.2 as recently as Friday, 10/25/2019). I am using Firefox, although the same issue happens in Internet Explorer. The system OS is Windows 10 Enterprise.
Thanks in advance!

Chrome Timeline does not show all calls on a flame chart

While using Google Chrome Timeline feature I have noticed a strange thing. On my PC in a workplace flame chart is very flat, showing only 1-2 function calls deep. My first thought was: "Well, that is the way this thing works". But when I opened the same webapp from home and a flame chart was much taller, showing all function calls.
Both browsers are in the same version (51.0.2704.84 m - latest at the moment). All settings in DevTools are same.
Flame chart from computer at work:
Flame chart from computer at home:
My question is simple: why computer at work does not show full call graph and how can I fix this?
Is everything checked under the Event Log tab (below)? I see that painting and rendering events are not visible in your bottom screenshot.
Looks like a bug on your work computer. It shows no JS frames at all. If it's still reproducible please file it at https://crbug.com
I assume you were recording with JS Profile checkbox marked.

after subsequent clicks, paper-dropwn-menu list items seem to be crunched up

I recreated the top item from the DropDown demos, at https://elements.polymer-project.org/elements/paper-dropdown-menu?view=demo:demo/index.html&active=paper-dropdown-menu
The only thing different I did was replace the strings with "Internal"and "External". It seemed that when the DDL is rendered on the screen, the first time it works correctly when it is clicked, but then subsequent times, it is made really small with a scroll bar that you cant really see.
You can see what the form looks like first, what it looks like when i click on it the first time.... and what i click on it the second time respectively.
This is a known issue with the older Dartium version that is based on Chromium 39. I haven't checked the newer Dartium that is based on Chromium 45. AFAIR the newer version is shipped since Dart 1.15 but perhaps only with 1.16-dev. If you try it in a current Chrome version it should work as expected.
To resolve this issues, there isTo resolve this issue, there is an attribute called: no-animations you can add to the paper-dropdwon-menu which will stop animations and cause it to render correctly.
based on Polymer styling, you can say either just: no-animations or no-animations="true"
<paper-dropdown-menu no-animations="true">
....
</paper-dropdown-menu>

Chrome: waiting for www.site.com, how to know which resource is delaying the page load?

When a site gets stuck in chrome with the 'loading www.site.com' status, Is there anyway to know which of the elements on the DOM is delaying the load? for example, it can be an external js file or image that is taking long time to load. I tried using the network tab in the DeveloperTools, but it only shows the elements already loaded and the time they took. I couldn't find a way to see which element is stuck.
I found a way that I'm not sure it works in all cases, but it did for me. I used the Timeline tab (now shown in the Performance tab), it's one of the tabs in Chrome Dev Tools.
Open Chrome Developer tools (F12 or CMD + Alt + I in Mac) and click the Performance tab
Make sure you drag the grey timeline bar all the way to the right, you want to see the most recent section of events so you can find what's getting stuck:
Check just down below the records sidebar. If you don't see this like in the capture below, try toggling the icons, there are different view modes. Now, going all the way down I found these. It doesn't look like that's going well. Obviously some kind of infinite loop in some random code:
I couldn't find out if it was an extension itself or some other bit of code. Clicking through I only could find // Copyright 2014 The Chromium Authors. All rights reserved..
Checking in Incognito mode clear of extensions, the website loads just fine.
I'd also advise to check the Console tab to see if there are were any errors that might cause the infinite loading thing. You'll often find clues there.