An error occurred fetching the project authors.
  1. 11 Dec, 2015 2 commits
  2. 09 Dec, 2015 2 commits
  3. 07 Dec, 2015 1 commit
  4. 05 Dec, 2015 1 commit
  5. 03 Dec, 2015 5 commits
  6. 18 Nov, 2015 3 commits
  7. 16 Nov, 2015 1 commit
  8. 12 Nov, 2015 1 commit
    • Jason Lee's avatar
      Avoid render edit_form in each notes. · 19740871
      Jason Lee authored
      Use RJS to render edit note feature.
      
      Before:
      
      ```
      Rendered projects/notes/_note.html.haml (27.9ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.7ms)
      Rendered projects/_md_preview.html.haml (3.9ms)
      Rendered projects/notes/_edit_form.html.haml (6.9ms)
      Rendered projects/notes/_note.html.haml (17.7ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.6ms)
      Rendered projects/_md_preview.html.haml (3.4ms)
      Rendered projects/notes/_edit_form.html.haml (7.0ms)
      ```
      
      After:
      
      ```
      Rendered projects/notes/_note.html.haml (13.8ms)
      Rendered projects/notes/_note.html.haml (7.1ms)
      Rendered projects/notes/_note.html.haml (9.5ms)
      Rendered projects/notes/_note.html.haml (8.5ms)
      ```
      
      This change reduce at least 6ms * N ('N' - number of notes).
      19740871
  9. 07 Oct, 2015 1 commit
  10. 30 Sep, 2015 1 commit
  11. 10 Sep, 2015 1 commit
  12. 04 Sep, 2015 1 commit
  13. 26 Jul, 2015 1 commit
  14. 17 Jul, 2015 1 commit
    • Daniel Gerhardt's avatar
      Fix file upload dialog for comment editing · 78250015
      Daniel Gerhardt authored
      This fixes the file upload dialog which currently works for new comments
      but not for comment editing. The cause for this is a missing DOM class
      which causes traversal to the dropzone to fail.
      
      This is fixed by adding the expected `gfm-form` class to the edit form.
      It has to be added dynamically since adding it to the form template
      would break the form's layout and comment saving.
      78250015
  15. 16 Jun, 2015 1 commit
  16. 09 Jun, 2015 1 commit
  17. 28 May, 2015 1 commit
  18. 21 May, 2015 1 commit
  19. 20 May, 2015 1 commit
  20. 06 May, 2015 3 commits
  21. 27 Mar, 2015 2 commits
  22. 20 Mar, 2015 1 commit
  23. 17 Feb, 2015 2 commits
  24. 16 Feb, 2015 1 commit
  25. 11 Feb, 2015 1 commit
  26. 07 Feb, 2015 1 commit
  27. 05 Feb, 2015 1 commit
  28. 15 Jan, 2015 1 commit
    • Stefan Tatschner's avatar
      Replace highlight.js with rouge-fork rugments · bf079c24
      Stefan Tatschner authored
      I decided to create a fork of rouge as rouge lacks a HTML formatter with
      the required options such as wrapping a line with <span> tags.
      Furthermore I was not really convinced about the clarity of rouge's
      source code.
      
      Rugments 1.0.0beta3 for now only includes some basic linting and a new
      HTML formatter. Everything else should behave the same.
      bf079c24