Files
gitlabhq/spec/models
Alejandro Rodríguez ca696175db Optimize Banzai::Filter::RelativeLinkFilter
A lot of git operations were being repeated, for example, to build a url
    you would ask if the path was a Tree, which would call a recursive routine
    in Gitlab::Git::Tree#where, then ask if the path was a Blob, which would
    call a recursive routine at Gitlab::Git::Blob#find, making reference to
    the same git objects several times. Now we call Rugged::Tree#path, which
    allows us to determine the type of the path in one pass.

    Some other minor improvement added, like saving commonly used references
    instead of calculating them each time.
2016-06-21 10:53:16 -04:00
..
2016-06-14 13:18:14 +02:00
2016-06-14 13:18:14 +02:00
2016-06-01 16:22:35 +02:00
2016-06-01 12:10:08 +02:00
2016-05-29 15:03:00 -04:00
2016-06-14 13:18:14 +02:00
2016-05-16 18:03:55 -05:00
2016-03-20 22:55:08 +01:00
2016-06-01 16:22:35 +02:00