Monday, November 08, 2010 at 12:04 AM.

system.verbs.builtins.mainResponder.localization.shortDateString

on shortDateString (d, pta=nil) {
	<<Gets the localized version of a date string for a given date value.
		<<d is a date or a string that can be coerced to a date
	<<4/13/00; 2:39:54 PM by JES
	<<Changes:
		<<05/17/00 6:38:19 PM by JS
			<<optimized -- no longer call mainResponder.localization.getDateTimeReplacementTable, rather build the table here
	
	if pta == nil {
		pta = html.getPageTableAddress ()};
	
	local (adrLanguageTable = mainResponder.localization.getLanguageTableAddress (pta));
	local (replacementTable); new (tableType, @replacementTable); // 05/01/00 JES: use replacement table instead of a list
	local (yr, mo, day, hr, min, sec);
	date.get (d, @day, @mo, @yr, @hr, @min, @sec);
	replacementTable.dayOfWeek = adrLanguageTable^.strings.date.dayOfWeekNames.[date.dayOfWeek (d)];
	replacementTable.day = day;
	replacementTable.month = mo;
	replacementTable.yy = string.mid (yr, 3, 2);
	
	return (mainResponder.getString ("date.shortDate", @replacementTable, pta: pta))}



This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.