Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 6月 21, 2024
  2. 2月 02, 2024
  3. 1月 26, 2024
  4. 1月 17, 2024
  5. 10月 24, 2023
  6. 9月 15, 2023
  7. 4月 20, 2023
  8. 3月 31, 2023
  9. 2月 24, 2023
  10. 6月 20, 2022
  11. 6月 08, 2022
  12. 5月 19, 2022
  13. 4月 27, 2022
  14. 1月 14, 2022
    • Sean McGivern's avatar
      Show request ID on 500 error page · 724f4c5f
      Sean McGivern 创作于
      This adds a custom exceptions app that replaces a magic HTML comment in
      an error page with some HTML displaying the request ID to the user. It
      also adds that magic comment to the 500 error page, where it's most
      useful (as we will want to look up the stack trace corresponding to that
      request ID for a 500 error).
      
      The reasons for making this a magic HTML comment are:
      
      1. We don't need separate files that may drift apart from each other. An
         earlier version of this change added a new 500.html.erb file, which
         was almost identical to 500.html, just with the addition of some ERb
         code. If we changed one of those files, we'd need to change both.
      2. If we disable this app, or it doesn't get called for some reason, the
         user will see no difference in the rendered output.
      3. Similar to the above two reasons, these error pages in public/ are
         also used by Workhorse in some circumstances to replace the content
         sent by Rails. This is why we set the X-Gitlab-Custom-Error header
         when modifying the body, so that Workhorse does not then overwrite
         the HTML we want to send.
      
      In other words, this should be a purely additive change: if it works,
      great; if it doesn't, then there should be no difference.
      724f4c5f
  15. 11月 11, 2021
  16. 10月 14, 2021
  17. 8月 07, 2021
  18. 4月 29, 2021
    • Heinrich Lee Yu's avatar
      Fix speedscope rendering in production · fdcadf39
      Heinrich Lee Yu 创作于
      This moves the Speedscope files from the asset pipeline to /public. We
      only serve precompiled assets in production and we do not need these to
      be compiled.
      
      This also adds a nonce to the inline script tag so that it works when
      CSP is enabled and script-src is restricted.
      fdcadf39
  19. 4月 23, 2021
  20. 3月 17, 2021
  21. 3月 15, 2021
  22. 10月 29, 2020
  23. 10月 28, 2020
  24. 10月 27, 2020
  25. 8月 14, 2020
  26. 7月 27, 2020
    • Dmitriy Zaporozhets's avatar
      Add product analytics for events to monitoring · 32766c19
      Dmitriy Zaporozhets 创作于
      First code to get product analytics working.
      
      Display response.
      
      Small fix.
      
      Fixes DZ recommended.
      
      Got it working.
      
      Add go components.
      
      Make SQL functionality.
      
      No longer temp so they show up.
      
      Drop the table before creating.
      
      Basic sql functionality.
      
      New examples.
      
      All SQL funtionality in the webserver.
      
      Can detect both parameters.
      
      DB passing works.
      
      Add note about users.
      
      Got into the db.
      
      Made the table.
      
      Got it working front to back.
      
      Got it working front to back.
      
      Got a graph working.
      
      Rename Go app.
      
      Made configurable.
      
      Make port configurable.
      
      Working page.
      
      Don't hardcode the number of groups.
      
      Split the pages up.
      
      Forgot to add files.
      
      Made a migration to store data.
      
      Fixed a ton of definitions.
      
      Clearup of Go code.
      
      More atrributes.
      
      make on for strings
      
      Add features.
      
      New version breaks things.
      
      Update the tracker.
      
      Sort latest first.
      
      Add echart and stuff still to parse.
      
      Switch to Echarts.
      
      Rename.
      
      Reformat.
      
      Save the actual version.
      
      Add an extra graphs.
      
      Still works.
      
      Nice graphs.
      
      Add javascript tracker to enable the product analytics.
      
      Sanetize and use local url of rails app.
      
      Make tracker random to reset platform and appid.
      
      Cleanup and load testing.
      
      Change db model name and limit rows on index page.
      
      Add more attributes.
      
      Add index.
      
      Show more graphs.
      
      Fix graphs.
      
      Switch to ActiveRecord.
      
      Added scopes.
      
      Scoped standardized.
      
      Limit time range.
      
      Add seed data.
      
      Rename graphs to users.
      
      Add an activity graph.
      
      No idea what this sql file did.
      
      Moved to https://gitlab.com/gitlab-org/snowplow-go-collector
      
      
      
      Add docs.
      
      First stab at a test.
      
      Specs for every action.
      
      Fix navigation test.
      
      Fix a bunch of rubocop errors.
      
      Move search to the model.
      
      Fix all rubocop tests.
      
      Add translated strings.
      
      Make rubocop happy.
      
      Move tracker under - to prevent namespace conflicts.
      
      Let specs ignore _id columns.
      
      Add missing string literal.
      
      Add migration helpers for concurrent index
      
      Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
      32766c19
  27. 6月 20, 2020
  28. 5月 29, 2020
  29. 5月 22, 2020
  30. 1月 21, 2020
  31. 1月 17, 2020
  32. 1月 02, 2020
  33. 10月 15, 2019
加载中