import jet.websites.monju



def yield_data(psp_directory, **kwargs):
	text =  '<p>Hopefully the various code examples provided here help you out.\n'
	text += 'They are intended to provide a functioning basis on various\n'
	text += 'programming topics, to help you get started with whatever task you\n'
	text += 'need to perform. </p>\n'
	text += '\n'
	text += '<p>The code provided here may be altered and reused, but if you distribute\n'
	text += 'or sell the code itself (not compiled versions of it), you must keep the\n'
	text += 'copyright notice intact.  If you are "internalizing" this code within\n'
	text += 'your workplace, it should be sufficient to include something at the top\n'
	text += 'that says that the text version of the code is not to be published or sold\n'
	text += 'due to an external copyright.  Otherwise, please keep the copyright notice\n'
	text += 'included with the code files found within.</p>\n'
	text += '\n'
	text += '<p>We hope you find our code is helpful to you.</p>\n\n'

	for data in jet.websites.monju.yield_standard_page(
			text,
			jet.websites.monju.PAGE_NAME__EXAMPLE_CODE,
			jet.websites.monju.yield_standard_page,
			meta_keywords  = ['free example code']):
		yield data

