<?xml version="1.0"?>
<opml version="2.0">
	<head>
		<title>newVerbDocs</title>
		<dateCreated>Mon, 22 Mar 2021 16:14:46 GMT</dateCreated>
		<dateModified>Mon, 22 Mar 2021 16:25:06 GMT</dateModified>
		<expansionState>10,11,15,16</expansionState>
		<lastCursor>15</lastCursor>
		<ownerTwitterScreenName>davewiner</ownerTwitterScreenName>
		<ownerName>dave@scripting.com</ownerName>
		<ownerId>http://twitter.com/davewiner</ownerId>
		<urlUpdateSocket>ws://test.littleoutliner.com:1230/</urlUpdateSocket>
		</head>
	<body>
		<outline text="twitter verbs" created="Mon, 22 Mar 2021 16:19:46 GMT">
			<outline text="twitter.getHomeTimeline" created="Sun, 21 Mar 2021 22:25:02 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 13:13:25 GMT">
					<outline text="twitter.getHomeTimeline ()"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="None."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="An array object with the most recent tweets in the user's home timeline. "/>
					<outline text="The home timeline is the list of tweets that appear on the Home page in the Twitter website."/>
					</outline>
				<outline text="Notes" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="In the example, we get a value out of the timeline, displaying the whole array of tweets would take a lot of space. "/>
					<outline text="It will return at most 200 tweets."/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:25:03 GMT">
					<outline text="twitter.getHomeTimeline ().length " created="Mon, 22 Mar 2021 16:19:02 GMT">
						<outline text="196"/>
						</outline>
					<outline text="twitter.getHomeTimeline () [0].id" created="Mon, 22 Mar 2021 16:19:02 GMT">
						<outline text="1373683899830841300"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.getMentionsTimeline" created="Sun, 21 Mar 2021 22:29:40 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="twitter.getMentionsTimeline ()"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="None."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="An array with the most recent tweets that mention the logged-in user. "/>
					</outline>
				<outline text="Notes" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="It will return at most 200 tweets."/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:29:42 GMT">
					<outline text="twitter.getMentionsTimeline ().length " created="Sun, 21 Mar 2021 22:29:44 GMT">
						<outline text="107"/>
						</outline>
					<outline text="twitter.getMentionsTimeline () [0].full_text " created="Mon, 22 Mar 2021 16:19:02 GMT">
						<outline text="@davewiner Too much focus on wall street and war.  I was watching this talk just before reading your tweet, this guy gets it, a great speaker too.  https://t.co/Nb3LhdIFpM"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.getThread" created="Sun, 21 Mar 2021 22:29:47 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="twitter.getThread (id)"/>
					</outline>
				<outline text="Param" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="id is a string which is the Twitter-issued identifier for the top tweet in the thread."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="An object containing an object with info about the author, and an array with the tweets in the thread."/>
					</outline>
				<outline text="Errors" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="It's an error if the id is not a valid Twitter-issued identifier."/>
					</outline>
				<outline text="Examples" created="Sun, 21 Mar 2021 22:29:49 GMT">
					<outline text="twitter.getThread (&quot;1371210116473761792&quot;).tweets [0]" created="Sun, 21 Mar 2021 22:29:53 GMT">
						<outline text="{     &quot;text&quot;: &quot;What is ThreadViewer? \n\nIt's a way to view Twitter threads outside of Twitter.&quot;,     &quot;id&quot;: &quot;1371210116473761792&quot;,     &quot;when&quot;: &quot;Sun, 14 Mar 2021 21:22:22 GMT&quot;,     &quot;parent&quot;: null }" created="Sun, 21 Mar 2021 22:30:02 GMT"/>
						</outline>
					<outline text="twitter.getThread (&quot;1371210116473761792&quot;).author" created="Sun, 21 Mar 2021 22:30:10 GMT">
						<outline text="{     &quot;name&quot;: &quot;dave@scripting.com&quot;,     &quot;description&quot;: &quot;On the net since mid-70s. Started two Silicon Valley companies. Wrote for Wired. Fellow at Harvard, NYU. Founder of podcasting, blogging, RSS. Open web.&quot;,     &quot;screenname&quot;: &quot;davewiner&quot;,     &quot;when&quot;: &quot;Sun, 14 Mar 2021 21:22:22 GMT&quot;,     &quot;url&quot;: &quot;http://scripting.com/&quot;,     &quot;id&quot;: &quot;1371210116473761792&quot; }" created="Sun, 21 Mar 2021 22:30:19 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.getTweet" created="Sun, 21 Mar 2021 22:30:28 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="twitter.getTweet (id)"/>
					</outline>
				<outline text="Param" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="id is a string which is the Twitter-issued identifier for the tweet."/>
					</outline>
				<outline text="Action " created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="Gets all the information about the tweet in a JavaScript object. "/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="An object containing a lot of information about the tweet and its author."/>
					</outline>
				<outline text="Errors" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="It's an error if the id is not a valid Twitter-issued identifier."/>
					</outline>
				<outline text="Notes" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="This call does not appear to require authentication."/>
					</outline>
				<outline text="Examples" created="Sun, 21 Mar 2021 22:30:31 GMT">
					<outline text="twitter.getTweet (&quot;1369636870334906368&quot;).full_text" created="Mon, 22 Mar 2021 16:19:02 GMT">
						<outline text="Links don’t work in twitter. Most people don’t click them, too much of a wait, obnoxious ads and subscription pitches, paywalls, article limits. It’s a mess! Meanwhile bloggers with no ads, none of the junk, are caught up in the morass. This has been festering for too long."/>
						</outline>
					<outline text="twitter.getTweet (&quot;1369636870334906368&quot;).created_at" created="Mon, 22 Mar 2021 16:19:02 GMT">
						<outline text="Wed Mar 10 13:10:51 +0000 2021"/>
						</outline>
					<outline text="twitter.getTweet (&quot;1369636870334906368&quot;)" created="Sun, 21 Mar 2021 22:30:35 GMT">
						<outline text="{     &quot;created_at&quot;: &quot;Wed Mar 10 13:10:51 +0000 2021&quot;,     &quot;id&quot;: 1369636870334906400,     &quot;id_str&quot;: &quot;1369636870334906368&quot;,     &quot;full_text&quot;: &quot;Links don’t work in twitter. Most people don’t click them, too much of a wait, obnoxious ads and subscription pitches, paywalls, article limits. It’s a mess! Meanwhile bloggers with no ads, none of the junk, are caught up in the morass. This has been festering for too long.&quot;,     &quot;truncated&quot;: false,     &quot;display_text_range&quot;: [         0,         274     ],     &quot;entities&quot;: {         &quot;hashtags&quot;: [],         &quot;symbols&quot;: [],         &quot;user_mentions&quot;: [],         &quot;urls&quot;: []     },     &quot;source&quot;: &quot;&lt;a href=&quot;\&quot; https:=&quot;&quot; mobile.twitter.com\&quot;&quot;=&quot;&quot; rel=&quot;\&quot; nofollow\&quot;&quot;=&quot;&quot;&gt;Twitter Web App&lt;/a&gt;&quot;,     &quot;in_reply_to_status_id&quot;: null,     &quot;in_reply_to_status_id_str&quot;: null,     &quot;in_reply_to_user_id&quot;: null,     &quot;in_reply_to_user_id_str&quot;: null,     &quot;in_reply_to_screen_name&quot;: null,     &quot;user&quot;: {         &quot;id&quot;: 3839,         &quot;id_str&quot;: &quot;3839&quot;,         &quot;name&quot;: &quot;dave@scripting.com&quot;,         &quot;screen_name&quot;: &quot;davewiner&quot;,         &quot;location&quot;: &quot;Woodstock, NY&quot;,         &quot;description&quot;: &quot;On the net since mid-70s. Started two Silicon Valley companies. Wrote for Wired. Fellow at Harvard, NYU. Founder of podcasting, blogging, RSS. Open web.&quot;,         &quot;url&quot;: &quot;https://t.co/ztgzDGiyOj&quot;,         &quot;entities&quot;: {             &quot;url&quot;: {                 &quot;urls&quot;: [                     {                         &quot;url&quot;: &quot;https://t.co/ztgzDGiyOj&quot;,                         &quot;expanded_url&quot;: &quot;http://scripting.com/&quot;,                         &quot;display_url&quot;: &quot;scripting.com&quot;,                         &quot;indices&quot;: [                             0,                             23                         ]                     }                 ]             },             &quot;description&quot;: {                 &quot;urls&quot;: []             }         },         &quot;protected&quot;: false,         &quot;followers_count&quot;: 67261,         &quot;friends_count&quot;: 3842,         &quot;listed_count&quot;: 5292,         &quot;created_at&quot;: &quot;Sat Aug 05 23:04:08 +0000 2006&quot;,         &quot;favourites_count&quot;: 17362,         &quot;utc_offset&quot;: null,         &quot;time_zone&quot;: null,         &quot;geo_enabled&quot;: true,         &quot;verified&quot;: true,         &quot;statuses_count&quot;: 190364,         &quot;lang&quot;: null,         &quot;contributors_enabled&quot;: false,         &quot;is_translator&quot;: false,         &quot;is_translation_enabled&quot;: false,         &quot;profile_background_color&quot;: &quot;9AE4E8&quot;,         &quot;profile_background_image_url&quot;: &quot;http://abs.twimg.com/images/themes/theme1/bg.png&quot;,         &quot;profile_background_image_url_https&quot;: &quot;https://abs.twimg.com/images/themes/theme1/bg.png&quot;,         &quot;profile_background_tile&quot;: true,         &quot;profile_image_url&quot;: &quot;http://pbs.twimg.com/profile_images/1325163719400153089/eW6KCGsY_normal.png&quot;,         &quot;profile_image_url_https&quot;: &quot;https://pbs.twimg.com/profile_images/1325163719400153089/eW6KCGsY_normal.png&quot;,         &quot;profile_banner_url&quot;: &quot;https://pbs.twimg.com/profile_banners/3839/1616275541&quot;,         &quot;profile_link_color&quot;: &quot;7F7F90&quot;,         &quot;profile_sidebar_border_color&quot;: &quot;FFFFFF&quot;,         &quot;profile_sidebar_fill_color&quot;: &quot;E1E1DF&quot;,         &quot;profile_text_color&quot;: &quot;000000&quot;,         &quot;profile_use_background_image&quot;: true,         &quot;has_extended_profile&quot;: false,         &quot;default_profile&quot;: false,         &quot;default_profile_image&quot;: false,         &quot;following&quot;: false,         &quot;follow_request_sent&quot;: false,         &quot;notifications&quot;: false,         &quot;translator_type&quot;: &quot;none&quot;     },     &quot;geo&quot;: null,     &quot;coordinates&quot;: null,     &quot;place&quot;: null,     &quot;contributors&quot;: null,     &quot;is_quote_status&quot;: false,     &quot;retweet_count&quot;: 4,     &quot;favorite_count&quot;: 11,     &quot;favorited&quot;: false,     &quot;retweeted&quot;: true,     &quot;lang&quot;: &quot;en&quot; }" created="Sun, 21 Mar 2021 22:30:43 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.getUserProfile" created="Sun, 21 Mar 2021 22:21:51 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="twitter.getUserProfile (string)"/>
					</outline>
				<outline text="Param" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="string is the screenname of the user whose profile you want to get."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:02 GMT">
					<outline text="An object containing information about the user whose screenname is provided."/>
					</outline>
				<outline text="Errors" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="The string is not the screenname of an actual Twitter user."/>
					</outline>
				<outline text="Examples" created="Sun, 21 Mar 2021 22:30:51 GMT">
					<outline text="twitter.getUserProfile (&quot;bullmancuso&quot;).id" created="Sun, 21 Mar 2021 22:30:56 GMT">
						<outline text="15252142" created="Sun, 21 Mar 2021 22:30:57 GMT"/>
						</outline>
					<outline text="twitter.getUserProfile (&quot;bullmancuso&quot;).description" created="Sun, 21 Mar 2021 22:30:55 GMT">
						<outline text="This aggression will not stand" created="Sun, 21 Mar 2021 22:31:00 GMT"/>
						</outline>
					<outline text="twitter.getUserProfile (&quot;bullmancuso&quot;).location" created="Sun, 21 Mar 2021 22:31:02 GMT">
						<outline text="None a you business" created="Sun, 21 Mar 2021 22:31:03 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.getUserTimeline" created="Sun, 21 Mar 2021 22:31:08 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="twitter.getUserTimeline (string, boolean)"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="The string is a screenname for a Twitter user, such as &quot;jack&quot; or &quot;bullmancuso&quot;."/>
					<outline text="The boolean determines if you want to include replies in the timeline. It's optional, if not specified it defaults to false."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="An array with the most recent tweets from the indicated user. "/>
					</outline>
				<outline text="Notes" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="It will return at most 200 tweets."/>
					</outline>
				<outline text="Examples" created="Sun, 21 Mar 2021 22:31:10 GMT">
					<outline text="twitter.getUserTimeline (&quot;jack&quot;).length " created="Sun, 21 Mar 2021 22:31:14 GMT">
						<outline text="148" created="Sun, 21 Mar 2021 22:31:16 GMT"/>
						</outline>
					<outline text="twitter.getUserTimeline (&quot;davewiner&quot;, false) [18].full_text " created="Sun, 21 Mar 2021 22:31:19 GMT">
						<outline text="When you post a comment, why not check before hitting the button to see if you said enough for the other person to even guess what you’re saying or asking." created="Sun, 21 Mar 2021 22:31:23 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="twitter.newPost" created="Sun, 21 Mar 2021 22:25:33 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="twitter.newPost (string, id)"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="The string is the body of the tweet to be sent. It is limited to 280 characters. "/>
					<outline text="Optional: id is the id of the tweet that it's in reply to, if it is a reply. If it is not a reply leave it undefined or 0."/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="An object with all the info Twitter has about the new tweet. There's a lot of data there. ;-)"/>
					</outline>
				<outline text="Errors" created="Mon, 22 Mar 2021 16:19:03 GMT">
					<outline text="It's an error if the body is longer than 280 characters, or if the id is of a tweet that doesn't exist. "/>
					</outline>
				<outline text="Examples" created="Sun, 21 Mar 2021 22:25:38 GMT">
					<outline text="twitter.newPost (&quot;I'm having fun writing example code on a Saturday night!&quot;).id_str" created="Mon, 22 Mar 2021 16:19:03 GMT">
						<outline text="1373410165907668994"/>
						</outline>
					<outline text="twitter.newPost (&quot;A reply to the previous tweet?&quot;, &quot;1373410165907668994&quot;).id_str" created="Mon, 22 Mar 2021 16:19:03 GMT">
						<outline text="1373410446536028161"/>
						</outline>
					<outline text="twitter.newPost (string.randomSnarkySlogan ()).text" created="Sun, 21 Mar 2021 22:25:40 GMT">
						<outline text="That rug really tied the room together." created="Sun, 21 Mar 2021 22:26:12 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="dialog verbs" created="Mon, 22 Mar 2021 16:20:06 GMT">
			<outline text="dialog.alert" created="Mon, 22 Mar 2021 13:13:17 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 13:13:25 GMT">
					<outline text="dialog.alert (string)" created="Mon, 22 Mar 2021 13:14:56 GMT"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 13:15:11 GMT">
					<outline text="The string is displayed in a dialog with a single button, OK." created="Mon, 22 Mar 2021 14:00:12 GMT"/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 13:16:26 GMT">
					<outline text="The value undefined." created="Mon, 22 Mar 2021 13:16:27 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:25:03 GMT">
					<outline text="dialog.alert (&quot;It's sunny outside.&quot;)" created="Mon, 22 Mar 2021 13:48:28 GMT">
						<outline text="undefined" created="Mon, 22 Mar 2021 14:03:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="dialog.ask" created="Mon, 22 Mar 2021 13:13:17 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 13:13:25 GMT">
					<outline text="dialog.ask (prompt, default, placeholder)" created="Mon, 22 Mar 2021 13:14:56 GMT"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 13:15:11 GMT">
					<outline text="All parameters are strings." created="Mon, 22 Mar 2021 13:15:12 GMT"/>
					<outline text="prompt is displayed over the text box, it's the question the user is meant to answer." created="Mon, 22 Mar 2021 13:15:18 GMT"/>
					<outline text="default is the initial string in the text box." created="Mon, 22 Mar 2021 13:15:49 GMT"/>
					<outline text="placeholder is a string that appears in the text box when it's empty." created="Mon, 22 Mar 2021 13:16:09 GMT"/>
					</outline>
				<outline text="What it does" created="Mon, 22 Mar 2021 13:46:22 GMT">
					<outline text="A dialog with a text box and two buttons appears. The buttons are labeled Cancel and OK." created="Mon, 22 Mar 2021 13:46:27 GMT"/>
					<outline text="The user can enter text to replace the default text, and then press Cancel or OK." created="Mon, 22 Mar 2021 13:46:52 GMT"/>
					<outline text="If the user clicks Cancel, dialog.ask returns the value undefined. If the user clicks OK, it returns the string that's in the text box, as modified by the user. " created="Mon, 22 Mar 2021 13:47:23 GMT"/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 13:16:26 GMT">
					<outline text="The string the user entered if they pressed OK, or the value undefined if Cancel." created="Mon, 22 Mar 2021 13:16:27 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:25:03 GMT">
					<outline text="dialog.ask (&quot;Favorite color?&quot;, &quot;blue&quot;, &quot;A color like blue or red goes here.&quot;)" created="Mon, 22 Mar 2021 13:48:28 GMT">
						<outline text="orange" created="Mon, 22 Mar 2021 13:49:14 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="dialog.confirm" created="Mon, 22 Mar 2021 13:13:17 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 13:13:25 GMT">
					<outline text="dialog.confirm (string)" created="Mon, 22 Mar 2021 13:14:56 GMT"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 13:15:11 GMT">
					<outline text="The string is displayed in a dialog with two buttons, Cancel and OK." created="Mon, 22 Mar 2021 14:00:12 GMT"/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 13:16:26 GMT">
					<outline text="A boolean, true if the user clicked OK, false if Cancel." created="Mon, 22 Mar 2021 13:16:27 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:25:03 GMT">
					<outline text="dialog.confirm (&quot;Really erase all files on your computer?&quot;)" created="Mon, 22 Mar 2021 13:48:28 GMT">
						<outline text="true" created="Mon, 22 Mar 2021 14:53:22 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="dialog.about" created="Mon, 22 Mar 2021 13:13:17 GMT">
				<outline text="Syntax" created="Mon, 22 Mar 2021 13:13:25 GMT">
					<outline text="dialog.about (string)" created="Mon, 22 Mar 2021 13:14:56 GMT"/>
					</outline>
				<outline text="Params" created="Mon, 22 Mar 2021 13:15:11 GMT">
					<outline text="The string is the web address of an OPML file. " created="Mon, 22 Mar 2021 14:00:12 GMT"/>
					</outline>
				<outline text="Returns" created="Mon, 22 Mar 2021 13:16:26 GMT">
					<outline text="A boolean, true if the user clicked OK, false if Cancel." created="Mon, 22 Mar 2021 13:16:27 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 21 Mar 2021 22:25:03 GMT">
					<outline text="dialog.about (&quot;http://scripting.com/aboutpage.opml&quot;)" created="Mon, 22 Mar 2021 13:48:28 GMT">
						<outline text="true" created="Mon, 22 Mar 2021 14:53:22 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="date verbs" created="Mon, 22 Mar 2021 16:20:19 GMT">
			<outline text="date.dayGreaterThanOrEqual" created="Sun, 14 Mar 2021 16:12:49 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:12:51 GMT">
					<outline text="date.dayGreaterThanOrEqual (d1, d2)" created="Sun, 14 Mar 2021 16:12:54 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="Both parameters are JavaScript date objects. " created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="true if the first date is on the same day as the second, or if the first date is later than the second. " created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Notes" created="Sun, 14 Mar 2021 16:14:36 GMT">
					<outline text="This verb is useful in determining which version of software you're running, if you have the publication date of a new version. Also useful to see if a timer has expired. " created="Sun, 14 Mar 2021 16:14:38 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.dayGreaterThanOrEqual (clock.now (), &quot;November 22, 2018&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="true" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.netStandardString" created="Sun, 14 Mar 2021 16:12:49 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:12:51 GMT">
					<outline text="date.netStandardString (date)" created="Sun, 14 Mar 2021 16:12:54 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="date is a JavaScript date object." created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="A &lt;a href=&quot;https://tools.ietf.org/html/rfc822&quot;&gt;RFC 822&lt;/a&gt; version of the date. " created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Notes" created="Sun, 14 Mar 2021 16:22:23 GMT">
					<outline text="This is the format that's required for RSS feeds, OPML files and mail protocols. " created="Sun, 14 Mar 2021 16:22:25 GMT"/>
					<outline text="It's a human and machine readable way of expressing of dates. " created="Sun, 14 Mar 2021 16:27:12 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.netStandardString (clock.now ())" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="Sun, 14 Mar 2021 16:28:56 GMT" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					<outline text="date.netStandardString (&quot;12/5/97; 9:03:15 PM&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="Sat, 06 Dec 1997 04:03:15 GMT" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.sameDay" created="Sun, 14 Mar 2021 16:07:46 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:07:51 GMT">
					<outline text="date.sameDay (d1, d2)" created="Sun, 14 Mar 2021 16:07:53 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="Both parameters are JavaScript date objects. " created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="true if the dates are on the same day, false otherwise." created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Examples" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.sameDay (&quot;March 12, 2021&quot;, &quot;February 12, 2021&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="false" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					<outline text="date.sameDay (&quot;March 12, 2021&quot;, &quot;March 12, 2021&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="true" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.sameMonth" created="Sun, 14 Mar 2021 16:07:46 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:07:51 GMT">
					<outline text="date.sameMonth (d1, d2)" created="Sun, 14 Mar 2021 16:07:53 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="Both parameters are JavaScript date objects. " created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="true if the dates are in the same month, false otherwise." created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Examples" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.sameMonth (&quot;March 12, 2021&quot;, &quot;February 12, 2021&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="false" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					<outline text="date.sameMonth (&quot;March 12, 2021&quot;, &quot;March 30, 2021&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="true" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.secondsSince" created="Sun, 14 Mar 2021 16:12:49 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:12:51 GMT">
					<outline text="date.secondsSince (date)" created="Sun, 14 Mar 2021 16:12:54 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="date is a JavaScript date object." created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="The number of seconds since the date. " created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Notes" created="Sun, 14 Mar 2021 16:14:36 GMT">
					<outline text="Useful when you want to know how long something took. " created="Sun, 14 Mar 2021 16:14:38 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.secondsSince (&quot;March 14, 2020&quot;)" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="31580389.57" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.tomorrow" created="Sun, 14 Mar 2021 16:12:49 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:12:51 GMT">
					<outline text="date.tomorrow (date)" created="Sun, 14 Mar 2021 16:12:54 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="date is a JavaScript date object." created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="The result of adding 24 hours from the date." created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.tomorrow (clock.now ())" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="Mon Mar 15 2021 12:21:22 GMT-0400 (Eastern Daylight Time)" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="date.yesterday" created="Sun, 14 Mar 2021 16:12:49 GMT">
				<outline text="Syntax" created="Sun, 14 Mar 2021 16:12:51 GMT">
					<outline text="date.yesterday (date)" created="Sun, 14 Mar 2021 16:12:54 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 16:08:02 GMT">
					<outline text="date is a JavaScript date object." created="Sun, 14 Mar 2021 16:08:19 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 16:08:05 GMT">
					<outline text="The result of subtracting 24 hours from the date." created="Sun, 14 Mar 2021 16:08:35 GMT"/>
					</outline>
				<outline text="Example" created="Sun, 14 Mar 2021 16:08:07 GMT">
					<outline text="date.yesterday (clock.now ())" created="Sun, 14 Mar 2021 16:08:53 GMT">
						<outline text="Sat Mar 13 2021 11:21:02 GMT-0500 (Eastern Standard Time)" created="Sun, 14 Mar 2021 16:09:29 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="file verbs" created="Mon, 22 Mar 2021 16:20:27 GMT">
			<outline text="file.exists" created="Wed, 03 Mar 2021 15:31:58 GMT">
				<outline text="Syntax" created="Wed, 03 Mar 2021 15:32:50 GMT">
					<outline text="file.exists (path)" created="Wed, 03 Mar 2021 15:32:35 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 03 Mar 2021 15:32:04 GMT">
					<outline text="path points to a file in the remote file system." created="Wed, 03 Mar 2021 15:33:06 GMT"/>
					</outline>
				<outline text="Action" created="Wed, 03 Mar 2021 15:32:21 GMT">
					<outline text="Determines if the file exists" created="Wed, 03 Mar 2021 15:33:37 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 03 Mar 2021 15:32:24 GMT">
					<outline text="True if it exists, false otherwise" created="Wed, 03 Mar 2021 15:33:44 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 03 Mar 2021 15:32:27 GMT">
					<outline text="file.exists (&quot;prefs.json&quot;)" created="Wed, 03 Mar 2021 15:33:50 GMT"/>
					<outline text="file.exists (&quot;meaningOfLife.js&quot;)" created="Wed, 03 Mar 2021 15:34:07 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 03 Mar 2021 15:32:29 GMT">
					<outline text="If you try to read a file that doesn't exist, for example, your script will fail. If your application can work even if a file doesn't exist, then you should use this verb to see if it exists. " created="Wed, 03 Mar 2021 15:34:27 GMT"/>
					</outline>
				</outline>
			<outline text="file.writeWholeFile" created="Fri, 19 Feb 2021 14:50:19 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 16:07:43 GMT">
					<outline text="file.writeWholeFile (path, text)" created="Fri, 05 Mar 2021 16:07:47 GMT"/>
					</outline>
				<outline text="What it does" created="Fri, 19 Feb 2021 14:50:34 GMT">
					<outline text="Creates a new private file, or overwrites an existing file, at the indicated path, with the contents of the second parameter.  It creates any folders needed to store the file if they don't exist. " created="Fri, 19 Feb 2021 14:51:09 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 19 Feb 2021 14:52:20 GMT">
					<outline text="true." created="Fri, 19 Feb 2021 14:52:47 GMT"/>
					</outline>
				<outline text="Note" created="Fri, 19 Feb 2021 14:56:26 GMT">
					<outline text="Files are, by default, private. If you want to create a public file, first create the private file then call file.makeFilePublic." created="Fri, 19 Feb 2021 14:56:28 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 19 Feb 2021 14:54:52 GMT">
					<outline text="file.writeWholeFile (&quot;hello.txt&quot;, &quot;Hello World&quot;)" created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="true" created="Thu, 11 Mar 2021 17:15:48 GMT"/>
						</outline>
					<outline text="file.writeWholeFile (&quot;code/alert.js&quot;, &quot;dialog.alert ('Yo')&quot;) " created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="true" created="Thu, 11 Mar 2021 17:16:21 GMT"/>
						</outline>
					</outline>
				<outline text="Bugs" created="Fri, 19 Feb 2021 15:04:52 GMT">
					<outline text="None documented." created="Sat, 20 Feb 2021 16:13:06 GMT"/>
					</outline>
				</outline>
			<outline text="file.readWholeFile" created="Fri, 19 Feb 2021 14:47:51 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 16:08:24 GMT">
					<outline text="file.readWholeFile (path)" created="Fri, 05 Mar 2021 16:08:26 GMT"/>
					</outline>
				<outline text="What it does" created="Fri, 19 Feb 2021 14:48:54 GMT">
					<outline text="Reads the file at the indicated path and returns its contents as a string. " created="Fri, 19 Feb 2021 14:48:23 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 19 Feb 2021 14:50:40 GMT">
					<outline text="The contents of the file, as a string." created="Fri, 19 Feb 2021 14:50:45 GMT"/>
					</outline>
				<outline text="Common error" created="Fri, 19 Feb 2021 14:49:46 GMT">
					<outline text="The file does not exist." created="Fri, 19 Feb 2021 14:49:51 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 19 Feb 2021 14:48:57 GMT">
					<outline text="file.readWholeFile (&quot;hello.txt&quot;) //returns contents of file hello.txt" created="Fri, 19 Feb 2021 14:49:00 GMT"/>
					</outline>
				</outline>
			<outline text="file.delete" created="Tue, 23 Feb 2021 16:27:41 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:40:35 GMT">
					<outline text="file.delete (path)" created="Fri, 05 Mar 2021 21:40:43 GMT"/>
					</outline>
				<outline text="What it does" created="Tue, 23 Feb 2021 16:27:48 GMT">
					<outline text="Tries to delete both a private file or a public one at the indicated path. It's an error if neither file exists. " created="Tue, 23 Feb 2021 16:28:58 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 23 Feb 2021 16:27:59 GMT">
					<outline text="undefined" created="Tue, 23 Feb 2021 16:28:02 GMT"/>
					</outline>
				<outline text="Common error" created="Tue, 23 Feb 2021 16:28:08 GMT">
					<outline text="The file does not exist. " created="Tue, 23 Feb 2021 16:28:14 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 23 Feb 2021 16:28:39 GMT">
					<outline text="file.writeWholeFile (&quot;deleteme.txt&quot;, &quot;It's even worse than it appears.&quot;);" created="Wed, 17 Feb 2021 15:44:41 GMT"/>
					<outline text="file.delete (&quot;deleteme.txt&quot;);" created="Tue, 23 Feb 2021 16:13:25 GMT"/>
					</outline>
				</outline>
			<outline text="file.sureFilePath" created="Fri, 19 Feb 2021 15:07:11 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:41:09 GMT">
					<outline text="file.sureFilePath (path)" created="Fri, 05 Mar 2021 21:41:18 GMT"/>
					</outline>
				<outline text="What it does" created="Fri, 19 Feb 2021 15:07:18 GMT">
					<outline text="Creates any sub-folders needed to be sure you can create the file indicated by path. " created="Fri, 19 Feb 2021 15:08:13 GMT"/>
					<outline text="The path is created in the user's private space. " created="Fri, 19 Feb 2021 15:12:11 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 19 Feb 2021 15:09:00 GMT">
					<outline text="true" created="Fri, 19 Feb 2021 15:09:03 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 19 Feb 2021 15:09:05 GMT">
					<outline text="f = &quot;code/project/app.js&quot;; file.sureFilePath (f); file.writeWholeFile (f, &quot;dialog.alert (\&quot;I am an app.\&quot;)&quot;)" created="Fri, 19 Feb 2021 15:09:14 GMT"/>
					</outline>
				<outline text="Bug" created="Fri, 19 Feb 2021 15:11:13 GMT">
					<outline text="Not implemented yet." created="Fri, 19 Feb 2021 15:11:37 GMT"/>
					</outline>
				</outline>
			<outline text="file.makeFilePublic" created="Fri, 19 Feb 2021 15:07:18 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:42:54 GMT">
					<outline text="file.makeFilePublic (path)" created="Fri, 05 Mar 2021 21:43:01 GMT"/>
					</outline>
				<outline text="What it does" created="Sat, 20 Feb 2021 16:19:45 GMT">
					<outline text="Makes the file public if it is private. " created="Sat, 20 Feb 2021 16:19:55 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 20 Feb 2021 16:20:07 GMT">
					<outline text="The public URL of the file. " created="Sat, 20 Feb 2021 16:20:09 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 20 Feb 2021 16:20:22 GMT">
					<outline text="file.makeFilePublic (&quot;hello2.opml&quot;)" created="Sat, 20 Feb 2021 16:20:32 GMT"/>
					</outline>
				</outline>
			<outline text="file.getFileHierarchy" created="Tue, 23 Feb 2021 14:56:51 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:43:18 GMT">
					<outline text="file.getFileHierarchy ()" created="Fri, 05 Mar 2021 21:43:21 GMT"/>
					</outline>
				<outline text="What it does" created="Tue, 23 Feb 2021 14:56:54 GMT">
					<outline text="Returns a JavaScript object that describes the user's file hierarchy." created="Tue, 23 Feb 2021 14:56:58 GMT"/>
					<outline text="There are two top-level branches, Private files and Public files. Unless you have explicitly made a file public, all files are private. " created="Tue, 23 Feb 2021 14:57:21 GMT"/>
					<outline text="Under each is the hierarchy, as they are stored in the file system on the server. For each folder there is a  whenCreated and a whenModified value, and an object called subs, which contains the files and any sub-folders." created="Tue, 23 Feb 2021 14:57:49 GMT"/>
					<outline text="For each file, in addition to creation and modification dates, ctChars is the size of the file." created="Tue, 23 Feb 2021 14:58:49 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 23 Feb 2021 14:59:45 GMT">
					<outline text="A JavaScript object as explained above." created="Tue, 23 Feb 2021 14:59:51 GMT"/>
					</outline>
				<outline text="Notes" created="Tue, 23 Feb 2021 15:10:36 GMT">
					<outline text="This feature is based on the &lt;a href=&quot;https://github.com/scripting/folderToJson&quot;&gt;folderToJson&lt;/a&gt; package." created="Tue, 23 Feb 2021 15:10:38 GMT"/>
					<outline text="And the Outline file hierarchy command in the Tools menu is built on file.getFileHierarchy. " created="Tue, 23 Feb 2021 15:14:52 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 23 Feb 2021 15:00:08 GMT">
					<outline text="console.log (jsonStringify (file.getFileHierarchy ()))" created="Tue, 23 Feb 2021 15:00:11 GMT"/>
					</outline>
				</outline>
			</outline>
		<outline text="http verbs" created="Mon, 22 Mar 2021 16:20:36 GMT">
			<outline text="http.readUrl" created="Fri, 26 Feb 2021 19:44:45 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:43:42 GMT">
					<outline text="http.readUrl (url)" created="Fri, 05 Mar 2021 21:43:47 GMT"/>
					</outline>
				<outline text="What it does" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="Makes and HTTP request." created="Fri, 26 Feb 2021 20:08:31 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 26 Feb 2021 20:09:17 GMT">
					<outline text="What the HTTP request returns." created="Fri, 26 Feb 2021 20:09:19 GMT"/>
					</outline>
				<outline text="Errors" created="Fri, 26 Feb 2021 20:09:30 GMT">
					<outline text="There's a connectivity issue, the server is not accessible." created="Fri, 26 Feb 2021 20:09:32 GMT"/>
					<outline text="The URL is incorrect. " created="Fri, 26 Feb 2021 20:09:47 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="console.log (http.readUrl (&quot;http://scripting.com/rss.xml&quot;))" created="Fri, 26 Feb 2021 20:10:01 GMT"/>
					</outline>
				</outline>
			</outline>
		<outline text="string verbs" created="Mon, 22 Mar 2021 16:20:41 GMT">
			<outline text="string.addCommas" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.addCommas (number)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="The param is a large number that can be made easier to read by adding commas to it." created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="A string." created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.addCommas (11709445200)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="11,709,445,200" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.addCommas (12)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="12" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.addCommas (&quot;abcdefghijklmnopqrstuvwxyz&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="abcdefghijklmnopqrstuvwxyz" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.addPeriodAtEnd" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.addPeriodAtEnd (string)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="string is a sentence that may not have a period at the end. " created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="The string, possibly with a period added at the end. " created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Notes" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="It's a complicated and somewhat quirky algorithm. " created="Sun, 14 Mar 2021 14:38:57 GMT"/>
					<outline text="First we call string.trimWhitespace to remove any spaces or newlines at the beginning and end of the string." created="Sun, 14 Mar 2021 14:39:22 GMT"/>
					<outline text="Then, if the string ends with a period, comma, question mark, quote, colon, semicolon or exclamation point, we do nothing. Putting a period after these characters would usually be incorrect. " created="Sun, 14 Mar 2021 14:41:57 GMT"/>
					<outline text="Used in Radio3 to pre-process a linkblog post. " created="Sun, 14 Mar 2021 14:39:11 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.addPeriodAtEnd (&quot;I like ice cream&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="I like ice cream." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.addPeriodAtEnd (&quot;What is your favorite flavor?&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="What is your favorite flavor?" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.beginsWith" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.beginsWith (s, possibleBeginning, flUnicase)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 15:42:04 GMT">
					<outline text="The first param is a string that might begin with the second param." created="Sun, 14 Mar 2021 15:42:07 GMT"/>
					<outline text="flUnicase, a boolean, is optional. If true the search is done regardless of the case of the characters. If true the match doesn't have to be exact regarding the case of the characters, so &quot;hooray&quot; will match &quot;Hooray&quot; or &quot;hOOrAy&quot; if flUnicase is true." created="Sun, 14 Mar 2021 15:42:29 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 26 Feb 2021 20:09:17 GMT">
					<outline text="true if the string begins with the other, false if it doesn't." created="Fri, 26 Feb 2021 20:09:19 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.beginsWith (&quot;hooray for hollywood&quot;, &quot;hoo&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="true" created="Sun, 14 Mar 2021 15:44:12 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.bumpUrlString" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.bumpUrlString (string)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="string either undefined or the result of having called string.bumpUrlString. " created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="The next string in the sequence, as in a URL shortener application." created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Notes" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="The first string it returns is 1, then 2, then it runs through the alphabet. After z it returns 00, then 01." created="Sun, 14 Mar 2021 15:01:51 GMT"/>
					<outline text="It can be used in implementing a URL shortener, to generate a sequence of strings, that can be used as aliases for another perhaps longer string. " created="Sun, 14 Mar 2021 15:03:05 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.bumpUrlString (undefined)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="1" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.bumpUrlString (&quot;z&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="00" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.bumpUrlString (&quot;zz&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="000" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.bumpUrlString (&quot;ZZ&quot;) //not case-sensitive" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="000" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.contains" created="Sat, 27 Feb 2021 21:46:30 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:45:08 GMT">
					<outline text="string.contains (s, whatItMightContain, flUnicase) returns boolean" created="Fri, 05 Mar 2021 21:45:10 GMT"/>
					</outline>
				<outline text="What it does" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="Determines if one string contains another." created="Fri, 26 Feb 2021 20:08:31 GMT"/>
					<outline text="The third parameter, flUnicase, is optional, it defaults to true. " created="Sat, 27 Feb 2021 21:37:08 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 26 Feb 2021 20:09:17 GMT">
					<outline text="true if the string contains the other, false if it doesn't." created="Fri, 26 Feb 2021 20:09:19 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="dialog.alert (string.contains (&quot;http://november.com&quot;, &quot;november&quot;)) //displays true" created="Fri, 26 Feb 2021 20:10:01 GMT"/>
					</outline>
				</outline>
			<outline text="string.countFields" created="Sat, 27 Feb 2021 21:52:00 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:45:25 GMT">
					<outline text="string.countFields (s, ch)" created="Fri, 05 Mar 2021 21:45:28 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:49:33 GMT">
					<outline text="s is a string, ch is a 1-character string." created="Sat, 13 Mar 2021 16:49:35 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 21:53:10 GMT">
					<outline text="The number of fields in the string, with fields determined by the character." created="Sat, 27 Feb 2021 21:53:13 GMT"/>
					</outline>
				<outline text="Examples" created="Sat, 27 Feb 2021 21:54:11 GMT">
					<outline text="string.countFields (&quot;scripting.com/2003/08/12.html&quot;, &quot;/&quot;)" created="Sat, 27 Feb 2021 21:54:14 GMT">
						<outline text="4" created="Fri, 12 Mar 2021 16:03:03 GMT"/>
						</outline>
					<outline text="string.countFields (&quot;Do you know the way to San Jose?&quot;, &quot; &quot;)" created="Sat, 27 Feb 2021 21:54:14 GMT">
						<outline text="8" created="Fri, 12 Mar 2021 16:03:03 GMT"/>
						</outline>
					<outline text="string.countFields (&quot;Come hear Uncle John's Band.&quot;, &quot;/&quot;)" created="Sat, 27 Feb 2021 21:54:14 GMT">
						<outline text="1" created="Fri, 12 Mar 2021 16:03:03 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:47:00 GMT">
					<outline text="string.nthField" created="Sat, 13 Mar 2021 16:51:11 GMT"/>
					<outline text="string.lastField" created="Sat, 13 Mar 2021 16:51:15 GMT"/>
					</outline>
				</outline>
			<outline text="string.dayOfWeekToString" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.dayOfWeekToString (number)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Param" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="A number between 0 and 6. 0 corresponds to Sunday, 6 to Saturday." created="Wed, 10 Mar 2021 21:01:25 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="A string like &quot;Sunday&quot;, &quot;Monday&quot;, &quot;Tuesday&quot;, &quot;Wednesday&quot;, &quot;Thursday&quot;, &quot;Friday&quot;, &quot;Saturday&quot; or the empty string. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Errors" created="Wed, 10 Mar 2021 21:02:13 GMT">
					<outline text="If the number is out of range it returns the empty string." created="Wed, 10 Mar 2021 21:02:16 GMT"/>
					</outline>
				<outline text="Example" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.dayOfWeekToString (3)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="Wednesday" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 17:50:54 GMT">
					<outline text="string.monthToString" created="Sat, 13 Mar 2021 17:50:57 GMT"/>
					</outline>
				</outline>
			<outline text="string.decodeXml" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.bumpUrlString (string)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="A string that may include encoded XML." created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="The decoded version of the string." created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Notes" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="We look for four strings: &amp;amp;lt; &amp;amp;gt; &amp;amp;amp; and &amp;amp;apos; and convert them to &lt; &gt; &amp; and '." created="Sun, 14 Mar 2021 15:09:13 GMT"/>
					<outline text="At some point it may make sense to look for other strings. " created="Sun, 14 Mar 2021 15:11:46 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.decodeXml (&quot;&amp;lt;script&amp;gt;&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="&amp;lt;script&gt;" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.decodeXml (&quot;Lennon &amp;amp; McCartney&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="Lennon &amp; McCartney" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.delete" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.delete (string, index, count)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="The first parameter is a string that you want to delete characters from. " created="Wed, 10 Mar 2021 21:01:25 GMT"/>
					<outline text="The second parameter is the 1-based location of the first character to delete." created="Wed, 10 Mar 2021 21:04:17 GMT"/>
					<outline text="The third parameter is the number of characters to delete." created="Wed, 10 Mar 2021 21:04:37 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The result of deleting the characters from the string. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:02:13 GMT">
					<outline text="If you try to delete more characters than are present, it deletes as many as it can." created="Wed, 10 Mar 2021 21:02:16 GMT"/>
					<outline text="If you try to delete starting past the end of the string, you end up deleting nothing." created="Wed, 10 Mar 2021 21:08:39 GMT"/>
					</outline>
				<outline text="Example" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.delete (&quot;123456789&quot;, 3, 1)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="12456789" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.delete (&quot;123456789&quot;, 2, 1000)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="1" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.delete (&quot;123456789&quot;, 100, 3)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="123456789" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.encodeHtml" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.encodeHtml (string)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="A string that possibly contains HTML markup. " created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The result of encoding angle brackets and quotes.  " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:02:13 GMT">
					<outline text="If you try to delete more characters than are present, it deletes as many as it can." created="Wed, 10 Mar 2021 21:02:16 GMT"/>
					<outline text="If you try to delete starting past the end of the string, you end up deleting nothing." created="Wed, 10 Mar 2021 21:08:39 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.encodeHtml (&quot;Still diggin!&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="Still diggin!" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.encodeHtml (&quot;I &lt;b&gt;love&lt;/b&gt; a parade&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="I &amp;#60;b&amp;#62;love&amp;#60;/b&amp;#62; a parade" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.endsWith" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.endsWith (string1, string2, boolean)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="The first string is the one we're looking in." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					<outline text="The second is what we're looking for in the string." created="Wed, 10 Mar 2021 21:16:14 GMT"/>
					<outline text="The boolean says if the search is unicase (it's optional, if not present it's true)." created="Wed, 10 Mar 2021 21:16:23 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="True if the first string ends with the second. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.endsWith (&quot;Hooray for Hollywood&quot;, &quot;wood&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.endsWith (&quot;Hooray for Hollywood&quot;, &quot;Wood&quot;, false)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.endsWith (&quot;Hooray for Hollywood&quot;, &quot;wheat&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.filledString" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.filledString (character, count)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="The first parameter is a string which will be replicated." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					<outline text="The second parameter is the number of times it will be replicated." created="Wed, 10 Mar 2021 21:20:28 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="A string containing a number of copies of the first parameter. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.filledString (&quot;p&quot;, 10)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="pppppppppp" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.filledString (&quot;123 &quot;, 10)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="123 123 123 123 123 123 123 123 123 123 " created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.filledString (&quot;\t&quot;, 3)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="   " created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.formatDate" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.formatDate (date, format, timezone)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="The first parameter is a JavaScript date object. " created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					<outline text="The second parameter is a string containing a format spec, following &lt;a href=&quot;https://man7.org/linux/man-pages/man3/strftime.3.html&quot;&gt;strftime&lt;/a&gt; standard." created="Sun, 14 Mar 2021 15:17:16 GMT"/>
					<outline text="The third parameter says what timezone you want the date to be in. 0 is GMT, -4 in US/Eastern. " created="Sun, 14 Mar 2021 15:17:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="A string, representing the date, in the format specified, in the indicated timezone." created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Notes" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="All three parameters are optional." created="Sun, 14 Mar 2021 15:24:28 GMT"/>
					<outline text="If the date is not specified, the current date-time is used." created="Sun, 14 Mar 2021 15:22:05 GMT"/>
					<outline text="If the format is not specified, we use &quot;%c&quot;." created="Sun, 14 Mar 2021 15:22:35 GMT"/>
					<outline text="If the timezone is not specified, we use the timezone that the machine that ran the script is in." created="Sun, 14 Mar 2021 15:24:10 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.formatDate (clock.now (), &quot;%B&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="March" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.formatDate ()" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="Sun Mar 14 2021 11:24:53 GMT-0400 (Eastern Daylight Time)" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.formatDate (clock.now (), &quot;%l:%M %p&quot;)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="11:21 AM" created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.formatDate (undefined, &quot;%A, %B %e, %Y at %l:%M %p&quot;) + &quot;.&quot;" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="Sunday, March 14, 2021 at 11:27 AM." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.getRandomPassword" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.getRandomPassword (count)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="count is the number of characters that will be in the random string that's generated." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="A string of random characters." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.getRandomPassword (20)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="26mxjiulbv2br8jaeutj" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.getRandomPassword (20)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="pv8snpjvmbl4np4kh4mt" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.hashMD5" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.hashMD5 (string)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="The string is the input to the &lt;a href=&quot;https://en.wikipedia.org/wiki/MD5&quot;&gt;MD5 encryption&lt;/a&gt; algorithm." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The encrypted version of the string. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="You can tell with a lot of confidence that the sender who uses this function has a copy of the string without transmitting it. " created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.hashMD5 (&quot;Spring forward, fall back.&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="26d37b732af2a3caf47a0b2c9789a0ce" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.hashMD5 (&quot;It's even worse than it appears&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="d7adfe509535ad6de49a8baf0fbf7a3d" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.innerCaseName" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.innerCaseName (string)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="A string that contains words separated by spaces. " created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The innerCase version of the string, which means capitalize the first letter after every space, then remove the spaces." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="It's useful for creating a file name or URL from a title. " created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.innerCaseName (&quot;The story of my life&quot;) + &quot;.mp3&quot;" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="theStoryOfMyLife.mp3" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.insert" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.insert (source, dest, ix)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="source is a string that will be inserted into dest, also a string, and the 1-based index ix." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The result of the insertion." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Bugs" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="Behavior is unpredictable if ix is less than zero. " created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.insert (&quot;Bull &quot;, &quot;My name is Mancuso.&quot;, 11)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="My name is Bull Mancuso." created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.insert (&quot;Hello &quot;, &quot; from Hollywood&quot;, 1)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text=" Hello from Hollywood" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.isAlpha" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.isAlpha (ch)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="ch is a 1-character string." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="True if it's an alphabetic character, false otherwise." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					<outline text="Alphabetic characters are A-Z and a-z." created="Fri, 12 Mar 2021 22:00:14 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="If the string is longer than one character, it returns true if the first character is alphabetic, false otherwise." created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.isAlpha (&quot;x&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isAlpha (&quot;1&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isAlpha (&quot;#&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isAlpha (&quot;123abc&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Fri, 12 Mar 2021 22:02:47 GMT">
					<outline text="string.isNumeric" created="Fri, 12 Mar 2021 22:02:48 GMT"/>
					<outline text="string.isWhitespace" created="Fri, 12 Mar 2021 22:03:05 GMT"/>
					<outline text="string.isPunctuation" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					</outline>
				</outline>
			<outline text="string.isNumeric" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.isNumeric (ch)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="ch is a 1-character string." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="True if it's a numeric character, false otherwise." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					<outline text="Numeric characters are 0-9." created="Fri, 12 Mar 2021 22:00:14 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="If the string is longer than one character, it returns true if the first character is numeric, false otherwise." created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.isNumeric (&quot;4&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isNumeric (&quot;g&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isNumeric (&quot;#&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isNumeric (&quot;123abc&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Fri, 12 Mar 2021 22:02:47 GMT">
					<outline text="string.isAlpha" created="Fri, 12 Mar 2021 22:02:48 GMT"/>
					<outline text="string.isWhitespace" created="Fri, 12 Mar 2021 22:03:05 GMT"/>
					<outline text="string.isPunctuation" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					</outline>
				</outline>
			<outline text="string.isPunctuation" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.isPunctuation (ch)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="ch is a 1-character string." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="True if it's a punctuation character, false otherwise." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					<outline text="Punctuation characters all characters that are not alpha, numeric or whitespace characters." created="Fri, 12 Mar 2021 22:00:14 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="If the string is longer than one character, it returns true if the first character is numeric, false otherwise." created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					<outline text="This function can in some cases be used to see if you need to add a period at the end of a sentence. " created="Sat, 13 Mar 2021 16:32:45 GMT"/>
					</outline>
				<outline text="Bugs" created="Sat, 13 Mar 2021 16:33:42 GMT">
					<outline text="Admittedly, its definition is weird, it would probably be better to enumerate the characters that are punctuation, for example, period, comma, colon, semicolon. " created="Sat, 13 Mar 2021 16:33:41 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.isPunctuation (&quot; &quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isPunctuation (&quot;.&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isPunctuation (&quot;,&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Fri, 12 Mar 2021 22:02:47 GMT">
					<outline text="string.isAlpha" created="Fri, 12 Mar 2021 22:02:48 GMT"/>
					<outline text="string.isWhitespace" created="Fri, 12 Mar 2021 22:03:05 GMT"/>
					<outline text="string.isNumeric" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					<outline text="string.isPunctuation" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					<outline text="string.trimWhitespace" created="Sat, 13 Mar 2021 16:28:55 GMT"/>
					</outline>
				</outline>
			<outline text="string.isWhitespace" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.isWhitespace (ch)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="ch is a 1-character string." created="Wed, 10 Mar 2021 21:09:56 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="True if it's a whitespace character, false otherwise." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					<outline text="Whitespace characters are &quot; &quot;, &quot;\r&quot;, &quot;\n&quot;, &quot;\t&quot; (i.e. blank, return, newline and tab)." created="Fri, 12 Mar 2021 22:00:14 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:26:17 GMT">
					<outline text="If the string is longer than one character, it returns true if the first character is numeric, false otherwise." created="Wed, 10 Mar 2021 21:26:19 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.isWhitespace (&quot; &quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isWhitespace (&quot;\n&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="true" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.isWhitespace (&quot;*&quot;)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="false" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Fri, 12 Mar 2021 22:02:47 GMT">
					<outline text="string.isAlpha" created="Fri, 12 Mar 2021 22:02:48 GMT"/>
					<outline text="string.isWhitespace" created="Fri, 12 Mar 2021 22:03:05 GMT"/>
					<outline text="string.isNumeric" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					<outline text="string.isPunctuation" created="Fri, 12 Mar 2021 22:03:11 GMT"/>
					<outline text="string.trimWhitespace" created="Sat, 13 Mar 2021 16:28:55 GMT"/>
					</outline>
				</outline>
			<outline text="string.lastField" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.lastField (s, ch)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string, ch is a 1-character string." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="A string with the contents of the last specified field in the string, with fields determined by the character." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					<outline text="If ch doesn't appear in the string, it returns the whole string." created="Sat, 13 Mar 2021 16:42:51 GMT"/>
					</outline>
				<outline text="Bugs" created="Sat, 13 Mar 2021 16:41:32 GMT">
					<outline text="If ch contains more than one character, the results are not easily specified." created="Sat, 13 Mar 2021 16:41:34 GMT"/>
					</outline>
				<outline text="Examples" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.lastField (&quot;scripting.com/2003/08/12.html&quot;, &quot;/&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="12.html" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					<outline text="string.lastField (&quot;oh the buzzing of the bees&quot;, &quot; &quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="bees" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					<outline text="string.lastField (&quot;oh the buzzing of the bees&quot;, &quot;123&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="oh the buzzing of the bees" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.nthField" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					<outline text="string.countFields" created="Sat, 13 Mar 2021 16:43:30 GMT"/>
					</outline>
				</outline>
			<outline text="string.lower" created="Sat, 27 Feb 2021 21:59:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:47:06 GMT">
					<outline text="string.lower (s) returns string" created="Fri, 05 Mar 2021 21:47:08 GMT"/>
					</outline>
				<outline text="What it does" created="Sat, 27 Feb 2021 21:59:24 GMT">
					<outline text="Converts the string to lower case. " created="Sat, 27 Feb 2021 21:59:27 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 21:59:35 GMT">
					<outline text="The lower case version of the string." created="Sat, 27 Feb 2021 21:59:41 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 21:59:52 GMT">
					<outline text="dialog.alert (string.lower (&quot;Everyone Do The Hamster Dance!&quot;))" created="Sat, 27 Feb 2021 21:59:54 GMT"/>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:52:40 GMT">
					<outline text="string.upper" created="Sat, 13 Mar 2021 16:52:42 GMT"/>
					</outline>
				</outline>
			<outline text="string.maxStringLength" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.maxStringLength (string, maxlength, flWholeWordAtEnd, flAddElipses)" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="The first parameter is a string that you want to be sure isn't longer than the number in the second parameter." created="Sun, 14 Mar 2021 14:50:04 GMT"/>
					<outline text="flWholeWordAtEnd is an optional boolean param. If true, we don't leave a broken word at the end of the string. Defaults to true. " created="Sun, 14 Mar 2021 14:50:28 GMT"/>
					<outline text="flAddElipses is an optional boolean. If true, we add three periods at the end of the string. Defaults to true." created="Sun, 14 Mar 2021 14:50:52 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="A string that is not longer than the indicated length." created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.maxStringLength (&quot;I have a long story I would like to tell you. It begins like this.&quot;, 35)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="I have a long story I would like ..." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.maxStringLength (&quot;You know nothing Jon Snow.&quot; , 80)" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="You know nothing Jon Snow." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.mid" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.mid (string, ix, ct)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="The first parameter is a string that you want to get characters from. " created="Wed, 10 Mar 2021 21:01:25 GMT"/>
					<outline text="The second parameter is the 1-based location of the first character to copy." created="Wed, 10 Mar 2021 21:04:17 GMT"/>
					<outline text="The third parameter is the number of characters to copy." created="Wed, 10 Mar 2021 21:04:37 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The result of extracting the characters from the string. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Wed, 10 Mar 2021 21:02:13 GMT">
					<outline text="If you try to delete copy characters than are present, it copies as many as it can." created="Wed, 10 Mar 2021 21:02:16 GMT"/>
					<outline text="If you try to copy starting past the end of the string, you end up copying nothing." created="Wed, 10 Mar 2021 21:08:39 GMT"/>
					</outline>
				<outline text="Example" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.mid (&quot;123456789&quot;, 3, 1)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="3" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.mid (&quot;123456789&quot;, 2, 1000)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="23456789" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:56:29 GMT">
					<outline text="string.delete" created="Sat, 13 Mar 2021 16:56:32 GMT"/>
					<outline text="string.insert" created="Sat, 13 Mar 2021 16:56:37 GMT"/>
					</outline>
				</outline>
			<outline text="string.monthToString" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.monthToString (number)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Param" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="A number between 0 and 11. 0 corresponds to January, 11 to December." created="Wed, 10 Mar 2021 21:01:25 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="A string like &quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot;, &quot;May&quot;, &quot;June&quot;, &quot;July&quot;, &quot;August&quot;, &quot;September&quot;, &quot;October&quot;, &quot;November&quot;, &quot;December&quot; or undefined. " created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.monthToString (0)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="January" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.monthToString (100)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="undefined" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 17:50:54 GMT">
					<outline text="string.dayOfWeekToString" created="Sat, 13 Mar 2021 17:50:57 GMT"/>
					</outline>
				</outline>
			<outline text="string.multipleReplaceAll" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.multipleReplaceAll (s, replaceTable, flCaseSensitive, startCharacters, endCharacters)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					<outline text="replaceTable is an object, where the name of each property is a string to search for, and its value is what you want it replaced with. " created="Sat, 13 Mar 2021 18:16:37 GMT"/>
					<outline text="flCaseSensitive, a boolean, determines if the search is case-sensitive. It's optional, if undefined, it defaults to false. " created="Sat, 13 Mar 2021 18:17:08 GMT"/>
					<outline text="startCharacters is an optional string, if specified we only look at text within the first string that begins with these characters." created="Sat, 13 Mar 2021 18:17:26 GMT"/>
					<outline text="endCharacters, also optional, if specified, we only look at text within the first string that ends with these characters." created="Sat, 13 Mar 2021 18:18:24 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="A string, the result of the replacements." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.multipleReplaceAll (&quot;This house costs $293,000.&quot;, {&quot;house&quot;: &quot;apartment&quot;, &quot;293,000&quot;: &quot;534,287&quot;}) " created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="This apartment costs $534,287." created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.replaceAll" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					</outline>
				</outline>
			<outline text="string.nthField" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.nthField (s, ch, n)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string, ch is a 1-character string, n is a number." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					<outline text="n is 1-based, i.e. the first field is 1, not 0." created="Sat, 13 Mar 2021 16:45:04 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="A string with the contents of the specified field, with fields determined by the character." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.nthField (&quot;scripting.com/2003/08/12.html&quot;, &quot;/&quot;, 3)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="08" created="Sat, 13 Mar 2021 16:44:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.lastField" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					<outline text="string.countFields" created="Sat, 13 Mar 2021 16:43:30 GMT"/>
					</outline>
				</outline>
			<outline text="string.padWithZeros" created="Wed, 10 Mar 2021 20:59:47 GMT">
				<outline text="Syntax" created="Wed, 10 Mar 2021 20:59:49 GMT">
					<outline text="string.padWithZeros (number, ct)" created="Wed, 10 Mar 2021 20:59:53 GMT"/>
					</outline>
				<outline text="Params" created="Wed, 10 Mar 2021 21:00:35 GMT">
					<outline text="number is a number you want padded with zeros." created="Wed, 10 Mar 2021 21:01:25 GMT"/>
					<outline text="ct is the number of places you want the number padded to." created="Wed, 10 Mar 2021 21:04:17 GMT"/>
					</outline>
				<outline text="Returns" created="Wed, 10 Mar 2021 21:01:46 GMT">
					<outline text="The padded version of the number as a string." created="Wed, 10 Mar 2021 21:01:50 GMT"/>
					</outline>
				<outline text="Notes" created="Sat, 13 Mar 2021 17:54:31 GMT">
					<outline text="It's useful if you want all strings produced by the code to be the same length, regardless how large the numbers are." created="Sat, 13 Mar 2021 17:54:35 GMT"/>
					</outline>
				<outline text="Examples" created="Wed, 10 Mar 2021 21:02:25 GMT">
					<outline text="string.padWithZeros (1200, 5)" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="01200" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					<outline text="string.padWithZeros (1, 4) + &quot;.html&quot;" created="Wed, 10 Mar 2021 21:02:27 GMT">
						<outline text="0001.html" created="Wed, 10 Mar 2021 21:02:37 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:56:29 GMT">
					<outline text="string.delete" created="Sat, 13 Mar 2021 16:56:32 GMT"/>
					<outline text="string.insert" created="Sat, 13 Mar 2021 16:56:37 GMT"/>
					</outline>
				</outline>
			<outline text="string.popExtension" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.popExtension (s)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="If the string has an extension, like .txt or .png, we return the string without the extension." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.popExtension (&quot;myAffadavit.txt&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="myAffadavit" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.popLastField" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					<outline text="string.popTrailing" created="Sat, 13 Mar 2021 16:43:30 GMT"/>
					</outline>
				</outline>
			<outline text="string.popLastField" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.popLastField (s, ch)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string, ch is a 1-character string." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="A string without the last field, as determined by the character, used as a delimiter." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Notes" created="Sat, 13 Mar 2021 16:41:32 GMT">
					<outline text="Useful if you want to replace the suffix of a file name with another suffix." created="Sat, 13 Mar 2021 16:41:34 GMT"/>
					</outline>
				<outline text="Examples" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.popLastField (&quot;myDiary.html&quot;, &quot;.&quot;) + &quot;.json&quot;" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="myDiary.json" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					<outline text="string.popLastField (&quot;scripting.com/2021/03/13&quot;, &quot;/&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="scripting.com/2021/03" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.nthField" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					<outline text="string.countFields" created="Sat, 13 Mar 2021 16:43:30 GMT"/>
					<outline text="string.lastField" created="Sat, 13 Mar 2021 17:58:21 GMT"/>
					</outline>
				</outline>
			<outline text="string.popTrailing" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.popTrailing (s, ch)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="s is a string, ch is a 1-character string." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="A string without instances of the character at the end of the string" created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.popTrailing (&quot;get rid of the dots please.........&quot;, &quot;.&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="get rid of the dots please" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.popLastField" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					<outline text="string.popExtension" created="Sat, 13 Mar 2021 16:43:30 GMT"/>
					</outline>
				</outline>
			<outline text="string.randomSnarkySlogan" created="Sat, 27 Feb 2021 21:30:33 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:44:43 GMT">
					<outline text="string.randomSnarkySlogan ()" created="Fri, 05 Mar 2021 21:44:50 GMT"/>
					</outline>
				<outline text="Params" created="Sun, 14 Mar 2021 14:38:15 GMT">
					<outline text="None." created="Sun, 14 Mar 2021 14:38:17 GMT"/>
					</outline>
				<outline text="Returns" created="Sun, 14 Mar 2021 14:38:31 GMT">
					<outline text="A slogan from Dave's collection. " created="Sun, 14 Mar 2021 14:38:34 GMT"/>
					</outline>
				<outline text="Notes" created="Fri, 26 Feb 2021 19:44:52 GMT">
					<outline text="This is mostly for fun. Truthfully it's &lt;i&gt;only&lt;/i&gt; for fun. Heh. ;-)" created="Sun, 14 Mar 2021 15:09:13 GMT"/>
					</outline>
				<outline text="Examples" created="Fri, 26 Feb 2021 20:09:59 GMT">
					<outline text="string.randomSnarkySlogan ()" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="People return to places that send them away." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.randomSnarkySlogan ()" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="This aggression will not stand." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.randomSnarkySlogan ()" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="All of this has happened before and all of this will happen again." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					<outline text="string.randomSnarkySlogan ()" created="Fri, 26 Feb 2021 20:10:01 GMT">
						<outline text="It's even worse than it appears." created="Sun, 14 Mar 2021 14:40:42 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.replaceAll" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.replaceAll (s, searchFor, replaceWith)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="All three parameters are strings." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="The result of replacing all occurrences of the second string with the third, in the first. " created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.replaceAll (&quot;raise your hand if you're happy&quot;, &quot; &quot;, &quot;---&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="raise---your---hand---if---you're---happy" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:43:21 GMT">
					<outline text="string.multipleReplaceAll" created="Sat, 13 Mar 2021 16:43:23 GMT"/>
					</outline>
				</outline>
			<outline text="string.stripMarkup" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.stripMarkup (string)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="A string that might contain HTML markup." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="The string without the HTML markup." created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.stripMarkup (&quot;Sometimes &lt;b&gt;you&lt;/b&gt; don't &lt;i&gt;want&lt;/i&gt; the &lt;u&gt;markup&lt;/u&gt;.&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="Sometimes you don't want the markup." created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="string.trimLeading" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.trimLeading (string, ch)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="First parameter is a string, the second parameter is a 1-character string. " created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="The string without instances of the character at the beginning of the string. " created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.trimLeading (&quot;$$$$$We don't need the dollar signs at the beginning of this string.&quot;, &quot;$&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="We don't need the dollar signs at the beginning of this string." created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 20:37:28 GMT">
					<outline text="string.trimTrailing" created="Sat, 13 Mar 2021 20:37:31 GMT"/>
					</outline>
				</outline>
			<outline text="string.trimTrailing" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.trimTrailing (string, ch)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="First parameter is a string, the second parameter is a 1-character string. " created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="The string without instances of the character at the end of the string. " created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.trimTrailing (&quot;We don't need the question marks at the end of this string.?????&quot;, &quot;?&quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="We don't need the question marks at the end of this string." created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 20:37:28 GMT">
					<outline text="string.trimLeading" created="Sat, 13 Mar 2021 20:37:31 GMT"/>
					</outline>
				</outline>
			<outline text="string.trimWhitespace" created="Sat, 27 Feb 2021 22:02:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:46:47 GMT">
					<outline text="string.trimWhitespace (string)" created="Fri, 05 Mar 2021 21:46:49 GMT"/>
					</outline>
				<outline text="Params" created="Sat, 13 Mar 2021 16:41:41 GMT">
					<outline text="A string that might have whitespace at the beginning and/or end." created="Sat, 13 Mar 2021 16:41:43 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 22:04:05 GMT">
					<outline text="The string without whitespace characters at the beginning and end. " created="Sat, 27 Feb 2021 22:04:12 GMT"/>
					</outline>
				<outline text="Notes" created="Sat, 13 Mar 2021 20:41:40 GMT">
					<outline text="Use this verb to allow comparisons between names or identifiers that might have whitespace around them. " created="Sat, 13 Mar 2021 20:41:42 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 22:05:17 GMT">
					<outline text="string.trimWhitespace (&quot;  All the whitespace is a problem.    &quot;)" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="All the whitespace is a problem." created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					<outline text="string.trimWhitespace (&quot;   Alice   &quot;) == &quot;Alice&quot;" created="Sat, 27 Feb 2021 22:05:20 GMT">
						<outline text="true" created="Sat, 13 Mar 2021 16:40:57 GMT"/>
						</outline>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 20:37:28 GMT">
					<outline text="string.trimLeading" created="Sat, 13 Mar 2021 20:37:31 GMT"/>
					</outline>
				</outline>
			<outline text="string.upper" created="Sat, 27 Feb 2021 21:59:16 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:47:29 GMT">
					<outline text="string.upper (s) returns string" created="Fri, 05 Mar 2021 21:47:33 GMT"/>
					</outline>
				<outline text="What it does" created="Sat, 27 Feb 2021 21:59:24 GMT">
					<outline text="Converts the string to upper case. " created="Sat, 27 Feb 2021 21:59:27 GMT"/>
					</outline>
				<outline text="Returns" created="Sat, 27 Feb 2021 21:59:35 GMT">
					<outline text="The upper case version of the string." created="Sat, 27 Feb 2021 21:59:41 GMT"/>
					</outline>
				<outline text="Example" created="Sat, 27 Feb 2021 21:59:52 GMT">
					<outline text="dialog.alert (string.upper (&quot;It's even worse than it appears.&quot;))" created="Sat, 27 Feb 2021 21:59:54 GMT"/>
					</outline>
				<outline text="See also" created="Sat, 13 Mar 2021 16:52:40 GMT">
					<outline text="string.lower" created="Sat, 13 Mar 2021 16:52:42 GMT"/>
					</outline>
				</outline>
			</outline>
		<outline text="dns verbs" created="Mon, 22 Mar 2021 16:21:00 GMT">
			<outline text="dns.getDomainName" created="Fri, 19 Feb 2021 14:50:19 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:47:53 GMT">
					<outline text="dns.getDomainName (dottedid)" created="Fri, 05 Mar 2021 21:47:56 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 19 Feb 2021 14:52:20 GMT">
					<outline text="The domain name associated with the dotted id. This is often referred to as &quot;reverse DNS.&quot;" created="Fri, 19 Feb 2021 14:52:47 GMT"/>
					</outline>
				<outline text="Common error" created="Fri, 19 Feb 2021 14:52:50 GMT">
					<outline text="There is no domain associated with the provided dotted id." created="Sat, 20 Feb 2021 16:13:06 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 19 Feb 2021 14:54:52 GMT">
					<outline text="dns.getDomainName (&quot;52.217.74.35&quot;) " created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="s3-website-us-east-1.amazonaws.com" created="Tue, 16 Mar 2021 18:22:36 GMT"/>
						</outline>
					</outline>
				<outline text="Limits" created="Fri, 19 Feb 2021 15:04:52 GMT">
					<outline text="It only returns one domain name, but there might be more than one domain mapped to a given IP address. " created="Sat, 20 Feb 2021 16:13:06 GMT"/>
					</outline>
				</outline>
			<outline text="dns.getDottedId" created="Fri, 19 Feb 2021 14:50:19 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:48:09 GMT">
					<outline text="dns.getDottedId (name)" created="Fri, 05 Mar 2021 21:48:11 GMT"/>
					</outline>
				<outline text="Returns" created="Fri, 19 Feb 2021 14:52:20 GMT">
					<outline text="Return the dotted id associated with the name. This is often referred to as &quot;DNS lookup.&quot;" created="Fri, 19 Feb 2021 14:51:09 GMT"/>
					</outline>
				<outline text="Common error" created="Fri, 19 Feb 2021 14:52:50 GMT">
					<outline text="The domain is not defined. " created="Sat, 20 Feb 2021 16:13:06 GMT"/>
					</outline>
				<outline text="Bug" created="Tue, 16 Mar 2021 18:29:46 GMT">
					<outline text="When there's an error, the error message is undefined." created="Tue, 16 Mar 2021 18:29:48 GMT"/>
					</outline>
				<outline text="Example" created="Fri, 19 Feb 2021 14:54:52 GMT">
					<outline text="dns.getDottedId (&quot;scripting.com&quot;)" created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="52.217.103.83" created="Tue, 16 Mar 2021 18:22:54 GMT"/>
						</outline>
					<outline text="dns.getDottedId (&quot;feedbase.io&quot;)" created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="157.230.11.43" created="Tue, 16 Mar 2021 18:22:54 GMT"/>
						</outline>
					<outline text="dns.getDottedId (&quot;asdfasdf.wtf&quot;)" created="Fri, 19 Feb 2021 14:54:55 GMT">
						<outline text="208.113.174.22" created="Tue, 16 Mar 2021 18:22:54 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="clock verbs" created="Mon, 22 Mar 2021 16:21:10 GMT">
			<outline text="clock.now" created="Tue, 16 Mar 2021 18:31:08 GMT">
				<outline text="Syntax" created="Tue, 16 Mar 2021 18:31:18 GMT">
					<outline text="clock.now ()" created="Tue, 16 Mar 2021 18:31:21 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 16 Mar 2021 18:31:47 GMT">
					<outline text="A JavaScript date object with the current date and time. " created="Tue, 16 Mar 2021 18:31:49 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 16 Mar 2021 18:31:28 GMT">
					<outline text="clock.now ()" created="Tue, 16 Mar 2021 18:31:31 GMT">
						<outline text="Tue Mar 16 2021 14:31:39 GMT-0400 (Eastern Daylight Time)" created="Tue, 16 Mar 2021 18:31:35 GMT"/>
						</outline>
					</outline>
				</outline>
			<outline text="clock.waitSeconds" created="Tue, 16 Mar 2021 18:32:12 GMT">
				<outline text="Syntax" created="Tue, 16 Mar 2021 18:32:17 GMT">
					<outline text="clock.waitSeconds (count)" created="Tue, 16 Mar 2021 18:32:21 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 16 Mar 2021 18:32:32 GMT">
					<outline text="The number of seconds it waited. " created="Tue, 16 Mar 2021 18:32:35 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 16 Mar 2021 18:32:37 GMT">
					<outline text="clock.waitSeconds (1)" created="Tue, 16 Mar 2021 18:32:40 GMT">
						<outline text="1.003" created="Tue, 16 Mar 2021 18:32:47 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="speaker verbs" created="Mon, 22 Mar 2021 16:21:17 GMT">
			<outline text="speaker.beep" created="Tue, 16 Mar 2021 18:38:16 GMT">
				<outline text="Syntax" created="Tue, 16 Mar 2021 18:38:19 GMT">
					<outline text="speaker.beep ()" created="Tue, 16 Mar 2021 18:38:21 GMT"/>
					</outline>
				<outline text="What it does" created="Tue, 16 Mar 2021 18:39:10 GMT">
					<outline text="Makes a standard beep sound on the computer's speaker." created="Tue, 16 Mar 2021 18:39:13 GMT"/>
					</outline>
				<outline text="Notes" created="Tue, 16 Mar 2021 18:39:26 GMT">
					<outline text="It's useful for confirming an operation was done, or otherwise to attract the user's attention. " created="Tue, 16 Mar 2021 18:39:28 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 16 Mar 2021 18:39:02 GMT">
					<outline text="undefined" created="Tue, 16 Mar 2021 18:39:05 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 16 Mar 2021 18:38:25 GMT">
					<outline text="speaker.beep () === undefined" created="Tue, 16 Mar 2021 18:38:28 GMT">
						<outline text="true" created="Tue, 16 Mar 2021 18:38:32 GMT"/>
						</outline>
					</outline>
				</outline>
			</outline>
		<outline text="tab verbs" created="Mon, 22 Mar 2021 16:21:25 GMT">
			<outline text="tab.getPublicUrl" created="Tue, 23 Feb 2021 15:21:37 GMT">
				<outline text="Syntax" created="Fri, 05 Mar 2021 21:48:30 GMT">
					<outline text="tab.getPublicUrl () returns string" created="Fri, 05 Mar 2021 21:48:32 GMT"/>
					</outline>
				<outline text="What it does" created="Tue, 23 Feb 2021 15:21:55 GMT">
					<outline text="If the outline in the current tab in the outliner is public, returns the HTTP address of the file. " created="Tue, 23 Feb 2021 15:21:58 GMT"/>
					<outline text="If the outline is private, returns undefined." created="Tue, 23 Feb 2021 15:22:49 GMT"/>
					</outline>
				<outline text="Returns" created="Tue, 23 Feb 2021 15:22:37 GMT">
					<outline text="A web address or undefined." created="Tue, 23 Feb 2021 15:22:40 GMT"/>
					</outline>
				<outline text="Example" created="Tue, 23 Feb 2021 15:23:14 GMT">
					<outline text="dialog.alert (tab.getPublicUrl ())" created="Tue, 23 Feb 2021 15:23:16 GMT">
						<outline text="undefined" created="Mon, 22 Mar 2021 16:25:04 GMT" isComment="true"/>
						</outline>
					</outline>
				</outline>
			</outline>
		</body>
	</opml>
