Esempio n. 1
0
func ExampleParseOptions() {
	// the input feed is not compliant to spec
	f, err := os.Open("testdata/atom.xml")
	if err != nil {
		return
	}

	// the input feed should be 100% compliant to spec...
	flags := xmlutils.NewErrorChecker(xmlutils.EnableAllError)

	//... but it is OK if Atom entry does not have <updated> field
	flags.DisableErrorChecking("entry", atom.MissingDate)

	options := feed.ParseOptions{ExtensionManager: extension.Manager{},
		ErrorFlags: &flags}

	myfeed, err := feed.Parse(f, options)

	if err != nil {
		fmt.Printf("Cannot parse feed:\n%s\n", err)
		return
	}

	fmt.Printf("FEED '%s'\n", myfeed.Title)

	// Output:
	//Cannot parse feed:
	//in 'feed':
	//[MissingId]
	//	feed's id should exist
}
Esempio n. 2
0
func ExampleParse() {
	f, err := os.Open("testdata/atom.xml")

	if err != nil {
		return
	}

	myfeed, err := feed.Parse(f, feed.DefaultOptions)

	if err != nil {
		fmt.Printf("Cannot parse feed: %s\n", err)
		return
	}

	fmt.Printf("FEED '%s'\n", myfeed.Title)
	for i, entry := range myfeed.Entries {
		fmt.Printf("\t#%v '%s' (%s)\n\t\t%s\n\n", i, entry.Title, entry.Link, entry.Summary)
	}

	// Output:
	//FEED 'Me, Myself and I'
	//	#0 'Breakfast' (http://example.org/2005/04/02/breakfast)
	//		eggs and bacon, yup !
	//
	//	#1 'Dinner' (http://example.org/2005/04/02/dinner)
	//		got soap delivered !
}