Skip to content

Commit

Permalink
60473
Browse files Browse the repository at this point in the history
19968 Class rename do not mark extending packages dirty
	https://pharo.fogbugz.com/f/cases/19968

19987 Bad highlight for matching parentheses with dark theme
	https://pharo.fogbugz.com/f/cases/19987

19995 Fix typo in testIsNativeSSLPluginPresent
	https://pharo.fogbugz.com/f/cases/19995

19996 Cleanup FFIConstants
	https://pharo.fogbugz.com/f/cases/19996

http://files.pharo.org/image/60/60473.zip
  • Loading branch information
Jenkins Build Server authored and ci committed Apr 27, 2017
1 parent f71be96 commit 7d63a4a
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 40 deletions.
2 changes: 1 addition & 1 deletion FFI-Pools.package/FFIConstants.class/README.md
@@ -1 +1 @@
Please comment me using the following template inspired by Class Responsibility Collaborator (CRC) design:For the Class part: State a one line summary. For example, "I represent a paragraph of text".For the Responsibility part: Three sentences about my main responsibilities - what I do, what I know.For the Collaborators Part: State my main collaborators and one line about how I interact with them. Public API and Key Messages- message one - message two - (for bonus points) how to create instances. One simple example is simply gorgeous. Internal Representation and Key Implementation Points. Implementation Points
Constants definitions for FFI
@@ -1,5 +1,7 @@
initialize
"FFIConstants initialize"
self initializeTypeConstants.
self initializeErrorConstants.
self initializeCallingConventions.

self
initializeTypeConstants;
initializeErrorConstants;
initializeCallingConventions
@@ -1,7 +1,8 @@
registerInterestOnSystemChangesOnAnnouncer: anAnnouncer
anAnnouncer weak
when: RPackageRenamed send: #packageRenamed: to: self;
when: ClassAdded, ClassModifiedClassDefinition, ClassRenamed, ClassCommented , ClassParentRenamed send: #classModified: to: self;
when: ClassAdded, ClassModifiedClassDefinition, ClassCommented , ClassParentRenamed send: #classModified: to: self;
when: ClassRenamed send:#classRenamed: to:self;
when: ClassRepackaged send: #classMoved: to: self;
when: ClassRemoved send: #classRemoved: to: self;
when: MethodAdded, MethodModified, MethodRecategorized send: #methodModified: to: self;
Expand Down
@@ -0,0 +1,4 @@
classRenamed: anEvent
self classModified: anEvent.
anEvent classAffected extendingPackages
do: [ :pkg | self managersForPackage: pkg do: [ :mgr | mgr modified: true ] ]
Expand Up @@ -17,4 +17,4 @@ drawOn: aCanvas
rect privateSetCorner: rect corner + (1 @ 1).
rect privateSetOrigin: rect origin + (-1 @ 0).
aCanvas fillRectangle: rect color: RubTextSelectionColor oppositeDelimiterSelection backgroundColor.
aCanvas frameRectangle: rect color: Color black
aCanvas frameRectangle: rect color: RubTextSelectionColor oppositeDelimiterSelection textColor
@@ -1,8 +1,7 @@
oppositeDelimiterSelection
^ OppositeDelimiterSelection
ifNil: [
OppositeDelimiterSelection := RubTextSelectionColor new
colorBlock: [ Color black ];
backgroundColorBlock: [ Color green muchLighter ];
emphasisCode: 0;
OppositeDelimiterSelection := self new
colorBlock: [ self theme currentSettings selectionTextColor ];
backgroundColorBlock: [ self theme currentSettings secondarySelectionColor ];
yourself ]
@@ -1,4 +1,4 @@
script60472
script60473

^ 'AST-Core-TheIntegrator.494.mcz
AST-Tests-Core-TheIntegrator.134.mcz
Expand Down Expand Up @@ -65,7 +65,7 @@ EpiceaBrowsers-MartinDias.177.mcz
EpiceaBrowsersTests-MartinDias.30.mcz
EpiceaTests-MartinDias.24.mcz
FFI-Kernel-EstebanLorenzano.45.mcz
FFI-Pools-eem.3.mcz
FFI-Pools-TheIntegrator.5.mcz
FileSystem-Core-TheIntegrator.220.mcz
FileSystem-Disk-TheIntegrator.106.mcz
FileSystem-Memory-TheIntegrator.61.mcz
Expand Down Expand Up @@ -186,7 +186,7 @@ Metacello-TestsPlatform-TheIntegrator.25.mcz
Metacello-TestsReference-EstebanLorenzano.22.mcz
Metacello-ToolBox-TheIntegrator.154.mcz
Metacello-Tutorial-EstebanLorenzano.28.mcz
Monticello-TheIntegrator.1175.mcz
Monticello-TheIntegrator.1177.mcz
Monticello-OldDataStreamCompatibility-TheIntegrator.10.mcz
Monticello-Tests-TheIntegrator.42.mcz
MonticelloConfigurations-TheIntegrator.74.mcz
Expand Down Expand Up @@ -297,7 +297,7 @@ Ring-Tests-Containers-MarcusDenker.18.mcz
Ring-Tests-Kernel-TheIntegrator.95.mcz
Ring-Tests-Monticello-MarcusDenker.19.mcz
RingChunkImporter-TheIntegrator.8.mcz
Rubric-TheIntegrator.446.mcz
Rubric-TheIntegrator.448.mcz
Rubric-Rules-TheIntegrator.6.mcz
Rubric-Styling-TheIntegrator.11.mcz
Rubric-Tests-TheIntegrator.10.mcz
Expand Down Expand Up @@ -440,5 +440,5 @@ Zinc-Tests-SvenVanCaekenberghe.238.mcz
Zinc-Zodiac-TheIntegrator.38.mcz
Zodiac-Core-TheIntegrator.46.mcz
Zodiac-Extra-StephaneDucasse.10.mcz
Zodiac-Tests-TheIntegrator.15.mcz'
Zodiac-Tests-TheIntegrator.17.mcz'
findTokens: String lf , String cr

This file was deleted.

@@ -0,0 +1,17 @@
update60473
"self new update60473"
self withUpdateLog: '19968 Class rename do not mark extending packages dirty
https://pharo.fogbugz.com/f/cases/19968
19987 Bad highlight for matching parentheses with dark theme
https://pharo.fogbugz.com/f/cases/19987
19995 Fix typo in testIsNativeSSLPluginPresent
https://pharo.fogbugz.com/f/cases/19995
19996 Cleanup FFIConstants
https://pharo.fogbugz.com/f/cases/19996'.
self loadTogether: self script60473 merge: false.

MCWorkingCopy registerForNotifications.
self flushCaches.
@@ -1,12 +1,12 @@
commentForCurrentUpdate
^ '19992 Use assert:equals: in simulateKeyStroke tests
https://pharo.fogbugz.com/f/cases/19992
^ '19968 Class rename do not mark extending packages dirty
https://pharo.fogbugz.com/f/cases/19968
19463 Improve SessionManager class comment
https://pharo.fogbugz.com/f/cases/19463
19987 Bad highlight for matching parentheses with dark theme
https://pharo.fogbugz.com/f/cases/19987
19983 activate the Dark theme by default in the bootstrapped image
https://pharo.fogbugz.com/f/cases/19983
19995 Fix typo in testIsNativeSSLPluginPresent
https://pharo.fogbugz.com/f/cases/19995
19991 Use of deprecated name method in TextEditor>>changeStyle
https://pharo.fogbugz.com/f/cases/19991'
19996 Cleanup FFIConstants
https://pharo.fogbugz.com/f/cases/19996'
@@ -1,6 +1,6 @@
testIsNativeSSLPluginPresent
"This test succeeds when the SSL VM plugin can be instanciated and intialized."
"This test succeeds when the SSL VM plugin can be instantiated and intialized."

self
assert: self isNativeSSLPluginPresent
description: 'It seems that the native VM SSL plugin cannot be instanciated and initialized. (VM plugin missing ? OS libraries missing ?)'
description: 'It seems that the native VM SSL plugin cannot be instantiated and initialized. (VM plugin missing ? OS libraries missing ?)'

0 comments on commit 7d63a4a

Please sign in to comment.