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
2021-04-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-31Avoid calling freeze on already frozen strings in app/modelsdineshpanda
2019-07-19Properly identify task lists inside a blockquoteBrett Walker
Updated the task list regex to understand blockquote characters that can come before the task item marker
2019-06-07Add task count and completed count to responses of Issue and MRPatrick Derichs
Add spec for task_completion_status Add test cases for task_completion_status result Extracted shared samples Add new spec file for task completion status response Fix style errors Add changelog entry Changed samples to Hashes Remove test for successful request Remove not nil expectation Add task_completion_status to api documentation for issues Add task_completion_status to api documentation for merge_requests Refactor spec so it just requests one specific item Add task_completion_status to Taskable Simplified task completion status in entities Refactor spec so it separates status code check and content check Fix spec description text and field name
2019-05-05Run rubocop -a on CE filesStan Hu
2019-01-31Refactor and added specsBrett Walker
2019-01-31Refactor toggling of task list itemBrett Walker
2018-08-07Enable more frozen string in app/models/**/*.rbgfyoung
Partially addresses #47424.
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2017-11-22Move ModuleWithInstanceVariables to Gitlab namespaceLin Jen-Shin
And use .rubocop.yml to exclude paths we don't care, rather than using the cop itself to exclude.
2017-11-17Use StrongMemoize and enable/disable cops properlyLin Jen-Shin
2017-09-18Allow simple ivar ||= form. Update accordinglyLin Jen-Shin
2017-09-18Add cop to make sure we don't use ivar in a moduleLin Jen-Shin
2017-01-25Don’t count tasks that are not defined as list items correctlyJarka Kadlecova
2017-01-24fix nested tasks in ordered listJarka Kadlecova
2016-10-28add "x of y tasks completed" on issuableGuilherme Salazar
fix issues pointed out in !6527 add task completion status feature to CHANGELOG
2016-08-29Shorten task status phraseClement Ho
2015-11-20Fix bug that happened when replacing the Task list. #2296Rubén Dávila
REF: https://gitlab.com/gitlab-org/gitlab-ce/issues/2296#note_2724697
2015-11-20Monkey patching TaskList::Item is no longer required. #2296Rubén Dávila
2015-11-20Generate system note after Task item has been updated on Issue or Merge ↵Ruben Davila
Request. #2296 Everytime the User check or uncheck a Task Item from the Issue or Merge Request description, a new update is going to be added to the activity logs of the Issue or Merge Request. Note that when using the edit form, you can only update the Task item status or add/delete/modify existing ones. Doing both actions is not fully supported.
2015-06-10Fix taskable requireRobert Speicher
2015-05-07Change wording for task list summariesRobert Speicher
2015-05-06Update Taskable to use TaskListRobert Speicher
2015-03-21Fix nested task listsVinnie Okada
When nesting task list items, the parent item is wrapped in a `<p>` tag. Update the task list parser to handle these paragraph wrappers.
2014-10-06Add task lists to issues and merge requestsVinnie Okada
Make the Markdown parser recognize "[x]" or "[ ]" at the beginning of a list item and turn it into a checkbox input. Users who can modify the issue or MR can toggle the checkboxes directly or edit the Markdown to manage the tasks. Task status is also displayed in the MR and issue lists.