CordovaConfigParser.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = function (d, b) {
  4. extendStatics = Object.setPrototypeOf ||
  5. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  6. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  7. return extendStatics(d, b);
  8. };
  9. return function (d, b) {
  10. extendStatics(d, b);
  11. function __() { this.constructor = d; }
  12. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  13. };
  14. })();
  15. var __importDefault = (this && this.__importDefault) || function (mod) {
  16. return (mod && mod.__esModule) ? mod : { "default": mod };
  17. };
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. require("source-map-support/register");
  20. var cordova_common_1 = require("cordova-common");
  21. var elementtree_1 = __importDefault(require("elementtree"));
  22. var CordovaConfigParser = (function (_super) {
  23. __extends(CordovaConfigParser, _super);
  24. function CordovaConfigParser(path) {
  25. var _this = _super.call(this, path) || this;
  26. _this.path = path;
  27. return _this;
  28. }
  29. CordovaConfigParser.prototype.findOrCreate = function (name) {
  30. var ret = this.doc.find(name);
  31. if (!ret) {
  32. ret = elementtree_1.default.Element(name);
  33. this.doc.getroot().append(ret);
  34. }
  35. return ret;
  36. };
  37. CordovaConfigParser.prototype.content = function () {
  38. var el = this.doc.find('content');
  39. return el.attrib.src;
  40. };
  41. CordovaConfigParser.prototype.setContent = function (src) {
  42. var el = this.doc.find('content');
  43. el.attrib.src = src;
  44. };
  45. CordovaConfigParser.prototype.setElement = function (name, attributes) {
  46. var el = this.findOrCreate(name);
  47. el.attrib = attributes;
  48. };
  49. return CordovaConfigParser;
  50. }(cordova_common_1.ConfigParser));
  51. exports.default = CordovaConfigParser;
  52. //# sourceMappingURL=CordovaConfigParser.js.map