1. /**
  2. * lib.js - xhrdavclient library.
  3. *
  4. * @license Copyright 2011 The xhrdavclient library authors.
  5. * All rights reserved.
  6. */
  7.  
  8. goog.provide('xhrdav.lib');
  9.  
  10. goog.require('goog.array');
  11. goog.require('goog.date');
  12. goog.require('goog.dom');
  13. goog.require('goog.functions');
  14. goog.require('goog.json');
  15. goog.require('goog.object');
  16. goog.require('goog.string.path');
  17. goog.require('xhrdav.HttpStatus');
  18. goog.require('xhrdav.utils');
  19.  
  20.  
  21. /*
  22. * Refs: goog.DEBUG=true|false
  23. */
  24.  
  25. /** @type {string} */
  26. xhrdav.lib.LIBNAME = 'xhrdavclient';
  27.  
  28.