BigW Consortium Gitlab

  1. 18 Nov, 2016 2 commits
    • Un-un-revert signin tab order fix. · 0bd53709
      Bryce Johnson authored
    • Allow registering users where the username contains dots (.). · 78b6d662
      Timothy Andrew authored
      Javascript does not support the negative lookbehind assertion (?<!) used
      in the Ruby regex (to disallow usernames ending in `.git` or `.atom`.
      
      Getting the client side code to fully support this format is
      non-trivial, since we'd either have to heavily complicate the
      regex used, or modify the frontend code to support more complex
      validation schemes (it currently uses HTML5 validations).
      
      The pragmatic choice is to create a
      `Gitlab::Regex::NAMESPACE_REGEX_STR_SIMPLE` regex to serve as a
      Javascript-compatible version of `NAMESPACE_REGEX_STR`.
      
      The client-side code will not display an error for usernames ending in
      `.git` and `.atom`, but these will be caught by the server-side
      validation.
  2. 10 Nov, 2016 1 commit
  3. 02 Nov, 2016 1 commit
  4. 01 Nov, 2016 1 commit
  5. 24 Oct, 2016 1 commit
  6. 22 Oct, 2016 1 commit
  7. 20 Oct, 2016 2 commits
  8. 18 Oct, 2016 8 commits
  9. 16 Oct, 2016 1 commit
  10. 15 Oct, 2016 10 commits
  11. 13 Oct, 2016 1 commit
  12. 07 Oct, 2016 1 commit
    • Enable CacheMarkdownField for the remaining models · 99205515
      Nick Thomas authored
      This commit alters views for the following models to use the markdown cache if
      present:
      
      * AbuseReport
      * Appearance
      * ApplicationSetting
      * BroadcastMessage
      * Group
      * Issue
      * Label
      * MergeRequest
      * Milestone
      * Project
      
      At the same time, calls to `escape_once` have been moved into the `single_line`
      Banzai pipeline, so they can't be missed out by accident and the work is done
      at save, rather than render, time.
  13. 21 Sep, 2016 1 commit
  14. 02 Sep, 2016 1 commit
  15. 03 Aug, 2016 2 commits
  16. 14 Jul, 2016 2 commits
  17. 17 Jun, 2016 3 commits
  18. 08 Jun, 2016 1 commit
    • Allow custom text on 'almost there' page · 40b6d906
      Sean McGivern authored
      Add a new application setting, after_sign_up_text. This is text to be
      rendered as Markdown and shown on the 'almost there' page after a user
      signs up, but before they've confirmed their account.
      
      Tweak the styles for that page so that centered lists look reasonable.