1. 24 Mar, 2017 1 commit
  2. 21 Mar, 2017 1 commit
    • Yiming Sun's avatar
      Fix typo · 14094aae
      Yiming Sun authored
      PUBLISHED_FROM=56fdeaf4965ef26c398267c8656735bb52e45085
      14094aae
  3. 20 Mar, 2017 1 commit
  4. 15 Mar, 2017 2 commits
  5. 11 Mar, 2017 1 commit
  6. 01 Mar, 2017 2 commits
  7. 28 Feb, 2017 1 commit
  8. 24 Feb, 2017 1 commit
    • Dmitry Frank's avatar
      Fix subscription to wildcard topics · 39429149
      Dmitry Frank authored
      `mg_mqtt_match_topic_expression()` and friends are public now.
      
      So far, only `#` is supported.
      
      PUBLISHED_FROM=20c031bcf34be84771c4a9c456318634eb9a517c
      39429149
  9. 15 Feb, 2017 1 commit
  10. 09 Feb, 2017 1 commit
  11. 30 Jan, 2017 1 commit
  12. 09 Jan, 2017 1 commit
  13. 25 Nov, 2016 1 commit
  14. 18 Nov, 2016 1 commit
  15. 17 Nov, 2016 1 commit
  16. 14 Nov, 2016 2 commits
  17. 11 Nov, 2016 1 commit
  18. 10 Nov, 2016 2 commits
  19. 09 Nov, 2016 2 commits
  20. 08 Nov, 2016 1 commit
  21. 03 Nov, 2016 1 commit
  22. 01 Nov, 2016 1 commit
  23. 28 Oct, 2016 1 commit
  24. 27 Oct, 2016 3 commits
  25. 26 Oct, 2016 3 commits
  26. 17 Oct, 2016 3 commits
  27. 14 Oct, 2016 1 commit
  28. 13 Oct, 2016 1 commit
    • Deomid Ryabkov's avatar
      Change from using #ifdef to #if for features tests · bafc30be
      Deomid Ryabkov authored
      "#if FOO" still works with simple -DFOO, but gives more flexibility.
      Specifically, if user expressed no preference (FOO is not defined),
      we can apply reasonable defaults (this is the legitimate use of ifdef).
      
      In short, from now on, please use
      
       #if MG_ENABLE_FOO
      
      instead of
      
       #ifdef MG_ENABLE_FOO
      
      Since we are all used to #ifdef, this change also adds a precommit check
      to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
      "ifdef" and "if defined()" are not allowed to be used with macros that contain
      ENABLE or DISABLE, unless the like also contains "ifdef-ok".
      
      Hence, if you are sure you want to use ifdef, use this:
      
       #ifdef MG_ENABLE_FOO /* ifdef-ok */
      
      PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
      bafc30be
  29. 04 Oct, 2016 1 commit
    • Deomid Ryabkov's avatar
      Add MG_EV_SSI_CALL_CTX · f9a6403b
      Deomid Ryabkov authored
      This is the variant of MG_EV_SSI_CALL with context of the SSI call being
      processed in addition to the tag argument. Specifically, call handler
      now gets access to the HTTP request and the name of the file being processed.
      
      MG_EV_SSI_CALL is preserved for backward compatibility.
      
      PUBLISHED_FROM=eeea7487c062505abdb23b6f64994ff7a6b60ff8
      f9a6403b