summaryrefslogtreecommitdiff
path: root/app/views/projects/artifacts
Commit message (Collapse)AuthorAgeFilesLines
* Fix double request issue in artifacts browserGrzegorz Bizon2016-01-191-1/+5
|
* Improve ux in builds artifacts browserGrzegorz Bizon2016-01-183-18/+24
|
* Minor improvements in build arfifacts browserci/view-build-artifactsGrzegorz Bizon2016-01-141-1/+1
| | | | | Added also a `Gitlab::Ci::Build::Artifacts::Metadata::ParserError` exception class.
* Improve readability of artifacts browser `Entry` related codeGrzegorz Bizon2016-01-141-6/+6
|
* Add specs for endpoint meant to be accelerated by workhorseGrzegorz Bizon2016-01-141-1/+1
|
* Attach download action to artifacts file in ZIP archiveGrzegorz Bizon2016-01-141-1/+2
|
* Change format of artifacts metadata from text to binary 0.0.1Grzegorz Bizon2016-01-141-1/+1
| | | | | | | | | | | | | | | | | | | This changes the format of metadata to handle paths, that may contain whitespace characters, new line characters and non-UTF-8 characters. Now those paths along with metadata in JSON format are stored as length-prefixed strings (uint32 prefix). Metadata file has a custom format: 1. First string field is metadata version field (string) 2. Second string field is metadata errors field (JSON strong) 3. All subsequent fields is pair of path (string) and path metadata in JSON format. Path's metadata contains all fields that where possible to extract from ZIP archive like date of modification, CRC, compressed size, uncompressed size and comment.
* Show file size in artifacts browser using metadataGrzegorz Bizon2016-01-143-2/+6
|
* Remove artifacts metadata column from databaseGrzegorz Bizon2016-01-141-0/+3
|
* Add support for parent directories in `StringPath`Grzegorz Bizon2016-01-142-3/+3
| | | | | This support is not completed though, as parent directory that is first in collection returned by `directories!` is not iterable yet.
* Improve CI build artifacts browser viewGrzegorz Bizon2016-01-143-3/+21
|
* Add artifacts browserGrzegorz Bizon2016-01-143-1/+13
| | | | | This implementation makes it possible to browse artifacts, it depends on artifacts metadata.
* Move artifacts controller level upGrzegorz Bizon2016-01-141-0/+4
This reverts nesting artifacts controller in builds module.