entryParser: function(config) {
      if(!config.match(/\s*=\s*/)) {
        throw new Error('Bad format, should be key=value');
      }
      var m = config.match(/^(.*?)\s*=\s*(.*$)/);