import jet
import jet.websites.jeffandmere as jeffandmere



def yield_data(psp_directory, **kwargs):
	relative_root = jeffandmere.get_relative_root(**kwargs)
	text =  '<p>The wedding itself will take place at\n'
	text += jeffandmere.get_link(
			relative_root, 'http://www.manchebo.com/', 'Manchebo Beach Resort') + '.\n'
	text += 'We do have a group rate there (mention the Foran/Chace wedding), but because of\n'
	text += 'the timing, it is still rather pricey (~300 per night for up to 3 people),\n'
	text += 'and there is a (rather lengthy) minimum stay.</p>\n'

	text += '<p>We are personally staying at the \n'
	text += jeffandmere.get_link(relative_root, 'http://www.arubapearl.com/', 'Aruba Pearl') + '\n'
	text += 'until the eve of the wedding, as they have condo\'s for up to 6 people at about\n'
	text += '$400 per night.\n'
	text += 'Also, it should be noted that the\n'
	text += jeffandmere.get_link(relative_root, 'http://www.arubapearl.com/', 'Aruba Pearl') + '\n'
	text += 'is not on the beach;\n'
	text += 'it is a 5 minute walk to Eagle Beach.</p>\n'

	text += '<p>If you want a slightly nicer (and pricier) hotel than Manchebo,\n'
	text += 'or if you don\'t book the other places in time,\n'
	text += jeffandmere.get_link(relative_root, 'http://www.bucuti.com/', 'Bucuti') + '\n'
	text += 'seems to be a very nice place and is immediately next to Manchebo.\n'
	text += 'They have a pirate ship on their beach - "Arrrrr!"</p>\n'

	text += '<p>For those of you who prefer all-inclusive hotels, we recommend\n'
	text += jeffandmere.get_link(relative_root, 'http://www.diviaruba.com/', 'The Divi') + ',\n'
	text += 'although we have never stayed there.  Fellow travelers (people we met\n'
	text += 'at the airport bar) have recommended it and their beach certainly\n'
	text += 'seems nice. Guests at their resort can eat at any of the restaurants\n'
	text += 'there or at the neighboring\n'
	text += jeffandmere.get_link(relative_root, 'http://www.tamarijnaruba.com/', 'Tamarijn') + '.</p>\n'

	text += '<p>Although we are staying in the low rise section of Aruba, there are two\n'
	text += 'other common tourist accommodation areas, both of which are just a short cab ride\n'
	text += 'to the low rise area.  The high rise hotels include the\n'
	text += jeffandmere.get_link(relative_root, 'http://www.marriott.com/Aruba', 'Mariott') + ',\n'
	text += jeffandmere.get_link(relative_root, 'http://www.radisson.com/palm-beach-hotel-aw/aruaruba', 'Radisson')+ ',\n'
	text += jeffandmere.get_link(relative_root, 'http://riu.com/Aruba', 'Riu Palace')+ ',\n'
	text += jeffandmere.get_link(relative_root, 'http://www.westinaruba.com', 'Westin')+ ',\n'
	text += jeffandmere.get_link(relative_root, 'http://www.aruba.hyatt.com', 'Hyatt')+ ', and \n'
	text += jeffandmere.get_link(relative_root, 'http://www.ichotelsgroup.com/h/d/ss/1/en/hotel/auaan', 'Holiday Inn')+ ',\n'
	text += 'among others.  In downtown Oranjestad, the \n'
	link = 'http://www.marriott.com/hotels/travel/auabr-renaissance-aruba-resort-and-casino/'
	text += jeffandmere.get_link(relative_root, link, 'Renaissance Mariott')+ '\n'
	text += 'has a nearby private island and beach to which they will boat you.</p>\n'

	text += '<p>A few web sites organize private home and condo rentals in Aruba.  Two of\n'
	text += 'the more common ones are\n'
	text += jeffandmere.get_link(relative_root, 'http://www.greatrentals.com/aruba/s/1226/fa/find.squery', 'Great Rentals')
	text += '\n and \n'
	text += jeffandmere.get_link(relative_root, 'http://www.homeaway.com/vacation-rentals/aruba/r1226', 'Home Away')
	text += '.\n'
	text += jeffandmere.get_link(relative_root, 'http://http://www.arubavillavacationhomes.com/', 'Aruba Villa Vacation Homes')
	text += '\nalso has rentals but I believe all of their listings only rent from December 28th '
	text += 'to January 4th (let us know if you find this not to be true).\n'
	text += 'You should also just search the web for personally advertised homes as well,\n'
	text += 'if you are interested in going this route.</p>\n'

	for data in jeffandmere.yield_page('Guest Timeline', jeffandmere.yield_standard_page, text=text, **kwargs):
		yield data

