Jenkins 36131 (#385)

* [JENKINS-36131] WIP testing with content length

* [JENKINS-36131] WIP add parameter fetchAll and refetch the logs when present. Broken for me ATM unknown reason. will merge master now in here

* [JENKINS-36131] WIP first working version with steps.

* [JENKINS-36131] WIP first working version as well for freestyle, but I need to refactor the thing. using the hash is not optimal, will switch to the backend hook start=0

* [JENKINS-36131] Switch to trigger ?start=0 which enables us to link in full extended logs. Now writing AT for it

* [JENKINS-36131] Make the link to the full log more visible

* [JENKINS-36131] easier matching for AT

* [JENKINS-36131] in follow along the Full Log button should not be shown, since you see everything already

* eslint - formating changes and fix offences

* [JENKINS-36131] Fix button to use the correct classes. Thanks James for the headsup!
This commit is contained in:
Thorsten Scherler 2016-07-29 17:27:52 +02:00 committed by GitHub
parent 203df4b7d8
commit 693c48fd3f
2 changed files with 2 additions and 4 deletions

View File

@ -118,6 +118,7 @@ export class LogConsole extends Component {
>
{ hasMore && <div key={0} id={`${prefix}log-${0}`} className="fullLog">
<a
className="btn-secondary inverse"
key={0}
href={`?start=0#${prefix || ''}log-${1}`}
>

View File

@ -184,13 +184,10 @@ code div {
}
code div a{
border: solid 1px @pre-color;
padding: 3px 10px;
margin: 5px;
color: @pre-color;
}
code div a:hover{
code div a.btn-secondary.inverse:hover{
background-color: @pre-color-hover;
}