summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | WIP: Add sort dropdown. #2406Rubén Dávila2016-01-201-0/+20
| | | | | | | |
| | * | | | | | Little update to copy and custom content for empty results. #2406Rubén Dávila2016-01-201-8/+13
| | | | | | | |
| | * | | | | | Show last commit as description. #2406Rubén Dávila2016-01-203-4/+10
| | | | | | | |
| | * | | | | | Fix broken specs. #2406Rubén Dávila2016-01-202-6/+4
| | | | | | | |
| | * | | | | | Add ability to filter by namespace. #2406Rubén Dávila2016-01-202-12/+20
| | | | | | | |
| | * | | | | | Use adequate icon for Forks link on sidebar. #2406Rubén Dávila2016-01-201-1/+1
| | | | | | | |
| | * | | | | | Show forks counter on listing. #2406Rubén Dávila2016-01-203-2/+10
| | | | | | | |
| | * | | | | | Add fork button and implement ability to distinguish between public and ↵Rubén Dávila2016-01-202-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | protected forks. #2406
| | * | | | | | Use Project creator's avatar in fork listing. #2406Rubén Dávila2016-01-205-4/+12
| | | | | | | |
| | * | | | | | Setup new fork link in sidebar and routes. #2406Rubén Dávila2016-01-209-10/+20
| | | | | | | |
| * | | | | | | Merge branch 'issue_5546' into 'master' Dmitriy Zaporozhets2016-01-287-2/+111
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Save list sort in a cookie Closes #5546 See merge request !2537
| | * | | | | | | Make default sorting preference work for Issues and MRs.issue_5546Rubén Dávila2016-01-223-4/+16
| | | | | | | | |
| | * | | | | | | Merge branch 'master' into issue_5546Rubén Dávila2016-01-22167-958/+2863
| | |\ \ \ \ \ \ \
| | * | | | | | | | Make sorting preference reusable for all projects.Rubén Dávila2016-01-228-14/+43
| | | | | | | | | |
| | * | | | | | | | Make cookie suffix more simpler.Rubén Dávila2016-01-211-2/+2
| | | | | | | | | |
| | * | | | | | | | Little refactor plus some specs.Rubén Dávila2016-01-216-12/+52
| | | | | | | | | |
| | * | | | | | | | Remember last sort option used.Rubén Dávila2016-01-205-2/+30
| | | | | | | | | |
| * | | | | | | | | Merge branch 'fix-preventing-migration-from-crashing-in-specific-cases' into ↵Dmitriy Zaporozhets2016-01-282-12/+20
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Fix preventing migration from crashing in very specific cases Closes #12606. Closes #12501. /cc @yorickpeterse @dbalexandre See merge request !2600
| | * | | | | | | | | Use ActiveRecord::Base.connection.active? and rescue any exception in ↵fix-preventing-migration-from-crashing-in-specific-casesRémy Coutable2016-01-281-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | connect_to_db? This ensures that rake tasks that don't need a DB connection can be run without one.
| | * | | | | | | | | Only create the defaults ApplicationSetting when DB is fully migratedRémy Coutable2016-01-281-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Return a fake application settings OpenStruct when this is not the case. Also, use ActiveRecord::Base.connection_pool.active_connection? instead of ActiveRecord::Base.connection.active? to avoid driver exception.
| | * | | | | | | | | Ensure rake tasks that don't need a DB connection can be run without oneRémy Coutable2016-01-262-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using ActiveRecord::Base.connection.active? without a DB connection, we get a "PG::ConnectionBad: could not connect to server" error because ActiveRecord::Base.connection doesn't exist. By using ActiveRecord::Base.connected? we ensure we don't get this error if the connection is missing, which is the all point of the Gitlab::CurrentSettings#connect_to_db? method!
| | * | | | | | | | | Fix preventing migration from crashing in very specific casesRémy Coutable2016-01-251-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://gitlab.com/gitlab-org/gitlab-ce/issues/12606 for details
| * | | | | | | | | | Merge branch 'improve-mr-api' into 'master' Dmitriy Zaporozhets2016-01-284-268/+221
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve consistency and duplication for Merge Request API * Follow REST for merge request API route * Remove repeating comments API for MR Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Fixes #4759 and #11810 See merge request !2639
| | * | | | | | | | | | Improve consistency and duplication for Merge Request APIimprove-mr-apiDmitriy Zaporozhets2016-01-284-268/+221
| | | |_|_|_|/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Follow REST for merge request API route * Remove repeating comments API for MR Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | | | | | | | Merge branch 'sort-text-removed-from-sort-dropdown' into 'master' Jacob Schatz2016-01-287-8/+7
| |\ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed sorted text from dropdowns ![Screen_Shot_2016-01-28_at_09.04.36](/uploads/9e0e1fdb45ad12d122f860a2164d9396/Screen_Shot_2016-01-28_at_09.04.36.png) Closes #12796 cc @creamzy @jschatz1 See merge request !2635
| | * | | | | | | | | Removed sorted text from dropdownsPhil Hughes2016-01-287-8/+7
| | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #12796
| * | | | | | | | | Merge branch 'numbered-list-rendering-in-comments-cuts-off' into 'master' Dmitriy Zaporozhets2016-01-281-1/+1
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes ol margin big enough for 3 digits. Fixes #7960 ![Screen_Shot_2016-01-25_at_11.20.03_PM](/uploads/73c4b9e939fe108fb3b8221e16e686bd/Screen_Shot_2016-01-25_at_11.20.03_PM.png) See merge request !2608
| | * | | | | | | | | Makes ol margin big enough for 3 digits.numbered-list-rendering-in-comments-cuts-offJacob Schatz2016-01-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #7960
| * | | | | | | | | | Merge branch 'feature/jschatz1/instant-issuable-history' into 'master' Dmitriy Zaporozhets2016-01-282-0/+4
| |\ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds feature: Ajax Close/Open updates discussion automatically Triggers jQuery event <br/> Fixes #5544 See merge request !2610
| | * | | | | | | | | Adds comment about event listenerfeature/jschatz1/instant-issuable-historyJacob Schatz2016-01-261-0/+1
| | | | | | | | | | |
| | * | | | | | | | | Adds feature: Ajax Close/Open updates discussion automaticallyJacob Schatz2016-01-262-0/+3
| | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Triggers jQuery event Fixes #5544
| * | | | | | | | | Update gitlab-workhorse versions in documentationRobert Speicher2016-01-272-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| * | | | | | | | | Update CHANGELOGRobert Speicher2016-01-271-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| * | | | | | | | | Merge branch 'update-ruby-2.2.4' into 'master' Douwe Maan2016-01-2711-22/+44
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update Ruby version to 2.2.4 (latest previous stable) and update docs Tests and issues added to https://github.com/gitlabhq/gitlabhq/issues/8696 were all fine after the upgrade. Main issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/3340 See merge request !2534
| | * | | | | | | | | updated README to include Ruby 2.1James Lopez2016-01-271-1/+1
| | | | | | | | | | |
| | * | | | | | | | | merge spec and spinach jobsJames Lopez2016-01-271-97/+4
| | | | | | | | | | |
| | * | | | | | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into update-ruby-2.2.4James Lopez2016-01-2798-452/+1134
| | |\ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|/ / / | | | |/| | | | | | |
| | * | | | | | | | | update gitlab ci settings to include ruby 2.1 imagesJames Lopez2016-01-271-0/+116
| | | | | | | | | | |
| | * | | | | | | | | updated docs to reflect min requirement of 2.1 [ci skip]James Lopez2016-01-272-2/+2
| | | | | | | | | | |
| | * | | | | | | | | updated docs to reflect version update [ci skip]James Lopez2016-01-253-4/+3
| | | | | | | | | | |
| | * | | | | | | | | fix rubocop new 2.2 syntax issuesJames Lopez2016-01-253-8/+8
| | | | | | | | | | |
| | * | | | | | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into update-ruby-2.2.4James Lopez2016-01-2587-804/+10965
| | |\ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into update-ruby-2.2.4James Lopez2016-01-22168-834/+2997
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # .gitlab-ci.yml
| | * | | | | | | | | | | update gitlab ci docker image versionJames Lopez2016-01-211-0/+1
| | | | | | | | | | | | |
| | * | | | | | | | | | | update Ruby version to 2.2.4 (latest previous stable) and update docsJames Lopez2016-01-215-9/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'events-performance' into 'master' Robert Speicher2016-01-279-41/+14
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve performance of retrieving last update times for events See 75195eefcca4cb3961986c90c8e837da02f30134 and https://gitlab.com/gitlab-org/gitlab-ce/issues/12415#note_3387317 for the juicy details. Related issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/12415 See merge request !2613
| | * | | | | | | | | | | | Use Atom update times of the first eventevents-performanceYorick Peterse2016-01-277-34/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By simply loading the first event from the already sorted set we save ourselves extra (slow) queries just to get the latest update timestamp. This removes the need for Event.latest_update_time and significantly reduces the time needed to build an Atom feed. Fixes gitlab-org/gitlab-ce#12415
| | * | | | | | | | | | | | Don't pluck project IDs for eventsYorick Peterse2016-01-265-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By instead using a sub-query we save ourselves the overhead of loading any data into memory only to pass it on to another query.
| * | | | | | | | | | | | | Merge branch 'rs-skip-2fa-on-signout' into 'master' Robert Speicher2016-01-272-0/+4
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Skip the 2FA requirement during logout See merge request !2581
| | * | | | | | | | | | | | | Update CHANGELOGRobert Speicher2016-01-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]