Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-09Fix changes dropdown ellipsis working across browsersPhil Hughes
Closes #41561
2017-12-12Use app host instead of asset host when rendering image blob or diffDouwe Maan
2017-11-20Merge branch '18040-rubocop-line-break-after-guard-clause' into 'master'Rémy Coutable
Adds Rubocop rule for line break after guard clause Closes #18040 See merge request gitlab-org/gitlab-ce!15188
2017-11-17updated to use new sprite iconsPhil Hughes
2017-11-16Adds Rubocop rule for line break after guard clauseJacopo
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
2017-10-02Only copy old/new code when selecting left/right side of parallel diffDouwe Maan
2017-08-07Merge branch 'master' into ideMike Greiling
* master: (177 commits) Add changelog Bump gitlab-shell version to 5.8.0 to fix Git for Windows 2.14 Make contextual sidebar collapsible Fixed sidebar context header hover colors Use correct `Environment`-class within `Gitlab` namespace Remove gl.Activities from Commits page Move `let` calls inside the `describe` block using them Add `/assign me` alias support for assigning issuables to oneself GRPC::Unavailable (< GRPC::BadStatus) is wrapped in a CommandError Use `broken_storage` in the fs_shards_spec. Eager load project creators for project dashboards Memoize a user's personal projects count Remove redundant query from User#recent_push Improve checking if projects would be returned Change spelling of gitlab-shell Remove unused #tree-holder Add custom linter for inline JavaScript to haml_lint Rename user_can_admin? because it's more accurate Synchronous zanata community contribution translation Add Korean translation to i18n ...
2017-08-03Moved changed files into a dropdownPhil Hughes
This makes navigating through diff files quickly. Currently we just toggle a list, which could be pretty big. This moves it into a dropdown to make it much easier. Also includes a filter bar to quickly search for certain files/extensions. Closes #29778
2017-07-31Merge remote-tracking branch 'origin/master' into ideLuke "Jared" Bennett
2017-07-28Fix diff commenting results just after changing viewSean McGivern
When you change the diff view (inline / side-by-side), we set a cookie based on that new view. When you add a comment, we choose the style to use in the response based on that cookie. However, when you have just changed diff style, the request cookie will contain the old value, so we should use the view param instead.
2017-07-20Merge remote-tracking branch 'origin/master' into ideLuke "Jared" Bennett
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-22Merge remote-tracking branch 'origin/master' into dm-tree-jsonDmitriy Zaporozhets
2017-06-19Don't display comment on unchanged line on both sides in parallel diffDouwe Maan
2017-06-14Implement diff viewersDouwe Maan
2017-06-01Merge branch 'fix_diff_line_comments' into 'master'Sean McGivern
Fix: A diff comment on a change at last line of a file shows as two comments in discussion Closes #32353 See merge request !11802
2017-05-31Fix: A diff comment on a change at last line of a file shows as two comments ↵Valery Sizov
in discussion
2017-05-30Consistent diff and blob size limit namesDouwe Maan
2017-05-26Add experimental JSON format for tree controllerDouwe Maan
2017-05-23Pass fallback_diff_refs to Diff::File instead of using view helpersDouwe Maan
2017-05-23Clean up diff renderingDouwe Maan
2017-05-23Add question mark to Gitlab::Diff::File predicate methodsDouwe Maan
2017-05-12Consistently use monospace font for commit SHAs and branch and tag namesDouwe Maan
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-10Fix specsDouwe Maan
2017-04-05Correctly display multiple separate discussions on the same diff lineDouwe Maan
2017-01-12Show 'too many changes' message for merge requestFelipe Artur
2016-12-09Merge branch 'html-safe-diff-line-content' into 'security' Robert Speicher
Don't accidentally mark unsafe diff lines as HTML safe Fixes potential XSS issue when a legacy diff note is created on a merge request whose diff contained HTML See https://gitlab.com/gitlab-org/gitlab-ce/issues/25249 See merge request !2040
2016-11-04Remove an extra leading space from diff contentHiroyuki Sato
2016-08-10Avoid commit lookup on diff_helperPaco Guzman
2016-08-04Add unfold links for Side-by-Side viewTim Masliuchenko
2016-08-03switch from diff_file_collection to diffsPaco Guzman
So we have raw_diffs too
2016-08-03Move to Gitlab::Diff::FileCollectionPaco Guzman
Instead calling diff_collection.count use diff_collection.size which is cache on the diff_collection
2016-08-03Cache highlighted diff lines for merge requestsPaco Guzman
Introducing the concept of SafeDiffs which relates diffs with UI highlighting.
2016-07-29Merge branch 'rubocop/enable-access-modifiers-cops' into 'master' Robert Speicher
Enable Rubocop cops that check access modifiers ## What does this MR do? This MR enables Rubocop cops that detect methods that should be restricted but are the part of public API because of access modifiers used improperly. This also fixes existing offenses. ## Why was this MR needed? Some method in our codebase are public instead of being private because it is sometimes difficult to get it right without static analysis. ## What are the relevant issue numbers? See #17478 Closes #17372 See merge request !5014
2016-07-21Add Discussion model to represent MR/diff discussionDouwe Maan
2016-07-19Fix some useless access modifiers in the codeGrzegorz Bizon
2016-07-18Collapsed diffs lines/size don't accumulate to overflow diffs.Paco Guzman
2016-07-12Merge branch 'master' into faster-diffsJacob Schatz
2016-07-11Support renames in diff_for_path actionsSean McGivern
2016-07-08Make expand_all param more explicitSean McGivern
2016-07-08DRY up diff_for_path actionsSean McGivern
1. Move render method to a concern, not a helper. 2. Let DiffHelper#diff_options automatically add the path option. 3. Move more instance var definitions to before filters.
2016-07-08Allow expanding all diffs at onceSean McGivern
2016-07-08Ensure only renderable text diffs are collapsedSean McGivern
Other diffs (those that are too large to render anyway, image diffs, diffs suppressed by .gitattributes) should be rendered immediately.
2016-07-08Disable overflow messagesSean McGivern
With the option to expand and collapse individual diffs, these aren't needed any more.
2016-07-08Collapse large diffs by defaultSean McGivern
When rendering a list of diff files, skip those where the diff is over 10 KB and provide an endpoint to render individually instead.
2016-07-08Merge branch 'master' into faster-diffsDouwe Maan
# Conflicts: # app/helpers/notes_helper.rb # app/views/projects/diffs/_line.html.haml # app/views/projects/diffs/_parallel_view.html.haml # app/views/projects/diffs/_text_file.html.haml # features/steps/shared/diff_note.rb
2016-07-07Remove duplication, unused methods, and some other style thingsDouwe Maan
2016-07-07Extract parts of LegacyDiffNote into DiffOnNote concern and move part of ↵Douwe Maan
responsibility to other classes
2016-07-07Add DiffFile#blob and #old_blobDouwe Maan