Commit Graph

10 Commits

Author SHA1 Message Date
Sven Fuchs
f1a767a09f update log.js and adapt styles for fold name tags 2013-02-27 22:39:10 +01:00
Sven Fuchs
e178838568 remove line number color 2013-02-22 23:48:05 +01:00
Sven Fuchs
5872c15413 highlight line number 2013-02-22 23:38:19 +01:00
Sven Fuchs
4ed82fa2b9 remove log scrollbars css (not used anyway) 2013-02-22 22:04:53 +01:00
Piotr Sarnacki
11681c6359 Apply style changes from sf-log branch 2013-02-22 17:03:08 +01:00
Piotr Sarnacki
3862dd163d Limit log to 5000 lines 2013-02-13 04:03:02 +01:00
Nick Schonning
36c5aa8ca4 Slit out #main content sponsor Sass 2013-01-18 19:41:43 -05:00
Piotr Sarnacki
fc40190c29 Optimize log viewer
Till now, log viewer was rendered in handlebars, which was the simplest
solution, but it had a major drawback - every append to log caused it to
rerender which was not efficient and memory consuming.

The new approach is to make Travis.Log interpret the log and send lines
with instructions to the view, so for example if view should add a line,
it gets something like:

    { number: 1, content: '$ bundle install' }

Such approach is required to handle cases where data coming from pusher
is not actually a new line. For example output containing dots from
tests needs to be appended:

    $ rake
    ....

Such output could be sent to client in 2 chunks: "$ rake\n.." and "..".
In such situation we would need to send 3 instructions:

  { number: 1, content: '$ rake' }
  { number: 2, content: '..'     }
  { number: 2, content: '..', append: true }

The third instruction can come much later, because tests can take a
while to run, so we can't assume that each line will come in one piece.

The other scenario is \r, for example when showing progress:

    \rDownloading: 10%
    \rDownloading: 50%
    \rDownloading: 100%

Such input should be changed into such instructions:

  { number: 1, content: 'Downloading: 10%' }
  { number: 1, content: 'Downloading: 50%',  replace: true }
  { number: 1, content: 'Downloading: 100%', replace: true }

Travis.Log also supports folds, for example on bundle install, the code
was rewritten to make folds management simpler.
2012-12-04 22:57:57 +01:00
Jeremy Mack
809ce6ccab Fixes slow scrolling on pages with gigantic logs 2012-10-28 15:49:19 -04:00
Sven Fuchs
7b47863014 extract paths in Assetfile; rename javascripts to scripts, stylesheets to styles 2012-10-03 17:13:02 +02:00