File manager - Edit - /home/opticamezl/www/newok/asn.1.tar
Back
asn.1.min.js 0000644 00000010201 15175267155 0006614 0 ustar 00 (function(u){typeof exports=="object"&&typeof module=="object"?u(require("../../lib/codemirror")):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],u):u(CodeMirror)})(function(u){"use strict";u.defineMode("asn.1",function(a,r){var S=a.indentUnit,T=r.keywords||{},p=r.cmipVerbs||{},O=r.compareTypes||{},N=r.status||{},m=r.tags||{},C=r.storage||{},y=r.modifier||{},R=r.accessTypes||{},D=r.multiLineStrings,L=r.indentStatements!==!1,A=/[\|\^]/,o;function g(e,n){var t=e.next();if(t=='"'||t=="'")return n.tokenize=M(t),n.tokenize(e,n);if(/[\[\]\(\){}:=,;]/.test(t))return o=t,"punctuation";if(t=="-"&&e.eat("-"))return e.skipToEnd(),"comment";if(/\d/.test(t))return e.eatWhile(/[\w\.]/),"number";if(A.test(t))return e.eatWhile(A),"operator";e.eatWhile(/[\w\-]/);var i=e.current();return T.propertyIsEnumerable(i)?"keyword":p.propertyIsEnumerable(i)?"variable cmipVerbs":O.propertyIsEnumerable(i)?"atom compareTypes":N.propertyIsEnumerable(i)?"comment status":m.propertyIsEnumerable(i)?"variable-3 tags":C.propertyIsEnumerable(i)?"builtin storage":y.propertyIsEnumerable(i)?"string-2 modifier":R.propertyIsEnumerable(i)?"atom accessTypes":"variable"}function M(e){return function(n,t){for(var i=!1,c,d=!1;(c=n.next())!=null;){if(c==e&&!i){var I=n.peek();I&&(I=I.toLowerCase(),(I=="b"||I=="h"||I=="o")&&n.next()),d=!0;break}i=!i&&c=="\\"}return(d||!(i||D))&&(t.tokenize=null),"string"}}function f(e,n,t,i,c){this.indented=e,this.column=n,this.type=t,this.align=i,this.prev=c}function s(e,n,t){var i=e.indented;return e.context&&e.context.type=="statement"&&(i=e.context.indented),e.context=new f(i,n,t,null,e.context)}function l(e){var n=e.context.type;return(n==")"||n=="]"||n=="}")&&(e.indented=e.context.indented),e.context=e.context.prev}return{startState:function(e){return{tokenize:null,context:new f((e||0)-S,0,"top",!1),indented:0,startOfLine:!0}},token:function(e,n){var t=n.context;if(e.sol()&&(t.align==null&&(t.align=!1),n.indented=e.indentation(),n.startOfLine=!0),e.eatSpace())return null;o=null;var i=(n.tokenize||g)(e,n);if(i=="comment")return i;if(t.align==null&&(t.align=!0),(o==";"||o==":"||o==",")&&t.type=="statement")l(n);else if(o=="{")s(n,e.column(),"}");else if(o=="[")s(n,e.column(),"]");else if(o=="(")s(n,e.column(),")");else if(o=="}"){for(;t.type=="statement";)t=l(n);for(t.type=="}"&&(t=l(n));t.type=="statement";)t=l(n)}else o==t.type?l(n):L&&((t.type=="}"||t.type=="top")&&o!=";"||t.type=="statement"&&o=="newstatement")&&s(n,e.column(),"statement");return n.startOfLine=!1,i},electricChars:"{}",lineComment:"--",fold:"brace"}});function E(a){for(var r={},S=a.split(" "),T=0;T<S.length;++T)r[S[T]]=!0;return r}u.defineMIME("text/x-ttcn-asn",{name:"asn.1",keywords:E("DEFINITIONS OBJECTS IF DERIVED INFORMATION ACTION REPLY ANY NAMED CHARACTERIZED BEHAVIOUR REGISTERED WITH AS IDENTIFIED CONSTRAINED BY PRESENT BEGIN IMPORTS FROM UNITS SYNTAX MIN-ACCESS MAX-ACCESS MINACCESS MAXACCESS REVISION STATUS DESCRIPTION SEQUENCE SET COMPONENTS OF CHOICE DistinguishedName ENUMERATED SIZE MODULE END INDEX AUGMENTS EXTENSIBILITY IMPLIED EXPORTS"),cmipVerbs:E("ACTIONS ADD GET NOTIFICATIONS REPLACE REMOVE"),compareTypes:E("OPTIONAL DEFAULT MANAGED MODULE-TYPE MODULE_IDENTITY MODULE-COMPLIANCE OBJECT-TYPE OBJECT-IDENTITY OBJECT-COMPLIANCE MODE CONFIRMED CONDITIONAL SUBORDINATE SUPERIOR CLASS TRUE FALSE NULL TEXTUAL-CONVENTION"),status:E("current deprecated mandatory obsolete"),tags:E("APPLICATION AUTOMATIC EXPLICIT IMPLICIT PRIVATE TAGS UNIVERSAL"),storage:E("BOOLEAN INTEGER OBJECT IDENTIFIER BIT OCTET STRING UTCTime InterfaceIndex IANAifType CMIP-Attribute REAL PACKAGE PACKAGES IpAddress PhysAddress NetworkAddress BITS BMPString TimeStamp TimeTicks TruthValue RowStatus DisplayString GeneralString GraphicString IA5String NumericString PrintableString SnmpAdminString TeletexString UTF8String VideotexString VisibleString StringStore ISO646String T61String UniversalString Unsigned32 Integer32 Gauge Gauge32 Counter Counter32 Counter64"),modifier:E("ATTRIBUTE ATTRIBUTES MANDATORY-GROUP MANDATORY-GROUPS GROUP GROUPS ELEMENTS EQUALITY ORDERING SUBSTRINGS DEFINED"),accessTypes:E("not-accessible accessible-for-notify read-only read-create read-write"),multiLineStrings:!0})}); asn.1.js 0000644 00000017072 15175267155 0006047 0 ustar 00 // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/5/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { "use strict"; CodeMirror.defineMode("asn.1", function(config, parserConfig) { var indentUnit = config.indentUnit, keywords = parserConfig.keywords || {}, cmipVerbs = parserConfig.cmipVerbs || {}, compareTypes = parserConfig.compareTypes || {}, status = parserConfig.status || {}, tags = parserConfig.tags || {}, storage = parserConfig.storage || {}, modifier = parserConfig.modifier || {}, accessTypes = parserConfig.accessTypes|| {}, multiLineStrings = parserConfig.multiLineStrings, indentStatements = parserConfig.indentStatements !== false; var isOperatorChar = /[\|\^]/; var curPunc; function tokenBase(stream, state) { var ch = stream.next(); if (ch == '"' || ch == "'") { state.tokenize = tokenString(ch); return state.tokenize(stream, state); } if (/[\[\]\(\){}:=,;]/.test(ch)) { curPunc = ch; return "punctuation"; } if (ch == "-"){ if (stream.eat("-")) { stream.skipToEnd(); return "comment"; } } if (/\d/.test(ch)) { stream.eatWhile(/[\w\.]/); return "number"; } if (isOperatorChar.test(ch)) { stream.eatWhile(isOperatorChar); return "operator"; } stream.eatWhile(/[\w\-]/); var cur = stream.current(); if (keywords.propertyIsEnumerable(cur)) return "keyword"; if (cmipVerbs.propertyIsEnumerable(cur)) return "variable cmipVerbs"; if (compareTypes.propertyIsEnumerable(cur)) return "atom compareTypes"; if (status.propertyIsEnumerable(cur)) return "comment status"; if (tags.propertyIsEnumerable(cur)) return "variable-3 tags"; if (storage.propertyIsEnumerable(cur)) return "builtin storage"; if (modifier.propertyIsEnumerable(cur)) return "string-2 modifier"; if (accessTypes.propertyIsEnumerable(cur)) return "atom accessTypes"; return "variable"; } function tokenString(quote) { return function(stream, state) { var escaped = false, next, end = false; while ((next = stream.next()) != null) { if (next == quote && !escaped){ var afterNext = stream.peek(); //look if the character if the quote is like the B in '10100010'B if (afterNext){ afterNext = afterNext.toLowerCase(); if(afterNext == "b" || afterNext == "h" || afterNext == "o") stream.next(); } end = true; break; } escaped = !escaped && next == "\\"; } if (end || !(escaped || multiLineStrings)) state.tokenize = null; return "string"; }; } function Context(indented, column, type, align, prev) { this.indented = indented; this.column = column; this.type = type; this.align = align; this.prev = prev; } function pushContext(state, col, type) { var indent = state.indented; if (state.context && state.context.type == "statement") indent = state.context.indented; return state.context = new Context(indent, col, type, null, state.context); } function popContext(state) { var t = state.context.type; if (t == ")" || t == "]" || t == "}") state.indented = state.context.indented; return state.context = state.context.prev; } //Interface return { startState: function(basecolumn) { return { tokenize: null, context: new Context((basecolumn || 0) - indentUnit, 0, "top", false), indented: 0, startOfLine: true }; }, token: function(stream, state) { var ctx = state.context; if (stream.sol()) { if (ctx.align == null) ctx.align = false; state.indented = stream.indentation(); state.startOfLine = true; } if (stream.eatSpace()) return null; curPunc = null; var style = (state.tokenize || tokenBase)(stream, state); if (style == "comment") return style; if (ctx.align == null) ctx.align = true; if ((curPunc == ";" || curPunc == ":" || curPunc == ",") && ctx.type == "statement"){ popContext(state); } else if (curPunc == "{") pushContext(state, stream.column(), "}"); else if (curPunc == "[") pushContext(state, stream.column(), "]"); else if (curPunc == "(") pushContext(state, stream.column(), ")"); else if (curPunc == "}") { while (ctx.type == "statement") ctx = popContext(state); if (ctx.type == "}") ctx = popContext(state); while (ctx.type == "statement") ctx = popContext(state); } else if (curPunc == ctx.type) popContext(state); else if (indentStatements && (((ctx.type == "}" || ctx.type == "top") && curPunc != ';') || (ctx.type == "statement" && curPunc == "newstatement"))) pushContext(state, stream.column(), "statement"); state.startOfLine = false; return style; }, electricChars: "{}", lineComment: "--", fold: "brace" }; }); function words(str) { var obj = {}, words = str.split(" "); for (var i = 0; i < words.length; ++i) obj[words[i]] = true; return obj; } CodeMirror.defineMIME("text/x-ttcn-asn", { name: "asn.1", keywords: words("DEFINITIONS OBJECTS IF DERIVED INFORMATION ACTION" + " REPLY ANY NAMED CHARACTERIZED BEHAVIOUR REGISTERED" + " WITH AS IDENTIFIED CONSTRAINED BY PRESENT BEGIN" + " IMPORTS FROM UNITS SYNTAX MIN-ACCESS MAX-ACCESS" + " MINACCESS MAXACCESS REVISION STATUS DESCRIPTION" + " SEQUENCE SET COMPONENTS OF CHOICE DistinguishedName" + " ENUMERATED SIZE MODULE END INDEX AUGMENTS EXTENSIBILITY" + " IMPLIED EXPORTS"), cmipVerbs: words("ACTIONS ADD GET NOTIFICATIONS REPLACE REMOVE"), compareTypes: words("OPTIONAL DEFAULT MANAGED MODULE-TYPE MODULE_IDENTITY" + " MODULE-COMPLIANCE OBJECT-TYPE OBJECT-IDENTITY" + " OBJECT-COMPLIANCE MODE CONFIRMED CONDITIONAL" + " SUBORDINATE SUPERIOR CLASS TRUE FALSE NULL" + " TEXTUAL-CONVENTION"), status: words("current deprecated mandatory obsolete"), tags: words("APPLICATION AUTOMATIC EXPLICIT IMPLICIT PRIVATE TAGS" + " UNIVERSAL"), storage: words("BOOLEAN INTEGER OBJECT IDENTIFIER BIT OCTET STRING" + " UTCTime InterfaceIndex IANAifType CMIP-Attribute" + " REAL PACKAGE PACKAGES IpAddress PhysAddress" + " NetworkAddress BITS BMPString TimeStamp TimeTicks" + " TruthValue RowStatus DisplayString GeneralString" + " GraphicString IA5String NumericString" + " PrintableString SnmpAdminString TeletexString" + " UTF8String VideotexString VisibleString StringStore" + " ISO646String T61String UniversalString Unsigned32" + " Integer32 Gauge Gauge32 Counter Counter32 Counter64"), modifier: words("ATTRIBUTE ATTRIBUTES MANDATORY-GROUP MANDATORY-GROUPS" + " GROUP GROUPS ELEMENTS EQUALITY ORDERING SUBSTRINGS" + " DEFINED"), accessTypes: words("not-accessible accessible-for-notify read-only" + " read-create read-write"), multiLineStrings: true }); }); asn.1.min.js.gz 0000644 00000004057 15175267155 0007247 0 ustar 00 � �ks۸�{�1G�vr�t�b24+h%RGB>�l�C����U��J���%�y�aw���7W������+�կ^� �J���?<�вڛu�U9?\|�l�[ �m�'�{������Z(U(�Ш�JH#�=-����:�Ԁ����9U�_d|^S��ǖê��J��+��6/2nä��tz��Qh�%Q Ɖ+dƥ^J�����_�����v�l�rӵ�\ru�PBC)֛Dq��� 1��-u��]c���A���P���W��u����&DX�I��<(��*�b&$���tfX���:�|ͥ.�����n�uw���K�`sG6~j�]�_���bek��w�����Hq]) ���'.�8��9��cOnnon�n�[�ݏ�3�;q5/��Q���ځcA��n߃ChY�剶����-�ĆDf6r`Z��W���m���Z��"�Ɣ�[��9PV�{�j!�'r`��*х�㷪�w'hlB%0w�J).M�Z5��(#�_iId��*�Ϲ-�'��m~��%Q� ��%8 ̞�b ����s�AM����~ �>��1�}%r-$hk�^�[�:|���O�;�x8� ���z�6G�6�}�JG��Pv�����:���˶�� �*��h+Vv�1���hڀb�n8�јZ�M1uu1+����ȱ)���v�|l�"�굛�N��'O{�²R���-�7���n7��n7AȲl}�*cr�`���Օi0G;�I�V?��ms�a��xZ��Zb�`f�b�I.$ �Q�N��Fq�)�N�o�����hӜ-بǰ��,���S����%+[�n?W�`NnRjL����Zsl�1Dp�3�]{�M�m~��r�5�hs�-u���9�k�/�m��Qmy+?j\��nw���s�@]l�38CN���ԩ5�+3�G��ީ��r��3�L*�En7�䰮�#�<$��n�z�����i<85A�7I��~�՝P4 ��}����g������������;E�]`�p�3�=����m��</9�ZrQi�:{���'`�f����� ��-zò���Ǭ1Ҹ��0�{S����Ծ~����dh��e�Ǫv�15�,�4q�n��%>��e����r�����3G���ԬD�c����&�#8BgU��ޫ$�p�G����a�*��;f_*7��69����c7��A?���!u߰�;3#[�Ծ_����t���P�T�RBg+�5uKZ��� '���0�Ax���0!�$@��0�{�x~}Dd1�^p oN&���E��HD� pN>{�4\F "S3� ���������j�� f�G#s �I��9�� �"�X.�p�e1���]�9 ���8s�ip �PD.il썙ǖ1��؏�v!&�-I��p�����R���(���(y$kH����cdb��p��@� ��r:���+F����e�Ɨ�q�\�>A�����x� ���������yxI����b���!o&��[��{�7%�ּ!�^t����>����3�84�o�[��n�#�y8!&�4�7���xyFx��x� #�ϼ8,Zp��b��l�bKo6����<9͆e<kD���i�y։��j� ���ȹ�9f˪�X�ڸo�BS�������5i0�"���:�McS[�$��Y�t��]�a8#^ h�ȔDm��s�@�3�@�"L���L�9�Rs�JRNe�_ �O�L��?�������� "�,<��ޔtg���2��,_��~.�S����8�/�-���d��!&ҧ0U���$�8��縎�)�M���bS.�J�S��Q�-F���P`�ʞ�PBj�E�x,�/[ٙ�MV^Zl�.�ւ�"����R��HK}ĺP�8����N�dzN�_�*{s���g�����{0M��~x��2�����9�]�c=_2z�L�`�0�N�p�x�Ǡ!�����[zu߇����ԴDS#f]���s��d�� Ʉ��PCYh�z�'ٰ�y��'�7�u3��Ck�%�G�k�$��
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0 |
proxy
|
phpinfo
|
Settings