1. 26 12月, 2014 4 次提交
  2. 25 12月, 2014 15 次提交
  3. 24 12月, 2014 2 次提交
    • M
      Encode special characters in branch names for `compare` command · f06b6191
      Mislav Marohnić 提交于
      Because the branch name becomes a URL component, special characters like
      `#` need to be URI-encoded. Some characters are exempt from encoding:
      
      * `/` can occur literally in a branch name
      * Characters like `!.*'()` are allowed in URLs
      * Characters like `^:~` are NOT encoded because git doesn't allow them
        in branch names, but they can be used in Compare view for stuff like:
        - `mislav:master`
        - `feature^`
        - `feature~3`
      * If you specify a range for Compare, nothing is escaped and the caller
        is responsible for encoding branch names properly. This is because
        such expressions can include stuff like `@{1 week ago}` that
        branch-encoding would totally mess up.
      f06b6191
    • M
      Merge pull request #738 from github/no-token-reuse · 0b076c30
      Mislav Marohnić 提交于
      Improve authentication process
      0b076c30
  4. 23 12月, 2014 7 次提交
  5. 28 11月, 2014 2 次提交
  6. 23 9月, 2014 2 次提交
    • M
      Ensure tests use URI from speedy_stdlib even if Bundler loaded URI · b311b7b3
      Mislav Marohnić 提交于
      When running through `bundle exec`, Bundler will have loaded URI already
      which will make our speedy_stdlib skip redefining it.
      
      Aggressively undefine URI if loaded through Bundler so that our tests
      perform against our implementation, not the stdlib one.
      b311b7b3
    • M
      Tweak URI implementation for compatibility with stdlib · 38dbd312
      Mislav Marohnić 提交于
      When `url.scheme` is changed from "https" to "http" when someone
      configured their Enterprise instance to be used over insecure protocol,
      the "speedy" implementation changed the port as well, but the stdlib
      implementation doesn't. Things would break if someone used hub in an
      environment where stdlib URI was already loaded, like for instance from
      RubyGems.
      38dbd312
  7. 28 7月, 2014 3 次提交
  8. 27 7月, 2014 1 次提交
  9. 26 7月, 2014 4 次提交