1. 31 Dec, 2006 4 commits
  2. 30 Dec, 2006 5 commits
  3. 29 Dec, 2006 1 commit
  4. 28 Dec, 2006 2 commits
  5. 27 Dec, 2006 5 commits
  6. 26 Dec, 2006 2 commits
  7. 25 Dec, 2006 2 commits
  8. 24 Dec, 2006 3 commits
  9. 23 Dec, 2006 9 commits
  10. 22 Dec, 2006 3 commits
    • Clément Stenac's avatar
    • Clément Stenac's avatar
      Add facilities to report and enrich error messages. · 65d21833
      Clément Stenac authored
      The idea is that a given error should be reported only once to the user.
      At the moment, for example, we can get:
      - "no suitable access module" (printed by module_Need)
       - "unable to create access" (printed by input/access)
       - "unable to open stream" (printed by input/input)
       - ...
      
      The facilities provided here are:
      * msg_StackSet( code, message ) : "throw" a new error
      * msg_StackAdd( message ) : Append a message allowing to trace the message
      * msg_StackMsg() : Retrieve the message
      
      So, in the previous example, module_Need would msg_StackSet( code, "no
      suitable access module"), then input/input would add "unable to create
      access" and finally, input/input can print the "unable to open stream:
      unable to create access: no suitable module" message.
      
      The three functions are context-free, you don't need a vlc_object, so
      that we can add verbose error reporting everywhere.
      
      65d21833
    • Olivier Aubert's avatar
      AUTHORS: e-mail address fix · 7e5c6ea5
      Olivier Aubert authored
      7e5c6ea5
  11. 21 Dec, 2006 4 commits