- 29 May, 2017 1 commit
-
-
Douwe Maan authored
-
- 17 May, 2017 3 commits
-
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
- 16 May, 2017 1 commit
-
-
Douwe Maan authored
-
- 11 May, 2017 1 commit
-
-
Douwe Maan authored
-
- 10 May, 2017 1 commit
-
-
Rémy Coutable authored
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 03 May, 2017 1 commit
-
-
Douwe Maan authored
-
- 28 Apr, 2017 1 commit
-
-
Douwe Maan authored
-
- 27 Apr, 2017 10 commits
-
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
- 12 Apr, 2017 1 commit
-
-
Luke "Jared" Bennett authored
-
- 10 Apr, 2017 2 commits
-
-
Douwe Maan authored
-
Jacob Schatz authored
-
- 06 Apr, 2017 1 commit
-
-
Phil Hughes authored
-
- 05 Apr, 2017 2 commits
-
-
Sam Rose authored
-
Jacob Schatz authored
Sketch 43 files are technically a zip file, so the JavaScript opens the zip file & locates a preview.png which is just a quick preview of the last sketch page edited. After that is loaded it simply places the image into the DOM
-
- 30 Mar, 2017 1 commit
-
-
Phil Hughes authored
Updated some Ruby code based on comments
-
- 23 Mar, 2017 1 commit
-
-
Phil Hughes authored
Using NotebookLab library [ci skip]
-
- 13 Mar, 2017 1 commit
-
-
Christopher Bartz authored
Do not display a 404, when a user tries to retrieve the raw content of an LFS file (pointer) if the config option "lfs_enabled" is set to false. Instead, display the LFS pointer file directly.
-
- 14 Sep, 2016 1 commit
-
-
Yorick Peterse authored
gitlab_git 10.6.4 relies on Rugged marking blobs as binary or not, instead of relying on Linguist. Linguist in turn would mark text blobs as binary whenever they would contain byte sequences that could not be encoded using UTF-8. However, marking such blobs as binary is not correct. If one pushes a Markdown document with invalid character sequences it's still a text based Markdown document and not some random binary blob. This commit overwrites Blob#data so it automatically converts text-based content to UTF-8 (the encoding we use everywhere else) while taking care of replacing any invalid sequences with the UTF-8 replacement character. The data of binary blobs is left as-is.
-
- 15 Aug, 2016 1 commit
-
-
Yorick Peterse authored
This ensures that SVGs greater than 2 megabytes are not scrubbed and rendered. This in turn prevents requests from timing out due to reading/scrubbing large SVGs potentially taking a lot of time (and memory). The use of 2 megabytes is completely arbitrary. Fixes gitlab-org/gitlab-ce#1435
-
- 26 Jul, 2016 1 commit
-
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 16 Jun, 2016 2 commits
-
-
James Lopez authored
This reverts commit 13e37a3e.
-
James Lopez authored
-
- 12 Jun, 2016 1 commit
-
-
Stan Hu authored
Here was the problem: 1. When determining whether a given blob is viewable text, gitlab_git reads the first 1024 bytes and checks with Linguist whether it is a text or binary file. 2. If the blob is text, GitLab will attempt to display it. 3. However, if the text has binary characters after the first 1024 bytes, then GitLab will attempt to load the entire contents, but the encoding will be ASCII-8BIT since there are binary characters. 4. The Error 500 results when GitLab attempts to display a mix UTF-8 and ASCII-8BIT. To fix this, we load as much data as we are willing to display so that the detection will work properly. Requires an update to gitlab_git: gitlab-org/gitlab_git!86 Closes #13826
-
- 28 Apr, 2016 1 commit
-
-
Zeger-Jan van de Weg authored
-
- 07 Mar, 2016 1 commit
-
-
Jacob Vosmaer authored
-
- 19 Feb, 2016 1 commit
-
-
Robert Speicher authored
This allows us to take advantage of Rails' `to_partial_path` to render the correct partial based on the Blob type, rather than cluttering the view with conditionals. It also allows (and will allow in the future) better encapsulation for Blob-related logic which makes sense for our Rails app but might not make as much sense for the core `gitlab_git` library, such as detecting if the blob is an SVG.
-