Skip to content
Snippets Groups Projects
  1. Aug 05, 2020
  2. Aug 04, 2020
  3. Aug 03, 2020
  4. Aug 02, 2020
    • rswindell's avatar
      Add support for %^ command-line specifer which expands to the system... · 8a44af72
      rswindell authored
      Add support for %^ command-line specifer which expands to the system architecture (e.g. "i686" for Win32 builds, "x64" for Linux-x86_64 builds).
      Currently, there underlying XPDEV macro definition does not differentiate
      between arm32 and arm64, but it should. Next...
      8a44af72
    • rswindell's avatar
      Fix bug reported by WitNik (John): · 049499ad
      rswindell authored
      The msgbase 'status' header created with smb_open_sub() had all its fields
      0-filled.
      This would cause all kinds of msgbase settings (e.g. max msgs, max age, etc.) to not propagate from their SCFG settings (for mail or sub-boards)
      to the newly-created msg base(s).
      But most importantly, it would cause the mail base to be created without the
      "EMail" attribute flag, causing the msgbase to be treated as a sub-board
      (public message area) and users could not then read their received mail.
      
      The root-cause was that smb_open() will zero-out the current smb.status
      value before trying to read it from the msgbase header, thus losing any
      values that were populated in there before calling smb_open(). Rather than
      change the behavior of the ancient smb_open() function, just restore the
      correct default smb.status values after calling smb_open() and before
      calling smb_create().
      049499ad
    • rswindell's avatar
  5. Aug 01, 2020
  6. Jul 29, 2020
  7. Jul 27, 2020
  8. Jul 23, 2020
  9. Jul 22, 2020
    • echicken's avatar
      Shitty hack on previous commit. · 93f90e9e
      echicken authored
      Amended HTTPRequest.follow_redirects to be a number instead of boolean.
      
      var h = new HTTPRequest();
      h.follow_redirects = 1; // We'll follow this many redirects
      93f90e9e
    • echicken's avatar
      For GET requests, follow 301, 302, 307, and 308 redirects to the first · f033c3e8
      echicken authored
      Location given in the response header, if present. Not enabled by
      default, so turn it on like so:
      
      var h = new HTTPRequest();
      h.follow_redirects = true;
      
      Should probably add "too many redirects" protection, since this could
      turn into an eternal game of HTTP ping-pong.
      f033c3e8
  10. Jul 20, 2020
  11. Jul 19, 2020
  12. Jul 18, 2020
Loading