diff --git a/docs/tutorial/Tutorial - Part II.md b/docs/tutorial/Tutorial - Part II.md index 75d9401..a7704a3 100644 --- a/docs/tutorial/Tutorial - Part II.md +++ b/docs/tutorial/Tutorial - Part II.md @@ -10,7 +10,7 @@ So far our focus was on the *style* part of the rule. Let's focus now on the ava These selectors match a specific element type in the DOM. The library provides out-of-the-box support for HTML elements. One example is the `div` selector used in the previous chapter. Another is the following: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector orderedList ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -28,7 +28,7 @@ To get a list of the supported type selectors inspect `CssSelector selectorsInPr One of the most common use cases is the **descendant combinator**. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector div orderedList ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -40,9 +40,23 @@ div ol } ``` +In case you need to use parenthesis in the right part of the expression, use `/`. +```smalltalk +CascadingStyleSheetBuilder new + declareRuleSetFor: [:selector | selector div / (selector class: 'custom') ] + with: [:style | style listStyleType: CssConstants lowerRoman ]; + build +``` +```css +div .custom +{ + list-style-type: lower-roman; +} +``` + #### Child combinator ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector div > selector orderedList ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -56,7 +70,7 @@ div > ol #### Adjacent & General Siblings combinators ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector div + selector orderedList ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -68,7 +82,7 @@ div + ol } ``` ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector div ~ selector orderedList ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -82,7 +96,7 @@ div ~ ol ### Class and Id Selectors ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | (selector div class: 'pastoral') id: #account5 ] with: [:style | style listStyleType: CssConstants lowerRoman ]; build @@ -103,7 +117,7 @@ Attribute selectors are useful to match an element if that element has an attrib Attribute presence: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector h1 havingAttribute: 'title' ] with: [:style | style color: CssSVGColors blue ]; build @@ -117,7 +131,7 @@ h1[title] exact attribute value matching: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector span withAttribute: 'class' equalTo: 'example' ] with: [:style | style color: CssSVGColors blue ]; build @@ -132,7 +146,7 @@ span[class="example"] inclusion: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector anchor attribute: 'rel' includes: 'copyright' ] with: [:style | style color: CssSVGColors blue ]; build @@ -146,7 +160,7 @@ a[rel~="copyright"] and: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector anchor firstValueOfAttribute: 'hreflang' beginsWith: 'en' ] with: [:style | style color: CssSVGColors blue ]; build @@ -160,13 +174,13 @@ a[hreflang|="en"] #### Substring matching attribute selectors -This selectors are provided for matching substrings in the value of an attribute: -- `attribute:beginsWith:` -- `attribute:endsWith:` +This selectors are provided for matching substrings in the value of an attribute: +- `attribute:beginsWith:` +- `attribute:endsWith:` - `attribute:includesSubstring:` ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector anchor attribute: 'type' beginsWith: 'image/' ] with: [:style | style color: CssSVGColors blue ]; build @@ -179,7 +193,7 @@ a[type^="image/"] ``` ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector anchor attribute: 'type' endsWith: '.html' ] with: [:style | style color: CssSVGColors blue ]; build @@ -192,7 +206,7 @@ a[type$=".html"] ``` ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector paragraph attribute: 'title' includesSubstring: 'hello' ] with: [:style | style color: CssSVGColors blue ]; build @@ -209,7 +223,7 @@ The pseudo-class concept is introduced to allow selection based on information t Here is a small example that uses the pseudo-classes: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector anchor link ] with: [:style | style color: CssSVGColors blue ]; declareRuleSetFor: [:selector | selector anchor visited active] @@ -251,7 +265,7 @@ input:checked #### Language Pseudo-class: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | (selector lang: 'es') > selector div ] with: [:style | style quotes: { '"«"'. '"»"' } ]; build @@ -269,7 +283,7 @@ The negation pseudo-class, `:not(X)`, is a functional notation taking a simple s This selector is supported sending the message `not:`. Lets see an example: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector button not: (selector havingAttribute: 'DISABLED') ] with: [:style | style color: CssSVGColors blue ]; build @@ -283,12 +297,12 @@ button:not([DISABLED]) #### Structural Pseudo-classes These selectors allow selection based on extra information that lies in the document tree but cannot be represented by other simpler selectors nor combinators. -Standalone text and other non-element nodes are not counted when calculating the position of an element in the list of children of its parent. When calculating the position of an element in the list of children of its parent, the index numbering starts at 1. +Standalone text and other non-element nodes are not counted when calculating the position of an element in the list of children of its parent. When calculating the position of an element in the list of children of its parent, the index numbering starts at 1. ##### Root Pseudo-class The :root pseudo-class represents an element that is the root of the document. To build this kind of selector just send the message `root` to another selector: ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector root ] with: [:style | style color: CssSVGColors grey ]; build @@ -303,7 +317,7 @@ In addition to this, `:nth-child()` can take ‘odd’ and ‘even’ as argumen Since version 1.1.0 the library supports an abstraction for this kind of formulae (`CssLinealPolynomial`), or just an integer if `n` is not required. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector childAt: 3 n + 1 ] with: [:style | style color: CssSVGColors blue ]; declareRuleSetFor: [:selector | selector childAt: 5 ] @@ -339,7 +353,7 @@ Some examples: ``` The rest of the selectors in this category are modeled using the following messsages: -- `nth-last-child()` -> `childFromLastAt:` +- `nth-last-child()` -> `childFromLastAt:` - `nth-of-type()` -> `siblingOfTypeAt:` - `nth-last-of-type()` -> `siblingOfTypeFromLastAt:` - `first-child` -> `firstChild` @@ -358,7 +372,7 @@ Pseudo-elements create abstractions about the document tree beyond those specifi This selector describes the contents of the first formatted line of an element. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector paragraph firstLine ] with: [:style | style textTransform: CssConstants uppercase ]; build @@ -375,7 +389,7 @@ p::first-line This pseudo-element represents the first letter of an element, if it is not preceded by any other content (such as images or inline tables) on its line. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | selector paragraph firstLetter ] with: [:style | style fontSize: 200 percent ]; build @@ -392,7 +406,7 @@ p::first-letter These pseudo-elements can be used to describe generated content before or after an element's content. The `content` property, in conjunction with these pseudo-elements, specifies what is inserted. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | (selector paragraph class: 'note') before ] with: [:style | style content: '"Note: "' ]; declareRuleSetFor: [:selector | (selector paragraph class: 'note') after ] @@ -408,15 +422,15 @@ p.note::before p.note::after { content: "[*]"; -} +} ``` ### Selector Groups -A comma-separated list of selectors represents the union of all elements selected by each of the individual selectors in the list. For example, in CSS when several selectors share the same declarations, they may be grouped into a comma-separated list. +A comma-separated list of selectors represents the union of all elements selected by each of the individual selectors in the list. For example, in CSS when several selectors share the same declarations, they may be grouped into a comma-separated list. ```smalltalk -CascadingStyleSheetBuilder new +CascadingStyleSheetBuilder new declareRuleSetFor: [:selector | (selector div class: 'note') after , (selector paragraph class: 'note') before ] with: [:style | style content: '"Note: "' ]; build diff --git a/source/RenoirSt-Tests.package/CascadingStyleSheetBuilderTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CascadingStyleSheetBuilderTest.class/methodProperties.json deleted file mode 100644 index 6c7463f..0000000 --- a/source/RenoirSt-Tests.package/CascadingStyleSheetBuilderTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "testBuildingSimpleStyleSheetWithSomeComments" : "GabrielOmarCotelli 10/28/2015 18:54", - "testBuildingStyleSheetWithMediaQuery" : "GabrielOmarCotelli 10/28/2015 18:54", - "testBuildingOnlyWithComments" : "GabrielOmarCotelli 10/28/2015 18:51", - "testBuildingSimpleStyleSheet" : "GabrielOmarCotelli 10/28/2015 18:53" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CascadingStyleSheetTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CascadingStyleSheetTest.class/methodProperties.json deleted file mode 100644 index 19944e3..0000000 --- a/source/RenoirSt-Tests.package/CascadingStyleSheetTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testPrintString" : "GabrielOmarCotelli 10/28/2015 18:55" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssAdjacentSiblingCombinatorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssAdjacentSiblingCombinatorTest.class/methodProperties.json deleted file mode 100644 index b43d7cd..0000000 --- a/source/RenoirSt-Tests.package/CssAdjacentSiblingCombinatorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 21:37", - "testPrintString" : "GabrielOmarCotelli 2/24/2014 19:24" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssAlphaChannelProvidedTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssAlphaChannelProvidedTest.class/methodProperties.json deleted file mode 100644 index 7f05a95..0000000 --- a/source/RenoirSt-Tests.package/CssAlphaChannelProvidedTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testCantCreateWithInvalidAlphaValues" : "GabrielOmarCotelli 2/4/2017 21:09", - "testInstanceCreationEdgeCases" : "GabrielOmarCotelli 2/4/2017 22:00" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssAttributeReferenceTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssAttributeReferenceTest.class/methodProperties.json deleted file mode 100644 index 093f2db..0000000 --- a/source/RenoirSt-Tests.package/CssAttributeReferenceTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "testSimplestAttributeReference" : "GabrielOmarCotelli 3/25/2014 11:42", - "testAttributeReferenceWithStringTypeAndFallback" : "GabrielOmarCotelli 10/28/2015 16:02", - "testAttributeReferenceWithType" : "GabrielOmarCotelli 3/25/2014 11:32", - "testAttributeReferenceWithTypeAndFallback" : "GabrielOmarCotelli 3/25/2014 11:33" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssAttributeSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssAttributeSelectorTest.class/methodProperties.json deleted file mode 100644 index c705fcd..0000000 --- a/source/RenoirSt-Tests.package/CssAttributeSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/25/2014 10:48", - "testPrintString" : "GabrielOmarCotelli 2/24/2014 20:12" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssBoxShadowTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssBoxShadowTest.class/methodProperties.json deleted file mode 100644 index 63d3e8f..0000000 --- a/source/RenoirSt-Tests.package/CssBoxShadowTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "testBoxShadowSet" : "GabrielOmarCotelli 10/28/2015 14:40", - "testInsetBoxShadowPrintString" : "GabrielOmarCotelli 10/28/2015 14:46", - "testBoxShadowWithBlurRadiusPrintString" : "GabrielOmarCotelli 10/28/2015 14:42", - "testBoxShadowWithBlurRadiusAndSpreadDistancePrintString" : "GabrielOmarCotelli 10/28/2015 14:41", - "testSimplestBoxShadowPrintString" : "GabrielOmarCotelli 10/28/2015 14:46", - "testBoxShadowWithColorPrintString" : "GabrielOmarCotelli 10/28/2015 14:44" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssChildCombinatorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssChildCombinatorTest.class/methodProperties.json deleted file mode 100644 index 7a1e9c8..0000000 --- a/source/RenoirSt-Tests.package/CssChildCombinatorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 20:32", - "testPrintString" : "GabrielOmarCotelli 2/24/2014 19:19" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssClassSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssClassSelectorTest.class/methodProperties.json deleted file mode 100644 index 99aa9d3..0000000 --- a/source/RenoirSt-Tests.package/CssClassSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 20:31", - "testPrintString" : "GabrielOmarCotelli 2/21/2014 23:42" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssConstantsTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssConstantsTest.class/methodProperties.json deleted file mode 100644 index a3c082c..0000000 --- a/source/RenoirSt-Tests.package/CssConstantsTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "testBackgroundProperties" : "GabrielOmarCotelli 2/8/2017 19:16", - "testBorderProperties" : "GabrielOmarCotelli 2/8/2017 19:21", - "testTextConstants" : "GabrielOmarCotelli 4/12/2014 15:55", - "testGradientConstants" : "GabrielOmarCotelli 4/14/2014 11:03", - "testBasicConstants" : "GabrielOmarCotelli 2/8/2017 19:21:50", - "testAttachmentProperties" : "GabrielOmarCotelli 2/8/2017 19:11" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssDeclarationBlockTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssDeclarationBlockTest.class/methodProperties.json deleted file mode 100644 index 2a15d18..0000000 --- a/source/RenoirSt-Tests.package/CssDeclarationBlockTest.class/methodProperties.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "instance" : { - "testPrintStringOfMoreFontProperties" : "GabrielOmarCotelli 4/1/2014 20:46", - "testPrintStringWithSeveralDeclarations" : "GabrielOmarCotelli 10/28/2015 19:00", - "testPrintStringOfGeneratedContentProperties" : "GabrielOmarCotelli 3/8/2014 16:52", - "testPrintStringOfNotEmptyDeclarationBlock" : "GabrielOmarCotelli 10/28/2015 18:58", - "assert:rendersProperty:withValue:" : "GabrielOmarCotelli 10/28/2015 18:57", - "testPrintStringOfUIProperties" : "GabrielOmarCotelli 3/8/2014 18:20", - "testPrintStringOfTextDecorationProperties" : "GabrielOmarCotelli 4/12/2014 15:47", - "testPrintStringOfFontProperties" : "GabrielOmarCotelli 3/26/2014 22:31", - "testPrintStringOfBoxProperties" : "MaximilianoTabacman 4/2/2014 11:15", - "testPrintStringOfPaddingProperties" : "GabrielOmarCotelli 3/8/2014 16:35", - "testPrintStringOfTableProperties" : "GabrielOmarCotelli 3/8/2014 16:58", - "testPrintStringOfNotEmptyDeclarationBlockWithImportantRules" : "GabrielOmarCotelli 10/28/2015 18:59", - "testPrintStringOfColorProperties" : "GabrielOmarCotelli 10/28/2015 15:31", - "testPrintStringOfBorderImageProperties" : "GabrielOmarCotelli 10/28/2015 15:29", - "testPrintInlined" : "GabrielOmarCotelli 10/28/2015 16:40", - "testPrintStringOfBorderProperties" : "GabrielOmarCotelli 4/8/2014 23:12", - "testPrintStringOfTextProperties" : "GabrielOmarCotelli 2/5/2017 10:01", - "testPrintStringOfBackgroundProperties" : "GabrielOmarCotelli 4/8/2014 23:11", - "testPrintStringOfVisualFormattingProperties" : "GabrielOmarCotelli 3/8/2014 19:35", - "testPrintStringOfMarginProperties" : "GabrielOmarCotelli 3/8/2014 16:34", - "testPrintStringOfEmptyDeclarationBlock" : "GabrielOmarCotelli 10/28/2015 18:57", - "testPrintStringOfVisualEffectProperties" : "GabrielOmarCotelli 10/28/2015 15:32" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssDeclarationTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssDeclarationTest.class/methodProperties.json deleted file mode 100644 index 7bfa66c..0000000 --- a/source/RenoirSt-Tests.package/CssDeclarationTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testPrintString" : "GabrielOmarCotelli 2/25/2014 15:15" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/instance/testBuildingShortcuts.st b/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/instance/testBuildingShortcuts.st new file mode 100644 index 0000000..a81c954 --- /dev/null +++ b/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/instance/testBuildingShortcuts.st @@ -0,0 +1,11 @@ +Tests +testBuildingShortcuts + + | ancestor descendant | + + ancestor := CssUniversalSelector implicit class: 'custom'. + descendant := CssTypeSelector ofType: 'div'. + + self + assert: (ancestor / descendant) printString equals: '.custom div'; + assert: ancestor div printString equals: '.custom div' \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/methodProperties.json deleted file mode 100644 index 6fc04ca..0000000 --- a/source/RenoirSt-Tests.package/CssDescendantCombinatorTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testPrintString" : "GabrielOmarCotelli 2/24/2014 17:29" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssFontConstantsTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssFontConstantsTest.class/methodProperties.json deleted file mode 100644 index e8e9a53..0000000 --- a/source/RenoirSt-Tests.package/CssFontConstantsTest.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "testFontVariantPositionConstants" : "GabrielOmarCotelli 4/1/2014 20:35", - "testFontSizeConstants" : "GabrielOmarCotelli 3/26/2014 22:15", - "testGenericFontFamiliesAccessors" : "GabrielOmarCotelli 3/26/2014 17:40", - "testFontVariantCapsConstants" : "GabrielOmarCotelli 4/1/2014 20:40", - "testFontFormatConstants" : "GabrielOmarCotelli 10/28/2015 18:30", - "testFontStretchConstants" : "GabrielOmarCotelli 3/26/2014 18:41", - "testFontVariantLigaturesConstants" : "GabrielOmarCotelli 4/1/2014 20:27", - "testFontVariantNumericConstants" : "GabrielOmarCotelli 4/1/2014 20:49" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssFontFaceRuleTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssFontFaceRuleTest.class/methodProperties.json deleted file mode 100644 index 68d6cb5..0000000 --- a/source/RenoirSt-Tests.package/CssFontFaceRuleTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testComplexFontFaceRule" : "GabrielOmarCotelli 10/28/2015 18:25", - "testSimpleFontFaceRule" : "GabrielOmarCotelli 10/28/2015 17:26" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssGeneralSiblingCombinatorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssGeneralSiblingCombinatorTest.class/methodProperties.json deleted file mode 100644 index 7a6fddd..0000000 --- a/source/RenoirSt-Tests.package/CssGeneralSiblingCombinatorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 21:38", - "testPrintString" : "GabrielOmarCotelli 2/24/2014 19:44" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssHSLColorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssHSLColorTest.class/methodProperties.json deleted file mode 100644 index 59c6952..0000000 --- a/source/RenoirSt-Tests.package/CssHSLColorTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "testNewWithAlpha" : "GabrielOmarCotelli 10/28/2015 15:35", - "testPrintStringWithAlpha" : "GabrielOmarCotelli 10/28/2015 15:37", - "testPrintString" : "GabrielOmarCotelli 3/5/2014 23:58" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssIdSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssIdSelectorTest.class/methodProperties.json deleted file mode 100644 index 576e793..0000000 --- a/source/RenoirSt-Tests.package/CssIdSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 20:29", - "testIdMustBeASymbol" : "GabrielOmarCotelli 2/4/2017 22:07", - "testPrintString" : "GabrielOmarCotelli 2/22/2014 19:31" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssIdentifiedColorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssIdentifiedColorTest.class/methodProperties.json deleted file mode 100644 index 09e9573..0000000 --- a/source/RenoirSt-Tests.package/CssIdentifiedColorTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "testInstanceCreationFromHexaNotation" : "GabrielOmarCotelli 3/6/2014 08:54", - "testNewWithAlpha" : "GabrielOmarCotelli 10/28/2015 19:02", - "testInstanceCreationWithName" : "GabrielOmarCotelli 10/28/2015 19:02", - "testInvalidInstanceCreationFromHexaNotation" : "GabrielOmarCotelli 2/4/2017 22:01", - "testIdentifiedBy" : "GabrielOmarCotelli 2/5/2017 09:59" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssImportantDeclarationTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssImportantDeclarationTest.class/methodProperties.json deleted file mode 100644 index 7cccd5e..0000000 --- a/source/RenoirSt-Tests.package/CssImportantDeclarationTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testPrintString" : "GabrielOmarCotelli 3/4/2014 00:03" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssLinearGradientTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssLinearGradientTest.class/methodProperties.json deleted file mode 100644 index 21e5e13..0000000 --- a/source/RenoirSt-Tests.package/CssLinearGradientTest.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "testGradientWithNamedDirectionSpecified" : "GabrielOmarCotelli 4/14/2014 08:57", - "testGradientWithColorStops" : "GabrielOmarCotelli 4/14/2014 09:01", - "testGradientWithNoDirectionSpecified" : "GabrielOmarCotelli 4/14/2014 08:42", - "testGradientWithAngleDirectionSpecified" : "GabrielOmarCotelli 4/14/2014 08:50", - "testRepeatingGradientWithNoDirectionSpecified" : "GabrielOmarCotelli 4/14/2014 10:00" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssLinearPolynomialTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssLinearPolynomialTest.class/methodProperties.json deleted file mode 100644 index 4eb77d0..0000000 --- a/source/RenoirSt-Tests.package/CssLinearPolynomialTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testFunctionPrintString" : "GabrielOmarCotelli 3/12/2014 17:11", - "testIdentityFunctionPrintString" : "GabrielOmarCotelli 3/12/2014 16:16" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMathExpressionTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMathExpressionTest.class/methodProperties.json deleted file mode 100644 index f8ba117..0000000 --- a/source/RenoirSt-Tests.package/CssMathExpressionTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testSimpleCalc" : "GabrielOmarCotelli 3/25/2014 12:00", - "testChainedCalc" : "GabrielOmarCotelli 3/25/2014 12:12" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMeasureTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMeasureTest.class/methodProperties.json deleted file mode 100644 index f05ae6e..0000000 --- a/source/RenoirSt-Tests.package/CssMeasureTest.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "testCreationShortcutsForResolutions" : "GabrielOmarCotelli 3/18/2014 23:07", - "testCreationShortcutsForFrequencies" : "GabrielOmarCotelli 3/18/2014 23:11", - "testCreationShortcutsForTimes" : "GabrielOmarCotelli 3/18/2014 22:55", - "testCreationShortcutsForAngles" : "GabrielOmarCotelli 3/18/2014 22:52", - "assert:asCssStringEquals:" : "GabrielOmarCotelli 3/14/2014 14:20", - "testCreationShortcutsForLengths" : "GabrielOmarCotelli 4/3/2014 23:42", - "testInstanceCreation" : "GabrielOmarCotelli 3/18/2014 22:48" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMediaQueryConstantsTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMediaQueryConstantsTest.class/methodProperties.json deleted file mode 100644 index c14d22b..0000000 --- a/source/RenoirSt-Tests.package/CssMediaQueryConstantsTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testConstants" : "GabrielOmarCotelli 2/5/2017 10:05" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMediaQueryExpressionTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMediaQueryExpressionTest.class/methodProperties.json deleted file mode 100644 index c5e0476..0000000 --- a/source/RenoirSt-Tests.package/CssMediaQueryExpressionTest.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "testCantCreateWithoutFeatureName" : "GabrielOmarCotelli 2/4/2017 22:04", - "testPrintStringWithValue" : "GabrielOmarCotelli 2/26/2014 11:37", - "testPrintStringWithoutValue" : "GabrielOmarCotelli 2/26/2014 11:32" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMediaQueryRuleBuilderTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMediaQueryRuleBuilderTest.class/methodProperties.json deleted file mode 100644 index ae32fb5..0000000 --- a/source/RenoirSt-Tests.package/CssMediaQueryRuleBuilderTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testComplexCaseBuilding" : "GabrielOmarCotelli 10/28/2015 19:03", - "testSimpleBuilding" : "GabrielOmarCotelli 10/28/2015 19:04" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssMediaQueryRuleTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssMediaQueryRuleTest.class/methodProperties.json deleted file mode 100644 index 208f996..0000000 --- a/source/RenoirSt-Tests.package/CssMediaQueryRuleTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testPrintStringWithExpressions" : "GabrielOmarCotelli 10/28/2015 19:05", - "testPrintStringOfSimpleMediaQuery" : "GabrielOmarCotelli 10/28/2015 19:04" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssPseudoClassSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssPseudoClassSelectorTest.class/methodProperties.json deleted file mode 100644 index a2e7a9e..0000000 --- a/source/RenoirSt-Tests.package/CssPseudoClassSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "instance" : { - "testBuildingShortcutOfStructuralPseudoClassesUsingFormulas" : "GabrielOmarCotelli 3/12/2014 17:28", - "testPrintStringOfLinkPseudoClasses" : "GabrielOmarCotelli 2/22/2014 19:51", - "testBuildingShortcutOfStructuralPseudoClasses" : "GabrielOmarCotelli 2/25/2014 08:08", - "testBuildingShortcut" : "GabrielOmarCotelli 10/28/2015 10:08", - "testPrintStringOfLangPseudoClass" : "GabrielOmarCotelli 2/23/2014 10:34", - "testPrintStringOfTargetPseudoClass" : "GabrielOmarCotelli 2/23/2014 10:32", - "testPrintStringOfUIElementsStatePseudoClasses" : "GabrielOmarCotelli 2/23/2014 11:48", - "testPrintStringOfUserActionPseudoClasses" : "GabrielOmarCotelli 2/23/2014 10:28", - "testPrintStringOfStructuralPseudoClasses" : "GabrielOmarCotelli 2/23/2014 23:47", - "testPrintStringOfStructuralPseudoClassesUsingEvenAndOddConstants" : "GabrielOmarCotelli 3/12/2014 16:07", - "testPrintStringOfNotPseudoClass" : "GabrielOmarCotelli 2/24/2014 10:18" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssPseudoElementSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssPseudoElementSelectorTest.class/methodProperties.json deleted file mode 100644 index e42b684..0000000 --- a/source/RenoirSt-Tests.package/CssPseudoElementSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/24/2014 22:03", - "testPrintString" : "GabrielOmarCotelli 2/24/2014 16:45" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssRGBColorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssRGBColorTest.class/methodProperties.json deleted file mode 100644 index 8d94259..0000000 --- a/source/RenoirSt-Tests.package/CssRGBColorTest.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "testPrintStringUsingPercentageNotation" : "GabrielOmarCotelli 3/5/2014 23:28", - "testNewWithAlpha" : "GabrielOmarCotelli 10/28/2015 19:06", - "testPrintStringWithAlpha" : "GabrielOmarCotelli 3/5/2014 23:30", - "testPrintString" : "GabrielOmarCotelli 3/5/2014 18:14" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssRadialGradientTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssRadialGradientTest.class/methodProperties.json deleted file mode 100644 index 40693fb..0000000 --- a/source/RenoirSt-Tests.package/CssRadialGradientTest.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "testGradientWithNoShapeSpecified" : "GabrielOmarCotelli 4/14/2014 10:29", - "testEllipseGradient" : "GabrielOmarCotelli 4/14/2014 10:52", - "testCircleGradientPositioned" : "GabrielOmarCotelli 4/14/2014 10:43", - "testEllipseGradientPositioned" : "GabrielOmarCotelli 4/14/2014 10:52", - "testRepeatingGradient" : "GabrielOmarCotelli 4/14/2014 10:54", - "testCircleGradientSpecified" : "GabrielOmarCotelli 4/14/2014 10:40" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssRuleSetTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssRuleSetTest.class/methodProperties.json deleted file mode 100644 index 645a934..0000000 --- a/source/RenoirSt-Tests.package/CssRuleSetTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testPrintStringWithComments" : "GabrielOmarCotelli 10/28/2015 19:07", - "testPrintString" : "GabrielOmarCotelli 10/28/2015 19:07" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssSelectorGroupTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssSelectorGroupTest.class/methodProperties.json deleted file mode 100644 index 89eed37..0000000 --- a/source/RenoirSt-Tests.package/CssSelectorGroupTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 10/28/2015 19:08", - "testPrintString" : "GabrielOmarCotelli 10/28/2015 19:08" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssToggleTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssToggleTest.class/methodProperties.json deleted file mode 100644 index 621b055..0000000 --- a/source/RenoirSt-Tests.package/CssToggleTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testPrintString" : "GabrielOmarCotelli 3/25/2014 12:29" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssTypeSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssTypeSelectorTest.class/methodProperties.json deleted file mode 100644 index 2fd5955..0000000 --- a/source/RenoirSt-Tests.package/CssTypeSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/25/2014 08:20", - "testPrintString" : "GabrielOmarCotelli 2/22/2014 19:28" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssUnitTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssUnitTest.class/methodProperties.json deleted file mode 100644 index d634055..0000000 --- a/source/RenoirSt-Tests.package/CssUnitTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testCantCreateWithEmptyIdentifier" : "GabrielOmarCotelli 2/4/2017 22:05", - "testInstanceCreation" : "GabrielOmarCotelli 2/26/2014 12:40" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/CssUniversalSelectorTest.class/methodProperties.json b/source/RenoirSt-Tests.package/CssUniversalSelectorTest.class/methodProperties.json deleted file mode 100644 index 95ae40f..0000000 --- a/source/RenoirSt-Tests.package/CssUniversalSelectorTest.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "testBuildingShortcut" : "GabrielOmarCotelli 2/25/2014 08:17", - "testPrintString" : "GabrielOmarCotelli 2/21/2014 23:42" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/ReflectiveCascadingStyleSheetBuilderTest.class/methodProperties.json b/source/RenoirSt-Tests.package/ReflectiveCascadingStyleSheetBuilderTest.class/methodProperties.json deleted file mode 100644 index db99690..0000000 --- a/source/RenoirSt-Tests.package/ReflectiveCascadingStyleSheetBuilderTest.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "testBuild" : "GabrielOmarCotelli 4/27/2017 15:09" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt-Tests.package/monticello.meta/version b/source/RenoirSt-Tests.package/monticello.meta/version deleted file mode 100644 index 739f2c3..0000000 --- a/source/RenoirSt-Tests.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'RenoirSt-Tests-GabrielOmarCotelli.42' message 'Add ReflectiveCascadingStyleSheetBuilder' id '87dee4a1-0000-0000-91eb-05d108f1fb7b' date '27 April 2017' time '3:12:10.101552 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.41' message 'Added test cases' id 'eefdf44f-359a-452e-869c-bf1aa27223c0' date '8 February 2017' time '7:21:50.132209 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.40' message 'Add test cases' id '78bc731a-3535-4d2d-acc8-d6dd25b87c4f' date '5 February 2017' time '10:07:04.009131 am' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.39' message 'Removed CssInstanceCreationFailed ' id '77538cd6-29b0-452b-9e4c-0ab659519ff8' date '4 February 2017' time '10:12:29.509913 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-PedroAntonioLentini.38' message 'Issue #62 Add support for word-wrap property' id '7df4eb13-ffb6-874e-8935-9a742109132e' date '13 January 2016' time '11:09:21.945214 am' author 'PedroAntonioLentini' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.37' message 'Issue #49 Improve test cases to use and to ease porting' id 'cdd80177-d272-7046-9479-241ab7d34a3f' date '28 October 2015' time '7:14:50.462421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.36' message 'Issue #33 Implement @font-face rules and some font reference abstractions' id 'e05005b9-54b4-9249-b388-94e1fa34dd3d' date '28 October 2015' time '6:35:23.533421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.35' message '- Implement greaseString in CssDeclarationBlock to allow using it inlined as style: in an HTML element. - Changed URL default semantics and add extension to allow consideration as relative to the style sheet' id '0e63da61-a946-2f42-8359-52b6891a3f48' date '28 October 2015' time '5:00:49.915421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.34' message 'Issue #53 - Improve Attribute Reference with string fallbacks' id '0592091f-9da3-0640-9a36-82724909f5c4' date '28 October 2015' time '4:04:03.450421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.33' message '- Add conversion method in colors to provide an alpha value for an existing color - Fix Bug in HSLColor function name when alpha value was provided - Add some properties and constants' id 'ec3737ef-5b0b-fd4e-9834-1a8a2299b737' date '28 October 2015' time '3:49:50.608421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.32' message 'Issue #61. Add a better abstraction for box shadows' id 'dd8720a1-95fb-8143-8763-08a3323df0ca' date '28 October 2015' time '2:49:10.300421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.31' message 'Add not pseudoclass selector shortcut' id '09787320-e5a2-ad41-aaf1-bccc505cfa6f' date '28 October 2015' time '10:09:58.995421 am' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-Tests-GabrielOmarCotelli.30' message 'Issue #40 - Gradient Support Addes support for linear-gradient(), radial-gradient(), repeating-linear-gradient(), repeating-radial-gradient() and some constants' id '7d4aec93-b9db-354e-bed9-a6db6ebfb60e' date '14 April 2014' time '11:07:31.195813 am' author 'GabrielOmarCotelli' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/source/RenoirSt.package/Array.extension/methodProperties.json b/source/RenoirSt.package/Array.extension/methodProperties.json deleted file mode 100644 index b617f07..0000000 --- a/source/RenoirSt.package/Array.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/25/2014 15:20" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CascadingStyleSheet.class/methodProperties.json b/source/RenoirSt.package/CascadingStyleSheet.class/methodProperties.json deleted file mode 100644 index 806a682..0000000 --- a/source/RenoirSt.package/CascadingStyleSheet.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 3/13/2014 19:40", - "initializeWithAll:" : "GabrielOmarCotelli 2/25/2014 17:41" - }, - "class" : { - "withAll:" : "GabrielOmarCotelli 2/25/2014 17:40" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CascadingStyleSheetBuilder.class/methodProperties.json b/source/RenoirSt.package/CascadingStyleSheetBuilder.class/methodProperties.json deleted file mode 100644 index f4d869f..0000000 --- a/source/RenoirSt.package/CascadingStyleSheetBuilder.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "build" : "GabrielOmarCotelli 2/25/2014 18:01", - "comment:" : "GabrielOmarCotelli 4/7/2014 19:58", - "declare:forMediaMatching:" : "GabrielOmarCotelli 3/14/2014 23:01", - "declareFontFaceRuleWith:" : "GabrielOmarCotelli 10/28/2015 17:24", - "declareRuleSetFor:with:" : "GabrielOmarCotelli 3/12/2014 20:48", - "initialize" : "GabrielOmarCotelli 2/25/2014 17:51", - "addStatement:" : "GabrielOmarCotelli 2/26/2014 14:09", - "declareRuleSetFor:with:andComment:" : "GabrielOmarCotelli 3/12/2014 20:48" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAbstractDeclaration.class/methodProperties.json b/source/RenoirSt.package/CssAbstractDeclaration.class/methodProperties.json deleted file mode 100644 index 2d793eb..0000000 --- a/source/RenoirSt.package/CssAbstractDeclaration.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentEndingOn:" : "GabrielOmarCotelli 3/3/2014 23:58", - "cssContentOn:" : "GabrielOmarCotelli 3/3/2014 23:58", - "property" : "GabrielOmarCotelli 3/3/2014 22:45", - "value" : "GabrielOmarCotelli 3/3/2014 22:46" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAdjacentSiblingCombinator.class/methodProperties.json b/source/RenoirSt.package/CssAdjacentSiblingCombinator.class/methodProperties.json deleted file mode 100644 index 59bc911..0000000 --- a/source/RenoirSt.package/CssAdjacentSiblingCombinator.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 19:26", - "initializeBetween:and:" : "GabrielOmarCotelli 2/24/2014 19:25" - }, - "class" : { - "between:and:" : "GabrielOmarCotelli 2/24/2014 19:25" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAlphaChannel.class/methodProperties.json b/source/RenoirSt.package/CssAlphaChannel.class/methodProperties.json deleted file mode 100644 index 3054c95..0000000 --- a/source/RenoirSt.package/CssAlphaChannel.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/5/2014 23:37", - "functionNameFor:" : "GabrielOmarCotelli 3/5/2014 23:36" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAlphaChannelProvided.class/methodProperties.json b/source/RenoirSt.package/CssAlphaChannelProvided.class/methodProperties.json deleted file mode 100644 index 189fbd2..0000000 --- a/source/RenoirSt.package/CssAlphaChannelProvided.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/5/2014 23:46", - "initializeWithValue:" : "GabrielOmarCotelli 3/5/2014 23:45", - "functionNameFor:" : "GabrielOmarCotelli 3/5/2014 23:45" - }, - "class" : { - "withValue:" : "GabrielOmarCotelli 3/5/2014 23:41", - "assertBetweenZeroAndOne:" : "GabrielOmarCotelli 2/4/2017 21:08" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAngleUnits.class/methodProperties.json b/source/RenoirSt.package/CssAngleUnits.class/methodProperties.json deleted file mode 100644 index 2b394ba..0000000 --- a/source/RenoirSt.package/CssAngleUnits.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { }, - "class" : { - "radian" : "GabrielOmarCotelli 3/18/2014 19:31", - "gradian" : "GabrielOmarCotelli 3/18/2014 19:31", - "initialize" : "GabrielOmarCotelli 3/18/2014 19:31", - "turn" : "GabrielOmarCotelli 3/18/2014 19:31", - "degree" : "GabrielOmarCotelli 3/18/2014 19:31" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAttributeMatchingCondition.class/methodProperties.json b/source/RenoirSt.package/CssAttributeMatchingCondition.class/methodProperties.json deleted file mode 100644 index 4d10935..0000000 --- a/source/RenoirSt.package/CssAttributeMatchingCondition.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/25/2014 08:10", - "initializeMatchingCondition:value:" : "GabrielOmarCotelli 2/25/2014 08:11" - }, - "class" : { - "condition:value:" : "GabrielOmarCotelli 2/25/2014 08:12" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAttributeReference.class/methodProperties.json b/source/RenoirSt.package/CssAttributeReference.class/methodProperties.json deleted file mode 100644 index 04e1251..0000000 --- a/source/RenoirSt.package/CssAttributeReference.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "instance" : { - "initializeWithAttributeNamed:withType:withFallback:" : "GabrielOmarCotelli 3/25/2014 11:39", - "cssFunctionParametersContentOn:" : "GabrielOmarCotelli 3/25/2014 12:39", - "functionName" : "GabrielOmarCotelli 3/25/2014 12:38" - }, - "class" : { - "toStringAttributeNamed:withFallback:" : "GabrielOmarCotelli 10/28/2015 16:00", - "toAttributeNamed:ofType:withFallback:" : "GabrielOmarCotelli 3/25/2014 11:48", - "toAttributeNamed:" : "GabrielOmarCotelli 3/25/2014 11:43", - "toAttributeNamed:ofType:" : "GabrielOmarCotelli 3/25/2014 11:46", - "toAttributeNamed:ofType:withFallbackSpecification:" : "GabrielOmarCotelli 3/25/2014 11:46" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssAttributeSelector.class/methodProperties.json b/source/RenoirSt.package/CssAttributeSelector.class/methodProperties.json deleted file mode 100644 index 6e0e81a..0000000 --- a/source/RenoirSt.package/CssAttributeSelector.class/methodProperties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/25/2014 08:13", - "initializeFor:attribute:matchingCondition:" : "GabrielOmarCotelli 2/25/2014 08:13" - }, - "class" : { - "firstValueOfAttribute:of:beginsWith:" : "GabrielOmarCotelli 2/25/2014 08:13", - "attribute:of:includesSubstring:" : "GabrielOmarCotelli 2/25/2014 08:13", - "attribute:of:beginsWith:" : "GabrielOmarCotelli 2/25/2014 08:13", - "attribute:of:endsWith:" : "GabrielOmarCotelli 2/25/2014 08:13", - "for:attribute:matchingCondition:" : "GabrielOmarCotelli 2/25/2014 08:14", - "having:theAttribute:" : "GabrielOmarCotelli 2/25/2014 08:13", - "isAttribute:of:equalTo:" : "GabrielOmarCotelli 2/25/2014 08:13", - "attribute:of:includes:" : "GabrielOmarCotelli 2/25/2014 08:13" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssBoxShadow.class/methodProperties.json b/source/RenoirSt.package/CssBoxShadow.class/methodProperties.json deleted file mode 100644 index 0245e7d..0000000 --- a/source/RenoirSt.package/CssBoxShadow.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 10/28/2015 14:32", - "beInset" : "GabrielOmarCotelli 10/28/2015 14:34", - "," : "GabrielOmarCotelli 10/28/2015 18:00", - "initializeWithAll:" : "GabrielOmarCotelli 10/28/2015 14:31" - }, - "class" : { - "withAll:" : "GabrielOmarCotelli 10/28/2015 14:06", - "horizontalOffset:verticalOffset:blurRadius:spreadDistance:" : "GabrielOmarCotelli 10/28/2015 14:23", - "horizontalOffset:verticalOffset:blurRadius:color:" : "GabrielOmarCotelli 10/28/2015 14:23", - "horizontalOffset:verticalOffset:blurRadius:" : "GabrielOmarCotelli 10/28/2015 14:30", - "horizontalOffset:verticalOffset:" : "GabrielOmarCotelli 10/28/2015 14:30", - "horizontalOffset:verticalOffset:color:" : "GabrielOmarCotelli 10/28/2015 14:07", - "horizontalOffset:verticalOffset:blurRadius:spreadDistance:color:" : "GabrielOmarCotelli 10/28/2015 14:08" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssChildCombinator.class/methodProperties.json b/source/RenoirSt.package/CssChildCombinator.class/methodProperties.json deleted file mode 100644 index 91478e7..0000000 --- a/source/RenoirSt.package/CssChildCombinator.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 19:22", - "initializeBetween:and:" : "GabrielOmarCotelli 2/24/2014 19:21" - }, - "class" : { - "between:and:" : "GabrielOmarCotelli 2/24/2014 19:20" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssClassSelector.class/methodProperties.json b/source/RenoirSt.package/CssClassSelector.class/methodProperties.json deleted file mode 100644 index 59f7632..0000000 --- a/source/RenoirSt.package/CssClassSelector.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/21/2014 23:36", - "initializeFor:over:" : "GabrielOmarCotelli 2/21/2014 23:37" - }, - "class" : { - "for:over:" : "GabrielOmarCotelli 2/21/2014 23:34" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssColor.class/methodProperties.json b/source/RenoirSt.package/CssColor.class/methodProperties.json deleted file mode 100644 index fb83cfc..0000000 --- a/source/RenoirSt.package/CssColor.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/6/2014 00:02", - "cssContentOn:" : "GabrielOmarCotelli 3/6/2014 00:02", - "identifiedBy:" : "GabrielOmarCotelli 3/6/2014 09:04", - "functionName" : "GabrielOmarCotelli 3/6/2014 00:02" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssColorStop.class/methodProperties.json b/source/RenoirSt.package/CssColorStop.class/methodProperties.json deleted file mode 100644 index f944220..0000000 --- a/source/RenoirSt.package/CssColorStop.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 4/14/2014 09:03", - "initializeFor:at:" : "GabrielOmarCotelli 4/14/2014 09:02" - }, - "class" : { - "for:at:" : "GabrielOmarCotelli 4/14/2014 09:02" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssColorUnit.class/methodProperties.json b/source/RenoirSt.package/CssColorUnit.class/methodProperties.json deleted file mode 100644 index 31393ae..0000000 --- a/source/RenoirSt.package/CssColorUnit.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "identifiedBy:" : "GabrielOmarCotelli 3/6/2014 09:03", - "newWithAlpha:" : "GabrielOmarCotelli 10/28/2015 15:19" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssComment.class/methodProperties.json b/source/RenoirSt.package/CssComment.class/methodProperties.json deleted file mode 100644 index 883ea29..0000000 --- a/source/RenoirSt.package/CssComment.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 4/12/2014 16:10", - "initializeFor:" : "GabrielOmarCotelli 4/7/2014 19:58" - }, - "class" : { - "for:" : "GabrielOmarCotelli 4/7/2014 19:57" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssConstants.class/methodProperties.json b/source/RenoirSt.package/CssConstants.class/methodProperties.json deleted file mode 100644 index 591f13c..0000000 --- a/source/RenoirSt.package/CssConstants.class/methodProperties.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "instance" : { }, - "class" : { - "cover" : "MaximilianoTabacman 4/2/2014 14:45", - "fill" : "GabrielOmarCotelli 4/8/2014 23:24", - "tableColumnGroup" : "GabrielOmarCotelli 3/6/2014 22:05", - "under" : "GabrielOmarCotelli 4/12/2014 15:49", - "groove" : "GabrielOmarCotelli 3/6/2014 21:59", - "lowerLatin" : "GabrielOmarCotelli 3/8/2014 16:54", - "fixed" : "GabrielOmarCotelli 3/6/2014 19:22", - "menu" : "GabrielOmarCotelli 3/6/2014 22:08", - "bold" : "GabrielOmarCotelli 3/6/2014 22:07", - "hide" : "GabrielOmarCotelli 3/6/2014 23:35", - "ridge" : "GabrielOmarCotelli 3/6/2014 21:59", - "sub" : "GabrielOmarCotelli 3/6/2014 23:45", - "disc" : "GabrielOmarCotelli 3/6/2014 23:36", - "circle" : "GabrielOmarCotelli 3/6/2014 23:37", - "textTop" : "GabrielOmarCotelli 3/6/2014 23:45", - "outset" : "GabrielOmarCotelli 3/6/2014 22:00", - "table" : "GabrielOmarCotelli 2/26/2014 14:52", - "overline" : "GabrielOmarCotelli 3/6/2014 23:43", - "top" : "GabrielOmarCotelli 3/6/2014 22:02", - "caption" : "GabrielOmarCotelli 3/6/2014 22:08", - "ellipsis" : "GabrielOmarCotelli 10/28/2015 14:54", - "statusBar" : "GabrielOmarCotelli 3/6/2014 22:09", - "tableColumn" : "GabrielOmarCotelli 3/6/2014 22:05", - "nowrap" : "GabrielOmarCotelli 3/6/2014 23:46", - "lowerRoman" : "GabrielOmarCotelli 3/6/2014 23:37", - "contain" : "MaximilianoTabacman 4/2/2014 14:45", - "smallCaps" : "GabrielOmarCotelli 3/6/2014 22:07", - "square" : "GabrielOmarCotelli 3/6/2014 23:37", - "upperRoman" : "GabrielOmarCotelli 3/6/2014 23:37", - "uppercase" : "GabrielOmarCotelli 3/6/2014 23:44", - "lowerGreek" : "GabrielOmarCotelli 3/8/2014 16:53", - "preWrap" : "GabrielOmarCotelli 3/6/2014 23:47", - "notAllowed" : "GabrielOmarCotelli 10/28/2015 14:55", - "thick" : "GabrielOmarCotelli 3/6/2014 22:00", - "dot" : "GabrielOmarCotelli 4/12/2014 15:56", - "decimal" : "GabrielOmarCotelli 3/6/2014 23:37", - "collapse" : "GabrielOmarCotelli 3/6/2014 23:31", - "thin" : "GabrielOmarCotelli 3/6/2014 22:00", - "round" : "GabrielOmarCotelli 4/8/2014 23:00", - "solid" : "GabrielOmarCotelli 3/6/2014 21:59", - "center" : "GabrielOmarCotelli 3/6/2014 23:43", - "triangle" : "GabrielOmarCotelli 4/12/2014 15:56", - "wait" : "GabrielOmarCotelli 3/6/2014 23:33", - "farthestCorner" : "GabrielOmarCotelli 4/14/2014 11:04", - "closestSide" : "GabrielOmarCotelli 4/14/2014 11:03", - "outside" : "GabrielOmarCotelli 3/6/2014 23:36", - "blink" : "GabrielOmarCotelli 3/6/2014 23:44", - "closestCorner" : "GabrielOmarCotelli 4/14/2014 11:04", - "farthestSide" : "GabrielOmarCotelli 4/14/2014 11:03", - "open" : "GabrielOmarCotelli 4/12/2014 15:55", - "breakWord" : "PedroAntonioLentini 1/13/2016 11:03", - "doubleCircle" : "GabrielOmarCotelli 4/12/2014 15:56", - "left" : "GabrielOmarCotelli 3/6/2014 22:02", - "bottom" : "GabrielOmarCotelli 3/6/2014 22:02", - "tableFooterGroup" : "GabrielOmarCotelli 3/6/2014 22:04", - "underline" : "GabrielOmarCotelli 3/6/2014 23:43", - "avoid" : "GabrielOmarCotelli 3/6/2014 23:41", - "lighter" : "GabrielOmarCotelli 3/6/2014 22:07", - "lineThrough" : "GabrielOmarCotelli 3/6/2014 23:44", - "inherit" : "GabrielOmarCotelli 3/6/2014 23:35", - "justify" : "GabrielOmarCotelli 3/6/2014 23:42", - "icon" : "GabrielOmarCotelli 3/6/2014 22:08", - "armenian" : "GabrielOmarCotelli 3/6/2014 23:38", - "noRepeat" : "GabrielOmarCotelli 3/6/2014 21:55", - "hidden" : "GabrielOmarCotelli 3/6/2014 23:40", - "super" : "GabrielOmarCotelli 3/6/2014 23:45", - "tableCell" : "GabrielOmarCotelli 3/6/2014 22:05", - "crosshair" : "GabrielOmarCotelli 3/6/2014 23:33", - "pointer" : "GabrielOmarCotelli 3/6/2014 23:33", - "relative" : "GabrielOmarCotelli 3/6/2014 23:41", - "auto" : "GabrielOmarCotelli 3/6/2014 23:36", - "inset" : "GabrielOmarCotelli 3/6/2014 22:00", - "listItem" : "GabrielOmarCotelli 2/26/2014 14:51", - "always" : "GabrielOmarCotelli 3/6/2014 23:41", - "repeatY" : "GabrielOmarCotelli 3/6/2014 21:55", - "static" : "GabrielOmarCotelli 3/6/2014 23:41", - "inside" : "GabrielOmarCotelli 3/6/2014 23:36", - "messageBox" : "GabrielOmarCotelli 3/6/2014 22:08", - "upperAlpha" : "GabrielOmarCotelli 3/8/2014 16:54", - "double" : "GabrielOmarCotelli 3/6/2014 21:59", - "medium" : "GabrielOmarCotelli 3/6/2014 22:00", - "georgian" : "GabrielOmarCotelli 3/6/2014 23:38", - "over" : "GabrielOmarCotelli 4/12/2014 15:51", - "invert" : "GabrielOmarCotelli 3/6/2014 23:39", - "borderBox" : "GabrielOmarCotelli 4/8/2014 23:05", - "absolute" : "GabrielOmarCotelli 3/6/2014 23:41", - "odd" : "GabrielOmarCotelli 3/12/2014 16:05", - "local" : "GabrielOmarCotelli 4/8/2014 23:03", - "separate" : "GabrielOmarCotelli 3/6/2014 23:31", - "contentBox" : "GabrielOmarCotelli 4/8/2014 23:05", - "sesame" : "GabrielOmarCotelli 4/12/2014 15:56", - "bolder" : "GabrielOmarCotelli 3/6/2014 22:07", - "move" : "GabrielOmarCotelli 3/6/2014 23:33", - "decimalLeadingZero" : "GabrielOmarCotelli 3/6/2014 23:37", - "inlineBlock" : "GabrielOmarCotelli 2/26/2014 14:50", - "lowerAlpha" : "GabrielOmarCotelli 3/8/2014 16:53", - "oblique" : "GabrielOmarCotelli 3/6/2014 22:07", - "default" : "GabrielOmarCotelli 3/6/2014 23:33", - "scroll" : "GabrielOmarCotelli 3/6/2014 19:22", - "vertical" : "GabrielOmarCotelli 10/28/2015 14:58", - "pre" : "GabrielOmarCotelli 3/6/2014 23:46", - "initial" : "GabrielOmarCotelli 2/8/2017 19:01:08", - "middle" : "GabrielOmarCotelli 3/6/2014 23:46", - "dashed" : "GabrielOmarCotelli 3/6/2014 21:59", - "show" : "GabrielOmarCotelli 3/6/2014 23:35", - "even" : "GabrielOmarCotelli 3/12/2014 16:05", - "repeatX" : "GabrielOmarCotelli 3/6/2014 21:55", - "block" : "GabrielOmarCotelli 2/26/2014 14:50", - "progress" : "GabrielOmarCotelli 3/6/2014 23:34", - "baseline" : "GabrielOmarCotelli 3/6/2014 23:45", - "none" : "GabrielOmarCotelli 3/6/2014 23:35", - "text" : "GabrielOmarCotelli 3/6/2014 23:33", - "inline" : "GabrielOmarCotelli 2/26/2014 14:51", - "dotted" : "GabrielOmarCotelli 3/6/2014 21:59", - "italic" : "GabrielOmarCotelli 3/6/2014 22:07", - "tableCaption" : "GabrielOmarCotelli 3/6/2014 22:05", - "visible" : "GabrielOmarCotelli 3/6/2014 23:40", - "lowercase" : "GabrielOmarCotelli 3/6/2014 23:45", - "right" : "GabrielOmarCotelli 3/6/2014 22:02", - "smallCaption" : "GabrielOmarCotelli 3/6/2014 22:09", - "paddingBox" : "GabrielOmarCotelli 4/8/2014 23:05", - "repeat" : "GabrielOmarCotelli 3/6/2014 21:55", - "preLine" : "GabrielOmarCotelli 3/6/2014 23:47", - "help" : "GabrielOmarCotelli 3/6/2014 23:34", - "capitalize" : "GabrielOmarCotelli 3/6/2014 23:44", - "tableRow" : "GabrielOmarCotelli 3/6/2014 22:04", - "both" : "GabrielOmarCotelli 3/6/2014 23:32", - "space" : "GabrielOmarCotelli 4/8/2014 23:00", - "upperLatin" : "GabrielOmarCotelli 3/6/2014 23:38", - "normal" : "GabrielOmarCotelli 3/6/2014 22:06", - "inlineTable" : "GabrielOmarCotelli 2/26/2014 14:52", - "textBottom" : "GabrielOmarCotelli 3/6/2014 23:46", - "filled" : "GabrielOmarCotelli 4/12/2014 15:49", - "tableHeaderGroup" : "GabrielOmarCotelli 3/6/2014 22:04", - "tableRowGroup" : "GabrielOmarCotelli 2/26/2014 14:53", - "stretch" : "GabrielOmarCotelli 4/8/2014 23:24" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssDeclaration.class/methodProperties.json b/source/RenoirSt.package/CssDeclaration.class/methodProperties.json deleted file mode 100644 index b8a4aa7..0000000 --- a/source/RenoirSt.package/CssDeclaration.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "property" : "GabrielOmarCotelli 3/3/2014 22:46", - "initializeProperty:value:" : "GabrielOmarCotelli 2/25/2014 15:17", - "value" : "GabrielOmarCotelli 3/3/2014 22:47" - }, - "class" : { - "property:value:" : "GabrielOmarCotelli 2/25/2014 15:16" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssDeclarationBlock.class/methodProperties.json b/source/RenoirSt.package/CssDeclarationBlock.class/methodProperties.json deleted file mode 100644 index fd47e3c..0000000 --- a/source/RenoirSt.package/CssDeclarationBlock.class/methodProperties.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "instance" : { - "margin:" : "GabrielOmarCotelli 2/25/2014 16:57", - "textDecoration:" : "GabrielOmarCotelli 3/5/2014 09:12", - "borderSpacing:" : "GabrielOmarCotelli 3/5/2014 09:15", - "src:" : "GabrielOmarCotelli 10/28/2015 17:25", - "zIndex:" : "GabrielOmarCotelli 3/5/2014 09:02", - "borderBottomWidth:" : "GabrielOmarCotelli 3/5/2014 08:54", - "content:" : "GabrielOmarCotelli 3/5/2014 09:07", - "display:" : "GabrielOmarCotelli 3/5/2014 08:59", - "borderBottomColor:" : "GabrielOmarCotelli 3/5/2014 08:55", - "marginTop:" : "GabrielOmarCotelli 2/26/2014 14:33", - "beImportantDuring:" : "GabrielOmarCotelli 3/3/2014 22:37", - "paddingBottom:" : "GabrielOmarCotelli 2/26/2014 14:35", - "borderWidth:" : "GabrielOmarCotelli 3/5/2014 08:53", - "borderImage:" : "GabrielOmarCotelli 4/8/2014 23:20", - "padding:" : "GabrielOmarCotelli 2/26/2014 14:35", - "borderRightStyle:" : "GabrielOmarCotelli 3/5/2014 08:57", - "borderBottom:" : "GabrielOmarCotelli 3/5/2014 08:58", - "borderColor:" : "GabrielOmarCotelli 3/5/2014 08:55", - "right:" : "GabrielOmarCotelli 3/5/2014 09:00", - "fontVariantCaps:" : "GabrielOmarCotelli 4/1/2014 20:38", - "backgroundOrigin:" : "GabrielOmarCotelli 4/8/2014 23:09", - "fontSize:" : "GabrielOmarCotelli 3/5/2014 09:11", - "position:" : "GabrielOmarCotelli 3/5/2014 09:00", - "counterIncrement:" : "GabrielOmarCotelli 3/5/2014 09:07", - "opacity:" : "GabrielOmarCotelli 10/28/2015 15:00", - "minHeight:" : "GabrielOmarCotelli 3/5/2014 09:04", - "fontKerning:" : "GabrielOmarCotelli 3/26/2014 22:31", - "borderBottomRightRadius:" : "GabrielOmarCotelli 4/8/2014 23:14", - "minWidth:" : "GabrielOmarCotelli 3/5/2014 09:03", - "maxWidth:" : "GabrielOmarCotelli 3/5/2014 09:03", - "fontSizeAdjust:" : "GabrielOmarCotelli 3/26/2014 22:22", - "listStyleImage:" : "GabrielOmarCotelli 3/5/2014 09:08", - "backgroundSize:" : "MaximilianoTabacman 4/2/2014 14:41", - "fontSynthesis:" : "GabrielOmarCotelli 3/26/2014 22:28", - "borderImageOutset:" : "GabrielOmarCotelli 4/8/2014 23:20", - "borderTopStyle:" : "GabrielOmarCotelli 3/5/2014 08:56", - "fontFamily:" : "GabrielOmarCotelli 3/5/2014 09:10", - "backgroundImage:" : "GabrielOmarCotelli 3/5/2014 08:51", - "marginBottom:" : "GabrielOmarCotelli 2/26/2014 14:33", - "backgroundColor:" : "GabrielOmarCotelli 3/5/2014 08:50", - "backgroundAttachment:" : "GabrielOmarCotelli 3/5/2014 08:51", - "textEmphasisStyle:" : "GabrielOmarCotelli 4/12/2014 15:50", - "top:" : "GabrielOmarCotelli 3/5/2014 09:00", - "textUnderlinePosition:" : "GabrielOmarCotelli 4/12/2014 15:49", - "borderTop:" : "GabrielOmarCotelli 3/5/2014 08:58", - "borderTopRightRadius:" : "GabrielOmarCotelli 4/8/2014 23:13", - "tableLayout:" : "GabrielOmarCotelli 3/5/2014 09:14", - "borderCollapse:" : "GabrielOmarCotelli 3/5/2014 09:14", - "borderTopLeftRadius:" : "GabrielOmarCotelli 4/8/2014 23:13", - "counterReset:" : "GabrielOmarCotelli 3/5/2014 09:07", - "boxShadow:" : "GabrielOmarCotelli 4/8/2014 23:23", - "listStyle:" : "GabrielOmarCotelli 3/5/2014 09:09", - "borderBottomLeftRadius:" : "GabrielOmarCotelli 4/8/2014 23:13", - "fontVariantPosition:" : "GabrielOmarCotelli 4/1/2014 20:34", - "borderRight:" : "GabrielOmarCotelli 3/5/2014 08:57", - "borderRightWidth:" : "GabrielOmarCotelli 3/5/2014 08:54", - "maxHeight:" : "GabrielOmarCotelli 3/5/2014 09:04", - "fontVariantNumeric:" : "GabrielOmarCotelli 4/1/2014 20:47", - "textIndent:" : "GabrielOmarCotelli 3/5/2014 09:12", - "borderRightColor:" : "GabrielOmarCotelli 3/5/2014 08:55", - "bottom:" : "GabrielOmarCotelli 3/5/2014 09:00", - "borderImageSlice:" : "GabrielOmarCotelli 4/8/2014 23:19", - "borderTopWidth:" : "GabrielOmarCotelli 3/5/2014 08:54", - "marginRight:" : "GabrielOmarCotelli 2/26/2014 14:33", - "verticalAlign:" : "GabrielOmarCotelli 3/5/2014 09:05", - "backgroundPosition:" : "GabrielOmarCotelli 3/5/2014 08:51", - "paddingRight:" : "GabrielOmarCotelli 2/26/2014 14:34", - "float:" : "GabrielOmarCotelli 3/5/2014 09:01", - "borderTopColor:" : "GabrielOmarCotelli 3/5/2014 08:55", - "borderLeftStyle:" : "GabrielOmarCotelli 3/5/2014 08:57", - "font:" : "GabrielOmarCotelli 3/5/2014 09:11", - "borderImageSource:" : "GabrielOmarCotelli 4/8/2014 23:19", - "textEmphasis:" : "GabrielOmarCotelli 4/12/2014 15:52", - "textEmphasisColor:" : "GabrielOmarCotelli 4/12/2014 15:50", - "propertyAt:put:" : "GabrielOmarCotelli 3/3/2014 22:40", - "fontWeight:" : "GabrielOmarCotelli 3/5/2014 09:10", - "border:" : "GabrielOmarCotelli 3/5/2014 08:58", - "clear:" : "GabrielOmarCotelli 3/5/2014 09:01", - "visibility:" : "GabrielOmarCotelli 3/5/2014 09:06", - "overflowX:" : "GabrielOmarCotelli 10/28/2015 15:13", - "outlineStyle:" : "GabrielOmarCotelli 3/5/2014 09:16", - "overflowY:" : "GabrielOmarCotelli 10/28/2015 15:13", - "resize:" : "MaximilianoTabacman 4/2/2014 11:13", - "clip:" : "GabrielOmarCotelli 3/5/2014 09:06", - "backgroundClip:" : "GabrielOmarCotelli 4/8/2014 23:07", - "textDecorationStyle:" : "GabrielOmarCotelli 4/12/2014 15:48", - "textOverflow:" : "GabrielOmarCotelli 10/28/2015 15:17", - "textShadow:" : "GabrielOmarCotelli 4/12/2014 15:52", - "whiteSpace:" : "GabrielOmarCotelli 3/5/2014 09:13", - "listStylePosition:" : "GabrielOmarCotelli 3/5/2014 09:09", - "marginLeft:" : "GabrielOmarCotelli 2/26/2014 14:32", - "fontVariantLigatures:" : "GabrielOmarCotelli 4/1/2014 20:22", - "paddingLeft:" : "GabrielOmarCotelli 2/26/2014 14:34", - "emptyCells:" : "GabrielOmarCotelli 3/5/2014 09:15", - "borderBottomStyle:" : "GabrielOmarCotelli 3/5/2014 08:56", - "borderImageWidth:" : "GabrielOmarCotelli 4/8/2014 23:20", - "listStyleType:" : "GabrielOmarCotelli 3/5/2014 09:08", - "textTransform:" : "GabrielOmarCotelli 3/5/2014 09:13", - "borderLeft:" : "GabrielOmarCotelli 3/5/2014 08:57", - "direction:" : "GabrielOmarCotelli 3/5/2014 09:02", - "overflow:" : "GabrielOmarCotelli 3/5/2014 09:06", - "background:" : "GabrielOmarCotelli 3/5/2014 08:52", - "borderLeftWidth:" : "GabrielOmarCotelli 3/5/2014 08:54", - "lineHeight:" : "GabrielOmarCotelli 3/5/2014 09:04", - "textDecorationLine:" : "GabrielOmarCotelli 4/12/2014 15:48", - "borderImageRepeat:" : "GabrielOmarCotelli 4/8/2014 23:20", - "cssContentOn:" : "GabrielOmarCotelli 3/13/2014 19:44", - "borderLeftColor:" : "GabrielOmarCotelli 3/5/2014 08:55", - "borderStyle:" : "GabrielOmarCotelli 3/5/2014 08:56", - "paddingTop:" : "GabrielOmarCotelli 2/26/2014 14:34", - "fontStretch:" : "GabrielOmarCotelli 3/26/2014 18:37", - "unicodeBidi:" : "GabrielOmarCotelli 3/5/2014 09:02", - "captionSide:" : "GabrielOmarCotelli 3/5/2014 09:14", - "width:" : "GabrielOmarCotelli 3/5/2014 08:47", - "wordSpacing:" : "GabrielOmarCotelli 3/5/2014 09:12", - "textEmphasisPosition:" : "GabrielOmarCotelli 4/12/2014 15:51", - "color:" : "GabrielOmarCotelli 2/25/2014 16:30", - "letterSpacing:" : "GabrielOmarCotelli 3/5/2014 09:12", - "outlineWidth:" : "GabrielOmarCotelli 3/5/2014 09:16", - "quotes:" : "GabrielOmarCotelli 3/5/2014 09:07", - "wordWrap:" : "PedroAntonioLentini 1/13/2016 11:05", - "initialize" : "GabrielOmarCotelli 3/3/2014 22:33", - "left:" : "GabrielOmarCotelli 3/5/2014 09:00", - "outlineColor:" : "GabrielOmarCotelli 3/5/2014 09:16", - "outline:" : "GabrielOmarCotelli 3/5/2014 09:16", - "cursor:" : "GabrielOmarCotelli 3/5/2014 09:16", - "textAlign:" : "GabrielOmarCotelli 3/5/2014 09:12", - "fontVariant:" : "GabrielOmarCotelli 3/5/2014 09:10", - "fontStyle:" : "GabrielOmarCotelli 3/5/2014 09:10", - "printInlinedOn:" : "GabrielOmarCotelli 10/28/2015 16:36", - "backgroundRepeat:" : "GabrielOmarCotelli 3/5/2014 08:51", - "textDecorationColor:" : "GabrielOmarCotelli 4/12/2014 15:48", - "height:" : "GabrielOmarCotelli 3/5/2014 09:03", - "borderRadius:" : "MaximilianoTabacman 4/2/2014 14:47" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssDescendantCombinator.class/methodProperties.json b/source/RenoirSt.package/CssDescendantCombinator.class/methodProperties.json deleted file mode 100644 index e90848f..0000000 --- a/source/RenoirSt.package/CssDescendantCombinator.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 17:37", - "initializeBetween:and:" : "GabrielOmarCotelli 2/24/2014 17:36" - }, - "class" : { - "between:and:" : "GabrielOmarCotelli 2/25/2014 08:31" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssExternalFontReference.class/methodProperties.json b/source/RenoirSt.package/CssExternalFontReference.class/methodProperties.json deleted file mode 100644 index e0dfb2a..0000000 --- a/source/RenoirSt.package/CssExternalFontReference.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 10/28/2015 18:15", - "initializeLocatedAt:withFormat:" : "GabrielOmarCotelli 10/28/2015 17:57" - }, - "class" : { - "locatedAt:" : "GabrielOmarCotelli 10/28/2015 17:56", - "svgFontLocatedAt:withId:" : "GabrielOmarCotelli 10/28/2015 18:07", - "locatedAt:withFormat:" : "GabrielOmarCotelli 10/28/2015 17:56" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssFallbackSpecified.class/methodProperties.json b/source/RenoirSt.package/CssFallbackSpecified.class/methodProperties.json deleted file mode 100644 index 5726fca..0000000 --- a/source/RenoirSt.package/CssFallbackSpecified.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 3/25/2014 11:49", - "initializeWithValue:" : "GabrielOmarCotelli 3/25/2014 11:49" - }, - "class" : { - "withValue:" : "GabrielOmarCotelli 3/25/2014 11:48" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssFontConstants.class/methodProperties.json b/source/RenoirSt.package/CssFontConstants.class/methodProperties.json deleted file mode 100644 index b666bfe..0000000 --- a/source/RenoirSt.package/CssFontConstants.class/methodProperties.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "instance" : { }, - "class" : { - "ultraCondensed" : "GabrielOmarCotelli 3/26/2014 18:38", - "unicase" : "GabrielOmarCotelli 4/1/2014 20:42", - "woff" : "GabrielOmarCotelli 10/28/2015 17:58", - "xxSmall" : "GabrielOmarCotelli 3/26/2014 22:16", - "noCommonLigatures" : "GabrielOmarCotelli 4/1/2014 20:26", - "noContextual" : "GabrielOmarCotelli 4/1/2014 20:27", - "ordinal" : "GabrielOmarCotelli 4/1/2014 20:46", - "embeddedOpentype" : "GabrielOmarCotelli 10/28/2015 18:05", - "oldstyleNums" : "GabrielOmarCotelli 4/1/2014 20:50", - "serif" : "GabrielOmarCotelli 3/26/2014 17:40", - "tabularNums" : "GabrielOmarCotelli 4/1/2014 20:51", - "monospace" : "GabrielOmarCotelli 3/26/2014 17:41", - "large" : "GabrielOmarCotelli 3/26/2014 22:17", - "semiCondensed" : "GabrielOmarCotelli 3/26/2014 18:42", - "sub" : "GabrielOmarCotelli 4/1/2014 20:33", - "slashedZero" : "GabrielOmarCotelli 4/1/2014 20:50", - "truetype" : "GabrielOmarCotelli 10/28/2015 18:04", - "contextual" : "GabrielOmarCotelli 4/1/2014 20:21", - "sansSerif" : "GabrielOmarCotelli 3/26/2014 17:40", - "small" : "GabrielOmarCotelli 3/26/2014 22:16", - "extraCondensed" : "GabrielOmarCotelli 3/26/2014 18:41", - "opentype" : "GabrielOmarCotelli 10/28/2015 18:04", - "medium" : "GabrielOmarCotelli 3/26/2014 22:16", - "historicalLigatures" : "GabrielOmarCotelli 4/1/2014 20:21", - "condensed" : "GabrielOmarCotelli 3/26/2014 18:42", - "proportionalNums" : "GabrielOmarCotelli 4/1/2014 20:50", - "noHistoricalLigatures" : "GabrielOmarCotelli 4/1/2014 20:26", - "smallCaps" : "GabrielOmarCotelli 4/1/2014 20:38", - "diagonalFractions" : "GabrielOmarCotelli 4/1/2014 20:53", - "smaller" : "GabrielOmarCotelli 3/26/2014 22:17", - "svg" : "GabrielOmarCotelli 10/28/2015 18:05", - "xLarge" : "GabrielOmarCotelli 3/26/2014 22:17", - "ultraExpanded" : "GabrielOmarCotelli 3/26/2014 18:43", - "fantasy" : "GabrielOmarCotelli 3/26/2014 17:41", - "cursive" : "GabrielOmarCotelli 3/26/2014 17:41", - "allPetiteCaps" : "GabrielOmarCotelli 4/1/2014 20:42", - "titlingCaps" : "GabrielOmarCotelli 4/1/2014 20:42", - "xxLarge" : "GabrielOmarCotelli 3/26/2014 22:17", - "weight" : "GabrielOmarCotelli 3/26/2014 22:28", - "expanded" : "GabrielOmarCotelli 3/26/2014 18:43", - "xSmall" : "GabrielOmarCotelli 3/26/2014 22:16", - "allSmallCaps" : "GabrielOmarCotelli 4/1/2014 20:40", - "extraExpanded" : "GabrielOmarCotelli 3/26/2014 18:43", - "normal" : "GabrielOmarCotelli 3/26/2014 18:42", - "stackedFractions" : "GabrielOmarCotelli 4/1/2014 20:53", - "style" : "GabrielOmarCotelli 3/26/2014 22:28", - "super" : "GabrielOmarCotelli 4/1/2014 20:35", - "discretionaryLigatures" : "GabrielOmarCotelli 4/1/2014 20:27", - "noDiscretionaryLigatures" : "GabrielOmarCotelli 4/1/2014 20:21", - "liningNums" : "GabrielOmarCotelli 4/1/2014 20:50", - "petiteCaps" : "GabrielOmarCotelli 4/1/2014 20:41", - "semiExpanded" : "GabrielOmarCotelli 3/26/2014 18:42", - "larger" : "GabrielOmarCotelli 3/26/2014 22:17", - "commonLigatures" : "GabrielOmarCotelli 4/1/2014 20:20" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssFontReference.class/methodProperties.json b/source/RenoirSt.package/CssFontReference.class/methodProperties.json deleted file mode 100644 index 537f11c..0000000 --- a/source/RenoirSt.package/CssFontReference.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "," : "GabrielOmarCotelli 10/28/2015 18:03" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssFrequencyUnits.class/methodProperties.json b/source/RenoirSt.package/CssFrequencyUnits.class/methodProperties.json deleted file mode 100644 index 3f104ad..0000000 --- a/source/RenoirSt.package/CssFrequencyUnits.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { }, - "class" : { - "initialize" : "GabrielOmarCotelli 3/18/2014 23:10", - "hertz" : "GabrielOmarCotelli 3/18/2014 23:10", - "kiloHertz" : "GabrielOmarCotelli 3/18/2014 23:10" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssFunction.class/methodProperties.json b/source/RenoirSt.package/CssFunction.class/methodProperties.json deleted file mode 100644 index 7651136..0000000 --- a/source/RenoirSt.package/CssFunction.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 3/25/2014 12:37", - "cssFunctionParametersContentOn:" : "GabrielOmarCotelli 3/25/2014 12:37", - "functionName" : "GabrielOmarCotelli 3/25/2014 12:37" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssGeneralSiblingCombinator.class/methodProperties.json b/source/RenoirSt.package/CssGeneralSiblingCombinator.class/methodProperties.json deleted file mode 100644 index dcc3a27..0000000 --- a/source/RenoirSt.package/CssGeneralSiblingCombinator.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 19:47", - "initializeBetween:and:" : "GabrielOmarCotelli 2/24/2014 19:46" - }, - "class" : { - "between:and:" : "GabrielOmarCotelli 2/24/2014 19:45" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssGradient.class/methodProperties.json b/source/RenoirSt.package/CssGradient.class/methodProperties.json deleted file mode 100644 index 138bdd6..0000000 --- a/source/RenoirSt.package/CssGradient.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "colorStops" : "GabrielOmarCotelli 4/14/2014 09:36", - "cssContentOn:" : "GabrielOmarCotelli 4/14/2014 10:27", - "shape" : "GabrielOmarCotelli 4/14/2014 10:27", - "functionName" : "GabrielOmarCotelli 4/14/2014 09:34" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssGradientComponent.class/methodProperties.json b/source/RenoirSt.package/CssGradientComponent.class/methodProperties.json deleted file mode 100644 index 414f1d2..0000000 --- a/source/RenoirSt.package/CssGradientComponent.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 4/14/2014 08:54", - "initializeOn:" : "GabrielOmarCotelli 4/14/2014 10:57" - }, - "class" : { - "on:" : "GabrielOmarCotelli 4/14/2014 10:57" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssHSLColor.class/methodProperties.json b/source/RenoirSt.package/CssHSLColor.class/methodProperties.json deleted file mode 100644 index 32c33c2..0000000 --- a/source/RenoirSt.package/CssHSLColor.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/6/2014 00:04", - "initializeHue:saturation:lightness:alphaChannel:" : "GabrielOmarCotelli 3/6/2014 00:01", - "newWithAlpha:" : "GabrielOmarCotelli 10/28/2015 15:20", - "functionName" : "GabrielOmarCotelli 10/28/2015 15:38" - }, - "class" : { - "hue:saturation:lightness:" : "GabrielOmarCotelli 3/5/2014 23:59", - "hue:saturation:lightness:alpha:" : "GabrielOmarCotelli 3/6/2014 00:06", - "hue:saturation:lightness:alphaChannel:" : "GabrielOmarCotelli 3/6/2014 00:00" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssIdSelector.class/methodProperties.json b/source/RenoirSt.package/CssIdSelector.class/methodProperties.json deleted file mode 100644 index d0a6abb..0000000 --- a/source/RenoirSt.package/CssIdSelector.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/22/2014 19:33", - "initializeFor:over:" : "GabrielOmarCotelli 2/22/2014 19:33" - }, - "class" : { - "for:over:" : "GabrielOmarCotelli 2/22/2014 19:36", - "assertIsASymbol:" : "GabrielOmarCotelli 2/4/2017 22:02" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssIdentifiedColor.class/methodProperties.json b/source/RenoirSt.package/CssIdentifiedColor.class/methodProperties.json deleted file mode 100644 index a5884d6..0000000 --- a/source/RenoirSt.package/CssIdentifiedColor.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "instance" : { - "initializeRepresenting:identifiedBy:" : "GabrielOmarCotelli 3/6/2014 08:39", - "cssContentOn:" : "GabrielOmarCotelli 3/6/2014 08:39", - "color" : "GabrielOmarCotelli 3/6/2014 08:54", - "newWithAlpha:" : "GabrielOmarCotelli 10/28/2015 15:22", - "identifiedBy:" : "GabrielOmarCotelli 3/6/2014 09:04" - }, - "class" : { - "expandToExtendedHexaNotation:" : "GabrielOmarCotelli 3/6/2014 08:56", - "fromHexadecimalNotation:" : "GabrielOmarCotelli 3/6/2014 08:57", - "representing:identifiedBy:" : "GabrielOmarCotelli 3/6/2014 08:38", - "assertIsOfSizeSix:" : "GabrielOmarCotelli 2/4/2017 22:01" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssImportantDeclaration.class/methodProperties.json b/source/RenoirSt.package/CssImportantDeclaration.class/methodProperties.json deleted file mode 100644 index 50e16c7..0000000 --- a/source/RenoirSt.package/CssImportantDeclaration.class/methodProperties.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "instance" : { - "cssContentEndingOn:" : "GabrielOmarCotelli 3/3/2014 23:59", - "property" : "GabrielOmarCotelli 3/3/2014 22:47", - "value" : "GabrielOmarCotelli 3/3/2014 22:48", - "initializeOver:" : "GabrielOmarCotelli 3/3/2014 22:44" - }, - "class" : { - "over:" : "GabrielOmarCotelli 3/3/2014 22:44" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssImportantRulePrecedencePoliciy.class/methodProperties.json b/source/RenoirSt.package/CssImportantRulePrecedencePoliciy.class/methodProperties.json deleted file mode 100644 index 4244f12..0000000 --- a/source/RenoirSt.package/CssImportantRulePrecedencePoliciy.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "applyTo:" : "GabrielOmarCotelli 3/3/2014 22:43" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssLengthUnits.class/methodProperties.json b/source/RenoirSt.package/CssLengthUnits.class/methodProperties.json deleted file mode 100644 index afdab5a..0000000 --- a/source/RenoirSt.package/CssLengthUnits.class/methodProperties.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "instance" : { }, - "class" : { - "onePercentOfViewportLargerDimension" : "GabrielOmarCotelli 3/18/2014 19:17", - "pixel" : "GabrielOmarCotelli 2/25/2014 12:47", - "inch" : "GabrielOmarCotelli 2/25/2014 12:48", - "pica" : "GabrielOmarCotelli 2/25/2014 12:49", - "fontSizeOfRootElement" : "GabrielOmarCotelli 3/18/2014 19:16", - "initializeRelativeUnits" : "GabrielOmarCotelli 3/18/2014 19:15", - "millimeter" : "GabrielOmarCotelli 2/25/2014 12:48", - "initialize" : "GabrielOmarCotelli 3/18/2014 19:16", - "onePercentOfViewportSmallerDimension" : "GabrielOmarCotelli 3/18/2014 19:17", - "initializeAbsoluteUnits" : "GabrielOmarCotelli 3/18/2014 19:16", - "point" : "GabrielOmarCotelli 2/25/2014 12:48", - "fontSize" : "GabrielOmarCotelli 2/25/2014 12:47", - "onePercentOfViewportWidth" : "GabrielOmarCotelli 3/18/2014 19:17", - "onePercentOfViewportHeight" : "GabrielOmarCotelli 3/18/2014 19:17", - "zeroWidth" : "GabrielOmarCotelli 3/18/2014 19:16", - "xHeight" : "GabrielOmarCotelli 2/25/2014 12:47", - "centimeter" : "GabrielOmarCotelli 2/25/2014 12:48" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssLinearGradient.class/methodProperties.json b/source/RenoirSt.package/CssLinearGradient.class/methodProperties.json deleted file mode 100644 index b68ca8e..0000000 --- a/source/RenoirSt.package/CssLinearGradient.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "instance" : { - "shape" : "GabrielOmarCotelli 4/14/2014 10:27", - "functionName" : "GabrielOmarCotelli 4/14/2014 09:59", - "colorStops" : "GabrielOmarCotelli 4/14/2014 09:35", - "initializeIn:fading:" : "GabrielOmarCotelli 4/14/2014 09:59", - "beRepeating" : "GabrielOmarCotelli 4/14/2014 09:59" - }, - "class" : { - "in:fading:" : "GabrielOmarCotelli 4/14/2014 08:45", - "fading:" : "GabrielOmarCotelli 4/14/2014 08:45", - "rotated:fading:" : "GabrielOmarCotelli 4/14/2014 10:57", - "to:fading:" : "GabrielOmarCotelli 4/14/2014 10:57" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssLinearPolynomial.class/methodProperties.json b/source/RenoirSt.package/CssLinearPolynomial.class/methodProperties.json deleted file mode 100644 index b5a2ab3..0000000 --- a/source/RenoirSt.package/CssLinearPolynomial.class/methodProperties.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "instance" : { - "-" : "GabrielOmarCotelli 3/12/2014 17:25", - "cssContentOn:" : "GabrielOmarCotelli 3/12/2014 20:50", - "+" : "GabrielOmarCotelli 3/12/2014 17:25", - "cssIndependentCoefficientContentOn:" : "GabrielOmarCotelli 4/12/2014 16:10", - "cssDependentCoefficientContentOn:" : "GabrielOmarCotelli 3/12/2014 20:50", - "initializeWith:" : "GabrielOmarCotelli 3/12/2014 17:24" - }, - "class" : { - "with:" : "GabrielOmarCotelli 3/12/2014 17:24", - "forIdentity" : "GabrielOmarCotelli 3/12/2014 17:24" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssLocalFontReference.class/methodProperties.json b/source/RenoirSt.package/CssLocalFontReference.class/methodProperties.json deleted file mode 100644 index 0986100..0000000 --- a/source/RenoirSt.package/CssLocalFontReference.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 10/28/2015 18:12", - "initializeToFontNamed:" : "GabrielOmarCotelli 10/28/2015 17:58" - }, - "class" : { - "toFontNamed:" : "GabrielOmarCotelli 10/28/2015 17:58" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMathExpression.class/methodProperties.json b/source/RenoirSt.package/CssMathExpression.class/methodProperties.json deleted file mode 100644 index a28215f..0000000 --- a/source/RenoirSt.package/CssMathExpression.class/methodProperties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "instance" : { - "-" : "GabrielOmarCotelli 3/25/2014 12:02", - "+" : "GabrielOmarCotelli 3/25/2014 12:09", - "cssFunctionParametersContentOn:" : "GabrielOmarCotelli 3/25/2014 12:39", - "functionName" : "GabrielOmarCotelli 3/25/2014 12:40", - "initializeOn:" : "GabrielOmarCotelli 3/25/2014 12:00", - "*" : "GabrielOmarCotelli 3/25/2014 12:09", - "addOperand:andOperator:" : "GabrielOmarCotelli 3/25/2014 12:02", - "/" : "GabrielOmarCotelli 3/25/2014 12:09" - }, - "class" : { - "on:" : "GabrielOmarCotelli 3/25/2014 11:59" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMeasure.class/methodProperties.json b/source/RenoirSt.package/CssMeasure.class/methodProperties.json deleted file mode 100644 index 6d5ed81..0000000 --- a/source/RenoirSt.package/CssMeasure.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/25/2014 11:39", - "initializeQuantity:unit:" : "GabrielOmarCotelli 3/12/2014 11:21" - }, - "class" : { - "quantity:unit:" : "GabrielOmarCotelli 3/12/2014 11:21" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMediaQueryConstants.class/methodProperties.json b/source/RenoirSt.package/CssMediaQueryConstants.class/methodProperties.json deleted file mode 100644 index c01d8db..0000000 --- a/source/RenoirSt.package/CssMediaQueryConstants.class/methodProperties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "instance" : { }, - "class" : { - "braille" : "GabrielOmarCotelli 4/5/2017 10:36", - "print" : "GabrielOmarCotelli 4/5/2017 10:36", - "screen" : "GabrielOmarCotelli 4/5/2017 10:36", - "embossed" : "GabrielOmarCotelli 4/5/2017 10:36", - "landscape" : "GabrielOmarCotelli 4/5/2017 10:36", - "projection" : "GabrielOmarCotelli 4/5/2017 10:36", - "speech" : "GabrielOmarCotelli 4/5/2017 10:37", - "tv" : "GabrielOmarCotelli 4/5/2017 10:37", - "portrait" : "GabrielOmarCotelli 4/5/2017 10:36", - "interlace" : "GabrielOmarCotelli 4/5/2017 10:36", - "handheld" : "GabrielOmarCotelli 4/5/2017 10:36", - "tty" : "GabrielOmarCotelli 4/5/2017 10:37", - "progressive" : "GabrielOmarCotelli 4/5/2017 10:36" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMediaQueryExpression.class/methodProperties.json b/source/RenoirSt.package/CssMediaQueryExpression.class/methodProperties.json deleted file mode 100644 index 44f64e9..0000000 --- a/source/RenoirSt.package/CssMediaQueryExpression.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/26/2014 11:31", - "initializeForFeatureNamed:withValues:" : "GabrielOmarCotelli 2/26/2014 11:30" - }, - "class" : { - "assertNotEmpty:" : "GabrielOmarCotelli 2/4/2017 22:04", - "forFeatureNamed:" : "GabrielOmarCotelli 2/26/2014 11:32", - "forFeatureNamed:withValue:" : "GabrielOmarCotelli 2/26/2014 11:35", - "forFeatureNamed:withValues:" : "GabrielOmarCotelli 2/26/2014 11:29" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMediaQueryRule.class/methodProperties.json b/source/RenoirSt.package/CssMediaQueryRule.class/methodProperties.json deleted file mode 100644 index 6c8cb7b..0000000 --- a/source/RenoirSt.package/CssMediaQueryRule.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "cssStatementsContentOn:" : "GabrielOmarCotelli 3/18/2014 23:04", - "cssContentOn:" : "GabrielOmarCotelli 3/14/2014 23:05", - "cssExpressionsContentOn:" : "GabrielOmarCotelli 3/14/2014 23:04", - "initializeOfType:conforming:enabling:" : "GabrielOmarCotelli 2/26/2014 11:54" - }, - "class" : { - "ofType:enabling:" : "GabrielOmarCotelli 2/26/2014 11:53", - "ofType:conforming:enabling:" : "GabrielOmarCotelli 2/26/2014 11:54" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssMediaQueryRuleBuilder.class/methodProperties.json b/source/RenoirSt.package/CssMediaQueryRuleBuilder.class/methodProperties.json deleted file mode 100644 index 8a9b63a..0000000 --- a/source/RenoirSt.package/CssMediaQueryRuleBuilder.class/methodProperties.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "instance" : { - "minDeviceWidth:" : "GabrielOmarCotelli 2/26/2014 12:33", - "initialize" : "GabrielOmarCotelli 2/26/2014 12:29", - "maxMonochrome:" : "GabrielOmarCotelli 2/26/2014 12:38", - "maxHeight:" : "GabrielOmarCotelli 2/26/2014 12:32", - "minDeviceHeight:" : "GabrielOmarCotelli 2/26/2014 12:32", - "type:" : "GabrielOmarCotelli 2/26/2014 12:27", - "deviceWidth:" : "GabrielOmarCotelli 2/26/2014 12:33", - "maxDeviceHeight:" : "GabrielOmarCotelli 2/26/2014 12:33", - "scan:" : "GabrielOmarCotelli 2/26/2014 12:49", - "color:" : "GabrielOmarCotelli 2/26/2014 12:35", - "build" : "GabrielOmarCotelli 2/26/2014 12:50", - "height:" : "GabrielOmarCotelli 2/26/2014 12:31", - "aspectRatio:" : "GabrielOmarCotelli 2/26/2014 12:34", - "deviceHeight:" : "GabrielOmarCotelli 2/26/2014 12:32", - "colorIndex:" : "GabrielOmarCotelli 2/26/2014 12:36", - "minColor:" : "GabrielOmarCotelli 2/26/2014 12:36", - "minColorIndex:" : "GabrielOmarCotelli 2/26/2014 12:37", - "minAspecRatio:" : "GabrielOmarCotelli 2/26/2014 12:35", - "addExpressionForFeatureNamed:withValue:" : "GabrielOmarCotelli 2/26/2014 12:30", - "maxDeviceWidth:" : "GabrielOmarCotelli 2/26/2014 12:34", - "minHeight:" : "GabrielOmarCotelli 2/26/2014 12:31", - "minMonochrome:" : "GabrielOmarCotelli 2/26/2014 12:38", - "minWidth:" : "GabrielOmarCotelli 2/26/2014 12:30", - "width:" : "GabrielOmarCotelli 2/26/2014 12:28", - "grid:" : "GabrielOmarCotelli 2/26/2014 12:49", - "maxColorIndex:" : "GabrielOmarCotelli 2/26/2014 12:37", - "maxAspectRatio:" : "GabrielOmarCotelli 2/26/2014 12:35", - "monochrome:" : "GabrielOmarCotelli 2/26/2014 12:38", - "useStyleSheet:" : "GabrielOmarCotelli 2/26/2014 14:10", - "orientation:" : "GabrielOmarCotelli 2/26/2014 12:34", - "maxColor:" : "GabrielOmarCotelli 2/26/2014 12:36", - "resolution:" : "GabrielOmarCotelli 2/26/2014 12:49", - "maxWidth:" : "GabrielOmarCotelli 2/26/2014 12:31" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssNoAlphaChannelProvided.class/methodProperties.json b/source/RenoirSt.package/CssNoAlphaChannelProvided.class/methodProperties.json deleted file mode 100644 index 768eac2..0000000 --- a/source/RenoirSt.package/CssNoAlphaChannelProvided.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/6/2014 08:16", - "functionNameFor:" : "GabrielOmarCotelli 3/5/2014 23:39" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssNoFallbackSpecified.class/methodProperties.json b/source/RenoirSt.package/CssNoFallbackSpecified.class/methodProperties.json deleted file mode 100644 index 5aab467..0000000 --- a/source/RenoirSt.package/CssNoFallbackSpecified.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 3/25/2014 11:42" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssNormalRulePrecedencePolicy.class/methodProperties.json b/source/RenoirSt.package/CssNormalRulePrecedencePolicy.class/methodProperties.json deleted file mode 100644 index db948a9..0000000 --- a/source/RenoirSt.package/CssNormalRulePrecedencePolicy.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "applyTo:" : "GabrielOmarCotelli 3/3/2014 22:41" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssObject.class/methodProperties.json b/source/RenoirSt.package/CssObject.class/methodProperties.json deleted file mode 100644 index 9120af3..0000000 --- a/source/RenoirSt.package/CssObject.class/methodProperties.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/21/2014 23:23", - "printOn:" : "GabrielOmarCotelli 2/21/2014 23:24" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssObjectList.class/methodProperties.json b/source/RenoirSt.package/CssObjectList.class/methodProperties.json deleted file mode 100644 index 0ec80fd..0000000 --- a/source/RenoirSt.package/CssObjectList.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 10/28/2015 18:00", - "initializeWithAll:" : "GabrielOmarCotelli 10/28/2015 18:01" - }, - "class" : { - "with:with:" : "GabrielOmarCotelli 10/28/2015 18:02", - "withAll:" : "GabrielOmarCotelli 10/28/2015 18:01" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssPseudoClassSelector.class/methodProperties.json b/source/RenoirSt.package/CssPseudoClassSelector.class/methodProperties.json deleted file mode 100644 index e235d74..0000000 --- a/source/RenoirSt.package/CssPseudoClassSelector.class/methodProperties.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 10:21", - "initializeNamed:withArguments:over:" : "GabrielOmarCotelli 2/22/2014 19:57" - }, - "class" : { - "linkOn:" : "GabrielOmarCotelli 2/22/2014 19:52", - "hoverOn:" : "GabrielOmarCotelli 2/23/2014 10:30", - "disabledOn:" : "GabrielOmarCotelli 2/23/2014 11:49", - "lastChildOn:" : "GabrielOmarCotelli 2/23/2014 23:45", - "childFromLastAt:on:" : "GabrielOmarCotelli 2/23/2014 23:43", - "onlyOfTypeOn:" : "GabrielOmarCotelli 2/23/2014 23:48", - "siblingOfTypeAt:on:" : "GabrielOmarCotelli 2/23/2014 23:44", - "targetOn:" : "GabrielOmarCotelli 2/23/2014 10:32", - "not:on:" : "GabrielOmarCotelli 2/24/2014 10:19", - "firstChildOn:" : "GabrielOmarCotelli 2/23/2014 23:45", - "childAt:on:" : "GabrielOmarCotelli 2/23/2014 23:41", - "lastOfTypeOn:" : "GabrielOmarCotelli 2/23/2014 23:47", - "visitedOn:" : "GabrielOmarCotelli 2/22/2014 19:57", - "rootOn:" : "GabrielOmarCotelli 2/23/2014 23:40", - "named:over:" : "GabrielOmarCotelli 2/22/2014 19:53", - "activeOn:" : "GabrielOmarCotelli 2/23/2014 10:29", - "language:on:" : "GabrielOmarCotelli 2/23/2014 10:35", - "emptyOn:" : "GabrielOmarCotelli 2/23/2014 23:49", - "firstOfTypeOn:" : "GabrielOmarCotelli 2/23/2014 23:46", - "enabledOn:" : "GabrielOmarCotelli 2/23/2014 11:49", - "named:withArguments:over:" : "GabrielOmarCotelli 2/22/2014 19:54", - "focusOn:" : "GabrielOmarCotelli 2/23/2014 10:30", - "siblingOfTypeFromLastAt:on:" : "GabrielOmarCotelli 2/23/2014 23:45", - "checkedOn:" : "GabrielOmarCotelli 2/23/2014 11:50", - "onlyChildOn:" : "GabrielOmarCotelli 2/23/2014 23:48" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssPseudoElementSelector.class/methodProperties.json b/source/RenoirSt.package/CssPseudoElementSelector.class/methodProperties.json deleted file mode 100644 index b5a0f5e..0000000 --- a/source/RenoirSt.package/CssPseudoElementSelector.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 16:49", - "initializeNamed:of:" : "GabrielOmarCotelli 2/24/2014 16:47" - }, - "class" : { - "named:of:" : "GabrielOmarCotelli 2/24/2014 16:47", - "before:" : "GabrielOmarCotelli 2/24/2014 16:51", - "firstLineOf:" : "GabrielOmarCotelli 2/24/2014 16:46", - "after:" : "GabrielOmarCotelli 2/24/2014 16:52", - "firstLetterOf:" : "GabrielOmarCotelli 2/24/2014 16:50" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssRGBColor.class/methodProperties.json b/source/RenoirSt.package/CssRGBColor.class/methodProperties.json deleted file mode 100644 index 4ba8d03..0000000 --- a/source/RenoirSt.package/CssRGBColor.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "componentsDo:separatedBy:" : "GabrielOmarCotelli 3/5/2014 23:33", - "newWithAlpha:" : "GabrielOmarCotelli 10/28/2015 15:21", - "initializeRed:green:blue:alphaChannel:" : "GabrielOmarCotelli 3/6/2014 00:07", - "functionName" : "GabrielOmarCotelli 3/6/2014 00:01" - }, - "class" : { - "red:green:blue:alpha:" : "GabrielOmarCotelli 3/6/2014 00:07", - "red:green:blue:" : "GabrielOmarCotelli 3/6/2014 00:07", - "red:green:blue:alphaChannel:" : "GabrielOmarCotelli 3/6/2014 00:07" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssRadialGradient.class/methodProperties.json b/source/RenoirSt.package/CssRadialGradient.class/methodProperties.json deleted file mode 100644 index 3d3fff1..0000000 --- a/source/RenoirSt.package/CssRadialGradient.class/methodProperties.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "instance" : { - "shape" : "GabrielOmarCotelli 4/14/2014 10:33", - "functionName" : "GabrielOmarCotelli 4/14/2014 10:33", - "initializeShape:fading:" : "GabrielOmarCotelli 4/14/2014 10:33", - "colorStops" : "GabrielOmarCotelli 4/14/2014 10:34", - "beRepeating" : "GabrielOmarCotelli 4/14/2014 10:54" - }, - "class" : { - "circular:at:fading:" : "GabrielOmarCotelli 4/14/2014 10:57", - "shape:fading:" : "GabrielOmarCotelli 4/14/2014 10:33", - "elliptical:fading:" : "GabrielOmarCotelli 4/14/2014 10:57", - "elliptical:at:fading:" : "GabrielOmarCotelli 4/14/2014 10:57", - "circular:fading:" : "GabrielOmarCotelli 4/14/2014 10:57", - "fading:" : "GabrielOmarCotelli 4/14/2014 10:31" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssResolutionUnits.class/methodProperties.json b/source/RenoirSt.package/CssResolutionUnits.class/methodProperties.json deleted file mode 100644 index 720e283..0000000 --- a/source/RenoirSt.package/CssResolutionUnits.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { }, - "class" : { - "initialize" : "GabrielOmarCotelli 3/18/2014 23:06", - "dotsPerCentimeter" : "GabrielOmarCotelli 2/26/2014 12:43", - "dotsPerInch" : "GabrielOmarCotelli 2/26/2014 12:43", - "dotsPerPixelUnit" : "GabrielOmarCotelli 3/18/2014 23:06" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssRulePrecedencePolicy.class/methodProperties.json b/source/RenoirSt.package/CssRulePrecedencePolicy.class/methodProperties.json deleted file mode 100644 index 9d1ae72..0000000 --- a/source/RenoirSt.package/CssRulePrecedencePolicy.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "applyTo:" : "GabrielOmarCotelli 3/3/2014 22:40" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssRuleSet.class/methodProperties.json b/source/RenoirSt.package/CssRuleSet.class/methodProperties.json deleted file mode 100644 index 7787016..0000000 --- a/source/RenoirSt.package/CssRuleSet.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 4/7/2014 19:57", - "initializeSelector:declarations:comment:" : "GabrielOmarCotelli 4/7/2014 19:55" - }, - "class" : { - "selector:declarations:comment:" : "GabrielOmarCotelli 3/12/2014 20:41", - "selector:declarations:" : "GabrielOmarCotelli 3/12/2014 20:45" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssSVGColors.class/methodProperties.json b/source/RenoirSt.package/CssSVGColors.class/methodProperties.json deleted file mode 100644 index 947865f..0000000 --- a/source/RenoirSt.package/CssSVGColors.class/methodProperties.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "instance" : { }, - "class" : { - "lightCyan" : "GabrielOmarCotelli 3/6/2014 14:13", - "lightSlateGrey" : "GabrielOmarCotelli 3/6/2014 14:12", - "orangeRed" : "GabrielOmarCotelli 3/6/2014 14:11", - "purple" : "GabrielOmarCotelli 3/6/2014 14:11", - "olive" : "GabrielOmarCotelli 3/6/2014 14:11", - "darkMagenta" : "GabrielOmarCotelli 3/6/2014 14:16", - "steelBlue" : "GabrielOmarCotelli 3/6/2014 14:10", - "lightSlateGray" : "GabrielOmarCotelli 3/6/2014 14:12", - "mediumPurple" : "GabrielOmarCotelli 3/6/2014 14:11", - "honeydew" : "GabrielOmarCotelli 3/6/2014 14:14", - "snow" : "GabrielOmarCotelli 3/6/2014 14:10", - "maroon" : "GabrielOmarCotelli 3/6/2014 14:12", - "moccasin" : "GabrielOmarCotelli 3/6/2014 14:11", - "forestGreen" : "GabrielOmarCotelli 3/6/2014 14:14", - "teal" : "GabrielOmarCotelli 3/6/2014 14:10", - "magenta" : "GabrielOmarCotelli 3/6/2014 14:12", - "firebrick" : "GabrielOmarCotelli 3/6/2014 14:16", - "pink" : "GabrielOmarCotelli 3/6/2014 14:11", - "lightCoral" : "GabrielOmarCotelli 3/6/2014 14:13", - "lavender" : "GabrielOmarCotelli 3/6/2014 14:14", - "darkCyan" : "GabrielOmarCotelli 3/6/2014 14:17", - "darkSeaGreen" : "GabrielOmarCotelli 3/6/2014 14:16", - "darkSlateGrey" : "GabrielOmarCotelli 3/6/2014 14:16", - "cornflowerBlue" : "GabrielOmarCotelli 3/6/2014 14:17", - "paleGoldenrod" : "GabrielOmarCotelli 3/6/2014 14:11", - "mediumVioletRed" : "GabrielOmarCotelli 3/6/2014 14:11", - "plum" : "GabrielOmarCotelli 3/6/2014 14:11", - "red" : "GabrielOmarCotelli 3/6/2014 14:11", - "brown" : "GabrielOmarCotelli 3/6/2014 14:17", - "darkSlateGray" : "GabrielOmarCotelli 3/6/2014 14:16", - "springGreen" : "GabrielOmarCotelli 3/6/2014 14:10", - "limeGreen" : "GabrielOmarCotelli 3/6/2014 14:12", - "gainsboro" : "GabrielOmarCotelli 3/6/2014 14:14", - "blueviolet" : "GabrielOmarCotelli 3/6/2014 14:17", - "darkGoldenrod" : "GabrielOmarCotelli 3/6/2014 14:17", - "papayaWhip" : "GabrielOmarCotelli 3/6/2014 14:11", - "fuchsia" : "GabrielOmarCotelli 3/6/2014 14:14", - "cyan" : "GabrielOmarCotelli 3/6/2014 14:17", - "peru" : "GabrielOmarCotelli 3/6/2014 14:11", - "beige" : "GabrielOmarCotelli 3/6/2014 14:17", - "sandyBrown" : "GabrielOmarCotelli 3/6/2014 14:11", - "silver" : "GabrielOmarCotelli 3/6/2014 14:10", - "dimGrey" : "GabrielOmarCotelli 3/6/2014 14:16", - "darkSlateBlue" : "GabrielOmarCotelli 3/6/2014 14:16", - "darkOliveGreen" : "GabrielOmarCotelli 3/6/2014 14:16", - "lime" : "GabrielOmarCotelli 3/6/2014 14:12", - "mediumBlue" : "GabrielOmarCotelli 3/6/2014 14:12", - "olivedrab" : "GabrielOmarCotelli 3/6/2014 14:11", - "slateGrey" : "GabrielOmarCotelli 3/6/2014 14:10", - "dodgerBlue" : "GabrielOmarCotelli 3/6/2014 14:16", - "white" : "GabrielOmarCotelli 3/6/2014 14:10", - "mediumAquamarine" : "GabrielOmarCotelli 3/6/2014 14:12", - "coral" : "GabrielOmarCotelli 3/6/2014 14:17", - "slateGray" : "GabrielOmarCotelli 3/6/2014 14:10", - "saddleBrown" : "GabrielOmarCotelli 3/6/2014 14:11", - "dimGray" : "GabrielOmarCotelli 3/6/2014 14:16", - "cornsilk" : "GabrielOmarCotelli 3/6/2014 14:17", - "lightGreen" : "GabrielOmarCotelli 3/6/2014 14:12", - "goldenrod" : "GabrielOmarCotelli 3/6/2014 14:14", - "peachpuff" : "GabrielOmarCotelli 3/6/2014 14:11", - "ghostWhite" : "GabrielOmarCotelli 3/6/2014 14:14", - "thistle" : "GabrielOmarCotelli 3/6/2014 14:10", - "lemonChiffon" : "GabrielOmarCotelli 3/6/2014 14:14", - "midnightBlue" : "GabrielOmarCotelli 3/6/2014 14:11", - "ivory" : "GabrielOmarCotelli 3/6/2014 14:14", - "slateBlue" : "GabrielOmarCotelli 3/6/2014 14:10", - "floralWhite" : "GabrielOmarCotelli 3/6/2014 14:16", - "gold" : "GabrielOmarCotelli 3/6/2014 14:14", - "mistyRose" : "GabrielOmarCotelli 3/6/2014 14:11", - "lawnGreen" : "GabrielOmarCotelli 3/6/2014 14:14", - "darkKhaki" : "GabrielOmarCotelli 3/6/2014 14:16", - "sienna" : "GabrielOmarCotelli 3/6/2014 14:10", - "violet" : "GabrielOmarCotelli 3/6/2014 14:10", - "darkRed" : "GabrielOmarCotelli 3/6/2014 14:16", - "darkViolet" : "GabrielOmarCotelli 3/6/2014 14:16", - "indianRed" : "GabrielOmarCotelli 3/6/2014 14:14", - "initializeMtoZ" : "GabrielOmarCotelli 3/6/2014 13:48", - "mediumSeaGreen" : "GabrielOmarCotelli 3/6/2014 14:11", - "wheat" : "GabrielOmarCotelli 3/6/2014 14:10", - "darkSalmon" : "GabrielOmarCotelli 3/6/2014 14:16", - "darkGreen" : "GabrielOmarCotelli 3/6/2014 14:17", - "mintCream" : "GabrielOmarCotelli 3/6/2014 14:11", - "chocolate" : "GabrielOmarCotelli 3/6/2014 14:17", - "khaki" : "GabrielOmarCotelli 3/6/2014 14:10", - "initializeGtoL" : "GabrielOmarCotelli 3/6/2014 13:47", - "lightSeaGreen" : "GabrielOmarCotelli 3/6/2014 14:12", - "rosyBrown" : "GabrielOmarCotelli 3/6/2014 14:11", - "salmon" : "GabrielOmarCotelli 3/6/2014 14:11", - "navajoWhite" : "GabrielOmarCotelli 3/6/2014 14:11", - "paleTurquoise" : "GabrielOmarCotelli 3/6/2014 14:11", - "paleGreen" : "GabrielOmarCotelli 3/6/2014 14:11", - "lightGrey" : "GabrielOmarCotelli 3/6/2014 14:12", - "green" : "GabrielOmarCotelli 3/6/2014 14:14", - "skyBlue" : "GabrielOmarCotelli 3/6/2014 14:10", - "initializeAtoF" : "GabrielOmarCotelli 3/6/2014 13:46", - "antiqueWhite" : "GabrielOmarCotelli 3/6/2014 13:52", - "darkOrange" : "GabrielOmarCotelli 3/6/2014 14:16", - "linen" : "GabrielOmarCotelli 3/6/2014 14:12", - "mediumSlateBlue" : "GabrielOmarCotelli 3/6/2014 14:11", - "indigo" : "GabrielOmarCotelli 3/6/2014 14:14", - "lightGray" : "GabrielOmarCotelli 3/6/2014 14:12", - "azure" : "GabrielOmarCotelli 3/6/2014 14:17", - "greenYellow" : "GabrielOmarCotelli 3/6/2014 14:14", - "blanchedAlmond" : "GabrielOmarCotelli 3/6/2014 14:17", - "darkTurquoise" : "GabrielOmarCotelli 3/6/2014 14:16", - "burlywood" : "GabrielOmarCotelli 3/6/2014 14:17", - "orange" : "GabrielOmarCotelli 3/6/2014 14:11", - "seaGreen" : "GabrielOmarCotelli 3/6/2014 14:10", - "seaShell" : "GabrielOmarCotelli 3/6/2014 14:10", - "orchid" : "GabrielOmarCotelli 3/6/2014 14:11", - "whiteSmoke" : "GabrielOmarCotelli 3/6/2014 14:10", - "yellow" : "GabrielOmarCotelli 3/6/2014 14:10", - "yellowGreen" : "GabrielOmarCotelli 3/6/2014 14:10", - "darkOrchid" : "GabrielOmarCotelli 3/6/2014 14:16", - "cadetBlue" : "GabrielOmarCotelli 3/6/2014 14:17", - "aqua" : "GabrielOmarCotelli 3/6/2014 14:17", - "lightGoldenrodYellow" : "GabrielOmarCotelli 3/6/2014 14:13", - "aquamarine" : "GabrielOmarCotelli 3/6/2014 14:17", - "lightSkyBlue" : "GabrielOmarCotelli 3/6/2014 14:12", - "darkGrey" : "GabrielOmarCotelli 3/6/2014 14:17", - "lightBlue" : "GabrielOmarCotelli 3/6/2014 14:13", - "lightSteelBlue" : "GabrielOmarCotelli 3/6/2014 14:12", - "chartreuse" : "GabrielOmarCotelli 3/6/2014 14:17", - "darkGray" : "GabrielOmarCotelli 3/6/2014 14:17", - "crimson" : "GabrielOmarCotelli 3/6/2014 14:17", - "mediumOrchid" : "GabrielOmarCotelli 3/6/2014 14:11", - "lightPink" : "GabrielOmarCotelli 3/6/2014 14:12", - "lightSalmon" : "GabrielOmarCotelli 3/6/2014 14:12", - "mediumSpringGreen" : "GabrielOmarCotelli 3/6/2014 14:11", - "navy" : "GabrielOmarCotelli 3/6/2014 14:11", - "oldlace" : "GabrielOmarCotelli 3/6/2014 14:11", - "paleVioletRed" : "GabrielOmarCotelli 3/6/2014 14:11", - "bisque" : "GabrielOmarCotelli 3/6/2014 14:17", - "tan" : "GabrielOmarCotelli 3/6/2014 14:10", - "hotPink" : "GabrielOmarCotelli 3/6/2014 14:14", - "turquoise" : "GabrielOmarCotelli 3/6/2014 14:10", - "royalBlue" : "GabrielOmarCotelli 3/6/2014 14:11", - "grey" : "GabrielOmarCotelli 3/6/2014 14:14", - "darkBlue" : "GabrielOmarCotelli 3/6/2014 14:17", - "black" : "GabrielOmarCotelli 3/6/2014 14:17", - "lightYellow" : "GabrielOmarCotelli 3/6/2014 14:12", - "gray" : "GabrielOmarCotelli 3/6/2014 14:14", - "deepSkyBlue" : "GabrielOmarCotelli 3/6/2014 14:16", - "initialize" : "GabrielOmarCotelli 3/6/2014 13:48", - "powderBlue" : "GabrielOmarCotelli 3/6/2014 14:11", - "deepPink" : "GabrielOmarCotelli 3/6/2014 14:16", - "lavenderBlush" : "GabrielOmarCotelli 3/6/2014 14:14", - "aliceBlue" : "GabrielOmarCotelli 3/6/2014 13:52", - "mediumTurquoise" : "GabrielOmarCotelli 3/6/2014 14:11", - "transparent" : "GabrielOmarCotelli 3/6/2014 23:48", - "tomato" : "GabrielOmarCotelli 3/6/2014 14:10", - "blue" : "GabrielOmarCotelli 3/6/2014 14:17" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssSVGFontLocation.class/methodProperties.json b/source/RenoirSt.package/CssSVGFontLocation.class/methodProperties.json deleted file mode 100644 index dd1421e..0000000 --- a/source/RenoirSt.package/CssSVGFontLocation.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 10/28/2015 18:22", - "initializeAt:withId:" : "GabrielOmarCotelli 10/28/2015 18:08" - }, - "class" : { - "at:withId:" : "GabrielOmarCotelli 10/28/2015 18:08" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssSelector.class/instance/^slash.st b/source/RenoirSt.package/CssSelector.class/instance/^slash.st new file mode 100644 index 0000000..06233b9 --- /dev/null +++ b/source/RenoirSt.package/CssSelector.class/instance/^slash.st @@ -0,0 +1,7 @@ +building-combinators +/ aSelector + + "This shortcut cover the cases when we cannot use the space to create the descendant combinator. + For example if the right part of the selector needs parens." + + ^ CssDescendantCombinator between: self and: aSelector \ No newline at end of file diff --git a/source/RenoirSt.package/CssSelector.class/methodProperties.json b/source/RenoirSt.package/CssSelector.class/methodProperties.json deleted file mode 100644 index 4cfe568..0000000 --- a/source/RenoirSt.package/CssSelector.class/methodProperties.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "instance" : { - "disabled" : "GabrielOmarCotelli 2/24/2014 21:59", - "firstLine" : "GabrielOmarCotelli 2/24/2014 22:04", - "empty" : "GabrielOmarCotelli 2/24/2014 21:56", - "firstOfType" : "GabrielOmarCotelli 2/24/2014 21:56", - "firstLetter" : "GabrielOmarCotelli 2/24/2014 22:04", - "before" : "GabrielOmarCotelli 2/24/2014 22:04", - "attribute:includesSubstring:" : "GabrielOmarCotelli 2/25/2014 10:53", - "isImplicitUniversal" : "GabrielOmarCotelli 2/25/2014 08:30", - "childAt:" : "GabrielOmarCotelli 2/24/2014 21:53", - "onlyChild" : "GabrielOmarCotelli 2/24/2014 21:56", - "not:" : "GabrielOmarCotelli 10/28/2015 10:07", - "after" : "GabrielOmarCotelli 2/24/2014 22:05", - "root" : "GabrielOmarCotelli 2/24/2014 21:51", - "~" : "GabrielOmarCotelli 2/24/2014 21:39", - "enabled" : "GabrielOmarCotelli 2/24/2014 21:59", - "childFromLastAt:" : "GabrielOmarCotelli 2/24/2014 21:53", - "active" : "GabrielOmarCotelli 2/24/2014 22:01", - "lastOfType" : "GabrielOmarCotelli 2/24/2014 21:56", - "hover" : "GabrielOmarCotelli 2/24/2014 22:01", - "withAttribute:equalTo:" : "GabrielOmarCotelli 2/25/2014 10:50", - "link" : "GabrielOmarCotelli 2/24/2014 21:43", - "havingAttribute:" : "GabrielOmarCotelli 2/25/2014 10:50", - "siblingOfTypeFromLastAt:" : "GabrielOmarCotelli 2/24/2014 21:54", - "descendantOfType:" : "GabrielOmarCotelli 2/25/2014 08:21", - "lang:" : "GabrielOmarCotelli 2/24/2014 21:41", - "siblingOfTypeAt:" : "GabrielOmarCotelli 2/24/2014 21:54", - "attribute:includes:" : "GabrielOmarCotelli 2/25/2014 10:52", - "attribute:beginsWith:" : "GabrielOmarCotelli 2/25/2014 10:52", - "focus" : "GabrielOmarCotelli 2/24/2014 22:01", - "checked" : "GabrielOmarCotelli 2/24/2014 21:59", - "lastChild" : "GabrielOmarCotelli 2/24/2014 21:55", - "onlyOfType" : "GabrielOmarCotelli 2/24/2014 21:56", - "visited" : "GabrielOmarCotelli 2/24/2014 21:43", - "firstValueOfAttribute:beginsWith:" : "GabrielOmarCotelli 2/25/2014 10:54", - "target" : "GabrielOmarCotelli 2/24/2014 21:58", - "firstChild" : "GabrielOmarCotelli 2/24/2014 21:55", - "*" : "GabrielOmarCotelli 2/25/2014 08:18", - "id:" : "GabrielOmarCotelli 2/24/2014 20:30", - ">" : "GabrielOmarCotelli 2/24/2014 20:32", - "class:" : "GabrielOmarCotelli 2/24/2014 17:31", - "+" : "GabrielOmarCotelli 2/24/2014 21:38", - "attribute:endsWith:" : "GabrielOmarCotelli 2/25/2014 10:53", - "," : "GabrielOmarCotelli 2/24/2014 22:08" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssSelectorGroup.class/methodProperties.json b/source/RenoirSt.package/CssSelectorGroup.class/methodProperties.json deleted file mode 100644 index 87a1c89..0000000 --- a/source/RenoirSt.package/CssSelectorGroup.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 3/13/2014 19:43", - "," : "GabrielOmarCotelli 2/24/2014 22:07", - "initializeWithAll:" : "GabrielOmarCotelli 2/24/2014 19:56" - }, - "class" : { - "with:with:" : "GabrielOmarCotelli 2/24/2014 19:55" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssTimeUnits.class/methodProperties.json b/source/RenoirSt.package/CssTimeUnits.class/methodProperties.json deleted file mode 100644 index 0da94e2..0000000 --- a/source/RenoirSt.package/CssTimeUnits.class/methodProperties.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "instance" : { }, - "class" : { - "initialize" : "GabrielOmarCotelli 3/18/2014 22:56", - "second" : "GabrielOmarCotelli 3/18/2014 22:57", - "millisecond" : "GabrielOmarCotelli 3/18/2014 22:57" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssToggle.class/methodProperties.json b/source/RenoirSt.package/CssToggle.class/methodProperties.json deleted file mode 100644 index 0121cd6..0000000 --- a/source/RenoirSt.package/CssToggle.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "initializeCyclingOver:" : "GabrielOmarCotelli 3/25/2014 12:30", - "cssFunctionParametersContentOn:" : "GabrielOmarCotelli 3/25/2014 12:33", - "functionName" : "GabrielOmarCotelli 3/25/2014 12:36" - }, - "class" : { - "cyclingOver:" : "GabrielOmarCotelli 3/25/2014 12:29" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssTypeSelector.class/methodProperties.json b/source/RenoirSt.package/CssTypeSelector.class/methodProperties.json deleted file mode 100644 index 649345f..0000000 --- a/source/RenoirSt.package/CssTypeSelector.class/methodProperties.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/21/2014 23:25", - "initializeOfType:" : "GabrielOmarCotelli 2/22/2014 19:28" - }, - "class" : { - "ofType:" : "GabrielOmarCotelli 2/22/2014 19:28" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssUnit.class/methodProperties.json b/source/RenoirSt.package/CssUnit.class/methodProperties.json deleted file mode 100644 index ff0d034..0000000 --- a/source/RenoirSt.package/CssUnit.class/methodProperties.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/25/2014 11:29", - "initializeIdentifiedBy:" : "GabrielOmarCotelli 2/25/2014 11:29" - }, - "class" : { - "assertNotEmpty:" : "GabrielOmarCotelli 2/4/2017 22:05", - "identifiedBy:" : "GabrielOmarCotelli 2/25/2014 11:42" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/CssUniversalSelector.class/methodProperties.json b/source/RenoirSt.package/CssUniversalSelector.class/methodProperties.json deleted file mode 100644 index 55b986c..0000000 --- a/source/RenoirSt.package/CssUniversalSelector.class/methodProperties.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/21/2014 23:25", - "initializeRepresentedBy:" : "GabrielOmarCotelli 2/19/2014 19:34", - "isImplicitUniversal" : "GabrielOmarCotelli 2/25/2014 08:30" - }, - "class" : { - "representedBy:" : "GabrielOmarCotelli 2/19/2014 19:34", - "explicit" : "GabrielOmarCotelli 2/19/2014 19:36", - "implicit" : "GabrielOmarCotelli 2/19/2014 19:33" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/Float.extension/methodProperties.json b/source/RenoirSt.package/Float.extension/methodProperties.json deleted file mode 100644 index e845a19..0000000 --- a/source/RenoirSt.package/Float.extension/methodProperties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "instance" : { - "s" : "GabrielOmarCotelli 3/18/2014 23:02", - "turn" : "GabrielOmarCotelli 3/18/2014 23:02", - "grad" : "GabrielOmarCotelli 3/18/2014 23:01", - "newMeasureWith:" : "GabrielOmarCotelli 3/18/2014 23:01", - "ms" : "GabrielOmarCotelli 3/18/2014 23:02", - "mm" : "GabrielOmarCotelli 3/18/2014 23:01", - "pc" : "GabrielOmarCotelli 3/18/2014 23:02", - "cm" : "GabrielOmarCotelli 3/18/2014 23:01", - "deg" : "GabrielOmarCotelli 3/18/2014 23:01", - "rad" : "GabrielOmarCotelli 3/18/2014 23:02", - "cssContentOn:" : "GabrielOmarCotelli 3/5/2014 23:48", - "in" : "GabrielOmarCotelli 3/18/2014 23:01", - "em" : "GabrielOmarCotelli 4/3/2014 23:37" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/Fraction.extension/methodProperties.json b/source/RenoirSt.package/Fraction.extension/methodProperties.json deleted file mode 100644 index 8e611b1..0000000 --- a/source/RenoirSt.package/Fraction.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/26/2014 12:52" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/IndentOnNewLineWriteStream.class/methodProperties.json b/source/RenoirSt.package/IndentOnNewLineWriteStream.class/methodProperties.json deleted file mode 100644 index 4ce2a73..0000000 --- a/source/RenoirSt.package/IndentOnNewLineWriteStream.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { - "nextPut:" : "GabrielOmarCotelli 3/13/2014 22:33", - "nextPutAll:" : "GabrielOmarCotelli 3/13/2014 22:33", - "newLine" : "GabrielOmarCotelli 3/13/2014 22:27", - "space" : "GabrielOmarCotelli 3/13/2014 22:34", - "tab" : "GabrielOmarCotelli 3/13/2014 22:33", - "initializeOn:" : "GabrielOmarCotelli 3/13/2014 22:24" - }, - "class" : { - "on:" : "GabrielOmarCotelli 3/13/2014 22:24" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/Integer.extension/methodProperties.json b/source/RenoirSt.package/Integer.extension/methodProperties.json deleted file mode 100644 index 5dd0be4..0000000 --- a/source/RenoirSt.package/Integer.extension/methodProperties.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "instance" : { - "vmin" : "GabrielOmarCotelli 3/18/2014 23:00", - "cm" : "GabrielOmarCotelli 3/18/2014 22:59", - "turn" : "GabrielOmarCotelli 3/18/2014 23:00", - "mm" : "GabrielOmarCotelli 3/18/2014 22:59", - "dppx" : "GabrielOmarCotelli 3/18/2014 23:06", - "in" : "GabrielOmarCotelli 3/18/2014 22:59", - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 10:21", - "newMeasureWith:" : "GabrielOmarCotelli 3/18/2014 22:58", - "s" : "GabrielOmarCotelli 3/18/2014 23:00", - "dpi" : "GabrielOmarCotelli 3/18/2014 22:59", - "em" : "GabrielOmarCotelli 3/18/2014 22:59", - "vh" : "GabrielOmarCotelli 3/18/2014 23:00", - "kHz" : "GabrielOmarCotelli 3/18/2014 23:12", - "px" : "GabrielOmarCotelli 3/18/2014 23:00", - "vmax" : "GabrielOmarCotelli 3/18/2014 23:00", - "grad" : "GabrielOmarCotelli 3/18/2014 22:59", - "pc" : "GabrielOmarCotelli 3/18/2014 23:00", - "rad" : "GabrielOmarCotelli 3/18/2014 23:00", - "ms" : "GabrielOmarCotelli 3/18/2014 23:01", - "Hz" : "GabrielOmarCotelli 3/18/2014 23:12", - "vw" : "GabrielOmarCotelli 3/18/2014 23:00", - "dpcm" : "GabrielOmarCotelli 3/18/2014 22:59", - "pt" : "GabrielOmarCotelli 3/18/2014 23:00", - "rem" : "GabrielOmarCotelli 3/18/2014 23:00", - "deg" : "GabrielOmarCotelli 3/18/2014 22:59", - "ch" : "GabrielOmarCotelli 3/18/2014 22:58", - "ex" : "GabrielOmarCotelli 3/18/2014 22:59", - "n" : "GabrielOmarCotelli 3/12/2014 17:26" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/ManifestRenoirSt.class/methodProperties.json b/source/RenoirSt.package/ManifestRenoirSt.class/methodProperties.json deleted file mode 100644 index a252b34..0000000 --- a/source/RenoirSt.package/ManifestRenoirSt.class/methodProperties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "instance" : { }, - "class" : { - "ruleExcessiveMethodsRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11", - "ruleMissingSubclassResponsibilityRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11", - "rejectRules" : "GabrielOmarCotelli 4/12/2014 16:11", - "ruleExcessiveVariablesRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11", - "rejectClasses" : "GabrielOmarCotelli 4/12/2014 16:11", - "ruleInstVarInSubclassesRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11", - "ruleLongMethodsRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11", - "ruleInconsistentMethodClassificationRuleV1FalsePositive" : "GabrielOmarCotelli 4/12/2014 16:11" - } -} \ No newline at end of file diff --git a/source/RenoirSt.package/Percentage.extension/methodProperties.json b/source/RenoirSt.package/Percentage.extension/methodProperties.json deleted file mode 100644 index 8763634..0000000 --- a/source/RenoirSt.package/Percentage.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/8/2017 18:57" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/ReflectiveCascadingStyleSheetBuilder.class/methodProperties.json b/source/RenoirSt.package/ReflectiveCascadingStyleSheetBuilder.class/methodProperties.json deleted file mode 100644 index 001a6c2..0000000 --- a/source/RenoirSt.package/ReflectiveCascadingStyleSheetBuilder.class/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "build" : "GabrielOmarCotelli 4/27/2017 15:08" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/String.extension/methodProperties.json b/source/RenoirSt.package/String.extension/methodProperties.json deleted file mode 100644 index 4ecfb6c..0000000 --- a/source/RenoirSt.package/String.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "cssContentOn:" : "GabrielOmarCotelli 2/24/2014 10:21" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/WriteStream.extension/methodProperties.json b/source/RenoirSt.package/WriteStream.extension/methodProperties.json deleted file mode 100644 index 8c8e3c4..0000000 --- a/source/RenoirSt.package/WriteStream.extension/methodProperties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "instance" : { - "newLine" : "GabrielOmarCotelli 10/28/2015 18:47" - }, - "class" : { } -} \ No newline at end of file diff --git a/source/RenoirSt.package/monticello.meta/version b/source/RenoirSt.package/monticello.meta/version deleted file mode 100644 index 4150bae..0000000 --- a/source/RenoirSt.package/monticello.meta/version +++ /dev/null @@ -1 +0,0 @@ -(name 'RenoirSt-GabrielOmarCotelli.50' message 'Add ReflectiveCascadingStyleSheetBuilder' id '3cc6709f-0000-0000-91ea-a5eb08f1fb7b' date '27 April 2017' time '3:11:28.938781 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.49' message 'Removed SharedPool uses because it eases porting.' id '10c4285a-cd08-0d00-9938-c94d0ef8e485' date '5 April 2017' time '10:46:11.17767 am' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.48' message 'Remove CssPercentage in favour of Percentage included in the dependencies.' id '915aada1-6f52-400b-a951-fb0e6b746831' date '8 February 2017' time '7:01:08.299068 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.47' message 'Removed CssInstanceCreationFailed ' id 'e2802d4b-95d7-4b1a-832d-4c76f06296a2' date '4 February 2017' time '10:10:52.475936 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-PedroAntonioLentini.46' message 'Issue #62 Add support for word-wrap property' id '05046216-3133-ac42-9925-d78732472267' date '13 January 2016' time '11:07:46.782214 am' author 'PedroAntonioLentini' ancestors ((name 'RenoirSt-GabrielOmarCotelli.45' message 'Issue #54 Add shortcuts for common heading levels.' id 'ee8818cf-4e86-0d45-8240-ed2db947b37b' date '28 October 2015' time '7:28:21.904421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.44' message 'Issue #49 Improve test cases to use and to ease porting' id '97a3c7f3-4ff5-0f4b-b287-6da879ab5e83' date '28 October 2015' time '7:10:23.738421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.43' message 'Issue #33 Implement @font-face rules and some font reference abstractions' id '4d2d6659-8d6f-4c45-a4c0-88c1bed4a412' date '28 October 2015' time '6:34:04.495421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.42' message '- Implement greaseString in CssDeclarationBlock to allow using it inlined as style: in an HTML element. - Changed URL default semantics and add extension to allow consideration as relative to the style sheet' id '35189da4-0316-e247-bc80-a74317b71f01' date '28 October 2015' time '4:57:17.015421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.41' message 'Issue #53 - Improve Attribute Reference with string fallbacks' id 'e8de8020-efe5-e544-9242-41b26af03927' date '28 October 2015' time '4:03:02.023421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.40' message '- Add conversion method in colors to provide an alpha value for an existing color - Fix Bug in HSLColor function name when alpha value was provided - Add some properties and constants' id '294c34ae-1f82-2544-b4ce-be3395c7ac98' date '28 October 2015' time '3:48:03.315421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.39' message 'Issue #61. Add a better abstraction for box shadows' id 'a758a41e-a170-3a4e-a668-7fd25e5940fc' date '28 October 2015' time '2:47:56.600421 pm' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.38' message 'Add "not" pseudoclass selector shortcut' id '5023c0b8-4468-1448-ba6f-4b86c6b6c7f7' date '28 October 2015' time '10:09:19.188421 am' author 'GabrielOmarCotelli' ancestors ((name 'RenoirSt-GabrielOmarCotelli.37' message 'Issue #40 - Gradient Support Addes support for linear-gradient(), radial-gradient(), repeating-linear-gradient(), repeating-radial-gradient() and some constants' id '4017af8d-c9c3-694b-8312-e9c0974132bc' date '14 April 2014' time '11:07:14.512813 am' author 'GabrielOmarCotelli' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file