summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Remove upvotes js logic since it does not work as expected anywayDmitriy Zaporozhets2015-03-202-21/+1
|/ / / /
* | | | Improve project name truncation on dashboard to work well with sm screenDmitriy Zaporozhets2015-03-201-1/+1
| |/ / |/| |
* | | Merge branch 'security_fixes' into 'master'Dmitriy Zaporozhets2015-03-202-11/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [security] gems update [doorkeeper] added filtering of sensitive information (like secret key) from production.log [gollum lib] remote code execution (in search field). We don't have search for wiki but it is better to have this fix. Nothing critical!!! related to #2143 See merge request !1732
| * | | gollum-lib updateValery Sizov2015-03-202-7/+7
| | | |
| * | | update doorkeeper to 2.1.3Valery Sizov2015-03-202-4/+4
|/ / /
* | | Revert "Merge branch 'new_branch' into 'master'"Marin Jankovski2015-03-191-2/+2
| | | | | | | | | | | | | | | This reverts commit 00607d4f960631f7396ea9afd39859d17fa9f12c, reversing changes made to edfc7d0d268b6e73a30f501c3897965c111c262a.
* | | Merge branch 'new_branch' into 'master'Marin Jankovski2015-03-201-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | New branch See merge request !406
| * | | REaadme. Issue #1Marin Jankovski2015-03-191-1/+1
| | | |
| * | | REadme.Marin Jankovski2015-03-171-1/+1
| | | |
| * | | Remove rubyracerMarin Jankovski2015-03-132-7/+0
| | | |
* | | | Merge pull request #8974 from duduribeiro/add_error_message_in_profileDmitriy Zaporozhets2015-03-192-1/+3
|\ \ \ \ | | | | | | | | | | Add error message when have error on profile screen
| * | | | Add error message when have error on profile screenCarlos Ribeiro2015-03-192-1/+3
|/ / / /
* | | | Merge branch 'revert-unicorn-timeout' into 'master'Dmitriy Zaporozhets2015-03-206-49/+16
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert "Increase timeout for Git-over-HTTP requests." This reverts commit 516bcabbf42d60db2ac989dce4c7187b2a1e5de9. For #2164 cc @marin @douwe See merge request !1730
| * | | | Revert "Increase timeout for Git-over-HTTP requests."Dmitriy Zaporozhets2015-03-196-49/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 516bcabbf42d60db2ac989dce4c7187b2a1e5de9. Conflicts: Gemfile
* | | | | Revert "Update poltergeist to support phantomjs 2.0"Dmitriy Zaporozhets2015-03-192-6/+4
|/ / / / | | | | | | | | | | | | This reverts commit d70126c1fbc65c4feeea6fb45424f5d4a30bb797.
* | | | Merge branch 'update_ui' into 'master'Dmitriy Zaporozhets2015-03-201-3/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Remove mention of branch to commit to when new file is added through UI See merge request !1731
| * | | | Remove mention of branch to commit to.Marin Jankovski2015-03-191-3/+0
| | | | |
* | | | | Fix project issues and merge requests pagesDmitriy Zaporozhets2015-03-193-3/+2
| | | | |
* | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2015-03-1910-32/+187
|\ \ \ \ \
| * \ \ \ \ Merge branch 'fix-underscore-notes' into 'master'Hannes Rosenögger2015-03-197-24/+175
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix cross-references that contain underscores ### What does this MR do? Cross-references that contain underscores confuse the Markdown renderer and don't work properly. For example: 1. In `myacct/project_one#456`, add a comment that includes a reference to `myacct/project_two#123`. 2. The comment in `myacct/project_one#456` links correctly. 3. The system note in `myacct/project_two#123` is incorrectly linked as: `mentioned in issue myacct/projectone#456_` This MR removes the use of the `_` character in the system notes to prevent Markdown confusion. See a full discussion in #1160. ### Are there points in the code the reviewer needs to double check? To preserve backwards compatibility with existing system notes, there is a SQL wildcard match for notes having underscores. This seemed safer than migrating all notes. ### Why was this MR needed? In an ideal world, the Markdown parser would be able to handle references containing underscores with or without escape sequences. However, there are a number of issues: 1. RedCarpet's parser for emphasis block is pretty dumb: it treats `#` as a word break and thus even the `intra_word_emphasis` flag has no effect. 2. The parser is in C and can't be changed easily. 3. There is no way to insert an escape sequence for emphasis blocks. The only way around this is to switch to something like CommonMark, which does support escape sequences. ### What are the relevant issue numbers / [Feature requests](http://feedback.gitlab.com/)? Issue #1160 ### Screenshots Before: ![Screen_Shot_2015-03-19_at_1.39.29_AM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/a1db4b96c0df2f10d9855ed5abe976ca/Screen_Shot_2015-03-19_at_1.39.29_AM.png) After: ![Screen_Shot_2015-03-19_at_1.39.35_AM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/189a062c2d19645eec1782ac1f0d4f2f/Screen_Shot_2015-03-19_at_1.39.35_AM.png) See merge request !385
| | * | | | | Fix cross references when usernames, milestones, or project names contain ↵Stan Hu2015-03-197-24/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | underscores. Remove emphasis from system notes to avoid Markdown conflicts in names.
| * | | | | | Merge branch 'version-bump-poltergeist' into 'master'Dmitriy Zaporozhets2015-03-193-4/+7
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update poltergeist to support phantomjs 2.0 In response to [my issue](https://gitlab.com/gitlab-org/gitlab-development-kit/issues/36) on the GDK. PhantomJS 1.8 was not in the repo's anymore. Only poltergeist needed it, but they support PhantomJS 2.0 since 1.6.0. (next release since 1.5.1) [Their CHANGELOG](https://github.com/teampoltergeist/poltergeist/blob/master/CHANGELOG.md). Tested locally with Ruby 2.1.5. As this took ages, I haven't tested further. See merge request !403
| | * | | | | | Update poltergeist to support phantomjs 2.0Zeger-Jan van de Weg2015-03-193-4/+7
| | | | | | | |
| * | | | | | | Merge branch 'bugfix/block_ldap_users_cronjob' into 'master'Dmitriy Zaporozhets2015-03-191-4/+5
| |\ \ \ \ \ \ \ | | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed rake task gitlab:cleanup:block_removed_ldap_users Maybe not the most elegant solution, but it works for us. This closes issue gitlab-org/gitlab-ce#955. See merge request !338
| | * | | | | | fixed rake task to block removed ldap usersDaniel Steinborn2015-02-161-4/+5
| | | | | | | |
* | | | | | | | Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets2015-03-193-3/+3
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | |
| * | | | | | | Merge pull request #8772 from awiddersheim/fix/grammar_projects_showDmitriy Zaporozhets2015-03-191-1/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix small grammar issue on projects show page
| | * | | | | | | Fix small grammar issue on projects show pageAndrew Widdersheim2015-02-101-1/+1
| | | | | | | | |
| * | | | | | | | Merge pull request #8662 from yglukhov/mr-and-issue-linksDmitriy Zaporozhets2015-03-192-2/+2
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | | Make MR and issue numbers clickable links in MR and issue lists.
| | * | | | | | | Make MR and issue numbers clickable links in MR and issue lists.yglukhov2015-02-152-2/+2
| | | | | | | | |
* | | | | | | | | Merge branch 'import-button' into 'master'Dmitriy Zaporozhets2015-03-192-51/+53
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move "Import existing repository by URL" option to button. The "Import existing repository URL" (with or without form visible) looked out place with the new import buttons. I moved it to a button, and moved the form to below the buttons. @dzaporozhets Would be nice to have in 7.9 since the moved buttons are in there as well. Before: ![Screen_Shot_2015-03-19_at_15.08.04](https://dev.gitlab.org/gitlab/gitlabhq/uploads/6ac26467ede65a4f31d004c227fdbc3e/Screen_Shot_2015-03-19_at_15.08.04.png) After: ![Screen_Shot_2015-03-19_at_15.42.56](https://dev.gitlab.org/gitlab/gitlabhq/uploads/a73bd7d09b7a33f58067a3bd0d7f604a/Screen_Shot_2015-03-19_at_15.42.56.png) ("publically" typo has been fixed to "publicly") See merge request !1728
| * | | | | | | | Clear up import help.Douwe Maan2015-03-191-6/+9
| | | | | | | | |
| * | | | | | | | Move "Import existing repository by URL" option to button.Douwe Maan2015-03-192-46/+45
| | | | | | | | |
* | | | | | | | | Merge branch 'add_canceled_ci_status' into 'master'Dmitriy Zaporozhets2015-03-194-1/+14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add canceled CI status Fixes https://github.com/gitlabhq/gitlab-ci/issues/564 https://dev.gitlab.org/gitlab/gitlab-ci/issues/169 ![Screen_Shot_2015-03-19_at_17.10.08](https://dev.gitlab.org/gitlab/gitlabhq/uploads/87f47d9fd1b1a60e0c5402eedd1a1566/Screen_Shot_2015-03-19_at_17.10.08.png) See merge request !1729
| * | | | | | | | | add canceled CI statusValery Sizov2015-03-194-1/+14
| | |_|_|_|_|/ / / | |/| | | | | | |
* | | | | | | | | Use same font for project description and star linksDmitriy Zaporozhets2015-03-191-2/+6
| | | | | | | | |
* | | | | | | | | Merge branch 'fix/navbar-toggle-margin' into 'master'Dmitriy Zaporozhets2015-03-192-1/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix(style): align navbar-toggle Changes: - change `.navbar-toggle` from `margin: 0 -15px 0 0;` to `margin: 0;` ## Before: - 320x480 ![Screen_Shot_2015-03-19_at_03.43.53](https://gitlab.com/kingcody/gitlab-ce/uploads/376727af07cf62eec5609c01bbbdaacf/Screen_Shot_2015-03-19_at_03.43.53.png) - 360x640 ![Screen_Shot_2015-03-19_at_03.44.04](https://gitlab.com/kingcody/gitlab-ce/uploads/d5318de4f45687154d90c54f0bece2aa/Screen_Shot_2015-03-19_at_03.44.04.png) ## After: - 320x480 ![Screen_Shot_2015-03-19_at_03.45.21](https://gitlab.com/kingcody/gitlab-ce/uploads/20f526c9ef19c2c30add001b15c06358/Screen_Shot_2015-03-19_at_03.45.21.png) - 360x640 ![Screen_Shot_2015-03-19_at_03.45.27](https://gitlab.com/kingcody/gitlab-ce/uploads/e60e9dde1f86d89adf36480e7fcc611d/Screen_Shot_2015-03-19_at_03.45.27.png) See merge request !402
| * | | | | | | | | fix(style): align navbar-togglekingcody2015-03-192-1/+2
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - change `.navbar-toggle` from `margin: 0 -15px 0 0;` to `margin: 0;`
* | | | | | | | | Merge branch 'fix_trigger_search' into 'master'Dmitriy Zaporozhets2015-03-191-23/+23
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only trigger search if search string is present This is a follow up for !296 to prevent the search function from being executed while the query is nil. Problem was this: When the search is called, the search controller gets 2 requests. ``` {"action"=>"show", "controller"=>"search"} ``` and ``` {"utf8"=>"✓", "search"=>"proj", "project_id"=>"", "group_id"=>"", "snippets"=>"", "scope"=>"", "button"=>"", "action"=>"show", "controller"=>"search"} ``` Obviously it doesn't make sense to execute the search for the first request, since that one doesn't have a scope or a search string. Please review this carefully since this modifies the search and may break things i can't think of. @dzaporozhets While this fixes the root cause for the failing test, I think we should keep your fix in as a failsafe. What do you think of this? See merge request !302
| * | | | | | | | | Only trigger actual search if a search string is presentHannes Rosenögger2015-03-191-23/+23
| |/ / / / / / / /
* | | | | | | | | Merge branch 'rake_backup' into 'master'Dmitriy Zaporozhets2015-03-192-2/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Backup repo with tar instead of git bundle Fixes gitlab/gitlab-ee#246 See merge request !1723
| * | | | | | | | | backup repo with tar instead of git bundleValery Sizov2015-03-192-2/+4
| |/ / / / / / / /
* | | | | | | | | Merge branch 'fewer-constants-more-helpres' into 'master'Dmitriy Zaporozhets2015-03-194-8/+10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fewer Git constants, more Git helpers. See merge request !1727
| * | | | | | | | | Fewer constants, more helpers.Douwe Maan2015-03-194-8/+10
| | |/ / / / / / / | |/| | | | | | |
* | | | | | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2015-03-191-2/+2
|\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'docs-spelling-error' into 'master'Hannes Rosenögger2015-03-191-2/+2
| |\ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed spelling mistake in install docs Fixed spelling mistake of this. [ci skip] See merge request !404
| | * | | | | | | | Changed tis to thisPhil Hughes2015-03-191-2/+2
| |/ / / / / / / /
* | | | | | | | | Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets2015-03-192-2/+2
|\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge pull request #8978 from sampi60/patch-1Robert Schilling2015-03-191-1/+1
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Fix link to 'URL auto-linking' section in markdown help
| | * | | | | | | | | Fix link to URL auto-linking section in markdown helpPiotr Sampławski2015-03-191-1/+1
| |/ / / / / / / / /