unageanu-jiji 1.1.4 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +24 -1
- data/README +0 -0
- data/base/shared_lib/moving_average.rb +34 -33
- data/base/shared_lib/system/cross.rb +76 -0
- data/base/shared_lib/system/position_manager.rb +160 -0
- data/base/shared_lib/system/signal.rb +347 -0
- data/html/css/datatable.css +4 -4
- data/html/css/default.css +57 -5
- data/html/css/treeview.css +205 -0
- data/html/img/bin_closed.png +0 -0
- data/html/img/bin_empty.png +0 -0
- data/html/img/button_add_small.gif +0 -0
- data/html/img/button_add_small_gray.gif +0 -0
- data/html/img/button_add_small_over.gif +0 -0
- data/html/img/button_mkcol.gif +0 -0
- data/html/img/button_mkcol_gray.gif +0 -0
- data/html/img/button_mkcol_over.gif +0 -0
- data/html/img/button_remove_small.gif +0 -0
- data/html/img/button_remove_small_gray.gif +0 -0
- data/html/img/button_remove_small_over.gif +0 -0
- data/html/img/button_rename.gif +0 -0
- data/html/img/button_rename_gray.gif +0 -0
- data/html/img/button_rename_over.gif +0 -0
- data/html/img/control_play.png +0 -0
- data/html/img/control_play_blue.png +0 -0
- data/html/img/folder.png +0 -0
- data/html/img/folder_brick.png +0 -0
- data/html/img/folder_user.png +0 -0
- data/html/{js/codepress/images → img}/line-numbers.png +0 -0
- data/html/img/page_white_ruby.png +0 -0
- data/html/img/sidebar_agent_edit.png +0 -0
- data/html/img/sidebar_agent_edit_over.png +0 -0
- data/html/img/sidebar_agent_edit_s.png +0 -0
- data/html/img/yui/treeview-sprite.gif +0 -0
- data/html/index.html +34 -18
- data/html/js/agent-editor/agent-editor-page.js +324 -0
- data/html/js/agent-editor/agent-editor.js +363 -0
- data/html/js/agent-editor/agent-list-tree.js +251 -0
- data/html/js/agent-selector.js +23 -28
- data/html/js/app.js +63 -91
- data/html/js/bt-create-page.js +25 -19
- data/html/js/container-min.js +1 -1
- data/html/js/container.js +944 -0
- data/html/js/edit_area/autocompletion.js +11 -13
- data/html/js/edit_area/edit_area.css +79 -40
- data/html/js/edit_area/edit_area.js +255 -226
- data/html/js/edit_area/edit_area_compressor.php +4 -4
- data/html/js/edit_area/edit_area_full.gz +0 -0
- data/html/js/edit_area/edit_area_full.js +31 -31
- data/html/js/edit_area/edit_area_full_with_plugins.gz +0 -0
- data/html/js/edit_area/edit_area_full_with_plugins.js +31 -31
- data/html/js/edit_area/edit_area_functions.js +448 -341
- data/html/js/edit_area/edit_area_loader.js +409 -397
- data/html/js/edit_area/elements_functions.js +120 -123
- data/html/js/edit_area/highlight.js +305 -197
- data/html/js/edit_area/images/goto.png +0 -0
- data/html/js/edit_area/images/help.png +0 -0
- data/html/js/edit_area/images/redo.png +0 -0
- data/html/js/edit_area/images/save.png +0 -0
- data/html/js/edit_area/images/search.png +0 -0
- data/html/js/edit_area/images/undo.png +0 -0
- data/html/js/edit_area/images/word_wrap.gif +0 -0
- data/html/js/edit_area/keyboard.js +5 -5
- data/html/js/edit_area/langs/bg.js +73 -0
- data/html/js/edit_area/langs/cs.js +2 -0
- data/html/js/edit_area/langs/de.js +2 -0
- data/html/js/edit_area/langs/dk.js +2 -0
- data/html/js/edit_area/langs/en.js +2 -0
- data/html/js/edit_area/langs/eo.js +2 -0
- data/html/js/edit_area/langs/es.js +2 -0
- data/html/js/edit_area/langs/fi.js +67 -0
- data/html/js/edit_area/langs/fr.js +2 -0
- data/html/js/edit_area/langs/hr.js +2 -0
- data/html/js/edit_area/langs/it.js +2 -0
- data/html/js/edit_area/langs/ja.js +2 -0
- data/html/js/edit_area/langs/mk.js +2 -0
- data/html/js/edit_area/langs/nl.js +2 -0
- data/html/js/edit_area/langs/pl.js +2 -0
- data/html/js/edit_area/langs/pt.js +2 -0
- data/html/js/edit_area/langs/ru.js +2 -0
- data/html/js/edit_area/langs/sk.js +2 -0
- data/html/js/edit_area/langs/zh.js +67 -0
- data/html/js/edit_area/manage_area.js +362 -205
- data/html/js/edit_area/plugins/charmap/langs/bg.js +12 -0
- data/html/js/edit_area/plugins/charmap/langs/zh.js +6 -0
- data/html/js/edit_area/plugins/test/langs/bg.js +10 -0
- data/html/js/edit_area/plugins/test/langs/zh.js +4 -0
- data/html/js/edit_area/reg_syntax/java.js +56 -0
- data/html/js/edit_area/reg_syntax/ruby.js +9 -9
- data/html/js/edit_area/reg_syntax.js +15 -13
- data/html/js/edit_area/regexp.js +36 -32
- data/html/js/edit_area/resize_area.js +43 -47
- data/html/js/edit_area/search_replace.js +29 -29
- data/html/js/edit_area/template.html +6 -4
- data/html/js/json-broker-client.js +23 -17
- data/html/js/result-page.js +107 -57
- data/html/js/rt-setting-page.js +38 -15
- data/html/js/sidebar.js +41 -27
- data/html/js/templates.js +167 -32
- data/html/js/utils.js +143 -7
- data/html/js/yui/treeview.js +3671 -0
- data/html/swf/chart.swf +0 -0
- data/html/test/agent_editor_spec.js +815 -0
- data/html/test/index.html +40 -0
- data/html/test/jsspec/JSSpec.css +224 -0
- data/html/test/jsspec/JSSpec.js +1549 -0
- data/html/test/jsspec/diff_match_patch.js +1 -0
- data/html/test/utils_spec.js +111 -0
- data/lib/jiji/agent/agent.rb +69 -12
- data/lib/jiji/agent/agent_manager.rb +18 -12
- data/lib/jiji/agent/agent_registry.rb +35 -121
- data/lib/jiji/collector.rb +16 -6
- data/lib/jiji/command.rb +46 -5
- data/lib/jiji/dao/file_system_dao.rb +158 -0
- data/lib/jiji/dao/timed_data_dao.rb +2 -0
- data/lib/jiji/dao/trade_result_dao.rb +1 -1
- data/lib/jiji/error.rb +24 -8
- data/lib/jiji/migration/migrator1_2_0.rb +67 -0
- data/lib/jiji/models.rb +82 -24
- data/lib/jiji/operator.rb +55 -51
- data/lib/jiji/output.rb +85 -29
- data/lib/jiji/output_manager.rb +84 -0
- data/lib/jiji/plugin/embedded/single_click_client.rb +2 -2
- data/lib/jiji/plugin/securities_plugin.rb +0 -1
- data/lib/jiji/process.rb +229 -208
- data/lib/jiji/process_manager.rb +190 -96
- data/lib/jiji/registry.rb +87 -19
- data/lib/jiji/server.rb +1 -0
- data/lib/jiji/service/agent_service.rb +147 -48
- data/lib/jiji/service/output_service.rb +37 -17
- data/lib/jiji/service/process_service.rb +3 -5
- data/lib/jiji/service/trade_result_service.rb +4 -5
- data/lib/jiji/util/file_lock.rb +4 -4
- data/lib/jiji/util/include_proxy.rb +17 -0
- data/lib/jiji/util/json_broker.rb +6 -4
- data/lib/jiji/util/util.rb +1 -1
- data/swf/chart/fx/chart/Chart.as +7 -0
- data/swf/chart/fx/chart/ui/graph/GraphManager.as +15 -2
- data/test/ProcessTest/agents/foo.rb +10 -0
- data/test/ProcessTest/conf/configuration.yaml +3 -0
- data/test/agent/agent_tests.rb +10 -0
- data/test/agent/test_AgentManager.rb +28 -12
- data/test/agent/test_AgentRegistry.rb +194 -99
- data/test/agent/test_PeriodicallyAgent.rb +1 -2
- data/test/agent/test_Permitter.rb +1 -2
- data/test/all_tests.rb +7 -19
- data/test/dao/dao_tests.rb +9 -0
- data/test/dao/test_FileSystemDao.rb +431 -0
- data/test/dao/test_RateDao.rb +5 -7
- data/test/dao/test_TradeResultDao.rb +1 -2
- data/test/migration/migration_tests.rb +10 -0
- data/test/migration/migrator1_2_0test_data/basic/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/migrator1_2_0test_data/basic/props.yaml +85 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/props.yaml +1 -0
- data/test/migration/migrator1_2_0test_data/no_outs/props.yaml +85 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/test_Migrator.rb +1 -1
- data/test/migration/test_Migrator1_0_3.rb +1 -1
- data/test/migration/test_Migrator1_1_0.rb +1 -1
- data/test/migration/test_Migrator1_2_0.rb +94 -0
- data/test/plugin/embedded/test_SingleClickClient.rb +1 -2
- data/test/plugin/plugin_tests.rb +8 -0
- data/test/plugin/test_Loader.rb +1 -1
- data/test/shared/rate.csv +144 -0
- data/test/shared/shared_tests.rb +9 -0
- data/test/shared/test_Cross.rb +144 -0
- data/test/shared/test_PositionManager.rb +285 -0
- data/test/shared/test_Signal.rb +65 -0
- data/test/test_Output.rb +28 -21
- data/test/test_OutputManager.rb +162 -0
- data/test/test_Output_registry.rb +6 -17
- data/test/test_Process.rb +434 -222
- data/test/test_ProcessManager.rb +458 -101
- data/test/test_utils.rb +71 -8
- data/test/util/test_BlockToSession.rb +1 -2
- data/test/util/test_CSV.rb +1 -2
- data/test/util/test_SynchronizeInterceptor.rb +1 -2
- data/test/util/util_tests.rb +9 -0
- metadata +127 -47
- data/html/js/agent-editor-page.js +0 -440
- data/html/js/codepress/codepress.css +0 -21
- data/html/js/codepress/codepress.html +0 -35
- data/html/js/codepress/codepress.js +0 -138
- data/html/js/codepress/engines/gecko.js +0 -293
- data/html/js/codepress/engines/khtml.js +0 -0
- data/html/js/codepress/engines/msie.js +0 -304
- data/html/js/codepress/engines/older.js +0 -0
- data/html/js/codepress/engines/opera.js +0 -260
- data/html/js/codepress/images/line-numbers.gif +0 -0
- data/html/js/codepress/index.html +0 -443
- data/html/js/codepress/languages/asp.css +0 -71
- data/html/js/codepress/languages/asp.js +0 -117
- data/html/js/codepress/languages/autoit.css +0 -13
- data/html/js/codepress/languages/autoit.js +0 -32
- data/html/js/codepress/languages/csharp.css +0 -9
- data/html/js/codepress/languages/csharp.js +0 -25
- data/html/js/codepress/languages/css.css +0 -10
- data/html/js/codepress/languages/css.js +0 -23
- data/html/js/codepress/languages/generic.css +0 -9
- data/html/js/codepress/languages/generic.js +0 -25
- data/html/js/codepress/languages/html.css +0 -13
- data/html/js/codepress/languages/html.js +0 -59
- data/html/js/codepress/languages/java.css +0 -7
- data/html/js/codepress/languages/java.js +0 -24
- data/html/js/codepress/languages/javascript.css +0 -8
- data/html/js/codepress/languages/javascript.js +0 -30
- data/html/js/codepress/languages/perl.css +0 -11
- data/html/js/codepress/languages/perl.js +0 -27
- data/html/js/codepress/languages/php.css +0 -12
- data/html/js/codepress/languages/php.js +0 -61
- data/html/js/codepress/languages/ruby.css +0 -10
- data/html/js/codepress/languages/ruby.js +0 -26
- data/html/js/codepress/languages/sql.css +0 -10
- data/html/js/codepress/languages/sql.js +0 -30
- data/html/js/codepress/languages/text.css +0 -5
- data/html/js/codepress/languages/text.js +0 -9
- data/html/js/codepress/languages/vbscript.css +0 -71
- data/html/js/codepress/languages/vbscript.js +0 -117
- data/html/js/codepress/languages/xsl.css +0 -15
- data/html/js/codepress/languages/xsl.js +0 -103
- data/html/js/codepress/license.txt +0 -458
- data/html/js/edit_area/images/Thumbs.db +0 -0
- data/test/plugin/test_gem/a/lib/jiji_plugin_test.rb +0 -6
@@ -1,117 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* CodePress regular expressions for ASP-vbscript syntax highlighting
|
3
|
-
*/
|
4
|
-
|
5
|
-
// ASP VBScript
|
6
|
-
Language.syntax = [
|
7
|
-
// all tags
|
8
|
-
{ input : /(<[^!%|!%@]*?>)/g, output : '<b>$1</b>' },
|
9
|
-
// style tags
|
10
|
-
{ input : /(<style.*?>)(.*?)(<\/style>)/g, output : '<em>$1</em><em>$2</em><em>$3</em>' },
|
11
|
-
// script tags
|
12
|
-
{ input : /(<script.*?>)(.*?)(<\/script>)/g, output : '<ins>$1</ins><ins>$2</ins><ins>$3</ins>' },
|
13
|
-
// strings "" and attributes
|
14
|
-
{ input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' },
|
15
|
-
// ASP Comment
|
16
|
-
{ input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<dfn>\'$1$2</dfn>'},
|
17
|
-
// <%.*
|
18
|
-
{ input : /(<%)/g, output : '<strong>$1' },
|
19
|
-
// .*%>
|
20
|
-
{ input : /(%>)/g, output : '$1</strong>' },
|
21
|
-
// <%@...%>
|
22
|
-
{ input : /(<%@)(.+?)(%>)/gi, output : '$1<span>$2</span>$3' },
|
23
|
-
//Numbers
|
24
|
-
{ input : /\b([\d]+)\b/g, output : '<var>$1</var>' },
|
25
|
-
// Reserved Words 1 (Blue)
|
26
|
-
{ input : /\b(And|As|ByRef|ByVal|Call|Case|Class|Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|False|For|Function)\b/gi, output : '<a>$1</a>' },
|
27
|
-
{ input : /\b(Get|GoTo|If|Imp|In|Is|Let|Loop|Me|Mod|Enum|New|Next|Not|Nothing|Null|On|Option|Or|Private|Public|ReDim|Rem)\b/gi, output : '<a>$1</a>' },
|
28
|
-
{ input : /\b(Resume|Select|Set|Stop|Sub|Then|To|True|Until|Wend|While|With|Xor|Execute|Randomize|Erase|ExecuteGlobal|Explicit|step)\b/gi, output : '<a>$1</a>' },
|
29
|
-
// Reserved Words 2 (Purple)
|
30
|
-
{ input : /\b(Abandon|Abs|AbsolutePage|AbsolutePosition|ActiveCommand|ActiveConnection|ActualSize|AddHeader|AddNew|AppendChunk)\b/gi, output : '<u>$1</u>' },
|
31
|
-
{ input : /\b(AppendToLog|Application|Array|Asc|Atn|Attributes|BeginTrans|BinaryRead|BinaryWrite|BOF|Bookmark|Boolean|Buffer|Byte)\b/gi, output : '<u>$1</u>' },
|
32
|
-
{ input : /\b(CacheControl|CacheSize|Cancel|CancelBatch|CancelUpdate|CBool|CByte|CCur|CDate|CDbl|Charset|Chr|CInt|Clear)\b/gi, output : '<u>$1</u>' },
|
33
|
-
{ input : /\b(ClientCertificate|CLng|Clone|Close|CodePage|CommandText|CommandType|CommandTimeout|CommitTrans|CompareBookmarks|ConnectionString|ConnectionTimeout)\b/gi, output : '<u>$1</u>' },
|
34
|
-
{ input : /\b(Contents|ContentType|Cookies|Cos|CreateObject|CreateParameter|CSng|CStr|CursorLocation|CursorType|DataMember|DataSource|Date|DateAdd|DateDiff)\b/gi, output : '<u>$1</u>' },
|
35
|
-
{ input : /\b(DatePart|DateSerial|DateValue|Day|DefaultDatabase|DefinedSize|Delete|Description|Double|EditMode|Eof|EOF|err|Error)\b/gi, output : '<u>$1</u>' },
|
36
|
-
{ input : /\b(Exp|Expires|ExpiresAbsolute|Filter|Find|Fix|Flush|Form|FormatCurrency|FormatDateTime|FormatNumber|FormatPercent)\b/gi, output : '<u>$1</u>' },
|
37
|
-
{ input : /\b(GetChunk|GetLastError|GetRows|GetString|Global|HelpContext|HelpFile|Hex|Hour|HTMLEncode|IgnoreCase|Index|InStr|InStrRev)\b/gi, output : '<u>$1</u>' },
|
38
|
-
{ input : /\b(Int|Integer|IsArray|IsClientConnected|IsDate|IsolationLevel|Join|LBound|LCase|LCID|Left|Len|Lock|LockType|Log|Long|LTrim)\b/gi, output : '<u>$1</u>' },
|
39
|
-
{ input : /\b(MapPath|MarshalOptions|MaxRecords|Mid|Minute|Mode|Month|MonthName|Move|MoveFirst|MoveLast|MoveNext|MovePrevious|Name|NextRecordset)\b/gi, output : '<u>$1</u>' },
|
40
|
-
{ input : /\b(Now|Number|NumericScale|ObjectContext|Oct|Open|OpenSchema|OriginalValue|PageCount|PageSize|Pattern|PICS|Precision|Prepared|Property)\b/gi, output : '<u>$1</u>' },
|
41
|
-
{ input : /\b(Provider|QueryString|RecordCount|Redirect|RegExp|Remove|RemoveAll|Replace|Requery|Request|Response|Resync|Right|Rnd)\b/gi, output : '<u>$1</u>' },
|
42
|
-
{ input : /\b(RollbackTrans|RTrim|Save|ScriptTimeout|Second|Seek|Server|ServerVariables|Session|SessionID|SetAbort|SetComplete|Sgn)\b/gi, output : '<u>$1</u>' },
|
43
|
-
{ input : /\b(Sin|Size|Sort|Source|Space|Split|Sqr|State|StaticObjects|Status|StayInSync|StrComp|String|StrReverse|Supports|Tan|Time)\b/gi, output : '<u>$1</u>' },
|
44
|
-
{ input : /\b(Timeout|Timer|TimeSerial|TimeValue|TotalBytes|Transfer|Trim|Type|Type|UBound|UCase|UnderlyingValue|UnLock|Update|UpdateBatch)\b/gi, output : '<u>$1</u>' },
|
45
|
-
{ input : /\b(URLEncode|Value|Value|Version|Weekday|WeekdayName|Write|Year)\b/gi, output : '<u>$1</u>' },
|
46
|
-
// Reserved Words 3 (Turquis)
|
47
|
-
{ input : /\b(vbBlack|vbRed|vbGreen|vbYellow|vbBlue|vbMagenta|vbCyan|vbWhite|vbBinaryCompare|vbTextCompare)\b/gi, output : '<i>$1</i>' },
|
48
|
-
{ input : /\b(vbSunday|vbMonday|vbTuesday|vbWednesday|vbThursday|vbFriday|vbSaturday|vbUseSystemDayOfWeek)\b/gi, output : '<i>$1</i>' },
|
49
|
-
{ input : /\b(vbFirstJan1|vbFirstFourDays|vbFirstFullWeek|vbGeneralDate|vbLongDate|vbShortDate|vbLongTime|vbShortTime)\b/gi, output : '<i>$1</i>' },
|
50
|
-
{ input : /\b(vbObjectError|vbCr|VbCrLf|vbFormFeed|vbLf|vbNewLine|vbNullChar|vbNullString|vbTab|vbVerticalTab|vbUseDefault|vbTrue)\b/gi, output : '<i>$1</i>' },
|
51
|
-
{ input : /\b(vbFalse|vbEmpty|vbNull|vbInteger|vbLong|vbSingle|vbDouble|vbCurrency|vbDate|vbString|vbObject|vbError|vbBoolean|vbVariant)\b/gi, output : '<i>$1</i>' },
|
52
|
-
{ input : /\b(vbDataObject|vbDecimal|vbByte|vbArray)\b/gi, output : '<i>$1</i>' },
|
53
|
-
// html comments
|
54
|
-
{ input : /(<!--.*?-->.)/g, output : '<big>$1</big>' }
|
55
|
-
]
|
56
|
-
|
57
|
-
Language.Functions = [
|
58
|
-
// Output at index 0, must be the desired tagname surrounding a $1
|
59
|
-
// Name is the index from the regex that marks the functionname
|
60
|
-
{input : /(function|sub)([ ]*?)(\w+)([ ]*?\()/gi , output : '<ins>$1</ins>', name : '$3'}
|
61
|
-
]
|
62
|
-
|
63
|
-
Language.snippets = [
|
64
|
-
//Conditional
|
65
|
-
{ input : 'if', output : 'If $0 Then\n\t\nEnd If' },
|
66
|
-
{ input : 'ifelse', output : 'If $0 Then\n\t\n\nElse\n\t\nEnd If' },
|
67
|
-
{ input : 'case', output : 'Select Case $0\n\tCase ?\n\tCase Else\nEnd Select'},
|
68
|
-
//Response
|
69
|
-
{ input : 'rw', output : 'Response.Write( $0 )' },
|
70
|
-
{ input : 'resc', output : 'Response.Cookies( $0 )' },
|
71
|
-
{ input : 'resb', output : 'Response.Buffer'},
|
72
|
-
{ input : 'resflu', output : 'Response.Flush()'},
|
73
|
-
{ input : 'resend', output : 'Response.End'},
|
74
|
-
//Request
|
75
|
-
{ input : 'reqc', output : 'Request.Cookies( $0 )' },
|
76
|
-
{ input : 'rq', output : 'Request.Querystring("$0")' },
|
77
|
-
{ input : 'rf', output : 'Request.Form("$0")' },
|
78
|
-
//FSO
|
79
|
-
{ input : 'fso', output : 'Set fso = Server.CreateObject("Scripting.FileSystemObject")\n$0' },
|
80
|
-
{ input : 'setfo', output : 'Set fo = fso.getFolder($0)' },
|
81
|
-
{ input : 'setfi', output : 'Set fi = fso.getFile($0)' },
|
82
|
-
{ input : 'twr', output : 'Set f = fso.CreateTextFile($0,true)\'overwrite\nf.WriteLine()\nf.Close'},
|
83
|
-
{ input : 'tre', output : 'Set f = fso.OpenTextFile($0, 1)\nf.ReadAll\nf.Close'},
|
84
|
-
//Server
|
85
|
-
{ input : 'mapp', output : 'Server.Mappath($0)' },
|
86
|
-
//Loops
|
87
|
-
{ input : 'foreach', output : 'For Each $0 in ?\n\t\nNext' },
|
88
|
-
{ input : 'for', output : 'For $0 to ? step ?\n\t\nNext' },
|
89
|
-
{ input : 'do', output : 'Do While($0)\n\t\nLoop' },
|
90
|
-
{ input : 'untilrs', output : 'do until rs.eof\n\t\nrs.movenext\nloop' },
|
91
|
-
//ADO
|
92
|
-
{ input : 'adorec', output : 'Set rs = Server.CreateObject("ADODB.Recordset")' },
|
93
|
-
{ input : 'adocon', output : 'Set Conn = Server.CreateObject("ADODB.Connection")' },
|
94
|
-
{ input : 'adostr', output : 'Set oStr = Server.CreateObject("ADODB.Stream")' },
|
95
|
-
//Http Request
|
96
|
-
{ input : 'xmlhttp', output : 'Set xmlHttp = Server.CreateObject("Microsoft.XMLHTTP")\nxmlHttp.open("GET", $0, false)\nxmlHttp.send()\n?=xmlHttp.responseText' },
|
97
|
-
{ input : 'xmldoc', output : 'Set xmldoc = Server.CreateObject("Microsoft.XMLDOM")\nxmldoc.async=false\nxmldoc.load(request)'},
|
98
|
-
//Functions
|
99
|
-
{ input : 'func', output : 'Function $0()\n\t\n\nEnd Function'},
|
100
|
-
{ input : 'sub', output : 'Sub $0()\n\t\nEnd Sub'}
|
101
|
-
|
102
|
-
]
|
103
|
-
|
104
|
-
Language.complete = [
|
105
|
-
//{ input : '\'', output : '\'$0\'' },
|
106
|
-
{ input : '"', output : '"$0"' },
|
107
|
-
{ input : '(', output : '\($0\)' },
|
108
|
-
{ input : '[', output : '\[$0\]' },
|
109
|
-
{ input : '{', output : '{\n\t$0\n}' }
|
110
|
-
]
|
111
|
-
|
112
|
-
Language.shortcuts = [
|
113
|
-
{ input : '[space]', output : ' ' },
|
114
|
-
{ input : '[enter]', output : '<br />' } ,
|
115
|
-
{ input : '[j]', output : 'testing' },
|
116
|
-
{ input : '[7]', output : '&' }
|
117
|
-
]
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* CodePress color styles for HTML syntax highlighting
|
3
|
-
* By RJ Bruneel
|
4
|
-
*/
|
5
|
-
|
6
|
-
b {color:#000080;} /* tags */
|
7
|
-
ins, ins b, ins s, ins em {color:gray;} /* comments */
|
8
|
-
s, s b {color:#7777e4;} /* attribute values */
|
9
|
-
a {color:#E67300;} /* links */
|
10
|
-
u {color:#CC66CC;} /* forms */
|
11
|
-
big {color:#db0000;} /* images */
|
12
|
-
em, em b {color:#800080;} /* style */
|
13
|
-
strong {color:#800000;} /* script */
|
14
|
-
tt i {color:darkblue;font-weight:bold;} /* script reserved words */
|
15
|
-
xsl {color:green;} /* xsl */
|
@@ -1,103 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* CodePress regular expressions for XSL syntax highlighting
|
3
|
-
* By RJ Bruneel
|
4
|
-
*/
|
5
|
-
|
6
|
-
Language.syntax = [ // XSL
|
7
|
-
{
|
8
|
-
input : /(<[^!]*?>)/g,
|
9
|
-
output : '<b>$1</b>' // all tags
|
10
|
-
},{
|
11
|
-
input : /(<a.*?>|<\/a>)/g,
|
12
|
-
output : '<a>$1</a>' // links
|
13
|
-
},{
|
14
|
-
input : /(<img .*?>)/g,
|
15
|
-
output : '<big>$1</big>' // images
|
16
|
-
},{
|
17
|
-
input : /(<\/?(button|textarea|form|input|select|option|label).*?>)/g,
|
18
|
-
output : '<u>$1</u>' // forms
|
19
|
-
},{
|
20
|
-
input : /(<style.*?>)(.*?)(<\/style>)/g,
|
21
|
-
output : '<em>$1</em><em>$2</em><em>$3</em>' // style tags
|
22
|
-
},{
|
23
|
-
input : /(<script.*?>)(.*?)(<\/script>)/g,
|
24
|
-
output : '<strong>$1</strong><tt>$2</tt><strong>$3</strong>' // script tags
|
25
|
-
},{
|
26
|
-
input : /(<xsl.*?>|<\/xsl.*?>)/g,
|
27
|
-
output : '<xsl>$1</xsl>' // xsl
|
28
|
-
},{
|
29
|
-
input : /=(".*?")/g,
|
30
|
-
output : '=<s>$1</s>' // atributes double quote
|
31
|
-
},{
|
32
|
-
input : /=('.*?')/g,
|
33
|
-
output : '=<s>$1</s>' // atributes single quote
|
34
|
-
},{
|
35
|
-
input : /(<!--.*?-->.)/g,
|
36
|
-
output : '<ins>$1</ins>' // comments
|
37
|
-
},{
|
38
|
-
input : /\b(alert|window|document|break|continue|do|for|new|this|void|case|default|else|function|return|typeof|while|if|label|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g,
|
39
|
-
output : '<i>$1</i>' // script reserved words
|
40
|
-
}
|
41
|
-
];
|
42
|
-
|
43
|
-
Language.snippets = [
|
44
|
-
{input : 'aref', output : '<a href="$0"></a>' },
|
45
|
-
{input : 'h1', output : '<h1>$0</h1>' },
|
46
|
-
{input : 'h2', output : '<h2>$0</h2>' },
|
47
|
-
{input : 'h3', output : '<h3>$0</h3>' },
|
48
|
-
{input : 'h4', output : '<h4>$0</h4>' },
|
49
|
-
{input : 'h5', output : '<h5>$0</h5>' },
|
50
|
-
{input : 'h6', output : '<h6>$0</h6>' },
|
51
|
-
{input : 'html', output : '<html>\n\t$0\n</html>' },
|
52
|
-
{input : 'head', output : '<head>\n\t<meta http-equiv="content-type" content="text/html; charset=utf-8" />\n\t<title>$0</title>\n\t\n</head>' },
|
53
|
-
{input : 'img', output : '<img src="$0" width="" height="" alt="" border="0" />' },
|
54
|
-
{input : 'input', output : '<input name="$0" id="" type="" value="" />' },
|
55
|
-
{input : 'label', output : '<label for="$0"></label>' },
|
56
|
-
{input : 'legend', output : '<legend>\n\t$0\n</legend>' },
|
57
|
-
{input : 'link', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
|
58
|
-
{input : 'base', output : '<base href="$0" />' },
|
59
|
-
{input : 'body', output : '<body>\n\t$0\n</body>' },
|
60
|
-
{input : 'css', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
|
61
|
-
{input : 'div', output : '<div>\n\t$0\n</div>' },
|
62
|
-
{input : 'divid', output : '<div id="$0">\n\t\n</div>' },
|
63
|
-
{input : 'dl', output : '<dl>\n\t<dt>\n\t\t$0\n\t</dt>\n\t<dd></dd>\n</dl>' },
|
64
|
-
{input : 'fieldset', output : '<fieldset>\n\t$0\n</fieldset>' },
|
65
|
-
{input : 'form', output : '<form action="$0" method="" name="">\n\t\n</form>' },
|
66
|
-
{input : 'meta', output : '<meta name="$0" content="" />' },
|
67
|
-
{input : 'p', output : '<p>$0</p>' },
|
68
|
-
{input : 'b', output : '<b>$0</b>' },
|
69
|
-
{input : 'li', output : '<li>$0</li>' },
|
70
|
-
{input : 'ul', output : '<ul>$0</ul>' },
|
71
|
-
{input : 'ol', output : '<ol>$0</ol>' },
|
72
|
-
{input : 'strong', output : '<strong>$0</strong>' },
|
73
|
-
{input : 'br', output : '<br />' },
|
74
|
-
{input : 'script', output : '<script type="text/javascript" language="javascript" charset="utf-8">\n\t$0\t\n</script>' },
|
75
|
-
{input : 'scriptsrc', output : '<script src="$0" type="text/javascript" language="javascript" charset="utf-8"></script>' },
|
76
|
-
{input : 'span', output : '<span>$0</span>' },
|
77
|
-
{input : 'table', output : '<table border="$0" cellspacing="" cellpadding="">\n\t<tr><th></th></tr>\n\t<tr><td></td></tr>\n</table>' },
|
78
|
-
{input : 'style', output : '<style type="text/css" media="screen">\n\t$0\n</style>' },
|
79
|
-
{input : 'xsl:stylesheet', output : '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">' },
|
80
|
-
{input : 'xsl:template', output : '<xsl:template>$0</xsl:template>' },
|
81
|
-
{input : 'xsl:for-each', output : '<xsl:for-each select="$0"></xsl:for-each>' },
|
82
|
-
{input : 'xsl:choose', output : '<xsl:choose>$0<\xsl:choose>' },
|
83
|
-
{input : 'xsl:param', output : '<xsl:param name="$0" />' },
|
84
|
-
{input : 'xsl:variable', output : '<xsl:variable name="$0"></xsl:variable>' },
|
85
|
-
{input : 'xsl:if', output : '<xsl:if test="$0"></xsl:if>' },
|
86
|
-
{input : 'xsl:when', output : '<xsl:when test="$0"></xsl:when>' },
|
87
|
-
{input : 'xsl:otherwise', output : '<xsl:otherwise>$0</xsl:otherwise>' },
|
88
|
-
{input : 'xsl:attribute', output : '<xsl:attribute name="$0"></xsl:attribute>' },
|
89
|
-
{input : 'xsl:value-of', output : '<xsl:value-of select="$0"/>' },
|
90
|
-
{input : 'xsl:with-param', output : '<xsl:with-param name="$0" select="" />' },
|
91
|
-
{input : 'xsl:call-template', output : '<xsl:call-template name="$0">' }
|
92
|
-
|
93
|
-
];
|
94
|
-
|
95
|
-
Language.complete = [ // Auto complete only for 1 character
|
96
|
-
{input : '\'',output : '\'$0\'' },
|
97
|
-
{input : '"', output : '"$0"' },
|
98
|
-
{input : '(', output : '\($0\)' },
|
99
|
-
{input : '[', output : '\[$0\]' },
|
100
|
-
{input : '{', output : '{\n\t$0\n}' }
|
101
|
-
];
|
102
|
-
|
103
|
-
Language.shortcuts = [];
|