| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Consider that URL can end with '/' before redirecting. #7975issue_7975 | Rubén Dávila | 2016-01-13 | 1 | -1/+1 |
| | | |||||
| * | Sort by ID when sorting using "Recently created" | Yorick Peterse | 2016-01-07 | 1 | -1/+1 |
| | | | | | | | | | | Sorting by "id" has the same effect as sorting by created_at while performing far better and without the need of an extra index (in case one wanted to speed up sorting by "created_at"). Sorting by "Recently updated" still uses the physical "updated_at" column as there's no way to use the "id" column for this instead. | ||||
| * | Fixed codestyle and added 2FA documentationfeature/force-tfa | Gabriel Mazetto | 2015-12-24 | 1 | -2/+2 |
| | | |||||
| * | specs for forced two-factor authentication and grace period | Gabriel Mazetto | 2015-12-24 | 1 | -7/+3 |
| | | | | | simplified code and fixed stuffs | ||||
| * | Grace period support for TFA | Gabriel Mazetto | 2015-12-24 | 1 | -2/+18 |
| | | |||||
| * | WIP require two factor authentication | Gabriel Mazetto | 2015-12-24 | 1 | -0/+12 |
| | | |||||
| * | add CAS authentication support | tduehr | 2015-12-14 | 1 | -0/+15 |
| | | |||||
| * | Only redirect to homepage url when its not the root url | Jeroen van Baarsen | 2015-11-02 | 1 | -7/+15 |
| | | | | | | | | | | | | It was possible to create an infi redirect when the user set up the `home_page_url` to redirect to the main URL of the gitlab instance. This fix makes sure this redirect is not possible. Fixes !1020 Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | ||||
| * | Merge branch 'project-path-case-sensitivity' into 'master' | Robert Speicher | 2015-10-22 | 1 | -1/+0 |
| |\ | | | | | | | | | | | | | Prefer project with exact path to differently cased one when both exist. Fixes #3113. See merge request !1649 | ||||
| | * | Move case sensitivity check to find_with_namespace. | Douwe Maan | 2015-10-21 | 1 | -2/+1 |
| | | | |||||
| | * | Prefer project with exact path to differently cased one when both exist. | Douwe Maan | 2015-10-20 | 1 | -2/+2 |
| | | | |||||
| * | | Redirect to a default path if HTTP_REFERER is not set | Stan Hu | 2015-10-20 | 1 | -0/+4 |
| |/ | | | | | | | | | | Safari 9.0 does not yet honor the HTML5 `origin-when-cross-origin` mode, and it's possible load balancers/proxies strip the HTTP_REFERER from the request header. In these cases, default to some default path. Closes #3122 Closes https://github.com/gitlabhq/gitlabhq/issues/9731 | ||||
| * | Merge branch 'master' into git-archive-golanggit-archive-golang | Douwe Maan | 2015-10-15 | 1 | -5/+1 |
| |\ | |||||
| | * | Only render 404 page from /publicinified_404_error | Valery Sizov | 2015-10-13 | 1 | -5/+1 |
| | | | |||||
| * | | Always return HTML in git_not_found | Jacob Vosmaer | 2015-10-14 | 1 | -1/+1 |
| |/ | | | | This allows us to give a nice 404 for e.g. archive.zip. | ||||
| * | Redirect case sensitive project path to the normalized one | Francesco Levorato | 2015-09-18 | 1 | -1/+6 |
| | | |||||
| * | Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g | Dmitriy Zaporozhets | 2015-09-09 | 1 | -5/+11 |
| |\ | |||||
| | * | FogBugz project import | Jared Szechy | 2015-09-08 | 1 | -1/+6 |
| | | | |||||
| | * | Merge branch 'rs-remove-user-color-scheme-class' into 'master' | Douwe Maan | 2015-08-27 | 1 | -4/+5 |
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apply syntax highlighting to fenced code blocks client-side Instead of applying the syntax highlighting scheme class to these blocks server-side, we use Javascript and Gon to apply the user's color scheme (or the default) client-side. This will make it easier to cache these blocks in the future because they're no longer state-dependent. See merge request !1203 | ||||
| | | * | Remove user_color_scheme_class | Robert Speicher | 2015-08-25 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of rendering this value server-side, we use Javascript and Gon to apply the user's color scheme (or the default) to any syntax highlighted code blocks. This will make it easier to cache these blocks in the future because they're no longer state-dependent. | ||||
| * | | | Move helpers back to original directory | Dmitriy Zaporozhets | 2015-09-09 | 1 | -6/+2 |
| | | | | |||||
| * | | | Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g | Douwe Maan | 2015-08-26 | 1 | -1/+3 |
| |\ \ \ | |/ / | |||||
| | * | | Prevent too many redirects error when home page URL set to external_urll | Stan Hu | 2015-08-26 | 1 | -1/+3 |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many users naively set the home page URL setting to external_url (e.g. https://mydomain.com). When an unauthenticated user signs in, this causes endless redirections. For example, this is occuring: 1. Unauthenticated user attempts to access https://mydomain.com/dashboard 2. Application redirects to the home page URL: https://mydomain.com 3. Repeat step 2 In step 3, ApplicationController should have redirected the user to https://mydomain.com/users/sign_in. Disabling the redirection if home page URL is the same as external_url prevents users from messing up. Closes https://github.com/gitlabhq/gitlabhq/issues/8843 Closes #2057 | ||||
| * | | Groundwork for merging CI into CE | Douwe Maan | 2015-08-25 | 1 | -5/+6 |
| |/ | |||||
| * | Import sources: show only enabled sources | Artem Sidorenko | 2015-08-20 | 1 | -1/+29 |
| | | |||||
| * | Allow custom label to be set for authentication providers.auth-icons-labels | Douwe Maan | 2015-07-23 | 1 | -3/+3 |
| | | |||||
| * | Only enable HSTS header for HTTPS and port 443 | Stan Hu | 2015-07-12 | 1 | -1/+4 |
| | | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/9449 | ||||
| * | Ensure `@sort` is set by set_filters_paramsrs-issue-1750 | Robert Speicher | 2015-07-08 | 1 | -0/+1 |
| | | | | | Closes #1750 | ||||
| * | Fix redirection to home page URL for unauthorized users | Daniel Gerhardt | 2015-07-03 | 1 | -1/+1 |
| | | | | | | | | | | Redirection to the home page URL was broken by changing the target for `root_url` from `DashboardController` to `RootController` in 94d3c1433df9380ca83f1f35a540074ff0690410. This regression was introduced in the 7.12.0 release. Fixes #1916. | ||||
| * | Fix 403 Access Denied error messages when accessing Labels section in a ↵ | Stan Hu | 2015-06-18 | 1 | -6/+1 |
| | | | | | | | project that has MRs disabled but issues enabled Closes #1813 | ||||
| * | Allow to configure a URL to show after sign out | Alex Lossent | 2015-05-29 | 1 | -1/+1 |
| | | |||||
| * | Set milestone on new issue when creating issue from index with milestone ↵ | Douwe Maan | 2015-05-27 | 1 | -4/+4 |
| | | | | | filter active. | ||||
| * | Fix Devise parameter sanitizer for otp_attempt | Robert Speicher | 2015-05-09 | 1 | -1/+1 |
| | | |||||
| * | Turn 2-factor authentication into 2 steps process. Disabled 2fa UI for ldap ↵ | Dmitriy Zaporozhets | 2015-05-09 | 1 | -1/+1 |
| | | | | | users since it is not supported | ||||
| * | Merge pull request #9234 from dsander/group-milestones-by-title | Dmitriy Zaporozhets | 2015-05-03 | 1 | -25/+0 |
| |\ | | | | | Group milestones by title in the dashboard and all other issue views | ||||
| | * | Removed unused ApplicationController#set_filter_values method | Dominik Sander | 2015-05-01 | 1 | -25/+0 |
| | | | | | | | | | | | The instance variables assigned in `set_filter_values` are not used by anything anymore. | ||||
| * | | Add helpers for header title and sidebar, and move setting those from ↵ | Douwe Maan | 2015-05-01 | 1 | -0/+1 |
| |/ | | | | controllers to layouts. | ||||
| * | Remove duplicate settings for default_url_options | Robert Speicher | 2015-04-25 | 1 | -12/+0 |
| | | | | | Closes internal https://dev.gitlab.org/gitlab/gitlabhq/issues/2269 | ||||
| * | Merge branch 'sign-out-to-sign-in' into 'master' | Dmitriy Zaporozhets | 2015-04-23 | 1 | -0/+4 |
| |\ | | | | | | | | | | | | | | | Redirect to sign in page after signing out. Addresses internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2125. See merge request !541 | ||||
| | * | Redirect to sign in page after signing out. | Douwe Maan | 2015-04-18 | 1 | -0/+4 |
| | | | |||||
| * | | Fixed the Rails/ActionFilter cop | Jeroen van Baarsen | 2015-04-20 | 1 | -9/+9 |
| |/ | | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | ||||
| * | Don't crash when project repository doesn't exist.fix-repository-rescue | Douwe Maan | 2015-04-14 | 1 | -1/+1 |
| | | |||||
| * | Use `\A` and `\z` in regexes instead of `^` and `$`. | Douwe Maan | 2015-04-10 | 1 | -1/+1 |
| | | |||||
| * | Support configurable attachment size via Application Settings | Stan Hu | 2015-04-02 | 1 | -0/+1 |
| | | | | | | | Fix bug where error messages from Dropzone would not be displayed on the issues page Closes #1258 | ||||
| * | Set Application controller default URL options to ensure all url_for calls ↵ | Stan Hu | 2015-03-25 | 1 | -0/+12 |
| | | | | | | | are consistent Closes #1249 | ||||
| * | Use same constant for amount of items per page | Dmitriy Zaporozhets | 2015-03-12 | 1 | -0/+2 |
| | | |||||
| * | Include route helper shortcut in controller | Dmitriy Zaporozhets | 2015-02-26 | 1 | -0/+1 |
| | | |||||
| * | Load public key in initializer. | Douwe Maan | 2015-02-24 | 1 | -0/+13 |
| | | |||||
| * | Upgrade to Rails 4.1.9 | Vinnie Okada | 2015-02-14 | 1 | -2/+4 |
| | | | | | | | Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers. | ||||
| * | Refactor sorting in project | Dmitriy Zaporozhets | 2015-02-05 | 1 | -2/+2 |
| | | |||||
