Skip to content
  1. Sep 16, 2015
  2. Jul 24, 2013
  3. Jul 22, 2013
  4. Oct 18, 2012
  5. Oct 16, 2012
  6. Aug 10, 2012
  7. Jul 23, 2012
  8. Jul 13, 2012
  9. Jun 22, 2012
  10. Jun 15, 2012
  11. Jun 06, 2012
  12. May 26, 2012
  13. May 23, 2012
  14. May 22, 2012
  15. May 11, 2012
  16. May 10, 2012
  17. May 09, 2012
  18. Apr 27, 2012
  19. Mar 30, 2012
  20. Oct 18, 2011
  21. Oct 04, 2011
    • DeFr's avatar
      Scald Core: Deals with not yet configured transcoder when unregistering · 68a59fd3
      DeFr authored
      If a new type is registered, but the user doesn't save the context
      form to associate it with a transcoder in all the contexts, then
      the type might not have a transcoder set.
      
      This was problematic in scald_unregister_atom, which tries to notifiy
      all the configured transcoders of the atom unregistration. The code
      now checks if a transcoder has been specified, and just skips the
      context is no transcoder were set.
      68a59fd3
    • DeFr's avatar
      Scald Core: Abort early in scald_unregister_atom for invalid argument · fc5ed92c
      DeFr authored
      Previously, no check were done to ensure that a valid sid was given to
      the function, which triggered bad interaction if the atom had already
      been unregistered.
      fc5ed92c
  22. Oct 03, 2011
  23. Sep 27, 2011
    • DeFr's avatar
      Scald: Tweak the schema to match what MySQL really made of it · 988a8c8e
      DeFr authored
      The field base_description of a part of the primary key, which
      made it not NULL-able in MySQL. The schema definition was thus
      automatically changed by the engine from
        'not null' => FALSE,
      to
        'not null' => TRUE,
        'default'  => '',
      
      That's a suitable default too, all known providers already pass
      a real value as the 'base_description', so let's use something
      that's actually doable in MySQL.
      988a8c8e