<?php
// Script: Copyright 2004 Georg Bauer, glbauer@gmail.com
//

// To make this script work, add the following line to your config.php:
// include("local/abbr.php");

// ***************************************************
// You shouldn't need to edit anything below this line, except if you want
// to add your own acronyms

$abbrs = array (
   "AOL" => "American Online",
   "API" => "Application Programming Interface",
   "CD" => "Compact Disk",
   "CGI" => "Common Gateway Interface",
   "CMS" => "Content Management System",
   "CSS" => "Cascading Style Sheets",
   "DNS" => "Domain Name System",
   "DOM" => "Document Object Model",
   "DTD" => "Document Type Definition",
   "DVD" => "Digital Video Disc",
   "FAQ" => "Frequently Asked Questions",
   "FOAF" => "Friend Of A Friend is a Resource Description Framework dialect for describing relationships",
   "FSF" => "Free Software Foundation",
   "GB" => "Gigabyte",
   "GFDL" => "GNU Free Documentation License",
   "GPL" => "GNU General Public License",
   "HDTV" => "High Definition TeleVision",
   "HTML" => "HyperText Markup Language",
   "HTTP" => "HyperText Transfer Protocol",
   "IE" => "Internet Explorer",
   "IHOP" => "International House of Pancakes",
   "IIRC" => "if I remember correctly",
   "IIS" => "Internet Infomation Server",
   "IM" => "Instant Message",
   "IMAP" => "Internet Message Access Protocol",
   "IRC" => "Internet Relay Chat (like Instant Messaging for groups)",
   "ITE" => "Internet Topic Exchange",
   "JPG" => "Joint Photographic Experts Group - Picture Format",
   "JPEG" => "Joint Photographic Experts Group - Picture Format",
   "JSP" => "Java Server Pages",
   "KB" => "Kilobyte",
   "KDE" => "K Desktop Environment",
   "LDAP" => "Lightweight Directory Access Protocol",
   "LGPL" => "GNU Lesser General Public License",
   "MAPI" => "Mail Application Programming Interface",
   "MB" => "Megabyte",
   "MS" => "Microsoft",
   "MSDN" => "Microsoft Developer Network",
   "MSIE" => "Microsoft Internet Explorer",
   "MSN" => "Microsoft Network",
   "NNTP" => "Network News Transfer Protocol (the protocol used for NewsGroups)",
   "OPML" => "Outline Processor Markup Language",
   "P2P" => "Peer To Peer",
   "PBM" => "Portable Bitmap",
   "PBS" => "Public Broadcasting System",
   "PDF" => "Portable Document Format",
   "PHP" => "Hypertext PreProcessing",
   "PNG" => "Portable Network Graphics",
   "PNM" => "Portable Anymap",
   "PyDS" => "Python Desktop Server",
   "PyCS" => "Python Community Server",
   "TTF" => "Truetype Font",
   "TooFPy" => "Toolserver Framework for Python",
   "RAID" => "Redundant Array of Independent Disks",
   "RDF" => "Resource Description Framework",
   "RPC" => "Remote Procedure Call",
   "RSD" => "Really Simple Discovery",
   "RSS" => "Really Simple Syndication",
   "SIG" => "Special Interest Group",
   "SOAP" => "Simple Object Access Protocol",
   "SSN" => "Social Security Number",
   "URI" => "Uniform Resource Identifier",
   "URL" => "Uniform Resource Locator",
   "USB" => "Universal Serial Bus",
   "VB" => "Visual Basic",
   "VBS" => "Visual Basic Script",
   "VNC" => "Virtual Network Computing",
   "W3C" => "World Wide Web Consortium",
   "WCAG" => "Web Content Accessibility Guidelines",
   "WYSIWYG" => "what you see is what you get",
   "XHTML" => "eXtensible HyperText Markup Language (HTML reformulated as XML)",
   "XML" => "eXtensible Markup Language",
   "XSL" => "eXtensible Stylesheet Language",
   "XSLT" => "eXtensible Stylesheet Language Transformation"
);

$abbrs2 = array();
foreach ($abbrs as $k=>$v) {
	$abbrs2['/'.$k.'/'] = '<abbr title="'.$v.'">'.$k.'</abbr>';
}

// Merge InlineReplacements with Smiley array
$InlineReplacements = array_merge($InlineReplacements, $abbrs2);

?>