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
path: root/lib
AgeCommit message (Collapse)Author
2015-09-01Added USE_DB env var to allow loading fake settings without db running.Marin Jankovski
2015-09-01Sort issues by creation date in Bitbucket importerStan Hu
API reference here: https://bitbucket.org/site/master/issues/3571/api-issues-sorting-bb-3518 Closes https://github.com/gitlabhq/gitlabhq/issues/9519
2015-08-31Remove unnecessary `strip` from `reference_class` methodRobert Speicher
2015-08-31Move REDCARPET_OPTIONS to a private methodRobert Speicher
There wasn't really a reason to have them as a constant, and we were getting "already defined" warnings which are always annoying.
2015-08-31Be more defensive when running 'kill'Jacob Vosmaer
2015-08-31Merge remote-tracking branch 'gitlab.com/master' into gitlab-git-http-serverJacob Vosmaer
2015-08-31Replace grack with gitlab-git-http-serverJacob Vosmaer
2015-08-29Merge branch 'master' into joelkoglin/gitlab-ce-feature_fix_ldap_auth_issue_993Douwe Maan
2015-08-29Minor refactorDouwe Maan
2015-08-28Merge branch 'fix-session_expire_delay' into 'master'Stan Hu
read session_expire_delay from database if table & column exists; Previous code only ends up using the default value for session_expire_delay, not the value stored in the database, making the session always 1 week. See merge request !1217
2015-08-28fixed connection detection so settings can be read from the databaseEric Maziade
2015-08-28Make sure the main Gitlab::Markdown module gets loaded before filtersRobert Speicher
2015-08-28Reference filters no longer take a custom class context optionRobert Speicher
2015-08-28Decouple Gitlab::Markdown from the GitlabMarkdownHelperRobert Speicher
This module is now the sole source of knowledge for *how* we render Markdown (and GFM).
2015-08-27Merge branch 'rs-remove-user-color-scheme-class' into 'master'Douwe Maan
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
2015-08-27Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-gDouwe Maan
2015-08-27Update gitignore, change literal DB table names, fix errors, fix fontawesomeDouwe Maan
2015-08-26Add `count` to Themes and ColorSchemesRobert Speicher
2015-08-26Add `Gitlab::Themes.for_user`Robert Speicher
2015-08-26Groundwork for merging CI into CEDouwe Maan
2015-08-26Remove user_color_scheme_classRobert Speicher
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.
2015-08-26Add Gitlab::ColorSchemes moduleRobert Speicher
Very similar to Gitlab::Theme, this contains all of the definitions for our syntax highlighting schemes.
2015-08-25Fix init script for Reply by emailDouwe Maan
2015-08-24Ability to search milestonesValery Sizov
2015-08-23Remove user OAuth tokens stored in database for Bitbucket, GitHub, and GitLabStan Hu
and request them each session. Pass these tokens to the project import data. This prevents the need to encrypt these tokens and clear them in case they expire or get revoked. For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get an Error 500 with no way to recover: ``` Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000 Processing by Import::BitbucketController#status as HTML Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms) NameError (uninitialized constant Import::BitbucketController::Unauthorized): app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized' ``` Closes #1871
2015-08-22Merge branch 'reply-by-email' into 'master'Robert Speicher
Reply by email Fixes #1360. It's far from done, but _it works_. See merge request !1173
2015-08-22No HTML-only email pleaseDouwe Maan
2015-08-22Fix check task for development.Douwe Maan
2015-08-22Add development section to doc.Douwe Maan
2015-08-21Merge branch 'rs-dev-issue-2550' into 'master'Douwe Maan
Remove trailing HTML entities from non-Rinku autolinks as well. Addresses internal https://dev.gitlab.org/gitlab/gitlabhq/issues/2550 See merge request !1179
2015-08-21Block blocked users from replying to threads by email.Douwe Maan
2015-08-21Issue #993: Fixed login failure when extern_uid changesJoel Koglin
2015-08-21Merge branch 'fix-backup-restore' into 'master'Robert Speicher
Do not delete the SQL dump too early The change in baa157926d432f404a41c31ad6514ff8d5366269 broke backup restore fucnctionality. This would not lead to data loss, but it prevented the restore script from working. This bug exists only in 7.14.0 release candidate versions, not in 7.13. Reported in https://github.com/gitlabhq/gitlabhq/issues/9571 . See merge request !1182
2015-08-21Do not delete the SQL dump too earlyJacob Vosmaer
The change in baa157926d432f404a41c31ad6514ff8d5366269 broke backup restore fucnctionality. This would not lead to data loss, but it prevented the restore script from working. This bug exists only in 7.14.0 release candidate versions, not in 7.13. Reported in https://github.com/gitlabhq/gitlabhq/issues/9571 .
2015-08-21Merge pull request #9535 from bbodenmiller/patch-3Jacob Vosmaer
check upload dir permissions
2015-08-21Remove trailing HTML entities from non-Rinku autolinks as well.Robert Speicher
2015-08-21Memoize address_regex locally.Douwe Maan
2015-08-21Fix spec by removing global state.Douwe Maan
2015-08-21Fix markdown specs.Douwe Maan
2015-08-21Fix indentationDouwe Maan
2015-08-21Fix MailRoom running check.Douwe Maan
2015-08-21Add gitlab:reply_by_email:check rake task.Douwe Maan
2015-08-20Merge branch 'master' into reply-by-emailDouwe Maan
2015-08-20Test Gitlab::Email::Receiver.Douwe Maan
2015-08-20Make error class names more consistent.Douwe Maan
2015-08-20Fix a couple of whoopsy daisies.Douwe Maan
2015-08-20Extract ReplyParser and AttachmentUploader from Receiver.Douwe Maan
2015-08-20Import sources: settings in the admin interfaceArtem Sidorenko
2015-08-20Start on tests.Douwe Maan
2015-08-20Fix init.d script.Douwe Maan