-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add IDateProvider * Fix event filters * Remove all direct usages of 'Date' function * Update Testing.FileManager.pas * Move business logic from TO2Rules to TFileManager * Move TO2Rule.GetHighlightColors to TFileManager.GetHighlight * Move business logic from TO2Rule to TFileManager * Remove IDateProvider/TDateProvider from uO2Rules * Remove uO2Utils * Remove TO2Rule.DisplayPasswordStrength property * uO2Xml -> uXmlFiler * Build 551 * Update Testing.FileManager.pas * uXmlFiler -> uXmlSerialization * Build 552 * Update Testing.FileManager.pas * Update Testing.FileManager.pas * Add GetHighlightForField * Update Testing.FileManager.pas * Update Testing.FileManager.pas * Rename GetNextEvent to TryGetNextEvent * GetHighlight -> TryGetHighlightColors * Add TryGetNextEvent * Build 553 * Add Testing.MarkdownLogger * Update Testing.EncryptionPropsModel.pas * Update Testing.MarkdownLogger.pas * Generate test-results.md * Update Testing.MarkdownLogger.pas * Update test-results.md * Update uO2File.pas * Update uO2Defs.pas * Update uO2File.pas * IV * Update uO2File.pas * Update uO2File.pas * Build 554 * HTML Export: add dark style * HTML Export: external styles * Add Mono.css * Build 555 * Update uHTMLExport.pas * Add files via upload * Update O2.iss * Extend copyright * Build 556 * Add TryGetStyleFileName * Add files via upload * Update README.md * Version 3.1
- Loading branch information
Showing
115 changed files
with
15,708 additions
and
10,271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<xs:simpleType name="guid"> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="[{][0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:element name="TO2File"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="Title" type="xs:string"/> | ||
<xs:element name="Description" type="xs:string"/> | ||
<xs:element name="Author" type="xs:string"/> | ||
<xs:element name="Objects"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="ObjectID" type="guid"/> | ||
<xs:element name="Name" type="xs:string"/> | ||
<xs:element name="Tag" type="xs:string"/> | ||
<xs:element name="Fields"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="FieldName" type="xs:string"/> | ||
<xs:element name="FieldValue" type="xs:string"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="Text"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="TextType"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="ttPlainText"/> | ||
<xs:enumeration value="ttCommonMark"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="Relations"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="RelationID" type="guid"/> | ||
<xs:element name="ObjectID1" type="guid"/> | ||
<xs:element name="ObjectID2" type="guid"/> | ||
<xs:element name="Role1" type="xs:string"/> | ||
<xs:element name="Role2" type="xs:string"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="Rules"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="Name" type="xs:string"/> | ||
<xs:element name="RuleType"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="rtHyperLink"/> | ||
<xs:enumeration value="rtEmail"/> | ||
<xs:enumeration value="rtPassword"/> | ||
<xs:enumeration value="rtExpirationDate"/> | ||
<xs:enumeration value="rtRecurrence"/> | ||
<xs:enumeration value="rtHighlight"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
<xs:element name="FieldName" type="xs:string"/> | ||
<xs:element name="FieldValue" type="xs:string"/> | ||
<xs:element name="Params"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="item" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="ParamName"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="Mask"/> | ||
<xs:enumeration value="DisplayMask"/> | ||
<xs:enumeration value="DateSeparator"/> | ||
<xs:enumeration value="ShortDateFormat"/> | ||
<xs:enumeration value="DaysBefore"/> | ||
<xs:enumeration value="DaysAfter"/> | ||
<xs:enumeration value="Color"/> | ||
<xs:enumeration value="TextColor"/> | ||
<xs:enumeration value="DisplayPasswordStrength"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
<xs:element name="ParamValue" type="xs:string"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="Active"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="False"/> | ||
<xs:enumeration value="True"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.