data/dictionary.xml
author František Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2013 22:10:49 +0200
changeset 141 2ff0e26ef393
parent 140 ec30dfd1bad4
child 143 4f9200e6c120
permissions -rw-r--r--
data: EC/ECC
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 Free Telco Dictionary
     4 Copyright © 2013 František Kučera (frantovo.cz)
     5 
     6 Permission is granted to copy, distribute and/or modify this document
     7 under the terms of the GNU Free Documentation License, Version 1.3
     8 or any later version published by the Free Software Foundation;
     9 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
    10 A copy of the license is included in the section entitled "GNU
    11 Free Documentation License".
    12 
    13 You should have received a copy of the GNU Free Documentation License
    14 along with this program.  If not, see <http://www.gnu.org/licenses/>.
    15 -->
    16 <dictionary xmlns="https://telco.frantovo.cz/xmlns/dictionary">
    17 
    18 	<tags>
    19 		<tag id="acision" name="Acision" description="comes from Acision or is specific for this company"/>
    20 		<tag id="ericsson" name="Ericsson" description="comes from Ericsson or is specific for this company"/>
    21 		<tag id="nsn" name="Nokia Siemens Networks" description="comes from Nokia Siemens Networks or is specific for this company"/>
    22 		
    23 		<tag id="charging" name="Charging" description="charging, billing"/>
    24 		<tag id="messaging" name="Messaging" description="sending messages, receiving messages (SMS, MMS etc.)"/>
    25 		
    26 		<tag id="computer" name="Computer" description="general IS/ICT term"/>
    27 		<tag id="general" name="General" description="general term"/>
    28 		<tag id="finance" name="Finance" description="financial term"/>
    29 		
    30 		<tag id="java" name="Java" description="Java and other JVM languages"/>
    31 		<tag id="xml" name="XML" description="eXtensible Markup Language"/>
    32 		<tag id="security" name="Security" description="security and cryptography"/>
    33 		<tag id="protocol" name="Protocol" description="communication protocol"/>
    34 	</tags>
    35 
    36 	<concept>
    37 		<term abbreviation="MVNO" completeForm="mobile virtual network operator" language="en"/>
    38 		<term abbreviation="MOLO" completeForm="mobile other licensed operator" language="en"/><!-- in the United Kingdom -->
    39 		<explanation language="en"><text>a provider which does not have own wireless network infrastructure; but does marketing and sets the prices for subscribers</text></explanation>
    40 	</concept>
    41 	<concept>
    42 		<term abbreviation="MVNE" completeForm="mobile virtual network enabler" language="en"/>
    43 		<explanation language="en"><text>a company that provides technical services to MVNO thus MVNO can focus on marketing, pricing, brand and customer care</text></explanation>
    44 	</concept>
    45 	<concept>
    46 		<term abbreviation="" completeForm="hot billing" language="en"/>
    47 		<term abbreviation="" completeForm="late billing" language="en"/>
    48 		<term abbreviation="" completeForm="latebiller" language="en"/>
    49 		<explanation language="en">
    50 			<text>
    51 				a technique used in charging;
    52 				for pre-paid subscribers the standard way to charge services is online
    53 				– subscriber's balance is checked in the billing system and if sufficient, the service (e.g. sending a SMS) is provided, otherwise the service is denied;
    54 				if the billing system is not currently available (so we can't say if the subscriber's balance is high enough), we can provide the service anyway and try to charge it later;
    55 				this feature requires saving state (transactions which weren't charged yet) in some persitent storage (CDR files, SQL database etc.)
    56 				and can be done at the billing gateway or directly at system like SMSC
    57 			</text>
    58 		</explanation>
    59 		<tag>charging</tag>
    60 	</concept>
    61 	<concept>
    62 		<term abbreviation="SMS" completeForm="short message service" language="en"/>
    63 		<explanation language="en">
    64 			<text>
    65 				a service or particular short text message sent from or to a mobile phone;
    66 				length of the content in one message is 140 bytes (octets), the number of characters depends on encoding, if 7-bit one is used, it is well known 160 characters;
    67 				the number „160“ is iconic for SMS
    68 			</text>
    69 		</explanation>
    70 		<tag>messaging</tag>
    71 	</concept>
    72 	<concept>
    73 		<term abbreviation="" completeForm="octet" language="en"/>
    74 		<term abbreviation="" completeForm="byte" language="en"/>
    75 		<explanation language="en">
    76 			<text>
    77 				a unit of digital information;
    78 				byte (almost always) consists of 8 bits, which means 256 possible values (2^8);
    79 				octet is a synonym for 8-bit byte which accents that we really mean the 8-bit byte (and not e.g. the 7-bit one)
    80 			</text>
    81 		</explanation>
    82 		<tag>computer</tag>
    83 	</concept>
    84 	<concept>
    85 		<term abbreviation="MMS" completeForm="multimedia messaging service" language="en"/>
    86 		<explanation language="en">
    87 			<text>
    88 				a service or particular multimedia message sent from or to a mobile phone;
    89 				in contrast to SMS, supports not only text but also pictures, videos, sounds…
    90 				thus subscriber can take a photo by his mobile phone and easily send it to a friend;
    91 				other use case is AOMT messaging e.g. news with pictures or some premium content;
    92 				MMS requires special infrastructure including MMSC deployed by the operator
    93 			</text>
    94 		</explanation>
    95 		<tag>messaging</tag>
    96 	</concept>
    97 	<concept>
    98 		<term abbreviation="DMS" completeForm="donors message service" language="en"/>
    99 		<term abbreviation="DMS" completeForm="dárcovská SMS" language="cs"/>
   100 		<explanation language="en">
   101 			<text>
   102 				specific kind of MOAT short message which is used to donate money to charity or some organization;
   103 				the donation is charged from sender's pre-paid balance or in his monthly bill alongside the fees for placed calls and sent SMS
   104 			</text>
   105 		</explanation>
   106 		<tag>messaging</tag>
   107 	</concept>
   108 	<concept>
   109 		<term abbreviation="EMS" completeForm="enhanced messaging service" language="en"/>
   110 		<explanation language="en">
   111 			<text>
   112 				an application-level extension to SMS;
   113 				adds some new features like formatted text, pictures or sounds
   114 				but works with existing networks (unlike MMS which requires new infrastructure)
   115 			</text>
   116 		</explanation>
   117 		<tag>messaging</tag>
   118 	</concept>
   119 	<concept>
   120 		<term abbreviation="SMIL" completeForm="synchronized multimedia integration language" language="en"/>
   121 		<explanation language="en">
   122 			<text>
   123 				a markup language for describing multimedia presentations;
   124 				describes timing, layout, animations etc.
   125 			</text>
   126 		</explanation>
   127 		<tag>computer</tag>
   128 		<tag>xml</tag>
   129 	</concept>
   130 	<concept>
   131 		<term abbreviation="SVG" completeForm="scalable vector graphics" language="en"/>
   132 		<explanation language="en"><text>an XML-based file format for vector graphics</text></explanation>
   133 		<tag>computer</tag>
   134 		<tag>xml</tag>
   135 	</concept>
   136 	<concept>
   137 		<term abbreviation="IM" completeForm="instant messaging" language="en"/>
   138 		<term abbreviation="OTT" completeForm="over the top" language="en"/>
   139 		<explanation language="en">
   140 			<text>
   141 				a kind of electronic communication between two persons or a group chat;
   142 				compared to e-mail, IM messages are short (few words, sentence) and the other side is expected (depending on his/her online status) to read and respond it immediately;
   143 				compared to SMS, IM messages are cheap – typically free of charge;
   144 				important IM feature is presence – the sender knows current status of the recipient: online, offline, away, busy etc.;
   145 				IM is rooted in the computer world but nowadays it is often used also on mobile phones as an alternative to (expensive) SMS – in such case it is called OTT and requires mobile Internet connectivity;
   146 				IM messages are usually transferred over an TCP/IP protocol – good example is Jabber/XMPP which is free and open protocol for IM and presence based on XML
   147 			</text>
   148 		</explanation>
   149 		<tag>computer</tag>
   150 		<tag>messaging</tag>
   151 	</concept>
   152 	<concept>
   153 		<term abbreviation="IMS" completeForm="IP Multimedia Subsystem" language="en"/>
   154 		<explanation language="en"><text></text></explanation>
   155 		<tag>messaging</tag>
   156 	</concept>
   157 	<concept>
   158 		<term abbreviation="RCS" completeForm="Rich Communication Suite" language="en"/>
   159 		<term abbreviation="RCSE" completeForm="" language="en"/>
   160 		<term abbreviation="RCSx" completeForm="" language="en"/>
   161 		<term abbreviation="" completeForm="Joyn" language="en"/>
   162 		<explanation language="en"><text></text></explanation>
   163 		<tag>messaging</tag>
   164 	</concept>
   165 	<concept>
   166 		<term abbreviation="XMPP" completeForm="extensible messaging and presence protocol" language="en"/>
   167 		<term abbreviation="" completeForm="jabber" language="en"/><!-- original name -->
   168 		<explanation language="en">
   169 			<text>
   170 				a communication protocol for messaging based on XML;
   171 				used for transferring
   172 					IM messages,
   173 					presence information (statuses like: online, busy, away etc.),
   174 					contact list (called roster here) management,
   175 					singaling of VoIP and video, file transfers etc.;
   176 				can be also used as generic messaging protocol for connecting computer systems (not only human-human interaction)
   177 				or for human-computer interaction (for accessing services like dictionaries, weather forecast or TV guide)
   178 			</text>
   179 		</explanation>
   180 		<tag>computer</tag>
   181 		<tag>xml</tag>
   182 		<tag>messaging</tag>
   183 		<tag>protocol</tag>
   184 	</concept>
   185 	<concept>
   186 		<term abbreviation="" completeForm="roster" language="en"/>
   187 		<explanation language="en"><text>a contact list; term used by Jabber/XMPP</text>
   188 		</explanation>
   189 		<tag>computer</tag>
   190 		<tag>messaging</tag>
   191 	</concept>
   192 	<concept>
   193 		<term abbreviation="IMAP4" completeForm="Internet message access protocol version 4" language="en"/>
   194 		<term abbreviation="IMAP" completeForm="Internet message access protocol" language="en"/>
   195 		<explanation language="en">
   196 			<text>
   197 				a text-based client-server protocol for accessing e-mail mailbox;
   198 				supports
   199 					multiple hierarchical folders (inbox, sent, drafts… or user defined),
   200 					marging messages with tags/flags,
   201 					notifications of new messages from server to client (the client does not have to periodically check the inbox and just waits for new messages),
   202 					full-text search and other features;
   203 				messages usually stays at server storage after reading which allows using multiple client programs/devices;
   204 				is more complex than POP3 protocol;
   205 				uses TCP and standard port is 143 (STARTTLS or unencrypted) or 993 (SSL/TLS)
   206 			</text>
   207 		</explanation>
   208 		<tag>computer</tag>
   209 		<tag>messaging</tag>
   210 		<tag>protocol</tag>
   211 	</concept>
   212 	<concept>
   213 		<term abbreviation="POP3" completeForm="post office protocol version 3" language="en"/>
   214 		<term abbreviation="POP" completeForm="post office protocol" language="en"/>
   215 		<explanation language="en">
   216 			<text>
   217 				a text-based client-server protocol for accessing e-mail mailbox;
   218 				messages are usually deleted from server after reading and are stored only on the client side;
   219 				nowadays the more advanced IMAP4 protocol is often used instead of POP3;
   220 				uses TCP and standard port is 110 (STARTTLS or unencrypted) or 995 (SSL/TLS)
   221 			</text>
   222 		</explanation>
   223 		<tag>computer</tag>
   224 		<tag>messaging</tag>
   225 		<tag>protocol</tag>
   226 	</concept>
   227 	<concept>
   228 		<term abbreviation="SMTP" completeForm="simple mail transfer protocol" language="en"/>
   229 		<term abbreviation="ESMTP" completeForm="Extended SMTP" language="en"/>
   230 		<explanation language="en">
   231 			<text>
   232 				a text-based client-server protocol for sending e-mail messages
   233 				uses TCP and standard port is 25 (STARTTLS or unencrypted) or 465 (SSL/TLS) or 587 (STARTTLS or unencrypted for Message Submission – RFC 6409);
   234 				is defined in RFC 5321
   235 			</text>
   236 		</explanation>
   237 		<tag>computer</tag>
   238 		<tag>messaging</tag>
   239 		<tag>protocol</tag>
   240 	</concept>
   241 	<concept>
   242 		<term abbreviation="LMTP" completeForm="local mail transfer protocol" language="en"/>
   243 		<explanation language="en">
   244 			<text>
   245 				a derivative of ESMTP designed for transferring messages locally from MTA component to MDA (mail storage, no queue);
   246 				uses TCP/IP but must not use port 25 (SMTP);
   247 				is defined in RFC 2033
   248 			</text>
   249 		</explanation>
   250 		<tag>computer</tag>
   251 		<tag>messaging</tag>
   252 		<tag>protocol</tag>
   253 	</concept>
   254 	<concept>
   255 		<term abbreviation="MUA" completeForm="mail user agent" language="en"/>
   256 		<explanation language="en">
   257 			<text>
   258 				an e-mail client – a software used for managing user's e-mail;
   259 				because the MUA (like most client software) runs only when user needs it,
   260 					the messages from the Internet are received by a remote MTA over the SMTP protocol,
   261 					then delivered using an MDA into user's remote mailbox,
   262 					from which they are obtained by the MUA using POP3 or IMAP4 protocols;
   263 				when sending an e-mail, the MUA composes the message in RFC 5322 format and then submits it using the SMTP protocol to a MTA or MSA server;
   264 				examples of MUA: Mozilla Thunderbird, KMail, Evolution, Mutt, Lotus Notes
   265 			</text>
   266 		</explanation>
   267 		<tag>computer</tag>
   268 		<tag>messaging</tag>
   269 	</concept>
   270 	<concept>
   271 		<term abbreviation="MTA" completeForm="message transfer agent" language="en"/>
   272 		<term abbreviation="MTA" completeForm="mail transfer agent" language="en"/>
   273 		<term abbreviation="MX" completeForm=" mail exchanger" language="en"/>
   274 		<explanation language="en">
   275 			<text>
   276 				a software component which transferres e-mails from one computer to another using SMTP protocol (implements both sending and receiving);
   277 				messages can be passed over network (relayed) or for local recipients stored locally (passing them to the MDA using LMTP);
   278 				examples of MTA: Postfix, Sendmail, Exim, Courier Mail Server, Apache James
   279 			</text>
   280 		</explanation>
   281 		<tag>computer</tag>
   282 		<tag>messaging</tag>
   283 	</concept>
   284 	<concept>
   285 		<term abbreviation="MSA" completeForm="message submission agent" language="en"/>
   286 		<explanation language="en">
   287 			<text>
   288 				a software component dedicated to receive e-mails from MUA;
   289 				cooperates with MTA or is often integrated in MTA as one of its features;
   290 				uses a variant of SMTP (RFC 6409) and TCP port 587 (different than SMTP/MTA port 25)
   291 			</text>
   292 		</explanation>
   293 		<tag>computer</tag>
   294 		<tag>messaging</tag>
   295 	</concept>
   296 	<concept>
   297 		<term abbreviation="MDA" completeForm="message delivery agent" language="en"/>
   298 		<term abbreviation="LDA" completeForm="local delivery agent" language="en"/>
   299 		<explanation language="en">
   300 			<text>
   301 				a software component that receives e-mail from the MTA and stores them in the recipient's mailbox;
   302 				the MDA can also apply Sieve filters on processed messages;
   303 				examples of MDA: Dovecot, Cyrus IMAP, procmail, maildrop
   304 			</text>
   305 		</explanation>
   306 		<tag>computer</tag>
   307 		<tag>messaging</tag>
   308 	</concept>
   309 	<concept>
   310 		<term abbreviation="MRA" completeForm="message retrieval agent" language="en"/>
   311 		<explanation language="en">
   312 			<text>
   313 				a software component that fetches e-mails from remote server (over POP3 or IMAP4 protocol)
   314 				and then passes them to the MDA for local storage, or over SMTP to an MTA, or directly delivers it to the mailbox, or prints to standard output etc.;
   315 				implements pull (not push) approach: fetches messages periodically (or on user's demand)
   316 				instead of waiting for incoming messages and receiving them immediatelly when they emerge (like MTA does);
   317 				examples of MRA: fetchmail, getmail
   318 			</text>
   319 		</explanation>
   320 		<tag>computer</tag>
   321 		<tag>messaging</tag>
   322 	</concept>
   323 	<concept>
   324 		<term abbreviation="" completeForm="sieve" language="en"/>
   325 		<explanation language="en">
   326 			<text>
   327 				a standardized language for describing e-mail filters;
   328 				the MDA can apply system-wide or user-defined filters on incoming messages;
   329 				a filter has conditions (connected by logical operators: AND, OR…) like „message header contains value X“
   330 				and actions that will be done with the message like „file into folder X“ or „add flag/label X“ or „redirect message to some.address@example.com“ or „discard message“;
   331 				filters are executed on the server where MDA resides,
   332 				so they are independent of the MUA currently used by the user
   333 				and works even if the user is offline (useful for OOTO messages when the user is on vacation)
   334 			</text>
   335 		</explanation>
   336 		<tag>computer</tag>
   337 		<tag>messaging</tag>
   338 	</concept>
   339 	<concept>
   340 		<term abbreviation="OOTO" completeForm="out of the office" language="en"/>
   341 		<explanation language="en">
   342 			<text>
   343 				an automatic response on a message (e-mail, SMS etc.) which is sent when the recipient is for example on vacation and can't respond immediately;
   344 				in case of e-mail it can be easily configured as a Sieve filter
   345 			</text>
   346 		</explanation>
   347 		<tag>computer</tag>
   348 		<tag>messaging</tag>
   349 	</concept>
   350 	<concept>
   351 		<term abbreviation="MIME" completeForm="multipurpose Internet mail extensions" language="en"/>
   352 		<explanation language="en">
   353 			<text>
   354 				an Internet standard for extended e-mail format which supports
   355 					international character sets for body parts,
   356 					international characters in message headers,
   357 					attachements of various types,
   358 					multipart messages;
   359 				MIME message itself is a human-readable text starting with header section and having one or more body parts;
   360 				binary or non-ASCII values are encoded in several ways described by the MIME's RFCs;
   361 				the content types defined by MIME is used also outside of e-mail – for indicating format of the content in HTTP, databases or operating systems
   362 			</text>
   363 		</explanation>
   364 		<tag>computer</tag>
   365 		<tag>messaging</tag>
   366 	</concept>
   367 	<concept>
   368 		<term abbreviation="SAP" completeForm="sms application protocol" language="en"/>
   369 		<explanation language="en"><text></text></explanation>
   370 		<tag>messaging</tag>
   371 		<tag>protocol</tag>
   372 	</concept>
   373 	<concept>
   374 		<term abbreviation="SPID" completeForm="service provider ID" language="en"/>
   375 		<explanation language="en"><text></text></explanation>
   376 	</concept>
   377 	<concept>
   378 		<term abbreviation="UTF-8" completeForm="unicode transformation format 8-bit" language="en"/>
   379 		<explanation language="en">
   380 			<text>
   381 				an character encoding that can represent every character in the Unicode character set;
   382 				is multibyte and variable-width encoding which means that one character can be represented by one or more bytes
   383 				(i.e. character length of the text does not have to be equal to byte lenght of the data),
   384 				in case of UTF-8 it is from 1 byte up to 6 bytes per character;
   385 				is backward compatible with ASCII – one-byte characters in UTF-8 are encoded in same way as in ACSII;
   386 				nowadays is widely used: on web, in e-mail, in operating systems (file names), in XML files etc.
   387 			</text>
   388 		</explanation>
   389 	</concept>
   390 	<concept>
   391 		<term abbreviation="UCS-2" completeForm="universal character set 2-byte" language="en"/>
   392 		<explanation language="en">
   393 			<text>
   394 				an multibyte but fixed-length (2 byte) character encoding;
   395 				sometimes is used for SMS when international characters are needed – such single message has only 70 characters instead of 160 (7-bit encoding);
   396 				for general use it was superseded by UTF-16 (in Unicode 2.0 in 1996)
   397 			</text>
   398 		</explanation>
   399 		<tag>messaging</tag>
   400 	</concept>
   401 	<concept>
   402 		<term abbreviation="UTF-16" completeForm="unicode transformation format 16-bit" language="en"/>
   403 		<explanation language="en">
   404 			<text>
   405 				an multibyte and variable-width encoding for Unicode codepoints from 0 to 0x10FFFF;
   406 				successor of UCS-2 encoding (for range 0-0xFFFF they have same values)
   407 			</text>
   408 		</explanation>
   409 		<tag>computer</tag>
   410 	</concept>
   411 	<concept>
   412 		<term abbreviation="SMPP" completeForm="short message peer-to-peer" language="en"/>
   413 		<explanation language="en">
   414 			<text>
   415 				open and industry standard protocol for transferring SMS messages among service centers (SC), applications (ESME) and routing entities (RE);
   416 				was designed by the Aldiscon company (later Logica CMG and later Acision);
   417 				binary PDUs are transported over TCP/IP or X.25 connection
   418 			</text>
   419 		</explanation>
   420 		<tag>messaging</tag>
   421 		<tag>protocol</tag>
   422 		<tag>acision</tag>
   423 	</concept>
   424 	<concept>
   425 		<term abbreviation="NMS" completeForm="network management system" language="en"/>
   426 		<explanation language="en"><text></text></explanation>
   427 		<tag>computer</tag>
   428 	</concept>
   429 	<concept>
   430 		<term abbreviation="SNMP" completeForm="simple network management protocol" language="en"/>
   431 		<explanation language="en"><text></text></explanation>
   432 		<tag>protocol</tag>
   433 	</concept>
   434 	<concept>
   435 		<term abbreviation="MIB" completeForm="management information base" language="en"/>
   436 		<explanation language="en"><text></text></explanation>
   437 		<tag>computer</tag>
   438 	</concept>
   439 	<concept>
   440 		<term abbreviation="OID" completeForm="object identifier" language="en"/>
   441 		<explanation language="en"><text></text></explanation>
   442 		<tag>computer</tag>
   443 	</concept>
   444 	<concept>
   445 		<term abbreviation="SPBP" completeForm="SMS prepaid billing protocol" language="en"/>
   446 		<explanation language="en"><text></text></explanation>
   447 		<tag>charging</tag>
   448 		<tag>acision</tag>
   449 		<tag>messaging</tag>
   450 		<tag>protocol</tag>
   451 	</concept>
   452 	<concept>
   453 		<term abbreviation="RTPP" completeForm="Real Time Payment Protocol" language="en"/>
   454 		<explanation language="en"><text></text></explanation>
   455 		<tag>charging</tag>
   456 		<tag>messaging</tag>
   457 		<tag>protocol</tag>
   458 	</concept>
   459 	<concept>
   460 		<term abbreviation="BIP" completeForm="billing interface protocol" language="en"/>
   461 		<explanation language="en"><text></text></explanation>
   462 		<tag>charging</tag>
   463 		<tag>protocol</tag>
   464 	</concept>
   465 	<concept>
   466 		<term abbreviation="LTE" completeForm="Long Term Evolution" language="en"/>
   467 		<explanation language="en"><text></text></explanation>
   468 	</concept>
   469 	<concept>
   470 		<term abbreviation="VoLTE" completeForm="Voice over LTE" language="en"/>
   471 		<explanation language="en"><text></text></explanation>
   472 	</concept>
   473 	<concept>
   474 		<term abbreviation="FTTH" completeForm=" fiber to the home" language="en"/>
   475 		<explanation language="en"><text></text></explanation>
   476 	</concept>
   477 	<concept>
   478 		<term abbreviation="CIC" completeForm="Carrier Identification Code" language="en"/>
   479 		<explanation language="en"><text></text></explanation>
   480 	</concept>
   481 	<concept>
   482 		<term abbreviation="" completeForm="E.164" language="en"/>
   483 		<explanation language="en">
   484 			<text>
   485 				an ITU-T recommendation;
   486 				full title: The international public telecommunication numbering plan;
   487 				defines the numbering plan of the PSTN and general format of international phone numbers
   488 			</text>
   489 		</explanation>
   490 	</concept>
   491 	<concept>
   492 		<term abbreviation="MSISDN" completeForm="mobile subscriber integrated services digital network number" language="en"/>
   493 		<term abbreviation="MSISDN" completeForm="mobile subscriber ISDN number" language="en"/>
   494 		<term abbreviation="MSISDN" completeForm="mobile station international ISDN number" language="en"/>
   495 		<explanation language="en">
   496 			<text>
   497 				a globally unique indentifier of a subscription in a GSM or a UMTS network;
   498 				follows numbering plan defined by E.164 – international phone number
   499 			</text>
   500 		</explanation>
   501 	</concept>
   502 	<concept>
   503 		<term abbreviation="IMEI" completeForm="international mobile station equipment identity" language="en"/>
   504 		<explanation language="en">
   505 			<text>
   506 				a number used to identify GSM, UMTS, LTE, iDEN or satelite mobile phones;
   507 				it identifies the device not the subscribtion (like IMSI or MSISDN);
   508 				on most phones can be displayed by typing *#06#
   509 			</text>
   510 		</explanation>
   511 	</concept>
   512 	<concept>
   513 		<term abbreviation="IMSI" completeForm="international mobile subscriber identity" language="en"/>
   514 		<explanation language="en">
   515 			<text>
   516 				a globally unique identifier stored on the SIM card used in GSM, UMTS and LTE networks;
   517 				a 64 bit value usually presented as 15 digit number;
   518 				consists of MCC (country code), MNC (network code) and MSIN (subscription ID)
   519 			</text>
   520 		</explanation>
   521 	</concept>
   522 	<concept>
   523 		<term abbreviation="MCC" completeForm="mobile country code" language="en"/>
   524 		<explanation language="en">
   525 			<text>
   526 				a unique numeric identifier of a country;
   527 				a part of IMSI;
   528 				often used in tuple with MNC;
   529 			</text>
   530 		</explanation>
   531 	</concept>
   532 	<!--
   533 		Lists of MCC/MNC:
   534 		https://en.wikipedia.org/wiki/Mobile_country_code
   535 		http://wammu.eu/tools/countries/
   536 		http://wammu.eu/tools/networks/
   537 	-->
   538 	<concept>
   539 		<term abbreviation="MNC" completeForm="mobile network code" language="en"/>
   540 		<explanation language="en">
   541 			<text>
   542 				a unique numeric identifier of a mobile network (carrier);
   543 				a part of IMSI;
   544 				often used in tuple with MCC
   545 			</text>
   546 		</explanation>
   547 	</concept>
   548 	<concept>
   549 		<term abbreviation="MSIN" completeForm="mobile subscription identification number" language="en"/>
   550 		<term abbreviation="MIN" completeForm="mobile identification number" language="en"/>
   551 		<explanation language="en">
   552 			<text>
   553 				a part of IMSI
   554 			</text>
   555 		</explanation>
   556 	</concept>
   557 	<concept>
   558 		<term abbreviation="Ki" completeForm="" language="en"/>
   559 		<explanation language="en"><text></text></explanation>
   560 	</concept>
   561 	<concept>
   562 		<term abbreviation="SIM" completeForm="subscriber identification module" language="en"/>
   563 		<term abbreviation="SIM" completeForm="subscriber identity module" language="en"/>
   564 		<explanation language="en">
   565 			<text>
   566 				a smartcard which contains IMSI, ke and cryptographic functions;
   567 				is used to identify and authenticate subscribers in mobile phone networks
   568 			</text>
   569 		</explanation>
   570 	</concept>
   571 	<concept>
   572 		<term abbreviation="ICCID" completeForm="integrated circuit card identifier" language="en"/>
   573 		<!-- https://en.wikipedia.org/wiki/Subscriber_identity_module#ICCID -->
   574 		<explanation language="en"><text></text></explanation>
   575 	</concept>
   576 	<concept>
   577 		<term abbreviation="GT" completeForm="global title" language="en"/>
   578 		<explanation language="en"><text></text></explanation>
   579 	</concept>
   580 	<concept>
   581 		<term abbreviation="SCCP" completeForm="signalling connection control part" language="en"/>
   582 		<explanation language="en"><text></text></explanation>
   583 	</concept>
   584 	<concept>
   585 		<term abbreviation="MWC" completeForm="Mobile World Congress" language="en"/>
   586 		<explanation language="en"><text></text></explanation>
   587 	</concept>
   588 	<concept>
   589 		<term abbreviation="ITU" completeForm="International Telecommunication Union" language="en"/>
   590 		<explanation language="en"><text></text></explanation>
   591 	</concept>
   592 	<concept>
   593 		<term abbreviation="3GPP" completeForm="3rd Generation Partnership Project" language="en"/>
   594 		<term abbreviation="TGPP" completeForm="Third Generation Partnership Project" language="en"/><!-- used as an identifier if can not start with number -->
   595 		<explanation language="en"><text></text></explanation>
   596 	</concept>
   597 	<concept>
   598 		<term abbreviation="ASN.1" completeForm="abstract syntax notation one" language="en"/>
   599 		<explanation language="en"><text></text></explanation>
   600 	</concept>
   601 	<concept>
   602 		<term abbreviation="" completeForm="X.400" language="en"/>
   603 		<explanation language="en"><text></text></explanation>
   604 	</concept>
   605 	<concept>
   606 		<term abbreviation="" completeForm="X.500" language="en"/>
   607 		<explanation language="en"><text></text></explanation>
   608 	</concept>
   609 	<concept>
   610 		<term abbreviation="" completeForm="X.509" language="en"/>
   611 		<explanation language="en"><text></text></explanation>
   612 		<tag>computer</tag>
   613 		<tag>security</tag>
   614 	</concept>
   615 	<concept>
   616 		<term abbreviation="BER" completeForm="basic encoding rules" language="en"/>
   617 		<explanation language="en"><text></text></explanation>
   618 		<tag>computer</tag>
   619 	</concept>
   620 	<concept>
   621 		<term abbreviation="DER" completeForm="distinguished encoding rules" language="en"/>
   622 		<explanation language="en"><text></text></explanation>
   623 		<tag>computer</tag>
   624 	</concept>
   625 	<concept>
   626 		<term abbreviation="CER" completeForm="canonical encoding rules" language="en"/>
   627 		<explanation language="en"><text></text></explanation>
   628 		<tag>computer</tag>
   629 	</concept>
   630 	<concept>
   631 		<term abbreviation="PER" completeForm="packed encoding rules" language="en"/>
   632 		<explanation language="en"><text></text></explanation>
   633 		<tag>computer</tag>
   634 	</concept>
   635 	<concept>
   636 		<term abbreviation="XER" completeForm="XML Encoding Rules" language="en"/>
   637 		<explanation language="en"><text></text></explanation>
   638 		<tag>computer</tag>
   639 		<tag>xml</tag>
   640 	</concept>
   641 	<concept>
   642 		<term abbreviation="EMV" completeForm="Europay, MasterCard and Visa" language="en"/>
   643 		<explanation language="en"><text></text></explanation>
   644 		<tag>finance</tag>
   645 	</concept>
   646 	
   647 	<concept>
   648 		<term abbreviation="AVP" completeForm="attribute-value pair" language="en"/>
   649 		<explanation language="en"><text></text></explanation>
   650 		<tag>computer</tag>
   651 	</concept>
   652 	<concept>
   653 		<term abbreviation="TLV" completeForm="type-length-value" language="en"/>
   654 		<explanation language="en"><text></text></explanation>
   655 		<tag>computer</tag>
   656 	</concept>
   657 	<concept>
   658 		<term abbreviation="PDU" completeForm="protocol data unit" language="en"/>
   659 		<explanation language="en"><text></text></explanation>
   660 		<tag>computer</tag>
   661 	</concept>
   662 	<concept>
   663 		<term abbreviation="MM1" completeForm="" language="en"/>
   664 		<explanation language="en">
   665 			<text>
   666 				an MMS protocol used between a Mobile Station and an MMSC;
   667 				is based on WAP and SMS
   668 			</text>
   669 		</explanation>
   670 		<tag>messaging</tag>
   671 		<tag>protocol</tag>
   672 	</concept>
   673 	<concept>
   674 		<term abbreviation="MM7" completeForm="" language="en"/>
   675 		<explanation language="en">
   676 			<text>
   677 				an MMS protocol used between an MMSC and VASP;
   678 				is based on SOAP, HTTP and MIME
   679 			</text>
   680 		</explanation>
   681 		<tag>messaging</tag>
   682 		<tag>protocol</tag>
   683 	</concept>
   684 	<concept>
   685 		<term abbreviation="AAA" completeForm="authentication, authorization and accounting" language="en"/>
   686 		<explanation language="en"><text></text></explanation>
   687 		<tag>computer</tag>
   688 		<tag>security</tag>
   689 	</concept>
   690 	<concept>
   691 		<term abbreviation="" completeForm="Diameter" language="en"/>
   692 		<explanation language="en">
   693 			<text>
   694 				an AAA protocol and a successor of the RADIUS protocol;
   695 				consists of the base protocol and many „Diameter Applications“ (protocols based on Diameter)
   696 				e.g.
   697 					Diameter Credit-Control Application,
   698 					Diameter Session Initiation Protocol Application or
   699 					Diameter Extensible Authentication Protocol Application
   700 			</text>
   701 		</explanation>
   702 		<tag>security</tag>
   703 		<tag>charging</tag>
   704 		<tag>protocol</tag>
   705 	</concept>
   706 	<concept>
   707 		<term abbreviation="RADIUS" completeForm="remote access dial in user service" language="en"/>
   708 		<explanation language="en">
   709 			<text>
   710 				an AAA protocol and the predecessor of the Diameter protocol;
   711 			</text>
   712 		</explanation>
   713 		<tag>security</tag>
   714 		<tag>protocol</tag>
   715 	</concept>
   716 	<concept>
   717 		<term abbreviation="SCAP" completeForm="service charging application protocol" language="en"/>
   718 		<term abbreviation="SCAPv2" completeForm="service charging application protocol version 2" language="en"/>
   719 		<term abbreviation="" completeForm="Draft 8" language="en"/>
   720 		<term abbreviation="" completeForm="Draft-8" language="en"/>
   721 		<explanation language="en"><text></text></explanation>
   722 		<tag>ericsson</tag>
   723 		<tag>charging</tag>
   724 		<tag>protocol</tag>
   725 	</concept>
   726 	<concept>
   727 		<term abbreviation="DCC" completeForm="Diameter credit control" language="en"/>
   728 		<explanation language="en"><text></text></explanation>
   729 		<tag>charging</tag>
   730 	</concept>
   731 	<concept>
   732 		<term abbreviation="DAAC" completeForm="Diameter accounting and authorization control" language="en"/>
   733 		<explanation language="en"><text></text></explanation>
   734 		<tag>charging</tag>
   735 	</concept>
   736 	<concept>
   737 		<term abbreviation="SPI" completeForm="service parameter info" language="en"/>
   738 		<explanation language="en"><text></text></explanation>
   739 		<tag>charging</tag>
   740 	</concept>
   741 	<concept>
   742 		<term abbreviation="" completeForm="result code" language="en"/>
   743 		<explanation language="en">
   744 			<text>
   745 				a number which represents the result of an operation in the Diameter protocol;
   746 				codes are divided into several groups:
   747 					1xxx – Informational,
   748 					2xxx – Success,
   749 					3xxx – Protocol errors,
   750 					4xxx – Transient failures,
   751 					5xxx – Permanent failure;
   752 				for example 2001 means success, 2002 limited success, 3001 unsupported command or 5001 unsupported AVP
   753 			</text>
   754 		</explanation>
   755 	</concept>
   756 	<concept>
   757 		<term abbreviation="CCR" completeForm="Credit-Control-Request" language="en"/>
   758 		<explanation language="en"><text></text></explanation>
   759 		<tag>charging</tag>
   760 	</concept>
   761 	<concept>
   762 		<term abbreviation="CCA" completeForm="Credit-Control-Answer" language="en"/>
   763 		<explanation language="en"><text></text></explanation>
   764 		<tag>charging</tag>
   765 	</concept>
   766 	<concept>
   767 		<term abbreviation="CCN" completeForm="Charging Control Node" language="en"/>
   768 		<explanation language="en"><text></text></explanation>
   769 		<tag>charging</tag>
   770 	</concept>
   771 	<concept>
   772 		<term abbreviation="IN" completeForm="Intelligent Network" language="en"/>
   773 		<explanation language="en"><text></text></explanation>
   774 		<tag>nsn</tag>
   775 		<tag>charging</tag>
   776 	</concept>
   777 	<concept>
   778 		<term abbreviation="BS" completeForm="billing system" language="en"/>
   779 		<explanation language="en"><text></text></explanation>
   780 		<tag>charging</tag>
   781 	</concept>
   782 	<concept>
   783 		<term abbreviation="CTF" completeForm="Charging Trigger Function" language="en"/>
   784 		<explanation language="en">
   785 			<text>
   786 				one of two peers involved in charging process;
   787 				CTF decides how to charge particular subscriber for specific service;
   788 				issues requests to the OCF
   789 			</text>
   790 		</explanation>
   791 		<tag>charging</tag>
   792 	</concept>
   793 	<concept>
   794 		<term abbreviation="OCF" completeForm="Online Charging Function" language="en"/>
   795 		<explanation language="en">
   796 			<text>
   797 				one of two peers involved in charging process;
   798 				accepts requests from CTF and performs actual charging
   799 				based on the message type, service logic, user's profile or other circumstances
   800 			</text>
   801 		</explanation>
   802 		<tag>charging</tag>
   803 	</concept>
   804 	<concept>
   805 		<term abbreviation="" completeForm="charged party" language="en"/>
   806 		<!-- A, B, AB, - RTPP/MMSC -->
   807 		<explanation language="en">
   808 			<text>
   809 				the party (sender or recipient) who is charged for the service (e.g. SMS);
   810 				MOMT messages (or other traffic) are typically charged to the sender (A);
   811 				AOMT messages (like weather forecast or news) are typically charged to the recipient (B);
   812 				some messages can be free of charge and some can be charged to both party (AB)
   813 			</text>
   814 		</explanation>
   815 		<tag>charging</tag>
   816 	</concept>
   817 	<concept>
   818 		<term abbreviation="" completeForm="subscriber" language="en"/>
   819 		<explanation language="en">
   820 			<text>
   821 				a subscriber of a mobile network, a customer of a telco operator
   822 				(but term „customer“ is ambiguous because „customer“ from SW development team point of view is the telco operator)
   823 			</text>
   824 		</explanation>
   825 	</concept>
   826 	<concept>
   827 		<term abbreviation="" completeForm="SMS gateway" language="en"/>
   828 		<term abbreviation="RE" completeForm="routing entity" language="en"/>
   829 		<explanation language="en">
   830 			<text>
   831 				a software component located between the SMSC (or other service centre) and ESME (applications);
   832 				passes messages in both directions,
   833 				uses SMPP and other messaging protocols,
   834 				does routing of messages, their transformations, conversions or other operations
   835 			</text>
   836 		</explanation>
   837 	</concept>
   838 	<concept>
   839 		<term abbreviation="" completeForm="pre-paid" language="en"/>
   840 		<explanation language="en">
   841 			<text>
   842 				a kind of subscription where the subscriber pays in advance
   843 				and his services are charged (usually immediately, online) from his pre-paid balance
   844 			</text>
   845 		</explanation>
   846 		<tag>charging</tag>
   847 	</concept>
   848 	<concept>
   849 		<term abbreviation="" completeForm="post-paid" language="en"/>
   850 		<explanation language="en">
   851 			<text>
   852 				a kind of subscription where the subscriber pays later than he uses the services (usually monthly);
   853 				compared to pre-paid, batch processing of CDR files and offline processing is common here
   854 			</text>
   855 		</explanation>
   856 		<tag>charging</tag>
   857 	</concept>
   858 	<concept>
   859 		<term abbreviation="CDR" completeForm="call detail record" language="en"/>
   860 		<term abbreviation="SDR" completeForm="service detail record" language="en"/>
   861 		<explanation language="en">
   862 			<text>
   863 				kind of log file in machine-readable format (ASN.1, XML, CSV etc.)
   864 				which describes particular usages of a service – e.g. placed phone call, sent SMS, Internet connection;
   865 				CDR/SDR files are used for post-paid billing (not processed online but in batch) and as documentation of usage;
   866 				they must be handled carefully because they contain private information (who calls or texts who);
   867 				always respect subscriber's privacy!
   868 			</text>
   869 		</explanation>
   870 		<tag>charging</tag>
   871 	</concept>
   872 	<concept>
   873 		<term abbreviation="MO" completeForm="mobile originated" language="en"/>
   874 		<explanation language="en">
   875 			<text>
   876 				traffic which comes from a cell phone resp. mobile network,
   877 				e.g. an SMS sent from your Handy
   878 			</text>
   879 		</explanation>
   880 		<tag>messaging</tag>
   881 	</concept>
   882 	<concept>
   883 		<term abbreviation="MT" completeForm="mobile terminated" language="en"/>
   884 		<explanation language="en">
   885 			<text>
   886 				traffic which comes to a cell phone resp. mobile network,
   887 				e.g. a received SMS
   888 			</text>
   889 		</explanation>
   890 		<tag>messaging</tag>
   891 	</concept>
   892 	<concept>
   893 		<term abbreviation="AO" completeForm="application originated" language="en"/>
   894 		<explanation language="en">
   895 			<text>
   896 				traffic which comes from an application i.e. not from the mobile network/phone,
   897 				e.g. some weather forecast messages generated by an SPA
   898 			</text>
   899 		</explanation>
   900 		<tag>messaging</tag>
   901 	</concept>
   902 	<concept>
   903 		<term abbreviation="AT" completeForm="application terminated" language="en"/>
   904 		<explanation language="en">
   905 			<text>
   906 				traffic which comes to an application i.e. not to the mobile network/phone,
   907 				e.g. message sent to an application in order to subscribe the service or to send your vote
   908 			</text>
   909 		</explanation>
   910 		<tag>messaging</tag>
   911 	</concept>
   912 	<concept>
   913 		<term abbreviation="MOMT" completeForm="mobile originated → mobile terminated" language="en"/>
   914 		<explanation language="en"><text>e.g. when Bob texts Alice from his phone to her phone</text></explanation>
   915 		<tag>messaging</tag>
   916 	</concept>
   917 	<concept>
   918 		<term abbreviation="MOAT" completeForm="mobile originated → application terminated" language="en"/>
   919 		<explanation language="en"><text>e.g. if Bob subscribes a weather forecast service by sending a message from his phone</text></explanation>
   920 		<tag>messaging</tag>
   921 	</concept>
   922 	<concept>
   923 		<term abbreviation="AOMT" completeForm="application originated → mobile terminated" language="en"/>
   924 		<explanation language="en"><text>e.g. if Alice receives to her phone a news message which she has previously subscribed</text></explanation>
   925 		<tag>messaging</tag>
   926 	</concept>
   927 	<concept>
   928 		<term abbreviation="AOAT" completeForm="application originated → application terminated" language="en"/>
   929 		<explanation language="en">
   930 			<text>
   931 				if two applications communicates over an SMS gateway and there are no cell phones involved;
   932 				this is pretty rare, but somewhere you can meet such configuration
   933 			</text>
   934 		</explanation>
   935 		<tag>messaging</tag>
   936 	</concept>
   937 	<concept>
   938 		<term abbreviation="" completeForm="Handy" language="de"/>
   939 		<explanation language="en"><text>a cell phone</text></explanation>
   940 	</concept>
   941 	<concept>
   942 		<term abbreviation="" completeForm="billing" language="en"/>
   943 		<term abbreviation="" completeForm="charging" language="en"/>
   944 		<explanation language="en"><text></text></explanation>
   945 		<tag>charging</tag>
   946 	</concept>
   947 	<concept>
   948 		<term abbreviation="IEC" completeForm="immediate event charging" language="en"/>
   949 		<explanation language="en"><text></text></explanation>
   950 		<tag>charging</tag>
   951 	</concept>
   952 	<concept>
   953 		<term abbreviation="ECUR" completeForm="event charging with unit reservation" language="en"/>
   954 		<explanation language="en"><text></text></explanation>
   955 		<tag>charging</tag>
   956 	</concept>
   957 	<concept>
   958 		<term abbreviation="SCUR" completeForm="session charging with unit reservation" language="en"/>
   959 		<explanation language="en"><text></text></explanation>
   960 		<tag>charging</tag>
   961 	</concept>
   962 	<concept>
   963 		<term abbreviation="COI" completeForm="community of interest" language="en"/>
   964 		<explanation language="en"><text></text></explanation>
   965 	</concept>
   966 	<concept>
   967 		<term abbreviation="" completeForm="aliasing" language="en"/>
   968 		<term abbreviation="" completeForm="de-aliasing" language="en"/>
   969 		<term abbreviation="" completeForm="dealiasing" language="en"/>
   970 		<term abbreviation="" completeForm="hashing" language="en"/>
   971 		<explanation language="en">
   972 			<text>
   973 				when a subscriber communicates with an application (MOAT/AOMT messaging)
   974 				he might not want expose his identity (MSISDN or IMSI);
   975 				the aliasing feature (sometimes called hashing) deployed on an SMS gateway enables this communication and rewrites the subscriber's ID to some generated ID;
   976 				the application can then send a response on a message without knowing subscriber's identity (on the gateway the ID is translated back to real ID – de-aliasing);
   977 				use case:
   978 					subscribers can vote in some survey,
   979 					everyone will have one vote,
   980 					but the owner of the survey will not know the opinion of particular subscibers
   981 					because of missing their real IDs
   982 			</text>
   983 		</explanation>
   984 		<tag>security</tag>
   985 		<tag>messaging</tag>
   986 	</concept>
   987 	<concept>
   988 		<term abbreviation="" completeForm="provisioning" language="en"/>
   989 		<explanation language="en"><text></text></explanation>
   990 		<tag>computer</tag>
   991 	</concept>
   992 	<concept>
   993 		<term abbreviation="CP" completeForm="content provider" language="en"/>
   994 		<explanation language="en"><text></text></explanation>
   995 	</concept>
   996 	<concept>
   997 		<term abbreviation="" completeForm="short code" language="en"/>
   998 		<term abbreviation="" completeForm="short number" language="en"/>
   999 		<explanation language="en">
  1000 			<text>
  1001 				a special kind of phone number which has few digits (e.g. four);
  1002 				ESME usually has assigned a short number
  1003 				thus subscriber can do MOAT messaging without remembering/typing long phone numbers;
  1004 				texting or calling to/from this numbers might be charged with an extra rate
  1005 				(the subscriber pays not only for the telco service but also for the VAS provided)
  1006 			</text>
  1007 		</explanation>
  1008 		<tag>messaging</tag>
  1009 	</concept>
  1010 	<concept>
  1011 		<term abbreviation="VASP" completeForm="value-added service provider" language="en"/>
  1012 		<explanation language="en">
  1013 			<text>
  1014 				a provider who operates an ESME (application)
  1015 			</text>
  1016 		</explanation>
  1017 		<tag>messaging</tag>
  1018 	</concept>
  1019 	<concept>
  1020 		<term abbreviation="ESME" completeForm="external short message entity" language="en"/>
  1021 		<term abbreviation="" completeForm="application" language="en"/>
  1022 		<term abbreviation="LA" completeForm="large account" language="en"/>
  1023 		<term abbreviation="VAS" completeForm="value-added service" language="en"/>
  1024 		<term abbreviation="SPA" completeForm="service provider application" language="en"/>
  1025 		<term abbreviation="AIM" completeForm="application interface module" language="en"/>
  1026 		<!--
  1027 			LA vs. AIM „Use AIM instead of LA (AIM is an MCO term, LA is a V5 term).“
  1028 			
  1029 			ESME = any application which can either
  1030 			recieve or send or both is an ESME (also known as VAS or SPA or LA)
  1031 			LA	Large Account (also known as ESME or SPA or VAS)
  1032 			SPA	Service Provider Application (also known as ESME or VAS or LA)
  1033 			VAS	Value Added Service (also known as ESME or SPA or LA)
  1034 		-->
  1035 		<explanation language="en">
  1036 			<text>
  1037 				an application a software component which sends and receives messages (SMS, MMS, e-mail…) and is connected over IP (not directly attached to mobile network) and protocol like SMPP;
  1038 				often is operated by different company than telco operator – a VASP;
  1039 			</text>
  1040 		</explanation>
  1041 		<tag>messaging</tag>
  1042 	</concept>
  1043 	<concept>
  1044 		<term abbreviation="NEP" completeForm="network end point" language="en"/>
  1045 		<explanation language="en">
  1046 			<text>
  1047 				an end-point in RE where SC is connected
  1048 			</text>
  1049 		</explanation>
  1050 		<tag>messaging</tag>
  1051 	</concept>
  1052 	<concept>
  1053 		<term abbreviation="AEP" completeForm="application end point" language="en"/>
  1054 		<explanation language="en">
  1055 			<text>
  1056 				an end-point in RE where SPA is connected
  1057 			</text>
  1058 		</explanation>
  1059 		<tag>messaging</tag>
  1060 	</concept>
  1061 	<concept>
  1062 		<term abbreviation="SPDB" completeForm="service provider database" language="en"/>
  1063 		<explanation language="en"><text></text></explanation>
  1064 	</concept>
  1065 	<concept>
  1066 		<term abbreviation="MCO" completeForm="Message Controller" language="en"/>
  1067 		<!-- bridge mezi TCP/IP a SS7 ? -->
  1068 		<explanation language="en"><text></text></explanation>
  1069 		<tag>acision</tag>
  1070 		<tag>messaging</tag>
  1071 	</concept>
  1072 	<concept>
  1073 		<term abbreviation="SME" completeForm="short message entity" language="en"/>
  1074 		<explanation language="en">
  1075 			<text>
  1076 				e.g. a mobile handset
  1077 				(see also EMSE)
  1078 			</text>
  1079 		</explanation>
  1080 		<tag>messaging</tag>
  1081 	</concept>
  1082 	<concept>
  1083 		<term abbreviation="GSM" completeForm="Global System for Mobile communications" language="en"/>
  1084 		<term abbreviation="GSM" completeForm="Groupe Spécial Mobile" language="fr"/>
  1085 		<explanation language="en"><text></text></explanation>
  1086 	</concept>
  1087 	<concept>
  1088 		<term abbreviation="GSMA" completeForm="GSM Association" language="en"/>
  1089 		<explanation language="en"><text></text></explanation>
  1090 	</concept>
  1091 	<concept>
  1092 		<term abbreviation="CDMA" completeForm="code division multiple access" language="en"/>
  1093 		<explanation language="en"><text></text></explanation>
  1094 	</concept>
  1095 	<concept>
  1096 		<term abbreviation="TDMA" completeForm="time division multiple access" language="en"/>
  1097 		<explanation language="en"><text></text></explanation>
  1098 	</concept>
  1099 	<concept>
  1100 		<term abbreviation="UMTS" completeForm="universal mobile telecommunications system" language="en"/>
  1101 		<explanation language="en"><text></text></explanation>
  1102 	</concept>
  1103 	<concept>
  1104 		<term abbreviation="SS7" completeForm="signalling system no. 7" language="en"/>
  1105 		<explanation language="en"><text></text></explanation>
  1106 	</concept>
  1107 	<concept>
  1108 		<term abbreviation="SIGTRAN" completeForm="SIGnaling TRAnsport" language="en"/>
  1109 		<explanation language="en"><text></text></explanation>
  1110 	</concept>
  1111 	<concept>
  1112 		<term abbreviation="3G" completeForm="third generation" language="en"/>
  1113 		<explanation language="en"><text></text></explanation>
  1114 	</concept>
  1115 	<concept>
  1116 		<term abbreviation="4G" completeForm="fourth generation" language="en"/>
  1117 		<explanation language="en"><text></text></explanation>
  1118 	</concept>
  1119 	<concept>
  1120 		<term abbreviation="" completeForm="Baby Bell" language="en"/>
  1121 		<!-- https://en.wikipedia.org/wiki/Regional_Bell_Operating_Company -->
  1122 		<explanation language="en"><text></text></explanation>
  1123 	</concept>
  1124 	<concept>
  1125 		<term abbreviation="EAIF" completeForm="external application interface" language="en"/>
  1126 		<explanation language="en"><text>Nokia's protocol for sending and receiving MMS, is based on HTTP and transferres  binary content.</text></explanation>
  1127 		<tag>nsn</tag>
  1128 		<tag>messaging</tag>
  1129 		<tag>protocol</tag>
  1130 	</concept>
  1131 	<concept>
  1132 		<term abbreviation="UCP" completeForm="universal computer protocol" language="en"/>
  1133 		<explanation language="en">
  1134 			<text>
  1135 				an SMS messaging protocol developed by CMG (later Acision)
  1136 				as interface for ESME to SMSC;
  1137 				an extended variant of it is called EMI
  1138 			</text>
  1139 		</explanation>
  1140 		<tag>acision</tag>
  1141 		<tag>messaging</tag>
  1142 		<tag>protocol</tag>
  1143 	</concept>
  1144 	<concept>
  1145 		<term abbreviation="EMI" completeForm="external machine interface" language="en"/>
  1146 		<explanation language="en"><text>an extension of UCP</text></explanation>
  1147 		<tag>acision</tag>
  1148 		<tag>messaging</tag>
  1149 		<tag>protocol</tag>
  1150 	</concept>
  1151 	<concept>
  1152 		<term abbreviation="CIMD" completeForm="computer interface to message distribution" language="en"/>
  1153 		<explanation language="en">
  1154 			<text>
  1155 				a proprietary SMS messaging protocol developed by Nokia
  1156 				for connecting to their SMSC
  1157 			</text>
  1158 		</explanation>
  1159 		<tag>nsn</tag>
  1160 		<tag>messaging</tag>
  1161 		<tag>protocol</tag>
  1162 	</concept>
  1163 	<concept>
  1164 		<term abbreviation="URLP" completeForm="URL encoded message protocol" language="en"/>
  1165 		<explanation language="en">
  1166 			<text>
  1167 				a simple protocol that can be used between AAG and SPA for transmitting messages;
  1168 				uses HTTP GET method and encodes data in the URL or in HTTP response body
  1169 			</text>
  1170 		</explanation>
  1171 		<tag>acision</tag>
  1172 		<tag>messaging</tag>
  1173 		<tag>protocol</tag>
  1174 	</concept>
  1175 	<concept>
  1176 		<term abbreviation="SMAP" completeForm="short message application protocol" language="en"/>
  1177 		<explanation language="en"><text></text></explanation>
  1178 		<tag>messaging</tag>
  1179 		<tag>protocol</tag>
  1180 	</concept>
  1181 	<!--
  1182 	<concept>
  1183 		<term abbreviation="PSA" completeForm="" language="en"/>
  1184 		<explanation language="en"><text></text></explanation>
  1185 	</concept>
  1186 	-->
  1187 	<concept>
  1188 		<term abbreviation="PAP" completeForm="push access protocol" language="en"/>
  1189 		<explanation language="en"><text></text></explanation>
  1190 		<tag>protocol</tag>
  1191 	</concept>
  1192 	<concept>
  1193 		<term abbreviation="SC" completeForm="service center" language="en"/>
  1194 		<term abbreviation="MC" completeForm="message centre" language="en"/>
  1195 		<explanation language="en">
  1196 			<text>
  1197 				a component in telecommunication network;
  1198 				SMSC for SMS or MMSC for MMS messages
  1199 			</text>
  1200 		</explanation>
  1201 		<tag>messaging</tag>
  1202 	</concept>
  1203 	<concept>
  1204 		<term abbreviation="SMSC" completeForm="SMS service center" language="en"/>
  1205 		<term abbreviation="SMS-SC" completeForm="Short Message Service - Service Centre" language="en"/>
  1206 		<explanation language="en">
  1207 			<text>
  1208 				a component in telecommunication network dedicated to store, forward, convert and deliver SMS messages;
  1209 				is connected to the SS7 network on one side and to routing entities (RE) using SMPP on the other side;
  1210 				is able to process MOMT messaging and also MOAT or AOMT messaging (using RE)
  1211 				Example of SMSC: SMSCv5
  1212 			</text>
  1213 		</explanation>
  1214 		<tag>messaging</tag>
  1215 	</concept>
  1216 	<concept>
  1217 		<term abbreviation="SMSCv5" completeForm="SMS service center version 5" language="en"/>
  1218 		<term abbreviation="v5" completeForm="" language="en"/><!-- jargon -->
  1219 		<explanation language="en">
  1220 			<text>
  1221 				an implementation of SMSC from Acision;
  1222 				runs on an OpenVMS system
  1223 			</text>
  1224 		</explanation>
  1225 		<tag>acision</tag>
  1226 		<tag>messaging</tag>
  1227 	</concept>
  1228 	<concept>
  1229 		<term abbreviation="MMSC" completeForm="Multimedia Messaging Service Centre" language="en"/>
  1230 		<term abbreviation="MMSC" completeForm="MMS Service Centre" language="en"/>
  1231 		<term abbreviation="" completeForm="MMS store and forward server" language="en"/>
  1232 		<explanation language="en">
  1233 			<text>
  1234 				a kind of SC dedicated to processing multimedia messages;
  1235 				the messaging is more comlex process than in case of SMS:
  1236 					MO MMS message is received (in similar format to MIME e-mail) by the MMSC and stored,
  1237 					then SC determines if the recipient is capable to receive MMS,
  1238 					if yes, the message is put at a server with HTTP interface and the recipient gets special SMS containing the URL and downloads it over WAP,
  1239 					if recipient is not capable he gets plain text SMS with URL and have to use computer and www browser
  1240 			</text>
  1241 		</explanation>
  1242 		<tag>messaging</tag>
  1243 	</concept>
  1244 	<concept>
  1245 		<term abbreviation="BMSC" completeForm="Broadband Messaging Service Centre" language="en"/>
  1246 		<term abbreviation="" completeForm="Fusion" language="en"/>
  1247 		<explanation language="en">
  1248 			<text>
  1249 				a consolidated messaging platform announced by the Acision company in 2013;
  1250 				integrates RSC, SMS, MMS and voice mail
  1251 			</text>
  1252 		</explanation>
  1253 		<tag>acision</tag>
  1254 		<tag>messaging</tag>
  1255 	</concept>
  1256 	<concept>
  1257 		<term abbreviation="IWG" completeForm="inter-working gateway" language="en"/>
  1258 		<explanation language="en"><text></text></explanation>
  1259 		<tag>messaging</tag>
  1260 	</concept>
  1261 	<concept>
  1262 		<term abbreviation="WAP" completeForm="wireless application protocol" language="en"/>
  1263 		<explanation language="en"><text></text></explanation>
  1264 		<tag>protocol</tag>
  1265 	</concept>
  1266 	<concept>
  1267 		<term abbreviation="OTA" completeForm="over-the-air" language="en"/>
  1268 		<explanation language="en"><text></text></explanation>
  1269 	</concept>
  1270 	<concept>
  1271 		<term abbreviation="FOTA" completeForm="firmware over the air" language="en"/>
  1272 		<explanation language="en"><text></text></explanation>
  1273 	</concept>
  1274 	<concept>
  1275 		<term abbreviation="DRM" completeForm="digital restrictions management" language="en"/>
  1276 		<term abbreviation="DRM" completeForm="digital rights management" language="en"/>
  1277 		<explanation language="en"><text></text></explanation>
  1278 		<tag>computer</tag>
  1279 	</concept>
  1280 	<concept>
  1281 		<term abbreviation="SyncML" completeForm="synchronization markup language" language="en"/>
  1282 		<explanation language="en"><text></text></explanation>
  1283 		<tag>computer</tag>
  1284 	</concept>
  1285 	<concept>
  1286 		<term abbreviation="VoIP" completeForm="voice over IP" language="en"/>
  1287 		<explanation language="en">
  1288 			<text>
  1289 				delivering voice communication (or other multimedia sessions like video) over the Internet Protocol (IP) instead of traditional telco networks;
  1290 				there are open and standard protocols for signaling: SIP and XMPP and open protocols for the payload (audio/video) like RTP;
  1291 				VoIP is nowadays widely used inside companies where often shares same ethernet network with computers (can be separeted by VLANs)
  1292 				and also in households espetially for cheap overseas calls;
  1293 				as VoIP phone can be used a computer with appropriate software or a cell phone or dedicated hardware phone;
  1294 				there are also gateways that enable connecting old analog phones to the VoIP network
  1295 			</text>
  1296 		</explanation>
  1297 	</concept>
  1298 	<concept>
  1299 		<term abbreviation="SIP" completeForm="session initiation protocol" language="en"/>
  1300 		<explanation language="en">
  1301 			<text>
  1302 				an open signalling protocol for initiation of VoIP calls (audio, video or possibly other media sessions);
  1303 				has similar format of headers and request/response model as HTTP;
  1304 				transported over UDP or TCP (for TLS encryption) or SCTP;
  1305 				for the media payload is typically used RTP protocol
  1306 			</text>
  1307 		</explanation>
  1308 		<tag>protocol</tag>
  1309 	</concept>
  1310 	<concept>
  1311 		<term abbreviation="RTP" completeForm="real-time transport protocol" language="en"/>
  1312 		<explanation language="en">
  1313 			<text>
  1314 				a standardized packet format for delivering audio and video over IP;
  1315 				can transfer audio or video streams for telephony or television streams;
  1316 				is used heavily in VoIP in combination with SIP;
  1317 				can be secured with SRTP/ZRTP to avoid wiretrapping
  1318 			</text>
  1319 		</explanation>
  1320 		<tag>protocol</tag>
  1321 	</concept>
  1322 	<concept>
  1323 		<term abbreviation="SRTP" completeForm="secure RTP" language="en"/>
  1324 		<explanation language="en"><text></text></explanation>
  1325 		<tag>security</tag>
  1326 		<tag>protocol</tag>
  1327 	</concept>
  1328 	<concept>
  1329 		<term abbreviation="ZRTP" completeForm="Zimmermann RTP" language="en"/>
  1330 		<explanation language="en"><text></text></explanation>
  1331 		<tag>security</tag>
  1332 		<tag>protocol</tag>
  1333 	</concept>
  1334 	<concept>
  1335 		<term abbreviation="" completeForm="throttling" language="en"/>
  1336 		<explanation language="en">
  1337 			<text>
  1338 				limiting the flow rate;
  1339 				e.g. short messages per second
  1340 			</text>
  1341 		</explanation>
  1342 		<tag>messaging</tag>
  1343 	</concept>
  1344 	<concept>
  1345 		<term abbreviation="" completeForm="keep alive" language="en"/>
  1346 		<term abbreviation="" completeForm="keep-alive" language="en"/>
  1347 		<explanation language="en">
  1348 			<text>
  1349 				a packet or message or command without useful content
  1350 				which is sent in order to avoid closing the connection (time out) and to check, it is still working;
  1351 				in HTTP this term means persistent connection
  1352 			</text>
  1353 		</explanation>
  1354 		<tag>computer</tag>
  1355 	</concept>
  1356 	<concept>
  1357 		<term abbreviation="" completeForm="inroaming" language="en"/>
  1358 		<explanation language="en"><text>roaming of subscribers from other operator in your network</text></explanation>
  1359 	</concept>
  1360 	<concept>
  1361 		<term abbreviation="" completeForm="outroaming" language="en"/>
  1362 		<explanation language="en"><text>roaming of your subscribers in other operator's network</text></explanation>
  1363 	</concept>
  1364 	<concept>
  1365 		<term abbreviation="TON" completeForm="type of number" language="en"/>
  1366 		<explanation language="en">
  1367 			<text>
  1368 				(0x00)	Unknown type of number;
  1369 				(0x01)	International number;
  1370 				(0x02)	National number;
  1371 				(0x03)	Network specific number;
  1372 				(0x04)	Subscriber number, dedicated access, short code;
  1373 				(0x05)	Alphanumeric, in 7-bit GSM alphabet;
  1374 				(0x06)	Abbreviated number
  1375 			</text>
  1376 		</explanation>
  1377 	</concept>
  1378 	<concept>
  1379 		<term abbreviation="NPI" completeForm="numbering plan indicator" language="en"/>
  1380 		<explanation language="en">
  1381 			<text>
  1382 				a number which indicates the numbering plan of a telephone number;
  1383 				values:
  1384 					(0x00)	Unknown numbering plan;
  1385 					(0x01)	ISDN/telephone numbering plan – E.164/E.163;
  1386 					(0x02)	Generic;
  1387 					(0x03)	Data numbering plan – X.121;
  1388 					(0x04)	Telex numbering plan – F.96;
  1389 					(0x05)	Service Centre Specific plan;
  1390 					(0x06)	Land mobile numbering plan – E.212;
  1391 					(0x07)	ISDN/mobile numbering plan – E.214;
  1392 					<!-- only 0-7 defined in the ITU standard Q.713 ? -->
  1393 					(0x08)	National numbering plan;
  1394 					(0x09)	Private numbering plan;
  1395 					(0x0A)	ERMES numbering plan – ETSI DE/PS 3 01-3;
  1396 					(0x0D)	Binary Internet addres – IP;
  1397 					(0x0E)	Alphanumeric Internet address
  1398 			</text>
  1399 		</explanation>
  1400 	</concept>
  1401 	<concept>
  1402 		<term abbreviation="PID" completeForm="protocol identifier" language="en"/>
  1403 		<explanation language="en">
  1404 			<text>
  1405 				one octet of information which describes the protocol resp. type of telematic device;
  1406 				0 means implicit (plain MOMT messages);
  1407 				other values are described in 3GPP TS 03.40
  1408 			</text>
  1409 		</explanation>
  1410 	</concept>
  1411 	<concept>
  1412 		<term abbreviation="PID" completeForm="process identifier" language="en"/>
  1413 		<explanation language="en">
  1414 			<text>
  1415 				identifier of an process (running program) in an operating system;
  1416 				PID 1 is usually assigned to the init process (the first process which starts other ones)
  1417 			</text>
  1418 		</explanation>
  1419 		<tag>computer</tag>
  1420 	</concept>
  1421 	<concept>
  1422 		<term abbreviation="" completeForm="Blue box" language="en"/>
  1423 		<term abbreviation="" completeForm="BlueBox" language="en"/>
  1424 		<explanation language="en"><text></text></explanation>
  1425 	</concept>
  1426 	<!--
  1427 		Orange box	https://en.wikipedia.org/wiki/Orange_box
  1428 		Vermilion box	https://en.wikipedia.org/wiki/Vermilion_box
  1429 		Magenta box	https://en.wikipedia.org/wiki/Magenta_box
  1430 	-->
  1431 	<concept>
  1432 		<term abbreviation="" completeForm="Orange box" language="en"/>
  1433 		<term abbreviation="" completeForm="OrangeBox" language="en"/>
  1434 		<explanation language="en"><text></text></explanation>
  1435 	</concept>
  1436 	<concept>
  1437 		<term abbreviation="" completeForm="Vermilion box" language="en"/>
  1438 		<term abbreviation="" completeForm="VermilionBox" language="en"/>
  1439 		<explanation language="en"><text></text></explanation>
  1440 	</concept>
  1441 	<concept>
  1442 		<term abbreviation="" completeForm="Magenta box" language="en"/>
  1443 		<term abbreviation="" completeForm="MagentaBox" language="en"/>
  1444 		<explanation language="en"><text></text></explanation>
  1445 	</concept>
  1446 	<concept>
  1447 		<term abbreviation="" completeForm="hack" language="en"/>
  1448 		<term abbreviation="" completeForm="hacking" language="en"/>
  1449 		<term abbreviation="" completeForm="hacker" language="en"/>
  1450 		<explanation language="en">
  1451 			<text>
  1452 				hacker is an interrogative person interested in internal principles of things;
  1453 				often it is a software developer or a system administrator but hacking is also possible outside the digital world;
  1454 				hacking is the activity of these people – usually
  1455 					improving a software by adding new features
  1456 					or discovering secrets in existing software or hardware systems
  1457 					or running extraordinary configurations or combinations of components;
  1458 				hack is the product of their work – e.g. improved computer program or piece of hardware;
  1459 				<!-- hack can mean also the insctructions how to do it; -->
  1460 				don't confuse with „cracker“
  1461 			</text>
  1462 			<!--
  1463 				RMS - https://www.gnu.org/philosophy/rms-hack.html
  1464 				„someone who enjoys playful cleverness, especially in programming but other media are also possible“
  1465 				
  1466 				ESR - http://www.catb.org/~esr/jargon/html/H/hacker.html
  1467 				[originally, someone who makes furniture with an axe] 
  1468 				1. A person who enjoys exploring the details of programmable systems and how to stretch their capabilities, as opposed to most users, who prefer to learn only the minimum necessary. RFC1392, the Internet Users' Glossary, usefully amplifies this as: A person who delights in having an intimate understanding of the internal workings of a system, computers and computer networks in particular.
  1469 				2. One who programs enthusiastically (even obsessively) or who enjoys programming rather than just theorizing about programming. 
  1470 				3. A person capable of appreciating hack value. 
  1471 				4. A person who is good at programming quickly. 
  1472 				5. An expert at a particular program, or one who frequently does work using it or on it; as in ‘a Unix hacker’. (Definitions 1 through 5 are correlated, and people who fit them congregate.) 
  1473 				6. An expert or enthusiast of any kind. One might be an astronomy hacker, for example. 
  1474 				7. One who enjoys the intellectual challenge of creatively overcoming or circumventing limitations. 
  1475 				8. [deprecated] A malicious meddler who tries to discover sensitive information by poking around. Hence password hacker, network hacker. The correct term for this sense is cracker.
  1476 				The term ‘hacker’ also tends to connote membership in the global community defined by the net (see the network. For discussion of some of the basics of this culture, see the How To Become A Hacker FAQ. It also implies that the person described is seen to subscribe to some version of the hacker ethic (see hacker ethic).
  1477 				It is better to be described as a hacker by others than to describe oneself that way. Hackers consider themselves something of an elite (a meritocracy based on ability), though one to which new members are gladly welcome. There is thus a certain ego satisfaction to be had in identifying yourself as a hacker (but if you claim to be one and are not, you'll quickly be labeled bogus). See also geek, wannabee.
  1478 				This term seems to have been first adopted as a badge in the 1960s by the hacker culture surrounding TMRC and the MIT AI Lab. We have a report that it was used in a sense close to this entry's by teenage radio hams and electronics tinkerers in the mid-1950s.
  1479 				
  1480 				RFC 1392 - https://tools.ietf.org/html/rfc1392
  1481 				A person who delights in having an intimate understanding of the
  1482 				internal workings of a system, computers and computer networks in
  1483 				particular.  The term is often misused in a pejorative context,
  1484 				where "cracker" would be the correct term.  See also: cracker.
  1485 			-->
  1486 		</explanation>
  1487 		<tag>computer</tag>
  1488 		<tag>security</tag>
  1489 	</concept>
  1490 	<concept>
  1491 		<term abbreviation="" completeForm="crack" language="en"/>
  1492 		<term abbreviation="" completeForm="cracking" language="en"/>
  1493 		<term abbreviation="" completeForm="cracker" language="en"/>
  1494 		<explanation language="en">
  1495 			<text>
  1496 				someone who breaks the security protections in order to get unauthorized access to a computer system;
  1497 				they often misuse their skills to steal private data, destroy systems or steal money;
  1498 				don't confuse with „hacker“
  1499 			</text>
  1500 		</explanation>
  1501 		<tag>computer</tag>
  1502 		<tag>security</tag>
  1503 	</concept>
  1504 	<concept>
  1505 		<term abbreviation="" completeForm="phreak" language="en"/>
  1506 		<term abbreviation="" completeForm="phreaking" language="en"/>
  1507 		<term abbreviation="" completeForm="phreaker" language="en"/>
  1508 		<explanation language="en">
  1509 			<text>
  1510 				a hacker interested in phone systems or telecommunications in general;
  1511 				sometimes they can become cracker if they don't only experiment but misuse telephone networks excessively (fraud);
  1512 				the term is a portmanteau of the words „phone“ and „freak“
  1513 			</text>
  1514 		</explanation>
  1515 		<tag>security</tag>
  1516 	</concept>
  1517 	<concept>
  1518 		<term abbreviation="AAGP" completeForm="Acision Application Gateway Provisioning" language="en"/>
  1519 		<term abbreviation="GAS" completeForm="Generic application server" language="en"/>
  1520 		<term abbreviation="CPS" completeForm="Central provisioning system" language="en"/>
  1521 		<explanation language="en">
  1522 			<text>
  1523 				a software component developed by the Acision company;
  1524 				a provisioning tool for AAG and other products of this company;
  1525 				can be used as generic provisioning tool for any product provided that particular connector exists;
  1526 				has web GUI and several APIs
  1527 			</text>
  1528 		</explanation>
  1529 		<tag>acision</tag>
  1530 		<tag>messaging</tag>
  1531 	</concept>
  1532 	<concept>
  1533 		<term abbreviation="AAG" completeForm="Acision Application Gateway" language="en"/>
  1534 		<term abbreviation="OMG" completeForm="Open Messaging Gateway" language="en"/>
  1535 		<explanation language="en">
  1536 			<text>
  1537 				a software component developed by the Acision company;
  1538 				typical use case is: a messaging gateway between SMSC and applications (ESME)
  1539 			</text>
  1540 		</explanation>
  1541 		<tag>acision</tag>
  1542 		<tag>messaging</tag>
  1543 	</concept>
  1544 	<concept>
  1545 		<term abbreviation="GBG" completeForm="General Billing Gateway" language="en"/>
  1546 		<term abbreviation="AFG" completeForm="Acision Flexible Gateway" language="en"/>
  1547 		<term abbreviation="TGC" completeForm="Test Gateway Component" language="en"/>
  1548 		<term abbreviation="UGC" completeForm="Universal Gateway Component" language="en"/>
  1549 		<explanation language="en">
  1550 			<text>
  1551 				a software component developed by the Acision company;
  1552 				works as a messaging gateway and can interconnect systems talking many various messaging protocols;
  1553 				is highly configurable and can translate and transform messages in many formats;
  1554 				original purpose was doing a gateway for billing messages comming from e.g. SMSC to some billing system
  1555 			</text>
  1556 		</explanation>
  1557 		<tag>acision</tag>
  1558 		<tag>messaging</tag>
  1559 	</concept>
  1560 	<concept>
  1561 		<term abbreviation="UGC" completeForm="user generated content" language="en"/>
  1562 		<explanation language="en">
  1563 			<text>
  1564 				content in various media formats (text, pictures, video, sound…)
  1565 				which is created by users (or subscribers);
  1566 				e.g. photos taken by mobile and sent over MMS, e-mail or web to some server which displays them to other users
  1567 			</text>
  1568 		</explanation>
  1569 		<tag>computer</tag>
  1570 	</concept>
  1571 	<concept>
  1572 		<term abbreviation="VCS" completeForm="version control system" language="en"/>
  1573 		<term abbreviation="RCS" completeForm="revision control system" language="en"/>
  1574 		<explanation language="en">
  1575 			<text>
  1576 				a software tool used for management of changes in documents;
  1577 				often is used for managing source code and other artifacts (like documentation or analytic models) created during software development;
  1578 				VCS tracks versions of particular files or changesets, branches, tags (named revisions);
  1579 				examples of traditional centralized VCS: SCCS, RCS, CVS or SVN (quite modern but centralized);
  1580 				nowadays are very popular decentralized systems (DVCS)
  1581 			</text>
  1582 		</explanation>
  1583 		<tag>computer</tag>
  1584 	</concept>
  1585 	<concept>
  1586 		<term abbreviation="DVCS" completeForm="distributed version control system" language="en"/>
  1587 		<term abbreviation="DRCS" completeForm="distributed revision control system" language="en"/>
  1588 		<explanation language="en">
  1589 			<text>
  1590 				kind of version control system which allows not only workflow with one central server
  1591 				but also decentralized workflows where changesets are pushed or pulled between particular nodes;
  1592 				each node has typically full repository clone with all the history (commits, branches, tags);
  1593 				this facilitates offline work –
  1594 					developer can do commits or work with branches and tags even if he is offline –
  1595 					and after going online,
  1596 						he pushed his work to other developers
  1597 						or to the central repository
  1598 						or his work is pulled by others;
  1599 				other advantage is easy backup – just clone the repository and then do push/pull from the working one;
  1600 				Examples of DVCS: Mercurial (Hg), Git, Bazaar (bzr), Monotone (mtn), Fossil, GNU arch, Darcs, DCVS or SVK
  1601 			</text>
  1602 		</explanation>
  1603 		<tag>computer</tag>
  1604 	</concept>
  1605 	<concept>
  1606 		<term abbreviation="SCM" completeForm="software configuration management" language="en"/>
  1607 		<explanation language="en"><text></text></explanation>
  1608 		<tag>computer</tag>
  1609 	</concept>
  1610 	<concept>
  1611 		<term abbreviation="hg" completeForm="mercurial" language="en"/>
  1612 		<explanation language="en"><text>a distributed version control system</text></explanation>
  1613 		<tag>computer</tag>
  1614 	</concept>
  1615 	<concept>
  1616 		<term abbreviation="cvs" completeForm="Concurrent Versions System" language="en"/>
  1617 		<explanation language="en"><text>a centralized version control system</text></explanation>
  1618 		<tag>computer</tag>
  1619 	</concept>
  1620 	<concept>
  1621 		<term abbreviation="svn" completeForm="Subversion" language="en"/>
  1622 		<explanation language="en"><text>a centralized version control system</text></explanation>
  1623 		<tag>computer</tag>
  1624 	</concept>
  1625 	<concept>
  1626 		<term abbreviation="bzr" completeForm="Bazaar" language="en"/>
  1627 		<explanation language="en"><text>a distributed version control system</text></explanation>
  1628 		<tag>computer</tag>
  1629 	</concept>
  1630 	<concept>
  1631 		<term abbreviation="" completeForm="git" language="en"/>
  1632 		<explanation language="en"><text>a distributed version control system</text></explanation>
  1633 		<tag>computer</tag>
  1634 	</concept>
  1635 	<concept>
  1636 		<term abbreviation="XML" completeForm="eXtensible markup language" language="en"/>
  1637 		<explanation language="en"><text></text></explanation>
  1638 		<tag>computer</tag>
  1639 		<tag>xml</tag>
  1640 	</concept>
  1641 	<concept>
  1642 		<term abbreviation="xmlns" completeForm="XML name space" language="en"/>
  1643 		<explanation language="en"><text></text></explanation>
  1644 		<tag>computer</tag>
  1645 		<tag>xml</tag>
  1646 	</concept>
  1647 	<concept>
  1648 		<term abbreviation="DTD" completeForm="document type definition" language="en"/>
  1649 		<explanation language="en">
  1650 			<text>
  1651 				a schema language for XML;
  1652 				used to describe the format based on XML
  1653 				and perform validations of XML documents
  1654 			</text>
  1655 		</explanation>
  1656 		<tag>computer</tag>
  1657 		<tag>xml</tag>
  1658 	</concept>
  1659 	<concept>
  1660 		<term abbreviation="XSD" completeForm="XML schema definition" language="en"/>
  1661 		<explanation language="en">
  1662 			<text>
  1663 				a schema language for XML;
  1664 				used to describe the format based on XML
  1665 				and perform validations of XML documents
  1666 				XSD itself is written in XML;
  1667 				is more powerful than DTD
  1668 			</text>
  1669 		</explanation>
  1670 		<tag>computer</tag>
  1671 		<tag>xml</tag>
  1672 	</concept>
  1673 	<concept>
  1674 		<term abbreviation="" completeForm="Schematron" language="en"/>
  1675 		<explanation language="en">
  1676 			<text>
  1677 				a validation language;
  1678 				can describe formats based on XML like XSD or DTD does, but has entirely different approach;
  1679 				Schematron is rule-based – defines assertions which must be met to have valid document;
  1680 				this rules are transformed into XSL template which is executed during validation;
  1681 				Schematron can be also combined with XSD
  1682 					– XSD schemas (which are more declarative and more clearly represents the desired structure of the document for humans)
  1683 					are enriched with Schematron assertions that adds more complex rules (that cannot be easily expressed in pure XSD)
  1684 			</text>
  1685 		</explanation>
  1686 		<tag>computer</tag>
  1687 		<tag>xml</tag>
  1688 	</concept>
  1689 	<concept>
  1690 		<term abbreviation="XSLT" completeForm="Extensible Stylesheet Language Transformations" language="en"/>
  1691 		<term abbreviation="XSL" completeForm="Extensible Stylesheet Language" language="en"/>
  1692 		<explanation language="en">
  1693 			<text>
  1694 				a transformation language for XML;
  1695 				can be used e.g. for
  1696 					conversion from one XML format to another one,
  1697 					for generating (plain) text or HTML,
  1698 					for user friendly visualisation of XML data (XHTML or SVG output),
  1699 					or for validations (raise error message on invalid input, see also Schematron);
  1700 				XSL templates are also written in XML
  1701 			</text>
  1702 		</explanation>
  1703 		<tag>computer</tag>
  1704 		<tag>xml</tag>
  1705 	</concept>
  1706 	<concept>
  1707 		<term abbreviation="" completeForm="XQuery" language="en"/>
  1708 		<explanation language="en">
  1709 			<text>
  1710 				functional programming language for processing XML and other data
  1711 			</text>
  1712 		</explanation>
  1713 		<tag>computer</tag>
  1714 		<tag>xml</tag>
  1715 	</concept>
  1716 	<concept>
  1717 		<term abbreviation="XPath" completeForm="XML Path Language" language="en"/>
  1718 		<explanation language="en">
  1719 			<text>
  1720 				a query language for selecting XML nodes;
  1721 				an XPath expression can also compute values and call XPath functions
  1722 			</text>
  1723 		</explanation>
  1724 		<tag>computer</tag>
  1725 		<tag>xml</tag>
  1726 	</concept>
  1727 	<concept>
  1728 		<term abbreviation="" completeForm="Ant" language="en"/>
  1729 		<explanation language="en">
  1730 			<text>
  1731 				a tool for automating software build processes;
  1732 				does similar job like GNU Make, but is written in and for Java;
  1733 				equivalent for the Makefile is here build.xml which describes particular tasks and their dependencies;
  1734 				there is lot of tasks distributed with Apache Ant e.g.
  1735 					compilation of Java code,
  1736 					unit testing,
  1737 					running XSLT transformations,
  1738 					packing JARs and other archives,
  1739 					copying and moving files
  1740 					or calling system commands;
  1741 				and user can also write own tasks in Java
  1742 			</text>
  1743 		</explanation>
  1744 		<tag>computer</tag>
  1745 		<tag>java</tag>
  1746 	</concept>
  1747 	<concept>
  1748 		<term abbreviation="mvn" completeForm="Maven" language="en"/>
  1749 		<explanation language="en">
  1750 			<text>
  1751 				a tool for automating software build processes;
  1752 				compared to Ant, Maven is much more declarative instead of procedural and is strongly focused on resolving dependencies on modules, components, libraries;
  1753 				dependencies (libraries) of a project are automatically downloaded from a repository;
  1754 				projects in Maven are described by a POM file
  1755 			</text>
  1756 		</explanation>
  1757 		<tag>computer</tag>
  1758 		<tag>java</tag>
  1759 	</concept>
  1760 	<concept>
  1761 		<term abbreviation="POM" completeForm="Project Object Model" language="en"/>
  1762 		<explanation language="en">
  1763 			<text>
  1764 				an XML configuration file which describes one Maven project;
  1765 				contains project metadata like name, owner, version, dependencies
  1766 				and phases of its build process
  1767 			</text>
  1768 		</explanation>
  1769 		<tag>computer</tag>
  1770 		<tag>java</tag>
  1771 	</concept>
  1772 	<concept>
  1773 		<term abbreviation="" completeForm="Java" language="en"/>
  1774 		<explanation language="en">
  1775 			<text>
  1776 				an object-oriented programming language designed by James Gosling at Sun Microsystems;
  1777 				Java source code is compiled into byte code (.class files) which can be executed in JVM on many architectures and operating systems;
  1778 				Java is completely free software, there is OpenJDK and standard library distributed under GNU GPL license;
  1779 				there is also GNU Classpath – an independent and free software implementation of the standard library;
  1780 				Java is popular and well established enterprise-grade software platform
  1781 			</text>
  1782 		</explanation>
  1783 		<tag>computer</tag>
  1784 		<tag>java</tag>
  1785 	</concept>
  1786 	<concept>
  1787 		<term abbreviation="JVM" completeForm="Java virtual machine" language="en"/>
  1788 		<explanation language="en">
  1789 			<text>
  1790 				a runtime environment for running Java byte code;
  1791 				there is lot of programming languages that can be compiled into the bytecode and executed in JVM e.g.
  1792 					Clojure (a Lisp dialect),
  1793 					Scala (OOP and functional language),
  1794 					Groovy (a scripting language),
  1795 					Jython (an implementation of Python),
  1796 					JRuby
  1797 					or Rhino (JavaScript)
  1798 			</text>
  1799 		</explanation>
  1800 		<tag>computer</tag>
  1801 		<tag>java</tag>
  1802 	</concept>
  1803 	<concept>
  1804 		<term abbreviation="JavaDoc" completeForm="Java documentation" language="en"/>
  1805 		<explanation language="en">
  1806 			<text>
  1807 				documentation of Java source code (classes, enumerations, interfaces, packages);
  1808 				describes API and software's internals;
  1809 				is useful for developers, not too much for end-users
  1810 			</text>
  1811 		</explanation>
  1812 		<tag>computer</tag>
  1813 		<tag>java</tag>
  1814 	</concept>
  1815 	<concept>
  1816 		<term abbreviation="" completeForm="Erlang" language="en"/>
  1817 		<explanation language="en">
  1818 			<text>
  1819 				a functional programming language developed in Ericsson;
  1820 				influenced by Prolog and SmallTalk languages;
  1821 				Erlang implementation is a free software
  1822 			</text>
  1823 		</explanation>
  1824 		<tag>ericsson</tag>
  1825 	</concept>
  1826 	<concept>
  1827 		<term abbreviation="RegEx" completeForm="Regular Expression" language="en"/>
  1828 		<term abbreviation="RegExp" completeForm="Regular Expression" language="en"/>
  1829 		<term abbreviation="RE" completeForm="Regular Expression" language="en"/>
  1830 		<explanation language="en">
  1831 			<text>
  1832 				an expression (sequence of characters) which forms a pattern that can be used for string matching –
  1833 				finding occurrences of the pattern in the text or evaluating whether the whole text matches the pattern;
  1834 				Example: regular expression (a|b)cde\d+ matches strings acde123 or bcde0 but not cde1 or acdex
  1835 			</text>
  1836 		</explanation>
  1837 		<tag>computer</tag>
  1838 	</concept>
  1839 	<concept>
  1840 		<term abbreviation="PCRE" completeForm=" Perl Compatible Regular Expressions" language="en"/>
  1841 		<explanation language="en">
  1842 			<text>
  1843 				a C library for regular expressions compatible with Perl's RegEx dialect
  1844 				or this dialect itself
  1845 			</text>
  1846 		</explanation>
  1847 		<tag>computer</tag>
  1848 	</concept>
  1849 	<concept>
  1850 		<term abbreviation="Perl" completeForm="Practical Extraction and Reporting Language" language="en"/>
  1851 		<explanation language="en">
  1852 			<text>
  1853 				an interpreted dynamic programming language;
  1854 				popular in UNIX environment for scripting and text processing;
  1855 				Perl syntax allows very effective and elegant notation especially while working with regular expressions, but sometimes it is hard to read;
  1856 				its implementation is free software
  1857 			</text>
  1858 		</explanation>
  1859 		<tag>computer</tag>
  1860 	</concept>
  1861 	<concept>
  1862 		<term abbreviation="POSIX" completeForm="Portable Operating System Interface" language="en"/>
  1863 		<explanation language="en">
  1864 			<text>
  1865 				a family of standards for maintaining compatibility between operating systems;
  1866 				defines API, command line shells and utility interfaces
  1867 				and thus brings compatibility amog many variants of unix and unix-like operating systems;
  1868 				the name POSIX was suggested by Richard Stallman (the standards was formerly known as IEEE-IX);
  1869 				there are standards for e.g. process creation and control, signals, pipes, message passing, shared memory or semaphores;
  1870 				Examples of fully or mostly POSIX-compliant systems: AIX, IRIS, Solaris, OS X, GNU/Linux, BeOS (Haiku) or several BSD variants
  1871 			</text>
  1872 		</explanation>
  1873 		<tag>computer</tag>
  1874 	</concept>
  1875 	<concept>
  1876 		<term abbreviation="" completeForm="UNIX" language="en"/>
  1877 		<term abbreviation="Unics" completeForm="UNiplexed Information and Computing Service" language="en"/>
  1878 		<explanation language="en">
  1879 			<text>
  1880 				a multitasking and multi-user operating system developed in 1969 by a group of AT&amp;T hackers at Bell Labs;
  1881 				has influenced many other operating systems (now called UNIX-like OS) and established distinctive UNIX culture and philosophy;
  1882 				nowadays we have completely free software implementation called GNU (resp. GNU/Linux where Linux is operating system kernel or GNU/Hurd);
  1883 				UNIX and UNIX-like operating systems runs on many mission-critical servers and are also used on personal computers or even mobile phones and small devices like routers or firewalls;
  1884 				GNU/Linux runs on 95,2 % (and other 3,4 % are Unices too) of world's supercomputers with 97,4 % performance share (top500.org, June 2013 statistics)
  1885 			</text>
  1886 		</explanation>
  1887 		<tag>computer</tag>
  1888 	</concept>
  1889 	<concept>
  1890 		<term abbreviation="" completeForm="GNU/Linux" language="en"/>
  1891 		<term abbreviation="" completeForm="Linux" language="en"/>
  1892 		<explanation language="en">
  1893 			<text>
  1894 				the GNU operating system with Linux kernel;
  1895 			</text>
  1896 		</explanation>
  1897 		<tag>computer</tag>
  1898 	</concept>
  1899 	<concept>
  1900 		<term abbreviation="GNU" completeForm="GNU's Not Unix!" language="en"/>
  1901 		<explanation language="en">
  1902 			<text>
  1903 				a Unix-like operating system that is free software and is upward-compatible with Unix;
  1904 				the GNU Project was initially announced in September 1983 by Richard Stallman;
  1905 				nowadays is mostly used in combination with Linux kernel and called GNU/Linux
  1906 			</text>
  1907 		</explanation>
  1908 		<tag>computer</tag>
  1909 	</concept>
  1910 	<concept>
  1911 		<term abbreviation="GNU GPL" completeForm="GNU General Public License" language="en"/>
  1912 		<term abbreviation="GPL" completeForm="General Public License" language="en"/>
  1913 		<explanation language="en">
  1914 			<text>
  1915 				a free software and copyleft license which is used by many free software packages
  1916 			</text>
  1917 		</explanation>
  1918 		<tag>computer</tag>
  1919 	</concept>
  1920 	<concept>
  1921 		<term abbreviation="GNU FDL" completeForm="GNU Free Documentation License" language="en"/>
  1922 		<term abbreviation="FDL" completeForm="Free Documentation License" language="en"/>
  1923 		<explanation language="en">
  1924 			<text>
  1925 				whereas GNU GPL is free and copyleft license for software,
  1926 				the GNU FDL is similar license designed for documentaion – books, articles, drawings etc.
  1927 			</text>
  1928 		</explanation>
  1929 		<tag>computer</tag>
  1930 	</concept>
  1931 	<concept>
  1932 		<term abbreviation="FS" completeForm="free software" language="en"/>
  1933 		<explanation language="en">
  1934 			<text>
  1935 				a category of software which respects user's freedoms – user of such software has the four essential freedoms:
  1936 					0) The freedom to run the program, for any purpose.
  1937 					1) The freedom to study how the program works, and change it so it does your computing as you wish. Access to the source code is a precondition for this.
  1938 					2) The freedom to redistribute copies so you can help your neighbor.
  1939 					3) The freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes. Access to the source code is a precondition for this.;
  1940 				the term „Free software“ was defined by Richard Stallman
  1941 			</text>
  1942 		</explanation>
  1943 		<tag>computer</tag>
  1944 	</concept>
  1945 	<concept>
  1946 		<term abbreviation="OSS" completeForm="open source software" language="en"/>
  1947 		<explanation language="en">
  1948 			<text>
  1949 				a category of software similar to Free software;
  1950 				the term „open source software“ was defined by Open Source Initiative;
  1951 				its definition contains ten requirements like free redistribution, available source code or allowing derived works;
  1952 				almost every open source license is also a free software license and vice versa;
  1953 				but there is different philosophical background – the free software movement has user's freedom as the main priority
  1954 			</text>
  1955 		</explanation>
  1956 		<tag>computer</tag>
  1957 	</concept>
  1958 	<concept>
  1959 		<term abbreviation="FSF" completeForm="Free Software Foundation" language="en"/>
  1960 		<explanation language="en">
  1961 			<text>
  1962 				a non-profit organization founded by Richard Stallman on 4 October 1985 to support the free software movement;
  1963 					has developed the GNU operating system,
  1964 					issued licenses like GPL or FDL,
  1965 					maintains the Free Software Definition,
  1966 					does political campaigns and other activities related to user's freedoms;
  1967 			</text>
  1968 		</explanation>
  1969 		<tag>computer</tag>
  1970 	</concept>
  1971 	<concept>
  1972 		<term abbreviation="OSI" completeForm="Open Source Initiative" language="en"/>
  1973 		<explanation language="en">
  1974 			<text>
  1975 				an organization dedicated to promoting open-source software;
  1976 				was founded in February 1998, by Bruce Perens and Eric S. Raymond;
  1977 			</text>
  1978 		</explanation>
  1979 		<tag>computer</tag>
  1980 	</concept>
  1981 	<concept>
  1982 		<term abbreviation="EFF" completeForm="Electronic Frontier Foundation" language="en"/>
  1983 		<explanation language="en">
  1984 			<text>
  1985 				a non-profit organization focused on protecting user's freedoms and privacy in mostly digital world;
  1986 				fights against censorship and spying, criticises software patents
  1987 				and promotes – among others – free speech, privacy, e-voting and network neutrality
  1988 			</text>
  1989 		</explanation>
  1990 		<tag>computer</tag>
  1991 	</concept>
  1992 	<concept>
  1993 		<term abbreviation="OpenVMS" completeForm="Open Virtual Memory System" language="en"/>
  1994 		<term abbreviation="VMS" completeForm="Virtual Memory System" language="en"/><!-- informally -->
  1995 		<explanation language="en">
  1996 			<text>
  1997 				an operating system for VAX, Alpha and Itanium-based computers
  1998 			</text>
  1999 		</explanation>
  2000 		<tag>computer</tag>
  2001 	</concept>
  2002 	<concept>
  2003 		<term abbreviation="VMS" completeForm="voice mail system" language="en"/><!-- informally -->
  2004 		<explanation language="en"><text></text></explanation>
  2005 	</concept>
  2006 	<concept>
  2007 		<term abbreviation="LDAP" completeForm="Lightweight Directory Access Protocol" language="en"/>
  2008 		<explanation language="en">
  2009 			<text>
  2010 				a binary protocol for accessing directories (specialized databases);
  2011 				LDAP databases are usually optimalized for reading operations with rare write operations;
  2012 				provides a tree-oriented view on data which is different from relational one in RDBMS;
  2013 				despite that some LDAP servers use relational database as its backend
  2014 			</text>
  2015 		</explanation>
  2016 		<tag>computer</tag>
  2017 		<tag>protocol</tag>
  2018 	</concept>
  2019 	<concept>
  2020 		<term abbreviation="SQL" completeForm="structured query language" language="en"/>
  2021 		<term abbreviation="SEQUEL" completeForm="structured english query language" language="en"/>
  2022 		<explanation language="en">
  2023 			<text>
  2024 				
  2025 			</text>
  2026 		</explanation>
  2027 		<tag>computer</tag>
  2028 	</concept>
  2029 	<concept>
  2030 		<term abbreviation="noSQL" completeForm="Not SQL" language="en"/>
  2031 		<explanation language="en"><text></text></explanation>
  2032 		<tag>computer</tag>
  2033 	</concept>
  2034 	<concept>
  2035 		<term abbreviation="RDBMS" completeForm="relational database management system" language="en"/>
  2036 		<term abbreviation="SŘDB" completeForm="systém řízení báze dat" language="cs"/>
  2037 		<explanation language="en"><text></text></explanation>
  2038 		<tag>computer</tag>
  2039 	</concept>
  2040 	<concept>
  2041 		<term abbreviation="ODBC" completeForm="open database connectivity" language="en"/>
  2042 		<explanation language="en"><text></text></explanation>
  2043 		<tag>computer</tag>
  2044 	</concept>
  2045 	<concept>
  2046 		<term abbreviation="JDBC" completeForm="java database connectivity" language="en"/>
  2047 		<explanation language="en">
  2048 			<text>
  2049 				a standard Java API for accessing relational (SQL) databases
  2050 			</text>
  2051 		</explanation>
  2052 		<tag>computer</tag>
  2053 		<tag>java</tag>
  2054 	</concept>
  2055 	<concept>
  2056 		<term abbreviation="AS" completeForm="application server" language="en"/>
  2057 		<explanation language="en"><text></text></explanation>
  2058 		<tag>computer</tag>
  2059 		<tag>java</tag>
  2060 	</concept>
  2061 	<concept>
  2062 		<term abbreviation="" completeForm="JBoss" language="en"/>
  2063 		<explanation language="en"><text>an application server</text></explanation>
  2064 		<tag>computer</tag>
  2065 		<tag>java</tag>
  2066 	</concept>
  2067 	<concept>
  2068 		<term abbreviation="" completeForm="GlassFish" language="en"/>
  2069 		<explanation language="en"><text>an application server</text></explanation>
  2070 		<tag>computer</tag>
  2071 		<tag>java</tag>
  2072 	</concept>
  2073 	<concept>
  2074 		<term abbreviation="WSDL" completeForm="web services description language" language="en"/>
  2075 		<explanation language="en"><text></text></explanation>
  2076 		<tag>computer</tag>
  2077 		<tag>xml</tag>
  2078 	</concept>
  2079 	<concept>
  2080 		<term abbreviation="WADL" completeForm="web application description language" language="en"/>
  2081 		<explanation language="en"><text></text></explanation>
  2082 		<tag>computer</tag>
  2083 		<tag>xml</tag>
  2084 	</concept>
  2085 	<concept>
  2086 		<term abbreviation="SOAP" completeForm="simple object access protocol" language="en"/>
  2087 		<term abbreviation="SOAP" completeForm="SOA Protocol" language="en"/>
  2088 		<explanation language="en"><text></text></explanation>
  2089 		<tag>computer</tag>
  2090 		<tag>xml</tag>
  2091 		<tag>protocol</tag>
  2092 	</concept>
  2093 	<concept>
  2094 		<term abbreviation="REST" completeForm="representational state transfer" language="en"/>
  2095 		<explanation language="en"><text></text></explanation>
  2096 		<tag>computer</tag>
  2097 	</concept>
  2098 	<concept>
  2099 		<term abbreviation="EJB" completeForm="Enterprise JavaBeans" language="en"/>
  2100 		<explanation language="en"><text></text></explanation>
  2101 		<tag>computer</tag>
  2102 		<tag>java</tag>
  2103 	</concept>
  2104 	<concept>
  2105 		<term abbreviation="CORBA" completeForm="common object request broker architecture" language="en"/>
  2106 		<explanation language="en"><text></text></explanation>
  2107 		<tag>computer</tag>
  2108 	</concept>
  2109 	<concept>
  2110 		<term abbreviation="IDL" completeForm="interface definition language" language="en"/>
  2111 		<explanation language="en"><text></text></explanation>
  2112 		<tag>computer</tag>
  2113 	</concept>
  2114 	<concept>
  2115 		<term abbreviation="IIOP" completeForm="Internet InterORB Protocol" language="en"/>
  2116 		<term abbreviation="GIOP" completeForm="General Inter-ORB Protocol" language="en"/>
  2117 		<explanation language="en"><text></text></explanation>
  2118 		<tag>computer</tag>
  2119 		<tag>protocol</tag>
  2120 	</concept>
  2121 	<concept>
  2122 		<term abbreviation="RMI" completeForm="Remote Method Invocation" language="en"/>
  2123 		<explanation language="en"><text></text></explanation>
  2124 		<tag>computer</tag>
  2125 		<tag>java</tag>
  2126 		<tag>protocol</tag>
  2127 	</concept>
  2128 	<concept>
  2129 		<term abbreviation="JAR" completeForm="Java ARchive" language="en"/>
  2130 		<explanation language="en">
  2131 			<text>
  2132 				an archive format in which compiled Java classes, metadata and other resources are distributed;
  2133 				is based on the ZIP format and files have .jar extension;
  2134 				basic JAR files are used for desktop applications and Java libraries;
  2135 				there are also EAR and WAR for enterprise and web applications
  2136 			</text>
  2137 		</explanation>
  2138 		<tag>computer</tag>
  2139 		<tag>java</tag>
  2140 	</concept>
  2141 	<concept>
  2142 		<term abbreviation="EAR" completeForm="Enterprise ARchive" language="en"/>
  2143 		<explanation language="en">
  2144 			<text>
  2145 				a kind of JAR file in which an enterprise application is distributed/deployed
  2146 			</text>
  2147 		</explanation>
  2148 		<tag>computer</tag>
  2149 		<tag>java</tag>
  2150 	</concept>
  2151 	<concept>
  2152 		<term abbreviation="WAR" completeForm="Web ARchive" language="en"/>
  2153 		<explanation language="en">
  2154 			<text>
  2155 				a kind of JAR file in which a web application is distributed/deployed
  2156 			</text>
  2157 		</explanation>
  2158 		<tag>computer</tag>
  2159 		<tag>java</tag>
  2160 	</concept>
  2161 	<concept>
  2162 		<term abbreviation="RAR" completeForm="Resource Adapter aRchive" language="en"/>
  2163 		<explanation language="en"><text></text></explanation>
  2164 		<tag>computer</tag>
  2165 		<tag>java</tag>
  2166 	</concept>
  2167 	<concept>
  2168 		<term abbreviation="AJP" completeForm="Apache JServ Protocol" language="en"/>
  2169 		<explanation language="en"><text></text></explanation>
  2170 		<tag>computer</tag>
  2171 		<tag>java</tag>
  2172 		<tag>protocol</tag>
  2173 	</concept>
  2174 	<concept>
  2175 		<term abbreviation="HTTP" completeForm="hypertext transfer protocol" language="en"/>
  2176 		<term abbreviation="HTTPS" completeForm="hypertext transfer protocol secure" language="en"/>
  2177 		<explanation language="en"><text></text></explanation>
  2178 		<tag>computer</tag>
  2179 		<tag>protocol</tag>
  2180 	</concept>
  2181 	<concept>
  2182 		<term abbreviation="SSL" completeForm="secure socket layer" language="en"/>
  2183 		<term abbreviation="TLS" completeForm="transport layer security" language="en"/>
  2184 		<explanation language="en"><text></text></explanation>
  2185 		<tag>computer</tag>
  2186 		<tag>security</tag>
  2187 		<tag>protocol</tag>
  2188 	</concept>
  2189 	<concept>
  2190 		<term abbreviation="DTLS" completeForm="datagram transport layer security" language="en"/>
  2191 		<explanation language="en"><text></text></explanation>
  2192 		<tag>security</tag>
  2193 		<tag>protocol</tag>
  2194 	</concept>
  2195 	<concept>
  2196 		<term abbreviation="BASH" completeForm="Bourne Again Shell" language="en"/>
  2197 		<explanation language="en"><text></text></explanation>
  2198 		<tag>computer</tag>
  2199 	</concept>
  2200 	<concept>
  2201 		<term abbreviation="SH" completeForm="shell" language="en"/>
  2202 		<explanation language="en"><text></text></explanation>
  2203 		<tag>computer</tag>
  2204 	</concept>
  2205 	<concept>
  2206 		<term abbreviation="SSH" completeForm="secure shell" language="en"/>
  2207 		<term abbreviation="" completeForm="OpenSSH" language="en"/>
  2208 		<explanation language="en"><text></text></explanation>
  2209 		<tag>computer</tag>
  2210 		<tag>security</tag>
  2211 		<tag>protocol</tag>
  2212 	</concept>
  2213 	<concept>
  2214 		<term abbreviation="SCP" completeForm="secure copy" language="en"/>
  2215 		<explanation language="en"><text></text></explanation>
  2216 		<tag>computer</tag>
  2217 		<tag>security</tag>
  2218 	</concept>
  2219 	<concept>
  2220 		<term abbreviation="SFTP" completeForm="SSH file transfer protocol" language="en"/>
  2221 		<explanation language="en"><text></text></explanation>
  2222 		<tag>computer</tag>
  2223 		<tag>security</tag>
  2224 		<tag>protocol</tag>
  2225 	</concept>
  2226 	<concept>
  2227 		<term abbreviation="FTP" completeForm="file transfer protocol" language="en"/>
  2228 		<term abbreviation="FTPS" completeForm="file transfer protocol secure" language="en"/>
  2229 		<explanation language="en"><text></text></explanation>
  2230 		<tag>computer</tag>
  2231 		<tag>protocol</tag>
  2232 	</concept>
  2233 	<concept>
  2234 		<term abbreviation="PGP" completeForm="Pretty Good Privacy" language="en"/>
  2235 		<term abbreviation="GPG" completeForm="GNU Privacy Guard" language="en"/>
  2236 		<term abbreviation="GnuPG" completeForm="GNU Privacy Guard" language="en"/>
  2237 		<term abbreviation="OpenPGP" completeForm="Open Pretty Good Privacy" language="en"/>
  2238 		<explanation language="en"><text></text></explanation>
  2239 		<tag>computer</tag>
  2240 		<tag>security</tag>
  2241 	</concept>
  2242 	<concept>
  2243 		<term abbreviation="DSA" completeForm="digital signature algorithm" language="en"/>
  2244 		<explanation language="en"><text></text></explanation>
  2245 		<tag>computer</tag>
  2246 		<tag>security</tag>
  2247 	</concept>
  2248 	<concept>
  2249 		<term abbreviation="RSA" completeForm="Ron Rivest, Adi Shamir and Leonard Adleman" language="en"/>
  2250 		<explanation language="en"><text></text></explanation>
  2251 		<tag>computer</tag>
  2252 		<tag>security</tag>
  2253 	</concept>
  2254 	<concept>
  2255 		<term abbreviation="EC" completeForm="elliptic curve" language="en"/>
  2256 		<term abbreviation="ECC" completeForm="elliptic curve cryptography" language="en"/>
  2257 		<explanation language="en"><text></text></explanation>
  2258 		<tag>computer</tag>
  2259 		<tag>security</tag>
  2260 	</concept>
  2261 	<concept>
  2262 		<term abbreviation="AES" completeForm="Advanced Encryption Standard" language="en"/>
  2263 		<term abbreviation="AES-128" completeForm="Advanced Encryption Standard 128-bit" language="en"/>
  2264 		<term abbreviation="AES-192" completeForm="Advanced Encryption Standard 192-bit" language="en"/>
  2265 		<term abbreviation="AES-256" completeForm="Advanced Encryption Standard 256-bit" language="en"/>
  2266 		<explanation language="en"><text></text></explanation>
  2267 		<tag>computer</tag>
  2268 		<tag>security</tag>
  2269 	</concept>
  2270 	<concept>
  2271 		<term abbreviation="" completeForm="Camellia" language="en"/>
  2272 		<explanation language="en"><text></text></explanation>
  2273 		<tag>computer</tag>
  2274 		<tag>security</tag>
  2275 	</concept>
  2276 	<concept>
  2277 		<term abbreviation="SHA" completeForm="secure hash algorithm" language="en"/>
  2278 		<term abbreviation="SHA-1" completeForm="secure hash algorithm 160-bit" language="en"/>
  2279 		<term abbreviation="SHA-2" completeForm="" language="en"/>
  2280 		<term abbreviation="SHA-3" completeForm="" language="en"/>
  2281 		<term abbreviation="SHA-256" completeForm="secure hash algorithm 256-bit" language="en"/>
  2282 		<term abbreviation="SHA-512" completeForm="secure hash algorithm 512-bit" language="en"/>
  2283 		<explanation language="en"><text></text></explanation>
  2284 		<tag>computer</tag>
  2285 		<tag>security</tag>
  2286 	</concept>
  2287 	<concept>
  2288 		<term abbreviation="MD4" completeForm="message-digest algorithm 4" language="en"/>
  2289 		<explanation language="en"><text></text></explanation>
  2290 		<tag>computer</tag>
  2291 		<tag>security</tag>
  2292 	</concept>
  2293 	<concept>
  2294 		<term abbreviation="MD5" completeForm="message-digest algorithm 5" language="en"/>
  2295 		<explanation language="en"><text></text></explanation>
  2296 		<tag>computer</tag>
  2297 		<tag>security</tag>
  2298 	</concept>
  2299 	<concept>
  2300 		<term abbreviation="" completeForm="ethernet" language="en"/>
  2301 		<explanation language="en"><text></text></explanation>
  2302 		<tag>computer</tag>
  2303 		<tag>protocol</tag>
  2304 	</concept>
  2305 	<concept>
  2306 		<term abbreviation="LAN" completeForm="local area network" language="en"/>
  2307 		<explanation language="en"><text></text></explanation>
  2308 		<tag>computer</tag>
  2309 	</concept>
  2310 	<concept>
  2311 		<term abbreviation="WAN" completeForm="wide area network" language="en"/>
  2312 		<explanation language="en"><text></text></explanation>
  2313 		<tag>computer</tag>
  2314 	</concept>
  2315 	<concept>
  2316 		<term abbreviation="WLAN" completeForm="wireless local area network" language="en"/>
  2317 		<explanation language="en"><text></text></explanation>
  2318 		<tag>computer</tag>
  2319 	</concept>
  2320 	<concept>
  2321 		<term abbreviation="VLAN" completeForm="virtual local area network" language="en"/>
  2322 		<explanation language="en"><text></text></explanation>
  2323 		<tag>computer</tag>
  2324 		<tag>security</tag>
  2325 	</concept>
  2326 	<concept>
  2327 		<term abbreviation="IP" completeForm="Internet Protocol" language="en"/>
  2328 		<term abbreviation="IPv4" completeForm="Internet Protocol version 4" language="en"/>
  2329 		<term abbreviation="IPv6" completeForm="Internet Protocol version 6" language="en"/>
  2330 		<term abbreviation="" completeForm="IP address" language="en"/>
  2331 		<explanation language="en"><text></text></explanation>
  2332 		<tag>computer</tag>
  2333 		<tag>protocol</tag>
  2334 	</concept>
  2335 	<concept>
  2336 		<term abbreviation="FQDN" completeForm="fully qualified domain name" language="en"/>
  2337 		<term abbreviation="" completeForm="absolute domain name" language="en"/>
  2338 		<explanation language="en">
  2339 			<text>
  2340 				a domain name like „some-machine.example.com“ which completely specifies the location in the DNS hierarchy including the TLD;
  2341 				compared to „some-machine“ which is not FQDN – is not globally unambiguous and will be resolved differently in different contexts
  2342 			</text>
  2343 		</explanation>
  2344 		<tag>computer</tag>
  2345 	</concept>
  2346 	<concept>
  2347 		<term abbreviation="MAC" completeForm="media access control" language="en"/>
  2348 		<explanation language="en">
  2349 			<text>
  2350 				a data communication protocol, a sublayer of the layer 2 in OSI model (data link layer); 
  2351 				a MAC address is a unique identifier of an network interface – used for IEEE 802 networks including Ethernet;
  2352 				they are assigned by the manufacturer of the card and stored in the hardware (can be often changed by the software);
  2353 				there are three numbering namespaces: MAC-48, EUI-48 and EUI-64;
  2354 				the address has 6 or 8 bytes and they are usually written in HEX, octets separated by : (a colon)
  2355 			</text>
  2356 		</explanation>
  2357 		<tag>computer</tag>
  2358 	</concept>
  2359 	<concept>
  2360 		<term abbreviation="TCP" completeForm="transmission control protocol" language="en"/>
  2361 		<explanation language="en"><text></text></explanation>
  2362 		<tag>computer</tag>
  2363 		<tag>protocol</tag>
  2364 	</concept>
  2365 	<concept>
  2366 		<term abbreviation="UDP" completeForm="user datagram protocol" language="en"/>
  2367 		<explanation language="en"><text></text></explanation>
  2368 		<tag>computer</tag>
  2369 		<tag>protocol</tag>
  2370 	</concept>
  2371 	<concept>
  2372 		<term abbreviation="SCTP" completeForm="stream control transmission protocol" language="en"/>
  2373 		<explanation language="en"><text></text></explanation>
  2374 		<tag>protocol</tag>
  2375 	</concept>
  2376 	<concept>
  2377 		<term abbreviation="QoS" completeForm="quality of service" language="en"/>
  2378 		<explanation language="en"><text></text></explanation>
  2379 		<tag>computer</tag>
  2380 	</concept>
  2381 	<concept>
  2382 		<term abbreviation="FUP" completeForm="fair usage policy" language="en"/>
  2383 		<explanation language="en">
  2384 			<text>
  2385 				a set of rules that should avoid excessive usage of a service by one user to the detriment of other user's comfort;
  2386 				example: „You can download 10 GB at full speed every month. If you exceed this limit the speed of your connection will descend to 64 kb/s“
  2387 			</text>
  2388 		</explanation>
  2389 	</concept>
  2390 	<concept>
  2391 		<term abbreviation="API" completeForm="application programming interface" language="en"/>
  2392 		<explanation language="en">
  2393 			<text>
  2394 				specifies interaction between software components;
  2395 				adds an abstraction layer which divides calling code and called code
  2396 				and enables multiple implementations of such API (or SPI) like multiple databases (database drivers), file systems, remote services etc.
  2397 				examples of API: POSIX, OpenGL, JDBC, JMS or JMX
  2398 			</text>
  2399 		</explanation>
  2400 		<tag>computer</tag>
  2401 	</concept>
  2402 	<concept>
  2403 		<term abbreviation="SPI" completeForm="service provider interface" language="en"/>
  2404 		<explanation language="en">
  2405 			<text>
  2406 				a kind of API to be implemented by third party;
  2407 				can be installed as plugin/addon/extension and used by the application over standard interface;
  2408 				examples of SPI: JDBC, JNDI or JAXP
  2409 			</text>
  2410 		</explanation>
  2411 		<tag>computer</tag>
  2412 		<tag>java</tag>
  2413 	</concept>
  2414 	<concept>
  2415 		<term abbreviation="JMX" completeForm="Java management extensions" language="en"/>
  2416 		<term abbreviation="MBean" completeForm="managed bean" language="en"/>
  2417 		<explanation language="en">
  2418 			<text>
  2419 				a Java technology for monitoring and managing applications or devices;
  2420 				similar to SNMP;
  2421 				managed objects (MBeans) can emit events, can be asked for values (e.g. counters) or an action (method) can be called on them;
  2422 				this native Java technology can be also adapted/translated to other protocols like SNMP or WS/SOAP and integrated with the non-Java world;
  2423 				thanks to this abstraction, the managed object can implement only simple Java interface and don't have to deal with other protocols (which is job of generic adaptors)
  2424 			</text>
  2425 		</explanation>
  2426 		<tag>computer</tag>
  2427 		<tag>java</tag>
  2428 	</concept>
  2429 	<concept>
  2430 		<term abbreviation="JMS" completeForm="Java message service" language="en"/>
  2431 		<explanation language="en">
  2432 			<text>
  2433 				a Java API for message-oriented middleware (MOM);
  2434 				allows JEE components to create, send, receive and read messages;
  2435 				supports both point-to-point and publish-subscribe messaging models;
  2436 				can be adapted/translated to many other protocols like SMTP, AMQP, XMPP or SOAP;
  2437 				is defined in  JSR 914;
  2438 				examples of JMS implementations: Apache ActiveMQ, OpenJMS, HornetQ
  2439 			</text>
  2440 		</explanation>
  2441 		<tag>computer</tag>
  2442 		<tag>java</tag>
  2443 		<tag>messaging</tag>
  2444 	</concept>
  2445 	<concept>
  2446 		<term abbreviation="MOM" completeForm="message-oriented middleware" language="en"/>
  2447 		<explanation language="en">
  2448 			<text>
  2449 				a software (or even hardware) infrastructure for sending and receiving messages;
  2450 				can also offer routing and transformation features;
  2451 				for Java the MOM API is standardized as JMS
  2452 			</text>
  2453 		</explanation>
  2454 		<tag>computer</tag>
  2455 		<tag>messaging</tag>
  2456 	</concept>
  2457 	<concept>
  2458 		<term abbreviation="AMQP" completeForm="advanced message queuing protocol" language="en"/>
  2459 		<explanation language="en">
  2460 			<text>
  2461 				an open and standard binary protocol for message-oriented middleware (MOM);
  2462 				is vendor and platform independent;
  2463 				whereas JMS defines programming API and is Java specific, the AMQP defines the wire-level protocol;
  2464 				so JMS (or other language/platform specific API) can be used inside the system and AMQP can be used for interconnection of systems in heterogenous environment;
  2465 				example of implementation: Apache ActiveMQ
  2466 			</text>
  2467 		</explanation>
  2468 		<tag>computer</tag>
  2469 		<tag>messaging</tag>
  2470 	</concept>
  2471 	<concept>
  2472 		<term abbreviation="" completeForm="wire-level protocol" language="en"/>
  2473 		<explanation language="en">
  2474 			<text>
  2475 				the format of data sent over the network as stream of bytes;
  2476 				an application layer protocol
  2477 			</text>
  2478 		</explanation>
  2479 		<tag>computer</tag>
  2480 	</concept>
  2481 	<concept>
  2482 		<term abbreviation="JCA" completeForm="Java connector architecture" language="en"/>
  2483 		<explanation language="en">
  2484 			<text>
  2485 				a Java EE technology for connecting application servers (AS) and enterprise information systems (EIS);
  2486 				is similar to JDBC (which is used for connecting to databases) but is much more generic
  2487 				and allows connecting any (often legacy) system using a specific connector
  2488 			</text>
  2489 		</explanation>
  2490 		<tag>computer</tag>
  2491 		<tag>java</tag>
  2492 	</concept>
  2493 	<concept>
  2494 		<term abbreviation="EIS" completeForm="enterprise information system" language="en"/>
  2495 		<explanation language="en">
  2496 			<text>
  2497 				an enterprise-class software system;
  2498 				typically high quality and critical service, large volumes of data, robust, supporting business processes
  2499 			</text>
  2500 		</explanation>
  2501 		<tag>computer</tag>
  2502 	</concept>
  2503 	<concept>
  2504 		<term abbreviation="OSGi" completeForm="Open Services Gateway initiative" language="en"/>
  2505 		<explanation language="en">
  2506 			<text>
  2507 				a framework and module system for Java;
  2508 				allows applications with modular architecture composed from components
  2509 				that can be loaded, started, stopped, updated or uninstalled without restarting the JVM and the application;
  2510 				examples of OSGi implementations: Apache Felix, Equinox and Knopflerfish
  2511 			</text>
  2512 		</explanation>
  2513 		<tag>computer</tag>
  2514 		<tag>java</tag>
  2515 	</concept>
  2516 	<concept>
  2517 		<term abbreviation="VPN" completeForm="virtual private network" language="en"/>
  2518 		<explanation language="en"><text></text></explanation>
  2519 		<tag>computer</tag>
  2520 		<tag>security</tag>
  2521 	</concept>
  2522 	<concept>
  2523 		<term abbreviation="P2P" completeForm="peer to peer" language="en"/>
  2524 		<explanation language="en"><text></text></explanation>
  2525 		<tag>computer</tag>
  2526 	</concept>
  2527 	<concept>
  2528 		<term abbreviation="DNS" completeForm="domain name system" language="en"/>
  2529 		<explanation language="en"><text></text></explanation>
  2530 		<tag>computer</tag>
  2531 		<tag>protocol</tag>
  2532 	</concept>
  2533 	<concept>
  2534 		<term abbreviation="ENUM" completeForm="E.164 number mapping" language="en"/>
  2535 		<explanation language="en"><text></text></explanation>
  2536 	</concept>
  2537 	<concept>
  2538 		<term abbreviation="NAPTR" completeForm="naming authority pointer resource records" language="en"/>
  2539 		<explanation language="en"><text></text></explanation>
  2540 	</concept>
  2541 	<concept>
  2542 		<term abbreviation="SPID" completeForm="service profile identifier" language="en"/>
  2543 		<explanation language="en"><text></text></explanation>
  2544 	</concept>
  2545 	<concept>
  2546 		<term abbreviation="DN" completeForm="distinguished name" language="en"/>
  2547 		<explanation language="en"><text></text></explanation>
  2548 		<tag>computer</tag>
  2549 	</concept>
  2550 	<concept>
  2551 		<term abbreviation="CN" completeForm="common name" language="en"/>
  2552 		<explanation language="en"><text></text></explanation>
  2553 		<tag>computer</tag>
  2554 	</concept>
  2555 	<concept>
  2556 		<term abbreviation="SN" completeForm="surname" language="en"/>
  2557 		<explanation language="en"><text></text></explanation>
  2558 		<tag>computer</tag>
  2559 	</concept>
  2560 	<concept>
  2561 		<term abbreviation="DC" completeForm="domain component" language="en"/>
  2562 		<explanation language="en"><text></text></explanation>
  2563 		<tag>computer</tag>
  2564 	</concept>
  2565 	<concept>
  2566 		<term abbreviation="CR" completeForm="change request" language="en"/>
  2567 		<explanation language="en">
  2568 			<text>
  2569 				a request for changing a software – new features or modification of existing ones;
  2570 				when one or more CRs are developed, they are delivered as new version of software product;
  2571 				CR is requested by the customer (mobile network operator) and is delivered by the development team;
  2572 				CR consists of one or more DT which are assigned to particular developers
  2573 			</text>
  2574 		</explanation>
  2575 		<tag>computer</tag>
  2576 	</concept>
  2577 	<concept>
  2578 		<term abbreviation="DT" completeForm="development ticket" language="en"/>
  2579 		<explanation language="en">
  2580 			<text>
  2581 				a task assigned to a software developer;
  2582 				one or more DTs together usually forms a CR;
  2583 				it is also possible to have an internal DT which is not linked to any CR (e.g. some refactoring or fixes or maintenence which was not requested by the customer);
  2584 				each commit in the versioning system should be linked to a DT
  2585 			</text>
  2586 		</explanation>
  2587 		<tag>computer</tag>
  2588 	</concept>
  2589 	<concept>
  2590 		<term abbreviation="TT" completeForm="trouble ticket" language="en"/>
  2591 		<explanation language="en">
  2592 			<text>
  2593 				a request for fixing something in the production;
  2594 				requires some investigation and then can be solved by changing the configuration on site or by fixing the software (development)
  2595 			</text>
  2596 		</explanation>
  2597 		<tag>computer</tag>
  2598 	</concept>
  2599 	<concept>
  2600 		<term abbreviation="SRS" completeForm="System Requirement Specification" language="en"/>
  2601 		<explanation language="en">
  2602 			<text>
  2603 				requirements on a software product or its particular change;
  2604 				is written from the system's point of view
  2605 			</text>
  2606 		</explanation>
  2607 		<tag>computer</tag>
  2608 	</concept>
  2609 	<concept>
  2610 		<term abbreviation="URS" completeForm="User Requirement Specification" language="en"/>
  2611 		<explanation language="en">
  2612 			<text>
  2613 				requirements on a software product or its particular change;
  2614 				is written from the user's point of view
  2615 			</text>
  2616 		</explanation>
  2617 		<tag>computer</tag>
  2618 	</concept>
  2619 	<concept>
  2620 		<term abbreviation="" completeForm="engineering build" language="en"/>
  2621 		<explanation language="en">
  2622 			<text>
  2623 				a build of a software product which was not done according to regular procedure and processes;
  2624 				might be used only for testing on site or during development – not in production;
  2625 				such software is often delivered as a tar.gz or JAR, WAR etc. file to be patched into existing installation, not as regular package (RPM, DEB etc.) as production version
  2626 			</text>
  2627 		</explanation>
  2628 		<tag>computer</tag>
  2629 	</concept>
  2630 	<concept>
  2631 		<term abbreviation="" completeForm="monkey patching" language="en"/>
  2632 		<explanation language="en"><text></text></explanation>
  2633 	</concept>
  2634 	<concept>
  2635 		<term abbreviation="GMT" completeForm="Greenwich mean time" language="en"/>
  2636 		<explanation language="en"><text></text></explanation>
  2637 		<tag>computer</tag>
  2638 	</concept>
  2639 	<concept>
  2640 		<term abbreviation="UTC" completeForm="coordinated universal time" language="en"/>
  2641 		<explanation language="en"><text></text></explanation>
  2642 		<tag>computer</tag>
  2643 	</concept>
  2644 	<concept>
  2645 		<term abbreviation="TZ" completeForm="timezone" language="en"/>
  2646 		<term abbreviation="TZ" completeForm="time-zone" language="en"/>
  2647 		<term abbreviation="TZ" completeForm="time zone" language="en"/>
  2648 		<explanation language="en"><text></text></explanation>
  2649 		<tag>computer</tag>
  2650 	</concept>
  2651 	<concept>
  2652 		<term abbreviation="IETF" completeForm="Internet Engineering Task Force" language="en"/>
  2653 		<explanation language="en"><text></text></explanation>
  2654 		<tag>computer</tag>
  2655 	</concept>
  2656 	<concept>
  2657 		<term abbreviation="RFC" completeForm="request for comments" language="en"/>
  2658 		<explanation language="en"><text></text></explanation>
  2659 		<tag>computer</tag>
  2660 	</concept>
  2661 	<concept>
  2662 		<term abbreviation="" completeForm="vendor lock-in" language="en"/>
  2663 		<term abbreviation="" completeForm="vendor-lock-in" language="en"/>
  2664 		<term abbreviation="" completeForm="vendor lock in" language="en"/>
  2665 		<explanation language="en"><text></text></explanation>
  2666 		<tag>computer</tag>
  2667 	</concept>
  2668 	<concept>
  2669 		<term abbreviation="UT" completeForm="unit test" language="en"/>
  2670 		<explanation language="en"><text></text></explanation>
  2671 		<tag>computer</tag>
  2672 	</concept>
  2673 	<concept>
  2674 		<term abbreviation="AT" completeForm="acceptance testing" language="en"/>
  2675 		<term abbreviation="UAT" completeForm="user acceptance testing" language="en"/>
  2676 		<explanation language="en"><text></text></explanation>
  2677 		<tag>computer</tag>
  2678 	</concept>
  2679 	<concept>
  2680 		<term abbreviation="" completeForm="code coverage" language="en"/>
  2681 		<explanation language="en"><text></text></explanation>
  2682 		<tag>computer</tag>
  2683 	</concept>
  2684 	<concept>
  2685 		<term abbreviation="" completeForm="jUnit" language="en"/>
  2686 		<explanation language="en"><text></text></explanation>
  2687 		<tag>computer</tag>
  2688 		<tag>java</tag>
  2689 	</concept>
  2690 	<concept>
  2691 		<term abbreviation="" completeForm="TestNG" language="en"/>
  2692 		<explanation language="en"><text></text></explanation>
  2693 		<tag>computer</tag>
  2694 		<tag>java</tag>
  2695 	</concept>
  2696 	<concept>
  2697 		<term abbreviation="" completeForm="tcpdump" language="en"/>
  2698 		<term abbreviation="" completeForm="tshark" language="en"/>
  2699 		<term abbreviation="" completeForm="wireshark" language="en"/>
  2700 		<explanation language="en"><text></text></explanation>
  2701 		<tag>computer</tag>
  2702 		<tag>security</tag>
  2703 	</concept>
  2704 	<concept>
  2705 		<term abbreviation="" completeForm="Asterisk" language="en"/>
  2706 		<explanation language="en"><text></text></explanation>
  2707 	</concept>
  2708 	<concept>
  2709 		<term abbreviation="OTR" completeForm="off-the-record messaging" language="en"/>
  2710 		<explanation language="en"><text></text></explanation>
  2711 		<tag>computer</tag>
  2712 		<tag>security</tag>
  2713 		<tag>messaging</tag>
  2714 		<tag>protocol</tag>
  2715 	</concept>
  2716 	<concept>
  2717 		<term abbreviation="CLI" completeForm="command-line interface" language="en"/>
  2718 		<explanation language="en"><text></text></explanation>
  2719 		<tag>computer</tag>
  2720 	</concept>
  2721 	<concept>
  2722 		<term abbreviation="TUI" completeForm="text user interface" language="en"/>
  2723 		<explanation language="en"><text></text></explanation>
  2724 		<tag>computer</tag>
  2725 	</concept>
  2726 	<concept>
  2727 		<term abbreviation="GUI" completeForm="graphical user interface" language="en"/>
  2728 		<explanation language="en"><text></text></explanation>
  2729 		<tag>computer</tag>
  2730 	</concept>
  2731 	<concept>
  2732 		<term abbreviation="UI" completeForm="user interface" language="en"/>
  2733 		<explanation language="en"><text></text></explanation>
  2734 		<tag>computer</tag>
  2735 	</concept>
  2736 	<concept>
  2737 		<term abbreviation="EOL" completeForm="end of line" language="en"/>
  2738 		<explanation language="en"><text></text></explanation>
  2739 		<tag>computer</tag>
  2740 	</concept>
  2741 	<concept>
  2742 		<term abbreviation="COB" completeForm="close of business" language="en"/>
  2743 		<!-- e.g. you have until COB today to show us why you should not be disconnected -->
  2744 		<explanation language="en"><text></text></explanation>
  2745 		<tag>general</tag>
  2746 	</concept>
  2747 	<concept>
  2748 		<term abbreviation="SCCB" completeForm="software configuration control board" language="en"/>
  2749 		<explanation language="en"><text></text></explanation>
  2750 		<tag>computer</tag>
  2751 	</concept>
  2752 	<concept>
  2753 		<term abbreviation="SCCB" completeForm="site configuration control board" language="en"/>
  2754 		<explanation language="en"><text></text></explanation>
  2755 		<tag>computer</tag>
  2756 	</concept>
  2757 	<concept>
  2758 		<term abbreviation="RBDL" completeForm="rule based decision logic" language="en"/>
  2759 		<explanation language="en"><text></text></explanation>
  2760 		<tag>acision</tag>
  2761 	</concept>
  2762 	
  2763 	<concept>
  2764 		<term abbreviation="" completeForm="OpenMoko" language="en"/>
  2765 		<term abbreviation="" completeForm="FreeRunner" language="en"/>
  2766 		<explanation language="en"><text></text></explanation>
  2767 	</concept>
  2768 	<concept>
  2769 		<term abbreviation="" completeForm="OpenBSC" language="en"/>
  2770 		<!-- Osmocom -->
  2771 		<explanation language="en"><text></text></explanation>
  2772 	</concept>
  2773 	<concept>
  2774 		<term abbreviation="BSC" completeForm="base station controller" language="en"/>
  2775 		<explanation language="en"><text></text></explanation>
  2776 	</concept>
  2777 	<concept>
  2778 		<term abbreviation="BTS" completeForm="base transceiver station" language="en"/>
  2779 		<explanation language="en"><text></text></explanation>
  2780 	</concept>
  2781 	<concept>
  2782 		<term abbreviation="MSC" completeForm="mobile switching center" language="en"/>
  2783 		<explanation language="en"><text></text></explanation>
  2784 	</concept>
  2785 	<concept>
  2786 		<term abbreviation="HLR" completeForm="home location register" language="en"/>
  2787 		<explanation language="en"><text></text></explanation>
  2788 	</concept>
  2789 	<concept>
  2790 		<term abbreviation="AuC" completeForm="authentication center" language="en"/>
  2791 		<explanation language="en"><text></text></explanation>
  2792 	</concept>
  2793 	<concept>
  2794 		<term abbreviation="VLR" completeForm="visitor location register" language="en"/>
  2795 		<explanation language="en"><text></text></explanation>
  2796 	</concept>
  2797 	<concept>
  2798 		<term abbreviation="EIR" completeForm="equipment identity register" language="en"/>
  2799 		<explanation language="en"><text></text></explanation>
  2800 	</concept>
  2801 	<concept>
  2802 		<term abbreviation="FXO" completeForm="foreign exchange office" language="en"/>
  2803 		<explanation language="en">
  2804 			<text>
  2805 				the FXO interface is typically the plug on the phone (or modem)
  2806 				which receives the POTS service;
  2807 				should be connected to an FXS interface (not to another FXO interface)
  2808 			</text>
  2809 		</explanation>
  2810 	</concept>
  2811 	<concept>
  2812 		<term abbreviation="FXS" completeForm="foreign exchange station" language="en"/>
  2813 		<explanation language="en">
  2814 			<text>
  2815 				the FXS interface is typically the plug on the wall
  2816 				which delivers the POTS service from telephone company to the subscriber;
  2817 				this interface
  2818 					supplies battery power,
  2819 					ringing voltage
  2820 					and dial tone;
  2821 				should be connected to an FXO interface (not to another FXS interface)
  2822 			</text>
  2823 		</explanation>
  2824 	</concept>
  2825 	<concept>
  2826 		<term abbreviation="PBX" completeForm="private branch exchange" language="en"/>
  2827 		<explanation language="en">
  2828 			<text>
  2829 				a kind of telephone exchange used in some office or company for its own purposes;
  2830 				provides FSX interface for connected phones;
  2831 				can have FXO interface for connecting to PTSN (for calling outside the company);
  2832 				nowadays are often deployed digital VoIP PBXes based on free software like Asterisk;
  2833 				such telephony can be pure IP based with no POTS or can have some FSX or FXO interfaces
  2834 			</text>
  2835 		</explanation>
  2836 	</concept>
  2837 	<concept>
  2838 		<term abbreviation="PSTN" completeForm="public switched telephone network" language="en"/>
  2839 		<explanation language="en">
  2840 			<text>
  2841 				the worldwide public telephony network consisting of networks of particular carriers;
  2842 				the network is developed according to ITU-T standards and recommendations
  2843 				and uses uniform system of telephone numbers based on ITU-T recommendation E.164
  2844 				which provides a single global address space for telephone numbers
  2845 			</text>
  2846 		</explanation>
  2847 	</concept>
  2848 	<concept>
  2849 		<term abbreviation="POTS" completeForm="plain old telephone service" language="en"/>
  2850 		<explanation language="en">
  2851 			<text>
  2852 				traditional wired telephony based on analog signals
  2853 				(contrary to ISDN which is digital)
  2854 			</text>
  2855 		</explanation>
  2856 	</concept>
  2857 	<concept>
  2858 		<term abbreviation="CID" completeForm="caller ID" language="en"/>
  2859 		<term abbreviation="CLIP" completeForm="calling line identification presentation" language="en"/>
  2860 		<term abbreviation="CLID" completeForm="calling line identification" language="en"/>
  2861 		<term abbreviation="CNID" completeForm="calling number identification" language="en"/>
  2862 		<term abbreviation="CND" completeForm="calling number delivery" language="en"/>
  2863 		<explanation language="en">
  2864 			<text>
  2865 				a service that delivers caller's phone number to the called party's device during ringing;
  2866 				so the called party knows who is calling before answering the phone;
  2867 				this service is common in digital networks like VoIP, GSM or ISDN but can be provided also on analog POTS networks
  2868 			</text>
  2869 		</explanation>
  2870 	</concept>
  2871 	<concept>
  2872 		<term abbreviation="DTMF" completeForm="dual-tone multi-frequency signaling" language="en"/>
  2873 		<explanation language="en"><text></text></explanation>
  2874 	</concept>
  2875 	<concept>
  2876 		<term abbreviation="AGC" completeForm="auto gain control" language="en"/>
  2877 		<explanation language="en"><text></text></explanation>
  2878 	</concept>
  2879 	<concept>
  2880 		<term abbreviation="AEC" completeForm="auto echo cancellation" language="en"/>
  2881 		<explanation language="en"><text></text></explanation>
  2882 	</concept>
  2883 	<concept>
  2884 		<term abbreviation="VAD" completeForm="voice activity detection" language="en"/>
  2885 		<explanation language="en"><text></text></explanation>
  2886 	</concept>
  2887 	<concept>
  2888 		<term abbreviation="CNG" completeForm="comfort noise generation" language="en"/>
  2889 		<explanation language="en"><text></text></explanation>
  2890 	</concept>
  2891 	<concept>
  2892 		<term abbreviation="" completeForm="streamlining" language="en"/>
  2893 		<explanation language="en"><text>delivering better product faster with smaller teams of less-experienced engineers</text></explanation>
  2894 		<!-- Internal: if you dont understand, just ignore it :-) -->
  2895 	</concept>
  2896 	<concept>
  2897 		<term abbreviation="" completeForm="relevant company" language="en"/>
  2898 		<explanation language="en"><text>a company which is not going to bankrupt</text></explanation>
  2899 		<!-- Internal: if you dont understand, just ignore it :-) -->
  2900 	</concept>
  2901 	<concept>
  2902 		<term abbreviation="DAO" completeForm="data access object" language="en"/>
  2903 		<explanation language="en"><text></text></explanation>
  2904 		<tag>computer</tag>
  2905 	</concept>
  2906 	<concept>
  2907 		<term abbreviation="DTO" completeForm="data transfer object" language="en"/>
  2908 		<explanation language="en"><text></text></explanation>
  2909 		<tag>computer</tag>
  2910 	</concept>
  2911 	<concept>
  2912 		<term abbreviation="TBD" completeForm="to be done" language="en"/>
  2913 		<term abbreviation="TODO" completeForm="to do" language="en"/>
  2914 		<explanation language="en"><text>Something that should or will be done later. Used as comments in draft version of documents or in software source code.</text></explanation>
  2915 	</concept>
  2916 	<concept>
  2917 		<term abbreviation="etc" completeForm="et cetera" language="la"/>
  2918 		<explanation language="en"><text>and so forth, and the rest</text></explanation>
  2919 		<tag>general</tag>
  2920 	</concept>
  2921 	<concept>
  2922 		<term abbreviation="e.g" completeForm="exempli gratia" language="la"/>
  2923 		<explanation language="en"><text>for instance, for example</text></explanation>
  2924 		<tag>general</tag>
  2925 	</concept>
  2926 	<concept>
  2927 		<term abbreviation="i.e." completeForm="id est" language="la"/>
  2928 		<explanation language="en"><text>in other words, that is</text></explanation>
  2929 		<tag>general</tag>
  2930 	</concept>
  2931 	<concept>
  2932 		<term abbreviation="i.a." completeForm="inter alia" language="la"/>
  2933 		<explanation language="en"><text>among other things</text></explanation>
  2934 		<tag>general</tag>
  2935 	</concept>
  2936 	<concept>
  2937 		<term abbreviation="N.B." completeForm="nota bene" language="la"/>
  2938 		<explanation language="en"><text>note well, note</text></explanation>
  2939 		<tag>general</tag>
  2940 	</concept>
  2941 	<concept>
  2942 		<term abbreviation="per cent." completeForm="per centum" language="la"/>
  2943 		<explanation language="en"><text>percent, for each one hundred</text></explanation>
  2944 		<tag>general</tag>
  2945 	</concept>
  2946 	<concept>
  2947 		<term abbreviation="p.a." completeForm="per annum" language="la"/>
  2948 		<explanation language="en"><text>annually</text></explanation>
  2949 		<tag>general</tag>
  2950 	</concept>
  2951 	<concept>
  2952 		<term abbreviation="cca" completeForm="circa" language="la"/>
  2953 		<explanation language="en"><text>approximately</text></explanation>
  2954 		<tag>general</tag>
  2955 	</concept>
  2956 	<concept>
  2957 		<term abbreviation="c.v." completeForm="curriculum vitae" language="la"/>
  2958 		<term abbreviation="CV" completeForm="curriculum vitae" language="la"/>
  2959 		<explanation language="en"><text>a document summarizing your relevant job experience and education</text></explanation>
  2960 		<tag>general</tag>
  2961 	</concept>
  2962 	<concept>
  2963 		<term abbreviation="et al." completeForm="et alii" language="la"/>
  2964 		<explanation language="en"><text>and others, and co-workers</text></explanation>
  2965 		<tag>general</tag>
  2966 	</concept>
  2967 	<concept>
  2968 		<term abbreviation="P.S." completeForm="post scriptum" language="la"/>
  2969 		<explanation language="en"><text>after what has been written; used at the end of the letters/messages for additions</text></explanation>
  2970 		<tag>general</tag>
  2971 	</concept>
  2972 	<concept>
  2973 		<term abbreviation="Q.E.D." completeForm="quod erat demonstrandum" language="la"/>
  2974 		<explanation language="en"><text>which was to be demonstrated</text></explanation>
  2975 		<tag>general</tag>
  2976 	</concept>
  2977 	<concept>
  2978 		<term abbreviation="R.I.P." completeForm="requiescat in pace" language="la"/>
  2979 		<explanation language="en"><text>rest in peace</text></explanation>
  2980 		<tag>general</tag>
  2981 	</concept>
  2982 	<concept>
  2983 		<term abbreviation="vs." completeForm="versus" language="la"/>
  2984 		<explanation language="en"><text>against</text></explanation>
  2985 		<tag>general</tag>
  2986 	</concept>
  2987 </dictionary>