Skip to content
Snippets Groups Projects
  1. Jan 14, 2010
  2. Jan 13, 2010
  3. Jan 12, 2010
  4. Jan 10, 2010
  5. Jan 06, 2010
  6. Apr 10, 2009
    • Patrick Mezard's avatar
      serve: add and use portable spawnvp replacement · 2f7a38f3
      Patrick Mezard authored
      There is no standard python command to really detach a process under Windows.
      Instead we use the low level API wrapped by subprocess module with all
      necessary options to avoid any kind of context inheritance. Unfortunately, this
      version still opens a new window for the child process.
      
      The following have been tried:
      - os.spawnv(os.P_NOWAIT): works but the child process is killed when parent
        console terminates.
      - os.spawnv(os.P_DETACH): works on python25, hang on python26 when writing to
        the hgweb output socket.
      - subprocess.CreateProcess() hack without shell mode: similar to
        os.spawnv(os.P_DETACH).
      
      Fix 1/3 for issue421
      2f7a38f3
  7. Jan 12, 2010
    • Greg Ward's avatar
      shrink-revlog: help/doc tweaks · 49a8625b
      Greg Ward authored
      - make it look right in 'hg help extensions'
      - clarify --revlog option
      - add a main program to tell users this is no longer a standalone script
      49a8625b
  8. Jan 07, 2010
  9. Jan 11, 2010
  10. Jan 09, 2010
  11. Jan 08, 2010
  12. Jan 07, 2010
  13. Jan 05, 2010
  14. Jan 04, 2010
  15. Jan 05, 2010
  16. Jan 04, 2010
Loading