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
2017-10-03Hide Gollum inside Gitlab::Git::WikiJacob Vosmaer (GitLab)
2017-08-30Unescape HTML characters in Wiki titleJacopo
The special characters of a wiki title are now escaped correctly.
2017-08-07Merge branch 'wiki_title' into 'master'Robert Speicher
add feature rename wiki title Closes #27800 See merge request !10069
2017-08-03Allow wiki pages to be renamed in the UIwendy0402
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Merge branch '1827-prevent-concurrent-editing-wiki' into 'master'Robert Speicher
Prevent concurrent editing wiki Closes #1827 See merge request !9707
2017-07-27Encapsulate the commit.sha logicHiroyuki Sato
2017-07-27Use described_class when possibleRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-23Refactor: use keyword arguments for optional parametersHiroyuki Sato
2017-07-23Change double quotes to single quotesHiroyuki Sato
2017-07-23Merge branch 'master' into 1827-prevent-concurrent-editing-wikiHiroyuki Sato
Conflicts: app/controllers/projects/wikis_controller.rb app/views/projects/wikis/edit.html.haml spec/features/projects/wiki/user_updates_wiki_page_spec.rb
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-03-08Prevent concurrent editing wikiHiroyuki Sato
2017-02-14Make WikiPage comparable according to StaticModel interfaceMark Fletcher
* Add WikiPage#id method returning associated SHA for wiki page commit
2017-01-30Add WikiPage.unhyphenizeAlex Braha Stoll
2016-12-31Change WikiPage#directoryAlex Braha Stoll
2016-12-31Remove WikiPage#full_pathAlex Braha Stoll
2016-12-31Add WikiPage#to_partial_pathAlex Braha Stoll
2016-12-31Change WikiPage.group_by_directory to use WikiDirectoryAlex Braha Stoll
2016-12-31Change WikiPage.group_by_directory to order by directory and file ↵Alex Braha Stoll
alphabetical order
2016-12-31Change WikiPage#directory to always start a directory hierarchy with '/'Alex Braha Stoll
2016-12-31Add component to show the full path of a wiki page when viewing its contentAlex Braha Stoll
2016-12-31Add specs for WikiPage.group_by_directoryAlex Braha Stoll
2016-12-31Show directory hierarchy when listing wiki pagesAlex Braha Stoll
2016-08-09adds second batch of tests changed to active tensetiagonbotelho
2016-01-29Fix old version warning when viewing wiki latest version via version_idDouglas Barbosa Alexandre
2015-12-09Tag model specsDouwe Maan
2015-10-03Fix rubocop warnings in spec/modelsGuilherme Garnier
2015-06-22Fix Style/SpaceInsideHashLiteralBraces cop violationsRobert Speicher
These fixes were performed automatically by Rubocop's `-a` flag.
2015-03-22Fix dots in Wiki slug causing errorsStan Hu
Closes #1263, #431
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-01-15Fixed testsStefan Tatschner
2014-09-25Fix branch APIDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-31Recreate tmp/tests on each test runDmitriy Zaporozhets
2014-04-10Better title format for wiki pageHiroyuki Sato
The title format for wiki page may be unintelligible. For example 'GitLab' is converted to 'Git Lab', 'MySQL' is converted to 'My Sql', etc.
2014-04-09Use ProjectWiki instead of GollumWiki in codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-03-03Remove duplicate codeJacob Vosmaer
2013-11-05Revert "More escaping"Dmitriy Zaporozhets
This reverts commit c46eaca91247ccf8e6fb3b691dad028e1b084ae3.
2013-11-05More escapingNigel Kukard
- Database name may contain characters which are not shell friendly - Database password could contain the same - While we at it there is no harm in escaping generated paths too - Refactored 2-line system(command) Signed-off-by: Nigel Kukard <nkukard@lbsd.net>
2013-03-10Replace current Wiki system with Gollum Wikis.Dan Knox
This commit replaces the old database backed Wiki system with the excellent Gollum git based Wiki system. The UI has been updated to allow for utilizing the extra features that Gollum provides. Specifically: * Edit page now allows you to choose the content format. * Edit page allows you to provide a commit message for the change. * History page now shows Format, Commit Message, and Commit Hash. * A new Git Access page has been added with the Wiki Repo URL. * The default page has been changed to Home from Index to match the Gollum standard. The old Wiki model has been left in tact to provide for the development of a migration script that will move all content stored in the old Wiki system into new Gollum Wikis.