Skip to content

Commit 1c6a0a4

Browse files
committed
commit of 1.8.7 version
0 parents  commit 1c6a0a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+18382
-0
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
bin/
2+
dist/
3+
*resharper.user
4+
[Dd]ebug/
5+
[Rr]elease/
6+
Signed Debug/
7+
Signed Release/
8+
obj/
9+
*.ncb
10+
*.suo
11+
_ReSharper.*/
12+
*.pdb
13+
*.snk
14+
*.user
15+
*.log
16+
App_Data/
17+
*.userprefs
18+
*.pidb
19+
*.resources
20+
src/test-results/*.xml
21+
src/*/test-results/*.xml
22+
src/*/*/test-results/*.xml
23+
*.test-cache

CommandLine/App.ico

1.05 KB
Binary file not shown.

CommandLine/AssemblyInfo.cs

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
using System;
2+
using System.Reflection;
3+
using System.Runtime.CompilerServices;
4+
5+
//
6+
// General Information about an assembly is controlled through the following
7+
// set of attributes. Change these attribute values to modify the information
8+
// associated with an assembly.
9+
//
10+
[assembly: AssemblyTitle("SgmlReader")]
11+
[assembly: AssemblyDescription("Converts SGML to XML via XmlReader API")]
12+
[assembly: AssemblyConfiguration("")]
13+
[assembly: AssemblyCompany("Microsoft")]
14+
[assembly: AssemblyProduct("")]
15+
[assembly: AssemblyCopyright("Copyright © 2002, Microsoft Corporation")]
16+
[assembly: AssemblyTrademark("")]
17+
[assembly: AssemblyCulture("")]
18+
[assembly: CLSCompliant(true)]
19+
20+
//
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
// You can specify all the values or you can default the Revision and Build Numbers
29+
// by using the '*' as shown below:
30+
31+
[assembly: AssemblyVersion("1.8.7.*")]
32+
[assembly: AssemblyFileVersion("1.8.7.*")]
33+
34+
//
35+
// In order to sign your assembly you must specify a key to use. Refer to the
36+
// Microsoft .NET Framework documentation for more information on assembly signing.
37+
//
38+
// Use the attributes below to control which key is used for signing.
39+
//
40+
// Notes:
41+
// (*) If no key is specified, the assembly is not signed.
42+
// (*) KeyName refers to a key that has been installed in the Crypto Service
43+
// Provider (CSP) on your machine. KeyFile refers to a file which contains
44+
// a key.
45+
// (*) If the KeyFile and the KeyName values are both specified, the
46+
// following processing occurs:
47+
// (1) If the KeyName can be found in the CSP, that key is used.
48+
// (2) If the KeyName does not exist and the KeyFile does exist, the key
49+
// in the KeyFile is installed into the CSP and used.
50+
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
51+
// When specifying the KeyFile, the location of the KeyFile should be
52+
// relative to the project output directory which is
53+
// %Project Directory%\obj\<configuration>. For example, if your KeyFile is
54+
// located in the project directory, you would specify the AssemblyKeyFile
55+
// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
56+
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
57+
// documentation for more information on this.
58+
//
59+
[assembly: AssemblyDelaySign(false)]
60+
[assembly: AssemblyKeyFile("")]
61+
[assembly: AssemblyKeyName("")]

CommandLine/HTMLspecial.ent

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!-- Special characters for HTML -->
2+
3+
<!-- Character entity set. Typical invocation:
4+
<!ENTITY % HTMLspecial PUBLIC
5+
"-//W3C//ENTITIES Special//EN//HTML">
6+
%HTMLspecial; -->
7+
8+
<!-- Portions (C) International Organization for Standardization 1986:
9+
Permission to copy in any form is granted for use with
10+
conforming SGML systems and applications as defined in
11+
ISO 8879, provided this notice is included in all copies.
12+
-->
13+
14+
<!-- Relevant ISO entity set is given unless names are newly introduced.
15+
New names (i.e., not in ISO 8879 list) do not clash with any
16+
existing ISO 8879 entity names. ISO 10646 character numbers
17+
are given for each character, in hex. CDATA values are decimal
18+
conversions of the ISO 10646 values and refer to the document
19+
character set. Names are ISO 10646 names.
20+
21+
-->
22+
23+
<!-- C0 Controls and Basic Latin -->
24+
<!ENTITY quot CDATA "&#34;" -- quotation mark = APL quote,
25+
U+0022 ISOnum -->
26+
<!ENTITY amp CDATA "&#38;" -- ampersand, U+0026 ISOnum -->
27+
<!ENTITY lt CDATA "&#60;" -- less-than sign, U+003C ISOnum -->
28+
<!ENTITY gt CDATA "&#62;" -- greater-than sign, U+003E ISOnum -->
29+
30+
<!-- Latin Extended-A -->
31+
<!ENTITY OElig CDATA "&#338;" -- latin capital ligature OE,
32+
U+0152 ISOlat2 -->
33+
<!ENTITY oelig CDATA "&#339;" -- latin small ligature oe, U+0153 ISOlat2 -->
34+
<!-- ligature is a misnomer, this is a separate character in some languages -->
35+
<!ENTITY Scaron CDATA "&#352;" -- latin capital letter S with caron,
36+
U+0160 ISOlat2 -->
37+
<!ENTITY scaron CDATA "&#353;" -- latin small letter s with caron,
38+
U+0161 ISOlat2 -->
39+
<!ENTITY Yuml CDATA "&#376;" -- latin capital letter Y with diaeresis,
40+
U+0178 ISOlat2 -->
41+
42+
<!-- Spacing Modifier Letters -->
43+
<!ENTITY circ CDATA "&#710;" -- modifier letter circumflex accent,
44+
U+02C6 ISOpub -->
45+
<!ENTITY tilde CDATA "&#732;" -- small tilde, U+02DC ISOdia -->
46+
47+
<!-- General Punctuation -->
48+
<!ENTITY ensp CDATA "&#8194;" -- en space, U+2002 ISOpub -->
49+
<!ENTITY emsp CDATA "&#8195;" -- em space, U+2003 ISOpub -->
50+
<!ENTITY thinsp CDATA "&#8201;" -- thin space, U+2009 ISOpub -->
51+
<!ENTITY zwnj CDATA "&#8204;" -- zero width non-joiner,
52+
U+200C NEW RFC 2070 -->
53+
<!ENTITY zwj CDATA "&#8205;" -- zero width joiner, U+200D NEW RFC 2070 -->
54+
<!ENTITY lrm CDATA "&#8206;" -- left-to-right mark, U+200E NEW RFC 2070 -->
55+
<!ENTITY rlm CDATA "&#8207;" -- right-to-left mark, U+200F NEW RFC 2070 -->
56+
<!ENTITY ndash CDATA "&#8211;" -- en dash, U+2013 ISOpub -->
57+
<!ENTITY mdash CDATA "&#8212;" -- em dash, U+2014 ISOpub -->
58+
<!ENTITY lsquo CDATA "&#8216;" -- left single quotation mark,
59+
U+2018 ISOnum -->
60+
<!ENTITY rsquo CDATA "&#8217;" -- right single quotation mark,
61+
U+2019 ISOnum -->
62+
<!ENTITY sbquo CDATA "&#8218;" -- single low-9 quotation mark, U+201A NEW -->
63+
<!ENTITY ldquo CDATA "&#8220;" -- left double quotation mark,
64+
U+201C ISOnum -->
65+
<!ENTITY rdquo CDATA "&#8221;" -- right double quotation mark,
66+
U+201D ISOnum -->
67+
<!ENTITY bdquo CDATA "&#8222;" -- double low-9 quotation mark, U+201E NEW -->
68+
<!ENTITY dagger CDATA "&#8224;" -- dagger, U+2020 ISOpub -->
69+
<!ENTITY Dagger CDATA "&#8225;" -- double dagger, U+2021 ISOpub -->
70+
<!ENTITY permil CDATA "&#8240;" -- per mille sign, U+2030 ISOtech -->
71+
<!ENTITY lsaquo CDATA "&#8249;" -- single left-pointing angle quotation mark,
72+
U+2039 ISO proposed -->
73+
<!-- lsaquo is proposed but not yet ISO standardized -->
74+
<!ENTITY rsaquo CDATA "&#8250;" -- single right-pointing angle quotation mark,
75+
U+203A ISO proposed -->
76+
<!-- rsaquo is proposed but not yet ISO standardized -->
77+
<!ENTITY euro CDATA "&#8364;" -- euro sign, U+20AC NEW -->

0 commit comments

Comments
 (0)