├── .gitignore ├── README.md ├── contribs ├── licence.bsd.txt ├── licence.lgpl.txt ├── licence.w3c.txt └── readme.htm ├── licence.txt ├── src-mono ├── Makefile ├── README.md ├── build-project ├── readme.txt └── run-mono-exe ├── src-win32 ├── build.cmd ├── clean-source.cmd ├── create_setup.iss ├── echo.exe └── requirements.txt └── src ├── BetterPoEditor.sln ├── BetterPoEditor ├── BetterPoEditor.csproj ├── BetterPoEditor.csproj.user ├── IO │ ├── Defs.cs │ ├── TextFile.cs │ └── TextLine.cs ├── Images │ ├── Logo.xcf │ ├── bookmark-new-7.png │ ├── compile.png │ ├── file-format.png │ ├── find.png │ ├── fuzzy.png │ ├── info.png │ ├── not-fuzzy.png │ ├── open.png │ ├── pofile │ │ ├── categories - applications-internet-3 128x128.png │ │ ├── categories - applications-internet-3 16x16.png │ │ ├── categories - applications-internet-3 256x256.png │ │ ├── categories - applications-internet-3 32x32.png │ │ └── categories - applications-internet-3 48x48.png │ ├── removed.png │ ├── save.png │ ├── settings.png │ ├── translated.png │ ├── translation-status.xcf │ └── untranslated.png ├── Logo.ico ├── PO │ ├── Entry.cs │ ├── File.cs │ └── Line.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── UI │ ├── frmEntryMessages.Designer.cs │ ├── frmEntryMessages.cs │ ├── frmEntryMessages.resx │ ├── frmInfo.Designer.cs │ ├── frmInfo.cs │ ├── frmInfo.resx │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ ├── frmMain.resx │ ├── frmOptions.Designer.cs │ ├── frmOptions.cs │ ├── frmOptions.resx │ ├── frmSearch.Designer.cs │ ├── frmSearch.cs │ ├── frmSearch.resx │ ├── frmSelectCodePage.Designer.cs │ ├── frmSelectCodePage.cs │ ├── frmSelectCodePage.resx │ ├── frmSelectLanguage.Designer.cs │ ├── frmSelectLanguage.cs │ └── frmSelectLanguage.resx ├── Utils │ ├── BingTranslator.cs │ ├── Gfx.cs │ ├── SpellCheck.cs │ ├── Text.cs │ ├── Tidy.cs │ └── Translator.cs ├── Vars.cs ├── dictionaries │ ├── de-DE.dic │ ├── en-AU.dic │ ├── en-CA.dic │ ├── en-GB.dic │ ├── en-US.dic │ ├── es-ES.dic │ ├── es-MX.dic │ ├── fr-FR.dic │ ├── it-IT.dic │ └── readme.htm ├── pofile.ico └── tools │ └── msgfmt.exe ├── Jayrock.Json ├── AssemblyInfo.cs ├── BooleanObject.cs ├── Collections │ └── KeyedCollection.cs ├── Compat.cs ├── Configuration │ ├── DictionarySectionHandler.cs │ ├── ListSectionHandler.cs │ └── TypeListSectionHandler.cs ├── Diagnostics │ └── DebugString.cs ├── IndentedTextWriter.cs ├── InternetDate.cs ├── Jayrock.Json.csproj ├── Json │ ├── BufferedCharReader.cs │ ├── Conversion │ │ ├── AnyType.cs │ │ ├── Converters │ │ │ ├── AnyImporter.cs │ │ │ ├── ArrayImporter.cs │ │ │ ├── BooleanExporter.cs │ │ │ ├── BooleanImporter.cs │ │ │ ├── ByteArrayExporter.cs │ │ │ ├── ByteArrayImporter.cs │ │ │ ├── ComponentExporter.cs │ │ │ ├── ComponentImporter.cs │ │ │ ├── ControlExporter.cs │ │ │ ├── DataRowExporter.cs │ │ │ ├── DataRowViewExporter.cs │ │ │ ├── DataSetExporter.cs │ │ │ ├── DataTableExporter.cs │ │ │ ├── DataViewExporter.cs │ │ │ ├── DateTimeExporter.cs │ │ │ ├── DateTimeImporter.cs │ │ │ ├── DictionaryExporter.cs │ │ │ ├── DictionaryImporter.cs │ │ │ ├── EnumImporter.cs │ │ │ ├── EnumerableExporter.cs │ │ │ ├── ExportAwareExporter.cs │ │ │ ├── ExporterBase.cs │ │ │ ├── GuidImporter.cs │ │ │ ├── ImportAwareImporter.cs │ │ │ ├── ImporterBase.cs │ │ │ ├── ListImporter.cs │ │ │ ├── NameValueCollectionExporter.cs │ │ │ ├── NameValueCollectionImporter.cs │ │ │ ├── NumberExporter.cs │ │ │ ├── NumberImporter.cs │ │ │ ├── StringExporter.cs │ │ │ └── StringImporter.cs │ │ ├── CustomTypeDescriptor.cs │ │ ├── ExportContext.cs │ │ ├── ExporterCollection.cs │ │ ├── ExporterListSectionHandler.cs │ │ ├── IExporter.cs │ │ ├── IImporter.cs │ │ ├── IJsonExportable.cs │ │ ├── IJsonImportable.cs │ │ ├── ImportContext.cs │ │ ├── ImporterCollection.cs │ │ ├── ImporterListSectionHandler.cs │ │ ├── JsonConvert.cs │ │ └── JsonIgnoreAttribute.cs │ ├── EmptyJsonWriter.cs │ ├── InvalidMemberException.cs │ ├── JsonArray.cs │ ├── JsonBoolean.cs │ ├── JsonException.cs │ ├── JsonNull.cs │ ├── JsonNumber.cs │ ├── JsonObject.cs │ ├── JsonReader.cs │ ├── JsonReaderBase.cs │ ├── JsonRecorder.cs │ ├── JsonString.cs │ ├── JsonTextReader.cs │ ├── JsonTextWriter.cs │ ├── JsonToken.cs │ ├── JsonTokenClass.cs │ ├── JsonWriter.cs │ ├── JsonWriterBase.cs │ └── JsonWriterBracket.cs ├── LOGFILE ├── Mask.cs ├── PrivateAssemblyInfo.cs └── UnixTime.cs ├── NetSpell.DictionaryBuild ├── AboutForm.cs ├── AboutForm.resx ├── AssemblyInfo.cs ├── BOOK01A.ICO ├── DictionaryForm.cs ├── DictionaryForm.resx ├── MainForm.cs ├── MainForm.resx ├── NetSpell.DictionaryBuild.csproj └── app.config ├── NetSpell.SpellChecker ├── AssemblyInfo.cs ├── Controls │ ├── CheckAsYouType.cs │ ├── CheckAsYouType.resx │ ├── CheckAsYouTypeState.cs │ ├── NativeMethods.cs │ ├── SpellRichTextBox.cs │ ├── SpellTextBox.cs │ └── SpellTextBox.resx ├── Dictionary │ ├── Affix │ │ ├── AffixEntry.cs │ │ ├── AffixEntryCollection.cs │ │ ├── AffixEntryEnumerator.cs │ │ ├── AffixRule.cs │ │ ├── AffixRuleCollection.cs │ │ ├── AffixRuleEnumerator.cs │ │ └── AffixUtility.cs │ ├── Dictionary.bmp │ ├── Phonetic │ │ ├── PhoneticRule.cs │ │ ├── PhoneticRuleCollection.cs │ │ ├── PhoneticRuleEnumerator.cs │ │ └── PhoneticUtility.cs │ ├── Word.cs │ ├── WordDictionary.cs │ └── WordDictionary.resx ├── Forms │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── SuggestionForm.cs │ └── SuggestionForm.resx ├── Interactive.bmp ├── LOGFILE ├── NetSpell.SpellChecker.csproj ├── ReplaceWordEventArgs.cs ├── Spell.snk ├── Spelling.bmp ├── Spelling.cs ├── Spelling.resx ├── SpellingEventArgs.cs ├── TraceWriter.cs └── doc │ ├── NetSpell.SpellChecker.xml │ └── NetSpell.ndoc └── TidyNet ├── AssemblyInfo.cs ├── TidyMessages.resx ├── TidyNet.csproj ├── dom ├── DomException.cs ├── IAttr.cs ├── ICDATASection.cs ├── ICharacterData.cs ├── IComment.cs ├── IDocument.cs ├── IDocumentFragment.cs ├── IDocumentType.cs ├── IDomImplementation.cs ├── IElement.cs ├── IEntity.cs ├── IEntityReference.cs ├── INamedNodeMap.cs ├── INode.cs ├── INodeList.cs ├── INotation.cs ├── IProcessingInstruction.cs ├── IText.cs └── NodeType.cs └── tidy ├── AlignAttrCheck.cs ├── AnchorCheckTableCheckAttribs.cs ├── AreaCheckTableCheckAttribs.cs ├── AttVal.cs ├── AttrCheckImpl.cs ├── Attribute.cs ├── AttributeTable.cs ├── BoolAttrCheck.cs ├── CaptionCheckTableCheckAttribs.cs ├── CharEncoding.cs ├── CheckAttribsImpl.cs ├── Clean.cs ├── ClsStreamInImpl.cs ├── ContentModel.cs ├── Dict.cs ├── DocType.cs ├── DomAttrImpl.cs ├── DomAttrMapImpl.cs ├── DomCdataSectionImpl.cs ├── DomCharacterDataImpl.cs ├── DomCommentImpl.cs ├── DomDocumentImpl.cs ├── DomDocumentTypeImpl.cs ├── DomElementImpl.cs ├── DomNodeImpl.cs ├── DomNodeListByTagNameImpl.cs ├── DomNodeListImpl.cs ├── DomProcessingInstructionImpl.cs ├── DomTextImpl.cs ├── Entity.cs ├── EntityTable.cs ├── HrCheckTableCheckAttribs.cs ├── HtmlCheckAttribs.cs ├── HtmlVersion.cs ├── IAttrCheck.cs ├── ICheckAttribs.cs ├── IParser.cs ├── IdAttrCheck.cs ├── ImgCheckTableCheckAttribs.cs ├── InlineStack.cs ├── Lexer.cs ├── LinkCheckTableCheckAttribs.cs ├── MapCheckTableCheckAttribs.cs ├── MessageLevel.cs ├── MutableBoolean.cs ├── MutableInteger.cs ├── MutableObject.cs ├── NameAttrCheck.cs ├── Node.cs ├── Out.cs ├── OutImpl.cs ├── PPrint.cs ├── ParserImpl.cs ├── Report.cs ├── ScriptAttrCheck.cs ├── ScriptCheckAttribs.cs ├── StreamIn.cs ├── StreamInImpl.cs ├── Style.cs ├── StyleCheckTableCheckAttribs.cs ├── StyleProp.cs ├── TableCellCheckTableCheckAttribs.cs ├── TableCheckAttribs.cs ├── TagTable.cs ├── Tidy.cs ├── TidyMessage.cs ├── TidyMessageCollection.cs ├── TidyOptions.cs ├── UrlAttrCheck.cs └── ValignAttrCheck.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/README.md -------------------------------------------------------------------------------- /contribs/licence.bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/contribs/licence.bsd.txt -------------------------------------------------------------------------------- /contribs/licence.lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/contribs/licence.lgpl.txt -------------------------------------------------------------------------------- /contribs/licence.w3c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/contribs/licence.w3c.txt -------------------------------------------------------------------------------- /contribs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/contribs/readme.htm -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/licence.txt -------------------------------------------------------------------------------- /src-mono/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-mono/Makefile -------------------------------------------------------------------------------- /src-mono/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-mono/README.md -------------------------------------------------------------------------------- /src-mono/build-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-mono/build-project -------------------------------------------------------------------------------- /src-mono/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-mono/readme.txt -------------------------------------------------------------------------------- /src-mono/run-mono-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-mono/run-mono-exe -------------------------------------------------------------------------------- /src-win32/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-win32/build.cmd -------------------------------------------------------------------------------- /src-win32/clean-source.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-win32/clean-source.cmd -------------------------------------------------------------------------------- /src-win32/create_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-win32/create_setup.iss -------------------------------------------------------------------------------- /src-win32/echo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-win32/echo.exe -------------------------------------------------------------------------------- /src-win32/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src-win32/requirements.txt -------------------------------------------------------------------------------- /src/BetterPoEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor.sln -------------------------------------------------------------------------------- /src/BetterPoEditor/BetterPoEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/BetterPoEditor.csproj -------------------------------------------------------------------------------- /src/BetterPoEditor/BetterPoEditor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/BetterPoEditor.csproj.user -------------------------------------------------------------------------------- /src/BetterPoEditor/IO/Defs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/IO/Defs.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/IO/TextFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/IO/TextFile.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/IO/TextLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/IO/TextLine.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/Logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/Logo.xcf -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/bookmark-new-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/bookmark-new-7.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/compile.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/file-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/file-format.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/find.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/fuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/fuzzy.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/info.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/not-fuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/not-fuzzy.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/open.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/pofile/categories - applications-internet-3 128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/pofile/categories - applications-internet-3 128x128.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/pofile/categories - applications-internet-3 16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/pofile/categories - applications-internet-3 16x16.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/pofile/categories - applications-internet-3 256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/pofile/categories - applications-internet-3 256x256.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/pofile/categories - applications-internet-3 32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/pofile/categories - applications-internet-3 32x32.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/pofile/categories - applications-internet-3 48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/pofile/categories - applications-internet-3 48x48.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/removed.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/save.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/settings.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/translated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/translated.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/translation-status.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/translation-status.xcf -------------------------------------------------------------------------------- /src/BetterPoEditor/Images/untranslated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Images/untranslated.png -------------------------------------------------------------------------------- /src/BetterPoEditor/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Logo.ico -------------------------------------------------------------------------------- /src/BetterPoEditor/PO/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/PO/Entry.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/PO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/PO/File.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/PO/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/PO/Line.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Program.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmEntryMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmEntryMessages.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmEntryMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmEntryMessages.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmEntryMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmEntryMessages.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmInfo.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmInfo.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmInfo.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmMain.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmMain.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmMain.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmOptions.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmOptions.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmOptions.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSearch.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSearch.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSearch.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectCodePage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectCodePage.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectCodePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectCodePage.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectCodePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectCodePage.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectLanguage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectLanguage.Designer.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectLanguage.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/UI/frmSelectLanguage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/UI/frmSelectLanguage.resx -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/BingTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/BingTranslator.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/Gfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/Gfx.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/SpellCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/SpellCheck.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/Text.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/Tidy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/Tidy.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Utils/Translator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Utils/Translator.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/Vars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/Vars.cs -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/de-DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/de-DE.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/en-AU.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/en-AU.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/en-CA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/en-CA.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/en-GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/en-GB.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/en-US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/en-US.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/es-ES.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/es-ES.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/es-MX.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/es-MX.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/fr-FR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/fr-FR.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/it-IT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/it-IT.dic -------------------------------------------------------------------------------- /src/BetterPoEditor/dictionaries/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/dictionaries/readme.htm -------------------------------------------------------------------------------- /src/BetterPoEditor/pofile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/pofile.ico -------------------------------------------------------------------------------- /src/BetterPoEditor/tools/msgfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/BetterPoEditor/tools/msgfmt.exe -------------------------------------------------------------------------------- /src/Jayrock.Json/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/BooleanObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/BooleanObject.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Collections/KeyedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Collections/KeyedCollection.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Compat.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Configuration/DictionarySectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Configuration/DictionarySectionHandler.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Configuration/ListSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Configuration/ListSectionHandler.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Configuration/TypeListSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Configuration/TypeListSectionHandler.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Diagnostics/DebugString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Diagnostics/DebugString.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/IndentedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/IndentedTextWriter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/InternetDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/InternetDate.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Jayrock.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Jayrock.Json.csproj -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/BufferedCharReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/BufferedCharReader.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/AnyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/AnyType.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/AnyImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/AnyImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ArrayImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ArrayImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/BooleanExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/BooleanExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/BooleanImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/BooleanImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ByteArrayExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ByteArrayExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ByteArrayImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ByteArrayImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ComponentExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ComponentExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ComponentImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ComponentImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ControlExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ControlExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DataRowExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DataRowExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DataRowViewExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DataRowViewExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DataSetExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DataSetExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DataTableExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DataTableExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DataViewExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DataViewExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DateTimeExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DateTimeExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DateTimeImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DateTimeImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DictionaryExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DictionaryExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/DictionaryImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/DictionaryImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/EnumImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/EnumImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/EnumerableExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/EnumerableExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ExportAwareExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ExportAwareExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ExporterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ExporterBase.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/GuidImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/GuidImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ImportAwareImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ImportAwareImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ImporterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ImporterBase.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/ListImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/ListImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/NameValueCollectionExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/NameValueCollectionExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/NameValueCollectionImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/NameValueCollectionImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/NumberExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/NumberExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/NumberImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/NumberImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/StringExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/StringExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/Converters/StringImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/Converters/StringImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/CustomTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/CustomTypeDescriptor.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ExportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ExportContext.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ExporterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ExporterCollection.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ExporterListSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ExporterListSectionHandler.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/IExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/IExporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/IImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/IImporter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/IJsonExportable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/IJsonExportable.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/IJsonImportable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/IJsonImportable.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ImportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ImportContext.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ImporterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ImporterCollection.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/ImporterListSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/ImporterListSectionHandler.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/JsonConvert.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/Conversion/JsonIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/Conversion/JsonIgnoreAttribute.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/EmptyJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/EmptyJsonWriter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/InvalidMemberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/InvalidMemberException.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonArray.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonBoolean.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonException.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonNull.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonNumber.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonObject.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonReader.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonReaderBase.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonRecorder.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonString.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonTextReader.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonTextWriter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonToken.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonTokenClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonTokenClass.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonWriter.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonWriterBase.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/Json/JsonWriterBracket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Json/JsonWriterBracket.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/LOGFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/LOGFILE -------------------------------------------------------------------------------- /src/Jayrock.Json/Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/Mask.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/PrivateAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/PrivateAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Jayrock.Json/UnixTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/Jayrock.Json/UnixTime.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/AboutForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/AboutForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/BOOK01A.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/BOOK01A.ICO -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/DictionaryForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/DictionaryForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/DictionaryForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/DictionaryForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/MainForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/MainForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/NetSpell.DictionaryBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/NetSpell.DictionaryBuild.csproj -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.DictionaryBuild/app.config -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouType.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouType.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouTypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouTypeState.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/NativeMethods.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/SpellRichTextBox.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/SpellTextBox.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Controls/SpellTextBox.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntry.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRule.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixUtility.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Dictionary.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Dictionary.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRule.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticUtility.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/Word.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/WordDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/WordDictionary.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/WordDictionary.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Dictionary/WordDictionary.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Forms/OptionsForm.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Forms/OptionsForm.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/SuggestionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Forms/SuggestionForm.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/SuggestionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Forms/SuggestionForm.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Interactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Interactive.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/LOGFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/LOGFILE -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/NetSpell.SpellChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/NetSpell.SpellChecker.csproj -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/ReplaceWordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/ReplaceWordEventArgs.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spell.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Spell.snk -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Spelling.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Spelling.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/Spelling.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/SpellingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/SpellingEventArgs.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/TraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/TraceWriter.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/doc/NetSpell.SpellChecker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/doc/NetSpell.SpellChecker.xml -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/doc/NetSpell.ndoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/NetSpell.SpellChecker/doc/NetSpell.ndoc -------------------------------------------------------------------------------- /src/TidyNet/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TidyNet/TidyMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/TidyMessages.resx -------------------------------------------------------------------------------- /src/TidyNet/TidyNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/TidyNet.csproj -------------------------------------------------------------------------------- /src/TidyNet/dom/DomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/DomException.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IAttr.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/ICDATASection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/ICDATASection.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/ICharacterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/ICharacterData.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IComment.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IDocument.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IDocumentFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IDocumentFragment.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IDocumentType.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IDomImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IDomImplementation.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IElement.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IEntity.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IEntityReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IEntityReference.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/INamedNodeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/INamedNodeMap.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/INode.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/INodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/INodeList.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/INotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/INotation.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IProcessingInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IProcessingInstruction.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/IText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/IText.cs -------------------------------------------------------------------------------- /src/TidyNet/dom/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/dom/NodeType.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AlignAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AlignAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AnchorCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AnchorCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AreaCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AreaCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AttVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AttVal.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AttrCheckImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AttrCheckImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Attribute.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/AttributeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/AttributeTable.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/BoolAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/BoolAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/CaptionCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/CaptionCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/CharEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/CharEncoding.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/CheckAttribsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/CheckAttribsImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Clean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Clean.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ClsStreamInImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ClsStreamInImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ContentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ContentModel.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Dict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Dict.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DocType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DocType.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomAttrImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomAttrImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomAttrMapImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomAttrMapImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomCdataSectionImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomCdataSectionImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomCharacterDataImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomCharacterDataImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomCommentImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomCommentImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomDocumentImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomDocumentImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomDocumentTypeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomDocumentTypeImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomElementImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomElementImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomNodeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomNodeImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomNodeListByTagNameImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomNodeListByTagNameImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomNodeListImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomNodeListImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomProcessingInstructionImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomProcessingInstructionImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/DomTextImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/DomTextImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Entity.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/EntityTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/EntityTable.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/HrCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/HrCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/HtmlCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/HtmlCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/HtmlVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/HtmlVersion.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/IAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/IAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ICheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ICheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/IParser.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/IdAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/IdAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ImgCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ImgCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/InlineStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/InlineStack.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Lexer.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/LinkCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/LinkCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/MapCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/MapCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/MessageLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/MessageLevel.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/MutableBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/MutableBoolean.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/MutableInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/MutableInteger.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/MutableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/MutableObject.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/NameAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/NameAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Node.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Out.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/OutImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/OutImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/PPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/PPrint.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ParserImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ParserImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Report.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ScriptAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ScriptAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ScriptCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ScriptCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/StreamIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/StreamIn.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/StreamInImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/StreamInImpl.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Style.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/StyleCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/StyleCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/StyleProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/StyleProp.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TableCellCheckTableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TableCellCheckTableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TableCheckAttribs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TableCheckAttribs.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TagTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TagTable.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/Tidy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/Tidy.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TidyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TidyMessage.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TidyMessageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TidyMessageCollection.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/TidyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/TidyOptions.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/UrlAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/UrlAttrCheck.cs -------------------------------------------------------------------------------- /src/TidyNet/tidy/ValignAttrCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlocati/betterpoeditor/HEAD/src/TidyNet/tidy/ValignAttrCheck.cs --------------------------------------------------------------------------------