Lines Matching defs:output

8 	{ input : /(&lt;[^!%|!%@]*?&gt;)/g, output : '<b>$1</b>' },   property
10 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
12 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/g, output : '<ins>$1</ins><ins>$2</ins><ins>… property
14 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, property
16 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<dfn>\'$1$2</dfn>'}, property
18 { input : /(&lt;%)/g, output : '<strong>$1' }, property
20 { input : /(%&gt;)/g, output : '$1</strong>' }, property
22 { input : /(&lt;%@)(.+?)(%&gt;)/gi, output : '$1<span>$2</span>$3' }, property
24 { input : /\b([\d]+)\b/g, output : '<var>$1</var>' }, property
26 …Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|False|For|Function)\b/gi, output : '<a>$1</a>' }, property
27 …num|New|Next|Not|Nothing|Null|On|Option|Or|Private|Public|ReDim|Rem)\b/gi, output : '<a>$1</a>' }, property
28 …|While|With|Xor|Execute|Randomize|Erase|ExecuteGlobal|Explicit|step)\b/gi, output : '<a>$1</a>' }, property
30 …iveCommand|ActiveConnection|ActualSize|AddHeader|AddNew|AppendChunk)\b/gi, output : '<u>$1</u>' }, property
31 …|BeginTrans|BinaryRead|BinaryWrite|BOF|Bookmark|Boolean|Buffer|Byte)\b/gi, output : '<u>$1</u>' }, property
32 …tch|CancelUpdate|CBool|CByte|CCur|CDate|CDbl|Charset|Chr|CInt|Clear)\b/gi, output : '<u>$1</u>' }, property
33 …out|CommitTrans|CompareBookmarks|ConnectionString|ConnectionTimeout)\b/gi, output : '<u>$1</u>' }, property
34 …rsorLocation|CursorType|DataMember|DataSource|Date|DateAdd|DateDiff)\b/gi, output : '<u>$1</u>' }, property
35 …se|DefinedSize|Delete|Description|Double|EditMode|Eof|EOF|err|Error)\b/gi, output : '<u>$1</u>' }, property
36 …Flush|Form|FormatCurrency|FormatDateTime|FormatNumber|FormatPercent)\b/gi, output : '<u>$1</u>' }, property
37 …ontext|HelpFile|Hex|Hour|HTMLEncode|IgnoreCase|Index|InStr|InStrRev)\b/gi, output : '<u>$1</u>' }, property
38 …nLevel|Join|LBound|LCase|LCID|Left|Len|Lock|LockType|Log|Long|LTrim)\b/gi, output : '<u>$1</u>' }, property
39 …me|Move|MoveFirst|MoveLast|MoveNext|MovePrevious|Name|NextRecordset)\b/gi, output : '<u>$1</u>' }, property
40 …alValue|PageCount|PageSize|Pattern|PICS|Precision|Prepared|Property)\b/gi, output : '<u>$1</u>' }, property
41 …|Remove|RemoveAll|Replace|Requery|Request|Response|Resync|Right|Rnd)\b/gi, output : '<u>$1</u>' }, property
42 …k|Server|ServerVariables|Session|SessionID|SetAbort|SetComplete|Sgn)\b/gi, output : '<u>$1</u>' }, property
43 …bjects|Status|StayInSync|StrComp|String|StrReverse|Supports|Tan|Time)\b/gi, output : '<u>$1</u>' }, property
44 …im|Type|Type|UBound|UCase|UnderlyingValue|UnLock|Update|UpdateBatch)\b/gi, output : '<u>$1</u>' }, property
45 …{ input : /\b(URLEncode|Value|Value|Version|Weekday|WeekdayName|Write|Year)\b/gi, output : '<u>$1<… property
47 …ellow|vbBlue|vbMagenta|vbCyan|vbWhite|vbBinaryCompare|vbTextCompare)\b/gi, output : '<i>$1</i>' }, property
48 …day|vbWednesday|vbThursday|vbFriday|vbSaturday|vbUseSystemDayOfWeek)\b/gi, output : '<i>$1</i>' }, property
49 …ullWeek|vbGeneralDate|vbLongDate|vbShortDate|vbLongTime|vbShortTime)\b/gi, output : '<i>$1</i>' }, property
50 …ine|vbNullChar|vbNullString|vbTab|vbVerticalTab|vbUseDefault|vbTrue)\b/gi, output : '<i>$1</i>' }, property
51 …ble|vbCurrency|vbDate|vbString|vbObject|vbError|vbBoolean|vbVariant)\b/gi, output : '<i>$1</i>' }, property
52 { input : /\b(vbDataObject|vbDecimal|vbByte|vbArray)\b/gi, output : '<i>$1</i>' }, property
54 { input : /(&lt;!--.*?--&gt.)/g, output : '<big>$1</big>' } property
60 {input : /(function|sub)([ ]*?)(\w+)([ ]*?\()/gi , output : '<ins>$1</ins>', name : '$3'} property
65 { input : 'if', output : 'If $0 Then\n\t\nEnd If' }, property
66 { input : 'ifelse', output : 'If $0 Then\n\t\n\nElse\n\t\nEnd If' }, property
67 { input : 'case', output : 'Select Case $0\n\tCase ?\n\tCase Else\nEnd Select'}, property
69 { input : 'rw', output : 'Response.Write( $0 )' }, property
70 { input : 'resc', output : 'Response.Cookies( $0 )' }, property
71 { input : 'resb', output : 'Response.Buffer'}, property
72 { input : 'resflu', output : 'Response.Flush()'}, property
73 { input : 'resend', output : 'Response.End'}, property
75 { input : 'reqc', output : 'Request.Cookies( $0 )' }, property
76 { input : 'rq', output : 'Request.Querystring("$0")' }, property
77 { input : 'rf', output : 'Request.Form("$0")' }, property
79 { input : 'fso', output : 'Set fso = Server.CreateObject("Scripting.FileSystemObject")\n$0' }, property
80 { input : 'setfo', output : 'Set fo = fso.getFolder($0)' }, property
81 { input : 'setfi', output : 'Set fi = fso.getFile($0)' }, property
82 …{ input : 'twr', output : 'Set f = fso.CreateTextFile($0,true)\'overwrite\nf.WriteLine()\nf.Close'… property
83 { input : 'tre', output : 'Set f = fso.OpenTextFile($0, 1)\nf.ReadAll\nf.Close'}, property
85 { input : 'mapp', output : 'Server.Mappath($0)' }, property
87 { input : 'foreach', output : 'For Each $0 in ?\n\t\nNext' }, property
88 { input : 'for', output : 'For $0 to ? step ?\n\t\nNext' }, property
89 { input : 'do', output : 'Do While($0)\n\t\nLoop' }, property
90 { input : 'untilrs', output : 'do until rs.eof\n\t\nrs.movenext\nloop' }, property
92 { input : 'adorec', output : 'Set rs = Server.CreateObject("ADODB.Recordset")' }, property
93 { input : 'adocon', output : 'Set Conn = Server.CreateObject("ADODB.Connection")' }, property
94 { input : 'adostr', output : 'Set oStr = Server.CreateObject("ADODB.Stream")' }, property
96 …{ input : 'xmlhttp', output : 'Set xmlHttp = Server.CreateObject("Microsoft.XMLHTTP")\nxmlHttp.ope… property
97 …{ input : 'xmldoc', output : 'Set xmldoc = Server.CreateObject("Microsoft.XMLDOM")\nxmldoc.async=f… property
99 { input : 'func', output : 'Function $0()\n\t\n\nEnd Function'}, property
100 { input : 'sub', output : 'Sub $0()\n\t\nEnd Sub'} property
106 { input : '"', output : '"$0"' }, property
107 { input : '(', output : '\($0\)' }, property
108 { input : '[', output : '\[$0\]' }, property
109 { input : '{', output : '{\n\t$0\n}' } property
113 { input : '[space]', output : '&nbsp;' }, property
114 { input : '[enter]', output : '<br />' } , property
115 { input : '[j]', output : 'testing' }, property
116 { input : '[7]', output : '&amp;' } property