1. 12 1月, 2019 3 次提交
  2. 11 1月, 2019 2 次提交
  3. 10 1月, 2019 3 次提交
  4. 09 1月, 2019 4 次提交
  5. 08 1月, 2019 4 次提交
  6. 06 1月, 2019 2 次提交
  7. 05 1月, 2019 1 次提交
  8. 04 1月, 2019 1 次提交
    • O
      Enhance Docker (#6504) · c01230af
      oliviermichaelis 提交于
      Refactored deprecated functionalities:
        - Used 'celery worker' command instead of 'superset worker' which is
          deprecated since 0.26.0
        - Used 'gunicorn' command instead of 'superset runserver'
      c01230af
  9. 31 12月, 2018 1 次提交
  10. 29 12月, 2018 4 次提交
  11. 28 12月, 2018 5 次提交
  12. 23 12月, 2018 3 次提交
  13. 22 12月, 2018 2 次提交
  14. 21 12月, 2018 3 次提交
  15. 19 12月, 2018 2 次提交
    • M
      [RfC] Fix URL too long (#6519) · 42067e07
      Maxime Beauchemin 提交于
      When a URL gets too long (usually happens with controls that allow
      free form text), it creates an array of bugs.
      * bug when creating a short URL, because the POST request's referrer
      field is too long
      * a bug when saving a chart (when the modal shows up) also because of
      the referrer being too long
      
      Some work has been done in the past to mitigate this, and I'm unclear if
      it's some sort of regression because of the Flask upgrade or some
      browser change, or whether these bugs have always been around.
      
      This is a request for comment on an approach that works. Let me know if
      you can think of better ideas as to how to manage this.
      
      My current solution looks for 8000+ characters URLs and shrinks them to
      only `/superset/explore/?URL_IS_TOO_LONG_TO_SHARE&form_data=...` and we
      only keep the formData keys for `datasource` and `viz_type`. Not super
      elegant but does the trick.
      42067e07
    • M
      5a1ff0f0