Search: in
DTD
DTD in Encyclopedia Encyclopedia
  Tutorials     Encyclopedia     Videos     Books     Software     DVDs  
       
Encyclopedia results for DTD

DTD





Encyclopedia results for DTD

  1. DTD

    DTD may stand for Media Darwin Digital Television , DTD Darwin NT Australia DDT TEN Music Dust to Digital , a record label specializing in American folk music, and best known for the gospel box set Goodbye Babylon Sports December to Dismember , a former World Wrestling Entertainment and Extreme Championship Wrestling pay per view event. Day to Day, sports terminology regarding the return time of a player with a minor injury. Technologies Computing Data Transfer Device , as found in AN CYZ 10, a cryptographic device for receiving, storing, and transferring keys Detailed Timing Descriptor , a block containing supported output resolution details, part of the extended display identification data Document Type Definition , used in markup languages such as XML Data Tresor Disc , type of DVD Games Desktop Tower Defense , a Flash based strategy game Physics Double Talk Detection , a method in acoustics Transportation Danube Tisa Danube Canal , a water system in Serbia Other usages Dekoratie voor Trouwe Dienst , a military decoration of the South African Defence Force between 1921 and 1946 Delta Tau Delta , a U.S. based college fraternity Developmental topographical disorientation , a cognitive disorder marked by inability to navigate within the environment. See also Document Type Declaration DOCTYPE , used to declare or link to a Document Type Definition disambig Interwikies de DTD ko DTD it DTD nl DTD ja DTD ...   more details



  1. AAP DTD

    Multiple issues unreferenced October 2011 orphan December 2008 notability October 2011 In computing, AAP DTD is a Document Type Definition for a standard SGML document type for science scientific documents, defined by the Association of American Publishers . The AAP DTD has been succeeded by ISO 12083 . References FOLDOC Category Markup languages markup languages stub DEFAULTSORT Aap Dtd ...   more details



  1. DTD (TV station)

    Infobox Broadcast call letters DTD city station logo Image NetworkTen.svg 120px station slogan Seriously Good TV station branding Ten Darwin br analog digital 33 ultra high frequency UHF br 10 Network Ten TEN 576i br 01 One HD ONE 1080i br 7 MHz other chs affiliations Network Ten Ten br Southern Cross Ten network Network Ten Ten airdate April 28, 2008 location Darwin, Northern Territory callsign meaning D igital br T elevision br D arwin former callsigns former channel numbers owner Macquarie Media Group and br Nine Entertainment Co. Nine Entertainment licensee nowrap Darwin Digital Television Pty Ltd sister stations former affiliations effective radiated power 85.5 kilowatt kW HAAT 147.0  m ref height above average terrain HAAT estimated from http www.itu.int SRTM3 using EHAAT. ref class facility id coordinates coord 12 24 52 S 130 58 9 E type landmark scale 2000 name DTD homepage http www.tendarwin.com.au www.tendarwin.com.au Darwin Digital Television DTD DDT TEN is a digital television digital Television broadcasting in Australia television station in Darwin, Northern Territory Darwin , Northern Territory . It is jointly owned by Nine Entertainment Co. Nine Entertainment owner of NTD Nine Darwin and the Macquarie Media Group owner of TND Southern Cross Darwin . ref name acma cite press release title New digital commercial television service for Darwin url http www.acma.gov.au WEB STANDARD pc PC 310217 publisher Australian Communications and Media Authority ACMA date 2007 05 18 accessdate 2007 06 29 ref History The licence to operate Darwin s third commercial television station was allocated to Darwin Digital Television Pty Ltd, a joint venture with the two existing ... DTC set to start next week url http report.mediaspy.org blog 2008 04 20 dtd set to start tests next ... DTD rebroadcasts a direct feed of Melbourne s ATV Australia ATV 10 . News Further Ten News Darwin ... Group state collapsed Northern Territory TV DEFAULTSORT Dtd Tv Station Category Joint ventures Category ...   more details



  1. Document Type Declaration

    document for example, a webpage with a Document Type Definition DTD for example, the formal definition ... general purpose DTD based parsers, they don t use DTDs and will never access them even if a URL ... after the doctype declaration and last closed. The keywords SYSTEM and PUBLIC suggest what kind of DTD ... in double quote marks, too, is provided. For example, the FPI for XHTML 1.1 is W3C DTD XHTML 1.1 ... of them is the Uniform Resource Identifier URI reference http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd ... that the XML parser must locate the DTD in a system specific fashion, in this case, by means of a Uniform Resource Identifier URI reference of the DTD enclosed in double quote marks. The last part ... World Wide Web pages reads as follows code nowiki DOCTYPE html PUBLIC W3C DTD XHTML 1.0 Transitional EN http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd html lang ar dir rtl xmlns http www.w3.org 1999 xhtml nowiki code This Document Type Declaration for XHTML includes by reference a DTD, whose public identifier is code W3C DTD XHTML 1.0 Transitional EN code and whose system identifier is code nowiki http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd nowiki code . An entity resolver may ... for orientation purposes. HTML 4.01 DTDs Strict DTD does not allow presentational markup ... DTD looks nowiki DOCTYPE HTML PUBLIC W3C DTD HTML 4.01 EN http www.w3.org TR html4 strict.dtd html nowiki Transitional DTD allows some older PUBLIC and attributes that have been deprecate d nowiki DOCTYPE HTML PUBLIC W3C DTD HTML 4.01 Transitional EN http www.w3.org TR html4 loose.dtd html nowiki If Framing World Wide Web frame s are used, the Frameset DTD must be used instead, like this nowiki DOCTYPE HTML PUBLIC W3C DTD HTML 4.01 Frameset EN http www.w3.org TR html4 frameset.dtd html nowiki XHTML 1.0 DTDs XHTML s DTDs are also Strict, Transitional and Frameset. XHTML Strict DTD. No deprecated ... 8 ? DOCTYPE html PUBLIC W3C DTD XHTML 1.0 Strict EN http www.w3.org TR xhtml1 DTD xhtml1 strict.dtd ...   more details



  1. Public identifier

    unreferenced date November 2010 A public identifier is a document processing construct in SGML and XML . In HTML and XML, a public identifier is meant to be universally unique within its application scope. It typically occurs in a Document Type Declaration . A public identifier is meant to identify a document type that may span more than one application. A system identifier is meant for a document type that is used exclusively in one application. In the following Document Type Declaration, the public identifier is code W3C DTD XHTML 1.0 Transitional EN code code < DOCTYPE html PUBLIC W3C DTD XHTML 1.0 Transitional EN nowiki http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd nowiki code compu lang stub Category Markup languages ...   more details



  1. PCDATA

    Parsed Character Data PCDATA is a data definition that originated in Standard Generalized Markup Language SGML , and is used also in Extensible Markup Language XML Document Type Definition DTD to designate mixed content XML elements. PCDATA in XML DTD In XML DTD, tt PCDATA tt is the keyword to specify mixed content , meaning an element may contain character data as well as child elements in arbitrary order and number of occurrences. ref http www.w3.org TR REC xml sec mixed content Mixed content in XML DTD ref For example source lang xml ELEMENT b PCDATA ELEMENT p PCDATA a b source In this code, element < b> must contain character data only element < p> can contain a mixture of any combination of character data , < a> , < b> element s . Although its name and its appearance in DTD suggest so, tt PCDATA tt itself is not a semantic term for character data it can only appear as the leading syntactic construct in mixed content definitions. The following usages are improper source lang xml illegal usages ELEMENT p a PCDATA b use it in the middle ELEMENT p PCDATA,a use it in sequence ATTLIST p title PCDATA use it in attribute type source See also CDATA References reflist Category XML ru PCDATA ...   more details



  1. Open catalogue

    Open catalogue is an open content catalogue or free content catalogue, i.e., a structured database with information about products or other stored items in a standardized format. A catalogue implies categorization or classification of the items involved, and database normalization to increase the usability of the catalogue for searching & finding, and comparing items within the same category on their main attributes. The term is first used by Prof. Dr. Martijn Hoogeveen of the Open University Netherlands for the Open ICEcat project, which resulted in an open catalogue for product information, often used by merchants as input for their mail order catalogue . A DTD for the Open Catalog Exchange Format is developed by Sergey Shvets and Dimitry Mitko. See also Open content license Catalog merchant Open publishing Online shop External links http data.icecat.biz dtd ICECAT interface response.dtd Open ICEcat DTD Category open content Category Library cataloging and classification ...   more details



  1. UltraXML

    Cleanup date August 2008 UltraXML is a WYSIWYG XML Dynamic desktop dynamic desktop publishing solution that can be used for complex document creation requiring high level of Typography typographical controls. This publishing and formatting engine uses active XSLT technology to enable the design of Style sheet desktop publishing stylesheets and can be used to publish XML data to PDF s, PostScript , HTML and other formats. XML publishing is most suited for technical documents and other publications where the use of a Document Type Definition DTD or XML schema Schema for authoring and formatting is essential. Some of the supported industry standards are S1000D ASD S1000D br ASD S1000D is an International Specification for Technical Publications utilizing a Common Source Data Base CSDB . It is used for the procurement and production of technical publications. Whilst the title restricts its use to technical documentation it has been demonstrated that the principles of the specification can easily be applied to nontechnical documentation. Air Transport Association ATA iSpec 2200 br Component Maintenance Manual CMM DTD. br Aircraft Maintenance Manual AMM DTD br Service Bulletin SB DTD br External links http www.webxsystems.com UltraXML.htm UltraXML product page DEFAULTSORT Ultraxml Category Typesetting Category Digital typography Category Desktop publishing software Desktop publishing software digital typography stub ...   more details



  1. Valid XML document

    Merge XML discuss Talk Valid XML document Merger proposal date July 2009 A valid XML document is defined by the W3C as a well formed XML document which also conforms to the rules of a Document Type Definition DTD or an XML Schema W3C XML Schema XSD , which W3C supports as an alternate to DTD. This term should not be confused with a well formed XML document , which is defined as an XML document that has correct XML syntax according to W3C standards. External links http validator.w3.org http validator.w3.org The Official W3C Markup Validation Service Compu lang stub Category XML fr Valid XML document it Document oggetto XML DOM ...   more details



  1. AN/CYZ-10

    Image CYZ 10 DTD.jpg thumb AN CYZ 10 The Joint Electronics Type Designation System AN CYZ 10 Data Transfer Device , often called a Filler , Crazy 10 , ANCD or DTD , is a United States National Security Agency developed, portable, hand held fill device , for securely receiving, storing, and transferring data between compatible cryptographic and communications equipment. It is capable of storing 1,000 key cryptography keys , maintains an automatic internal audit trail of all security relevant events that can be uploaded to the EKMS Tier 2 LMD KP , encrypts key for storage, and is programmable. The DTD is capable of keying multiple information systems security INFOSEC devices and is compatible with such COMSEC equipment as Single Channel Ground and Airborne Radio System SINCGARS radios, KY 57 VINSON, KG 84 , and others that are keyed by common fill devices CFDs . The AN CYZ 10 supports both the DS 101 and DS 102 interfaces. The DTD weighs about 4 lb 1.8 kg and is designed to be fully compatible with future INFOSEC equipment meeting DS 101 signaling and benign fill standards. It will eventually replace the legacy family of CFDs, including the KYK 13 , KYX 15 electronic storage devices, and the KOI 18 paper tape reader. Note that only the DTD and the KOI 18 support newer, key length 128 bit keys . As of mid 2005, refurbished units cost 4000 each. The DTD was replaced by the AN PYQ 10 Simple Key Loader SKL which was built and designed by Ralph Osterhout and the Secure DTD2000 System or SDS , a similarly sized unit that employs the Windows CE operating system. The SDS is currently 2006 beginning production. ref http www.sypriselectronics.com electronics content.asp?page id 34 ref References references External links https infosec.navy.mil crypto https infosec.navy.mil ekms http www.sypriselectronics.com electronics content.asp?page id 338 Category Key management Category Encryption device accessories Category National Security Agency encryption devices Category Military el ...   more details



  1. Datadawai Airport

    coord 0.72 116.48 type airport display title Infobox Airport name Datadawai Airport nativename Bandar Udara Datah Dawai image IATA DTD ICAO WALJ center Location map Indonesia Borneo width 200 float center caption mark Airplane silhouette.svg marksize 10 label DTD position right lat deg 00 lat min 48 lat sec 18.13 lat dir N lon deg 114 lon min 31 lon sec 51.39 lon dir E small Location of airport in Indonesia small center type Public owner operator Government city served location Long Lunuk, Long Pahangai, West Kutai Long Pahangai , West Kutai Regency , East Kalimantan , Indonesia elevation f elevation m website metric rwy y r1 number 02 20 r1 length m 750 r1 length f 2,460 r1 surface Paved footnotes Source Direktorat Jenderal Perhubungan Udara ref name info http hubud.dephub.go.id hubud user banud list.php?List1 propinsi&List2 21&ValueIn2 &id 75&act viewBanud&uk 6 Datah Dawai Airport information from Direktorat Jenderal Perhubungan Udara ref Datadawai Airport or Datah Dawai Airport airport codes DTD WALJ is an airport in Long Lunuk, Long Pahangai, West Kutai Long Pahangai , West Kutai Regency , East Kalimantan , Indonesia . ref name info Susi Air has 1 daily flight from Datadawai to Samarinda, for a total of 12 seats daily. Airlines and destinations airport dest list Susi Air Melak ref http www.susiair.com scheduled.htm ref References references External links GCM DTD ASN DTD Navigation box br Airports in Indonesia Category Airports in Indonesia Indonesia airport stub EKalimantan geo stub id Bandar Udara Datah Dawai vi S n bay Datadawai ...   more details



  1. DTBook

    DTBook an Acronym and initialism acronym for DAISY Digital Talking Book or DAISY XML is a XML based document file format . It is used in EPUB e book s and DAISY Digital Talking Book , as well as other places. Unlike other document file formats such as open document format ODF DTBook puts a strong emphasis on structural encoding, but in comparison to other structural file formats such as DocBook and Text Encoding Initiative TEI it is fairly simple. DTBook was developed by the Daisy Consortium as an accessibility accessible file format similar to HTML , with special regard to the requirements of the Visual impairment visually impaired . Therefore, it puts an emphasis on a clear, precise navigation and the explanation of visual elements. DTBook is further developed by the Daisy Consortium and is defined with a Document Type Definition DTD as part of the National Information Standards Organization NISO standard Z39.86 2005 NIMAS NIMAS National Instructional Materials Accessibility Standard an U.S. standard for electronic books for the visually impaired defines a subset of DTBook XML elements. NIMAS documents are valid according to the DTBook DTD. Example source lang xml ?xml version 1.0 encoding UTF 8 ? DOCTYPE dtbook PUBLIC NISO DTD dtbook 2005 3 EN http www.daisy.org z3986 2005 dtbook 2005 3.dtd dtbook version 2005 3 xml lang de DE head meta name dc Title content Hello World head book bodymatter level1 h1 Hello World h1 p This is an example. p level1 bodymatter book dtbook source External links http www.daisy.org z3986 structure DAISY NISO Standard Guidelines http www.daisy.org publications docs theory dtbook theory dtbook.html Theory Behind the DTBook DTD DEFAULTSORT Dtbook Category Document centric XML based standards Category Markup languages de DTBook ...   more details



  1. ClaML

    orphan date August 2009 ClaML is an acronym for Classification Markup Language . This is an XML specification meant for the exchange of Categorization classification s. It has first been published as Technical Specification http www.cen.eu catweb 01.140.20.htm CEN TS 14463 2003 In 2007 a revision has been accepted as European Norm . CEN standards are copyrighted materials, and cannot be described here in full detail. Those standards are available from the http www.cen.eu cenorm members members index.asp National Standardisation Bodies . The normative part of the standard is available as a DTD for reference or download from http spec.terminologies.eu en14463 2007.dtd place the mouse over previous URL and right click to download the full DTD . br ClaML has been adopted by the WHO to distribute their family of international classifications. External links http www.cen.eu CEN Sectors TechnicalCommitteesWorkshops CENTechnicalCommittees Pages Standards.aspx?param 6232&title CEN 2FTC 251 CEN Published Health Informatics Standards http snob.eggbird.eu manual clamlexample.html ClaML example DEFAULTSORT Claml Category Markup languages Markup languages stub ...   more details



  1. Formal Public Identifier

    suggests that the document type definition is written in English though documents conforming to the DTD ... Bot generated title ref containing an FPI pre DOCTYPE HTML PUBLIC W3C DTD HTML 4.01 EN http www.w3.org TR html4 strict.dtd pre The FPI in the document type declaration above reads W3C DTD HTML ... as the following URI pre urn publicid W3C DTD HTML 4.01 EN pre References references Category Identifiers ...   more details



  1. XML Catalog

    catalog xmlns urn oasis names tc entity xmlns xml catalog prefer public public publicId W3C DTD XHTML 1.0 Strict EN uri dtd xhtml1 xhtml1 strict.dtd public publicId W3C DTD XHTML 1.0 Transitional EN uri dtd xhtml1 xhtml1 transitional.dtd public publicId W3C DTD XHTML 1.1 EN uri dtd xhtml11 xhtml11 flat.dtd catalog source This catalog makes it possible to resolve tt W3C DTD XHTML 1.0 Strict EN tt to the local URI tt dtd xhtml1 xhtml1 strict.dtd tt . Similarly, it provides local URIs for two ... catalog system systemId http www.w3.org TR xhtml1 DTD xhtml1 strict.dtd uri dtd xhtml1 xhtml1 strict.dtd system systemId http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd uri dtd xhtml1 xhtml1 transitional.dtd system systemId http www.w3.org TR xhtml11 DTD xhtml11.dtd uri dtd xhtml11 xhtml11 flat.dtd ...   more details



  1. XHTML Mobile Profile

    WAPFORUM DTD XHTML Mobile 1.2 EN http www.openmobilealliance.org tech DTD xhtml mobile12.dtd html xmlns ...   more details



  1. Document Type Definition

    Document Type Definition DTD is a set of markup declarations that define a document type for SGML family .... XML uses a subset of SGML DTD. As of 2009 newer XML Namespace aware schema languages such as W3C ... associates a DTD with an XML document. Document Type Declarations appear in the syntactic ... defined by the referenced DTD. DTDs make two sorts of declaration an optional external subset an optional ... SGML or XML document that references an external subset in its DTD, or whose body contains references to parsed external entities declared in its DTD including those declared within its internal subset ... FPI and or system identifier an URI , or are inaccessible. Notations declared in the DTD are also ... the DTD only to resolve their declared parsable entities , but will not validate the content ... public and system identifiers source lang xml DOCTYPE html PUBLIC W3C DTD XHTML 1.0 Transitional EN http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd source All HTML 4.01 documents conform to one ... www.w3.org TR html4 strict.dtd W3C DTD HTML 4.01 EN code code http www.w3.org TR html4 loose.dtd W3C DTD HTML 4.01 Transitional EN code code http www.w3.org TR html4 frameset.dtd W3C DTD HTML 4.01 Frameset ... 8 ? DOCTYPE html PUBLIC W3C DTD XHTML 1.0 Transitional EN http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd ... html PUBLIC W3C DTD XHTML 1.0 Transitional EN http www.w3.org TR xhtml1 DTD xhtml1 transitional.dtd ... set of valid value s . DTD markup declarations declare which Element type declarations element ... in the DTD. Various keywords and characters specify an element s content they can be either tt EMPTY ... declared in the DTD, or a sequence list or choice list . It may be followed by an optional ... as fixed the comments in the DTD may further document which values are effectively accepted, but the DTD ... in the DTD, so the uniqueness constraint also applies to these defined identifiers when they are specified ... tt in the DTD or the unique element defined in an XML document with a pseudo attribute tt xml id tt ...   more details



  1. Apache Torque

    and DTD is rather unusual in the XML world, as rather than using a single fixed XML schema or doctype ..., Torque instead uses the DTD to represent the table column mappings and the XML document is only ... generation, schema auto documentation and schema authoring must work with the less familiar DTD syntax ...   more details



  1. Well-formed document

    to discuss types of XML, as expressed within a Document Type Definition DTD . Well formed ..., valid documents are those that validate against a DTD. The rules of validity mean that a document complies with the restraints stated within a DTD. Thus, tags or entities must be in conformity to the rules and relations established within a DTD. However, there is no control on whether a tag or entity ...   more details



  1. XML Certification Program

    Topics Section 1 XML Overview Section 2 Creating XML Documents Section 3 DTD Section 4 XML Schema ... schema why.asp Differences in defined content and functions of XML Schema and DTD Section 2 Creating ..., etc. comprising an XML document http www.w3schools.com dtd dtd validation.asp The role of an XML ... http www.w3.org TR 2006 REC xml 20060816 Normalizing attribute values Section 3 DTD a. Basics http ... c03 Methods for coding DTD internal subsets and external subsets http www.xmlmaster.org en article d01 c03 Differences between DTD internal subsets and external subsets http www.xmlmaster.org en article ... http www.w3schools.com dtd dtd elements.asp Element type declarations http www.w3schools.com dtd dtd elements.asp Content model definitions for elements http www.w3schools.com dtd dtd attributes.asp Attribute list declarations http www.w3schools.com dtd dtd attributes.asp Attribute types http www.w3schools.com dtd dtd attributes.asp Attribute defaults http www.w3schools.com dtd dtd entities.asp ...   more details



  1. Validator

    Wiktionary validator A validator is a computer program used to check the validity or syntactical correctness of a fragment of code or document. The term is commonly used in the context of validating HTML , Cascading Style Sheets CSS and XML documents or RSS file format RSS feeds though it can be used for any defined format or language. ref cite book last Lemay first Laura title Teach Yourself More Web Publishing with HTML in a Week location Indianapolis, Ind publisher Sams.net Pub year 1995 url http books.google.com books?id xODryMyRGvcC&q 22html Validator 22&dq 22html Validator 22&ei XHdbS96kE5HiygT lIXPC&cd 1 page 198 ref ref Tittel, Ed, and Mary C. Burmeister. HTML 4 for Dummies. For dummies. Hoboken, NJ Wiley Pub, 2005. ref HTML validator In the context of World Wide Web web documents, the term HTML validator technically refers to validation using Document Type Definition DTDs by SGML tools. However, the common non technical use of the term refers to checking an HTML document for various problems using some type of computerized checker, and not necessarily by using a DTD with SGML tools. Furthermore, the term HTML validation for HTML 5 cannot mean validation using a DTD because HTML 5 does not use a DTD. See also Online judge W3C Markup Validation Service XML validation References reflist Category Debugging Category HTML Category XML software de Validator pl Walidator ru sv Validator ...   more details



  1. CALS Table Model

    The CALS Table Model is a standard for representing tables in SGML XML. It was developed as part of the CALS DOD CALS DOD initiative . History and Rationale The CALS Table Model was developed by the CALS DOD CALS Industry Steering Group Electronic Publishing Committee EPC . The EPC subcommittee, of which Harvey Bingham was co chair and a major contributor, designed the CALS Table Model in 1989 1990. The EPC was made up of industry and military service representatives. Some represented traditional military document printing agencies. Others represented electronic publishing organizations. SGML itself was new. At that time, the CALS intent for all their technical manuals was to use that DTD to achieve system neutral interchange of content and structure. Its basis was a minimal description and example of a table from the prior Mil M 38784B specification for producing technical manuals. The incomplete specification of the semantics associated with the table model allowed too much freedom for vendor interpretation, and resulted in problems with interchange. SGML Open now OASIS organization OASIS surveyed the implementing vendors to identify differences, as the initial step toward reaching a common interpretation. The next step was an updated CALS Table Model Document Type Definition DTD and semantics. Both are now available from OASIS http www.oasis open.org specs tablemodels.php . As implementations of the CALS Table Model were developed, a number of ambiguities and omissions were detected and reported to the EPC committee. The differences in interpretation had led to serious interoperability problems. To resolve these differences, OASIS identified a subset of the full CALS table model that had a high probability of successful interoperability among the OASIS vendor products. This subset is the http www.oasis open.org specs tr9503.html Exchange Table Model DTD . See also OASIS organization OASIS is the Organization for the Advancement of Structured Information Standards ...   more details



  1. Dekoratie voor Trouwe Dienst

    Infobox Military Award name Dekoratie voor Trouwe Dienst image Image DTDRibbon.GIF caption Ribbon 32mm, red, green, blue, yellow, white awarded by South African Defence Force type Medal eligibility for Distinguished and meritorious service in the Anglo Boer War status Discontinued first award 1921 last award 1946 total 591 individual The Dekoratie voor Trouwe Dienst Decoration for Devoted Service was a South African military decorations South African military decoration . It was authorised on 21 December 1920, as a retrospective award for Boer veterans of the Anglo Boer War 1899 1902 . The DTD was granted, on application, to veterans who had rendered distinguished and especially meritorious service as officers in the Boer forces, and was equivalent to the British Distinguished Service Order . Neither of the Boer republics the Orange Free State and the South African Republic had had official honours systems of their own. The DTD was created to give the Boer veterans parity with their fellow South Africans who had fought on the British side in the war. The DTD is a silver medal. Both sides depict a cross, encircled by the words Voor Trouwe Dienst 1899 1902 . One side has the arms of the SAR in the centre of the cross, and the other side has the OFS arms. This enabled each recipient to wear the medal so as to display the arms of the state for which he had fought. The ribbon, as worn by an SAR veteran, is red, green, blue, yellow, and white. An OFS veteran would have reversed the ribbon so that the white stripe was on the left. Nearly 600 decorations were awarded. References Alexander, E. G. M., Barron G. K. B. and Bateman, A. J. 1986 . South African Orders, Decorations and Medals . Human and Rousseau. Monick, S. 1988 . South African Military Awards 1912 1987 . South African National Museum of Military History. See also Medalje vir Troue Diens British and Commonwealth orders and decorations South African military decorations External links http www.hwmw.bravehost.com So ...   more details



  1. Chaebol

    &dcmNo 2189362&eleId 5&offset 72801&length 49666&dtd dart3.xsd&displayImage hide ref Organization a chaebol ...&length 18242&dtd dart3.xsd&displayImage hide ref LG Group LG Holdings 90.2224 64.7 Holding consolidated ...&eleId 5&offset 50471&length 32324&dtd dart3.xsd&displayImage hide ref SK Group SK Holdings 88.8249 ...&dcmNo 2193642&eleId 5&offset 75395&length 33477&dtd dart3.xsd&displayImage hide ref Hyundai ... 2191255&eleId 5&offset 75847&length 41461&dtd dart3.xsd&displayImage hide ref LG Electronics 63.2803 ...?rcpNo 20090331002214&dcmNo 2189897&eleId 5&offset 51635&length 23933&dtd dart3.xsd&displayImage hide ... 2185803&eleId 5&offset 71473&length 30219&dtd dart3.xsd&displayImage hide ref GS Group GS Caltex ... 5&offset 62112&length 23190&dtd dart3.xsd&displayImage hide ref Hyundai Heavy Industries 27.4835 ... 20090331003120&dcmNo 2194629&eleId 5&offset 81774&length 41965&dtd dart3.xsd&displayImage hide ref ...&dcmNo 2326665&eleId 5&offset 69348&length 39796&dtd dart3.xsd&displayImage hide ref SK Networks 22.6516 ... 80981&length 46784&dtd dart3.xsd&displayImage hide ref Kia Motors 22.2176 25.5 Motors ref http ...&dtd dart3.xsd&displayImage hide ref LS Group 20.5330 14.5 Steel, Cable & Energy ref http www.lsholdings.com ... 21670&dtd dart3.xsd&displayImage hide ref Doosan Heavy Industries 19.2317 30.1 Heavy industry including ...&eleId 5&offset 52897&length 22605&dtd dart3.xsd&displayImage hide ref LG Display 16.2636 17.3 LCD ref ... 20352&dtd dart3.xsd&displayImage hide ref Hyundai Oil Bank 14.8347 4.8 Energy ref http dart.fss.or.kr report viewer.do?rcpNo 20090413001349&dcmNo 2233088&eleId 5&offset 49572&length 25848&dtd dart3.xsd ...?rcpNo 20090430000710&dcmNo 2276259&eleId 5&offset 63587&length 37762&dtd dart3.xsd&displayImage hide ...&dcmNo 2193841&eleId 5&offset 62532&length 39634&dtd dart3.xsd&displayImage hide ref Daelim Group 14.5000 ...&dcmNo 2175924&eleId 5&offset 77566&length 41062&dtd dart3.xsd&displayImage hide ref Hyundai Mobis ...&eleId 6&offset 72404&length 43269&dtd dart3.xsd&displayImage hide ref Kyobo Life 13.5155 47.8 insurance ...   more details



  1. LinuxDoc

    LinuxDoc is an SGML Document Type Definition DTD which is similar to DocBook . It was created by Matt Welsh computer scientist Matt Welsh and version 1.1 was announced ref Announcement http www.w3.org Tools Linuxdoc SGML.html Linuxdoc SGML v1.1 now available by Matt Welsh computer scientist 1994 06 07 ref in 1994. It is primarily used by the Linux Documentation Project . The DocBook SGML tags are often longer than the equivalent LinuxDoc tags. ref http www.lafn.org dave linux ld vs db.txt Comparison of DocBook to LinuxDoc short by David Lawyer, June 23, 2000, revised Mar. 2005 ref LinuxDoc has a more succinct DTD than DocBook and users of small to medium size projects ref http groups.google.com group alt.cyberpunk msg 4e679c292f6e2055?dmode source alt.cyberpunk About the FAQ , 2000 12 07 ref have found that it suits their purposes better than DocBook. The Debian distribution of Linux has a linuxdoc tools package. See also List of document markup languages Comparison of document markup languages External links http www.ibiblio.org pub Linux docs HOWTO other formats html single Howtos with LinuxDoc.html http www.nyx.net sgjoen The LDP HOWTO Generator.html A JavaScript based web page that generates LinuxDoc http www.nyx.net sgjoen template.sgml Sample of LinuxDoc generated with above generator http www.nyx.net sgjoen template.html The above LinuxDoc compiled to HTML using SGMLTools References references DEFAULTSORT Linuxdoc Category Markup languages linux stub ...   more details




Articles 1 - 25 of 782          Next


Search   in  
Search for DTD in Tutorials
Search for DTD in Encyclopedia
Search for DTD in Videos
Search for DTD in Books
Search for DTD in Software
Search for DTD in DVDs
Search for DTD in Store


Advertisement




DTD in Encyclopedia
DTD top DTD

Home - Add TutorGig to Your Site - Disclaimer

©2011-2013 TutorGig.com. All Rights Reserved. Privacy Statement