func (i *Item) init() { i.Title.Content = xmlutils.NewElement("title", "", xmlutils.Nop) i.Link.Content = xmlutils.NewElement("link", "", xmlutils.Nop) i.Author.Content = xmlutils.NewElement("author", "", xmlutils.Nop) i.Comments.Content = xmlutils.NewElement("comments", "", xmlutils.Nop) i.Title.Parent = i i.Link.Parent = i i.Description.Parent = i i.Author.Parent = i i.Comments.Parent = i i.Enclosure.Parent = i i.Guid.Parent = i i.PubDate.Parent = i i.Source.Parent = i i.Occurences = xmlutils.NewOccurenceCollection( xmlutils.NewOccurence("title", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("link", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("description", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("author", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("comments", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("enclosure", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("guid", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("pubdate", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("source", xmlutils.UniqueValidator(AttributeDuplicated)), ) }
func (c *CommonAttributes) InitCommonAttributes() { c.Base = xmlutils.NewElement("base", "", IsValidIRI) c.Base.SetOccurence(xmlutils.NewOccurence("base", xmlutils.UniqueValidator(AttributeDuplicated))) c.Lang = xmlutils.NewElement("lang", "", xmlutils.Nop) c.Lang.SetOccurence(xmlutils.NewOccurence("lang", xmlutils.UniqueValidator(AttributeDuplicated))) }
func NewOutOfLineContent() *OutOfLineContent { o := OutOfLineContent{depth: xmlutils.NewDepthWatcher()} o.Type = xmlutils.NewElement("type", "", outOfLineTypeIsValid) o.Type.SetOccurence(xmlutils.NewOccurence("type", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) o.Src = xmlutils.NewElement("src", "", IsValidIRI) o.Src.SetOccurence(xmlutils.NewOccurence("src", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) o.depth.SetMaxDepth(1) return &o }
func NewEnclosure() *Enclosure { e := Enclosure{depth: xmlutils.NewDepthWatcher()} e.Url = xmlutils.NewElement("url", "", xmlutils.Nop) e.Url.SetOccurence(xmlutils.NewOccurence("url", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) e.Length = xmlutils.NewElement("length", "", xmlutils.Nop) e.Length.SetOccurence(xmlutils.NewOccurence("length", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) e.Type = xmlutils.NewElement("type", "", xmlutils.Nop) e.Type.SetOccurence(xmlutils.NewOccurence("type", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) return &e }
func (p *Person) init() { p.Name.Content = xmlutils.NewElement("name", "", xmlutils.Nop) p.Name.Content.SetOccurence(xmlutils.NewOccurence("name", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) p.Uri.Content = xmlutils.NewElement("uri", "", IsValidIRI) p.Uri.Content.SetOccurence(xmlutils.NewOccurence("uri", xmlutils.UniqueValidator(AttributeDuplicated))) p.Email.Content = xmlutils.NewElement("email", "", xmlutils.Nop) p.Email.Content.SetOccurence(xmlutils.NewOccurence("email", xmlutils.UniqueValidator(AttributeDuplicated))) p.InitCommonAttributes() }
func NewGenerator() *Generator { g := Generator{depth: xmlutils.NewDepthWatcher()} g.Uri = xmlutils.NewElement("uri", "", IsValidIRI) g.Uri.SetOccurence(xmlutils.NewOccurence("uri", xmlutils.UniqueValidator(AttributeDuplicated))) g.Version = xmlutils.NewElement("version", "", xmlutils.Nop) g.Version.SetOccurence(xmlutils.NewOccurence("version", xmlutils.UniqueValidator(AttributeDuplicated))) g.InitCommonAttributes() g.depth.SetMaxDepth(1) return &g }
func NewCategory() *Category { c := Category{depth: xmlutils.NewDepthWatcher()} c.Term = xmlutils.NewElement("term", "", xmlutils.Nop) c.Term.SetOccurence(xmlutils.NewOccurence("term", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) c.Scheme = xmlutils.NewElement("scheme", "", IsValidIRI) c.Scheme.SetOccurence(xmlutils.NewOccurence("scheme", xmlutils.UniqueValidator(AttributeDuplicated))) c.Label = xmlutils.NewElement("label", "", xmlutils.Nop) c.Label.SetOccurence(xmlutils.NewOccurence("label", xmlutils.UniqueValidator(AttributeDuplicated))) c.InitCommonAttributes() return &c }
func NewCreatorElement() extension.Element { c := rss.NewBasicElement() c.Content = xmlutils.NewElement("creator", "", xmlutils.Nop) return c }
func newTotalElement() extension.Element { t := atom.NewBasicElement(nil) t.Content = xmlutils.NewElement("total", "", atom.IsValidLength) return t }
func NewSource() *Source { s := Source{depth: xmlutils.NewDepthWatcher()} s.Url = xmlutils.NewElement("url", "", xmlutils.Nop) s.Url.SetOccurence(xmlutils.NewOccurence("url", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) return &s }
func NewCategory() *Category { c := Category{depth: xmlutils.NewDepthWatcher()} c.Domain = xmlutils.NewElement("domain", "", xmlutils.Nop) c.Domain.SetOccurence(xmlutils.NewOccurence("domain", xmlutils.UniqueValidator(AttributeDuplicated))) return &c }
func newInReplyTo() *InReplyTo { i := InReplyTo{depth: xmlutils.NewDepthWatcher()} i.Ref = xmlutils.NewElement("ref", "", atom.IsAbsoluteIRI) i.Ref.SetOccurence(xmlutils.NewOccurence("ref", xmlutils.ExistsAndUniqueValidator(atom.MissingAttribute, atom.AttributeDuplicated))) i.Href = xmlutils.NewElement("href", "", atom.IsValidIRI) i.Href.SetOccurence(xmlutils.NewOccurence("href", xmlutils.UniqueValidator(atom.AttributeDuplicated))) i.Type = xmlutils.NewElement("type", "", xmlutils.Nop) i.Type.SetOccurence(xmlutils.NewOccurence("type", xmlutils.UniqueValidator(atom.AttributeDuplicated))) i.Source = xmlutils.NewElement("source", "", atom.IsValidIRI) i.Source.SetOccurence(xmlutils.NewOccurence("source", xmlutils.UniqueValidator(atom.AttributeDuplicated))) return &i }
func NewGuid() *Guid { g := Guid{depth: xmlutils.NewDepthWatcher()} g.IsPermalink = xmlutils.NewElement("isPermalink", "true", xmlutils.Nop) g.IsPermalink.SetOccurence(xmlutils.NewOccurence("isPermalink", xmlutils.UniqueValidator(AttributeDuplicated))) return &g }
func NewId() *Id { i := Id{depth: xmlutils.NewDepthWatcher()} i.Content = xmlutils.NewElement("iri", "", IsAbsoluteIRI) i.InitCommonAttributes() i.depth.SetMaxDepth(1) return &i }
func NewLogo() *Logo { l := Logo{depth: xmlutils.NewDepthWatcher()} l.Iri = xmlutils.NewElement("iri", "", IsValidIRI) l.InitCommonAttributes() l.depth.SetMaxDepth(1) return &l }
func NewInlineOtherContent() *InlineOtherContent { i := InlineOtherContent{hasChild: false} i.Type = xmlutils.NewElement("type", "", IsValidMIME) i.Type.SetOccurence(xmlutils.NewOccurence("type", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) i.Content = &bytes.Buffer{} i.Encoder = xml.NewEncoder(i.Content) return &i }
func NewIcon() *Icon { i := Icon{depth: xmlutils.NewDepthWatcher()} i.Iri = xmlutils.NewElement("iri", "", IsValidIRI) i.InitCommonAttributes() i.depth.SetMaxDepth(1) return &i }
func NewContent() *Content { c := Content{hasStarted: false} c.Type = xmlutils.NewElement("type", "text", xmlutils.Nop) c.Src = xmlutils.NewElement("src", "", xmlutils.Nop) c.XHTML = NewInlineXHTMLContent() c.PlainText = NewInlineTextContent() c.InlineContent = NewInlineOtherContent() c.OutOfLineContent = NewOutOfLineContent() c.XHTML.Parent = &c c.PlainText.Parent = &c c.InlineContent.Parent = &c c.OutOfLineContent.Parent = &c c.InitCommonAttributes() return &c }
func NewCloud() *Cloud { c := Cloud{depth: xmlutils.NewDepthWatcher()} c.Domain = xmlutils.NewElement("domain", "", xmlutils.Nop) c.Domain.SetOccurence(xmlutils.NewOccurence("domain", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) c.Port = xmlutils.NewElement("port", "", xmlutils.Nop) c.Port.SetOccurence(xmlutils.NewOccurence("port", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) c.Path = xmlutils.NewElement("path", "", xmlutils.Nop) c.Path.SetOccurence(xmlutils.NewOccurence("path", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) c.RegisterProcedure = xmlutils.NewElement("registerProcedure", "", xmlutils.Nop) c.RegisterProcedure.SetOccurence(xmlutils.NewOccurence("registerProcedure", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) c.Protocol = xmlutils.NewElement("protocol", "", xmlutils.Nop) c.Protocol.SetOccurence(xmlutils.NewOccurence("protocol", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) return &c }
func NewLink() *Link { l := Link{depth: xmlutils.NewDepthWatcher()} l.Href = xmlutils.NewElement("href", "", IsValidIRI) l.Href.SetOccurence(xmlutils.NewOccurence("href", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) l.Rel = xmlutils.NewElement("rel", "alternate", xmlutils.Nop) l.Rel.SetOccurence(xmlutils.NewOccurence("rel", xmlutils.UniqueValidator(AttributeDuplicated))) l.Type = xmlutils.NewElement("type", "", IsValidMIME) l.Type.SetOccurence(xmlutils.NewOccurence("type", xmlutils.UniqueValidator(AttributeDuplicated))) l.HrefLang = xmlutils.NewElement("hreflang", "", xmlutils.Nop) l.HrefLang.SetOccurence(xmlutils.NewOccurence("hreflang", xmlutils.UniqueValidator(AttributeDuplicated))) l.Title = xmlutils.NewElement("title", "", xmlutils.Nop) l.Title.SetOccurence(xmlutils.NewOccurence("title", xmlutils.UniqueValidator(AttributeDuplicated))) l.Length = xmlutils.NewElement("length", "", IsValidLength) l.Length.SetOccurence(xmlutils.NewOccurence("length", xmlutils.UniqueValidator(AttributeDuplicated))) l.InitCommonAttributes() return &l }
func (i *Image) init() { i.Url.Content = xmlutils.NewElement("url", "", xmlutils.Nop) i.Url.Content.SetOccurence(xmlutils.NewOccurence("url", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) i.Title.Content = xmlutils.NewElement("title", "", xmlutils.Nop) i.Title.Content.SetOccurence(xmlutils.NewOccurence("title", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) i.Link.Content = xmlutils.NewElement("link", "", xmlutils.Nop) i.Link.Content.SetOccurence(xmlutils.NewOccurence("link", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated))) i.Width.Content = xmlutils.NewElement("width", "", xmlutils.Nop) i.Width.Content.SetOccurence(xmlutils.NewOccurence("width", xmlutils.UniqueValidator(AttributeDuplicated))) i.Height.Content = xmlutils.NewElement("height", "", xmlutils.Nop) i.Height.Content.SetOccurence(xmlutils.NewOccurence("height", xmlutils.UniqueValidator(AttributeDuplicated))) i.Description.Content = xmlutils.NewElement("description", "", xmlutils.Nop) i.Description.Content.SetOccurence(xmlutils.NewOccurence("description", xmlutils.UniqueValidator(AttributeDuplicated))) i.Url.Parent = i i.Title.Parent = i i.Link.Parent = i i.Width.Parent = i i.Height.Parent = i i.Description.Parent = i }
func NewBasicElement() *BasicElement { d := xmlutils.NewDepthWatcher() d.SetMaxDepth(1) return &BasicElement{depth: d, Content: xmlutils.NewElement("", "", xmlutils.Nop)} }
func (c *Channel) init() { c.Title.Content = xmlutils.NewElement("title", "", xmlutils.Nop) c.Link.Content = xmlutils.NewElement("link", "", IsValidIRI) c.Language.Content = xmlutils.NewElement("language", "", xmlutils.Nop) c.Copyright.Content = xmlutils.NewElement("copyright", "", xmlutils.Nop) c.ManagingEditor.Content = xmlutils.NewElement("managingeditor", "", xmlutils.Nop) c.Webmaster.Content = xmlutils.NewElement("webmaster", "", xmlutils.Nop) c.Generator.Content = xmlutils.NewElement("generator", "", xmlutils.Nop) c.Docs.Content = xmlutils.NewElement("docs", "", xmlutils.Nop) c.Ttl.Content = xmlutils.NewElement("ttl", "", xmlutils.Nop) c.Rating.Content = xmlutils.NewElement("rating", "", xmlutils.Nop) c.SkipHours.Content = xmlutils.NewElement("skiphours", "", xmlutils.Nop) c.SkipDays.Content = xmlutils.NewElement("skipdays", "", xmlutils.Nop) c.Title.Parent = c c.Link.Parent = c c.Description.Parent = c c.Language.Parent = c c.Copyright.Parent = c c.ManagingEditor.Parent = c c.Webmaster.Parent = c c.PubDate.Parent = c c.LastBuildDate.Parent = c c.Generator.Parent = c c.Docs.Parent = c c.Cloud.Parent = c c.Ttl.Parent = c c.Image.Parent = c c.Rating.Parent = c c.SkipHours.Parent = c c.SkipDays.Parent = c c.Occurences = xmlutils.NewOccurenceCollection( xmlutils.NewOccurence("title", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated)), xmlutils.NewOccurence("link", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated)), xmlutils.NewOccurence("description", xmlutils.ExistsAndUniqueValidator(MissingAttribute, AttributeDuplicated)), xmlutils.NewOccurence("language", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("copyright", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("managingeditor", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("webmaster", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("pubdate", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("lastbuilddate", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("generator", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("docs", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("cloud", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("ttl", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("image", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("rating", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("skiphours", xmlutils.UniqueValidator(AttributeDuplicated)), xmlutils.NewOccurence("skipdays", xmlutils.UniqueValidator(AttributeDuplicated)), ) }