I'm using the last core image(12271). And I forget to say that the attached
changeset should be included (I uploaded it to the inbox an hour ago).
On Tue, Dec 7, 2010 at 5:28 PM, Tudor Girba <[email protected]> wrote:
> Hi,
>
> It does not seem to work :(. I gave it a try in the Moose hudson for 1.2:
>
> http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/53/console
>
> It is true that I used a 12251 Core image. What am I doing wrong?
>
> Cheers,
> Doru
>
>
>
> On 7 Dec 2010, at 20:42, Guillermo Polito wrote:
>
> > Ok, I've done some fixes to OB and OC, and committed them to
> PharoTaskForces as a temporary solution.
> >
> > To load current configuration:
> >
> > Gofer it squeaksource: 'MetacelloRepository';
> > package: 'ConfigurationOfPharo';
> > load.
> >
> > (ConfigurationOfPharo project version: '1.2-beta2') load.
> >
> > Can Hudson help us in building Dev images?
> >
> > Cheers
> >
> > PS: I've noticed a little bug in OB, I attach a screenshot.
> >
> > On Tue, Dec 7, 2010 at 3:36 AM, Alain Plantec <[email protected]>
> wrote:
> > Le 07/12/2010 07:04, Guillermo Polito a écrit :
> >
> > Well I've gone very far by now :).
> >
> > I created a configuration that at least loads :P.
> >
> > There are two problems so far:
> >
> > 1) ECompletion + TextEditor. ECompletion sends #model to TextEditor and
> It does not understands it. It is easily fixed adding the accessor.
> > 2) Opening an omnibrowser throws a MessageNotUnderstood:
> TextMorphForShoutEditor>>findText. Which I will have a look tomorrow.
> >
> > See issue 3288, there is a .cs for that I guess.
> > 3288 <http://code.google.com/p/pharo/issues/detail?id=3288>
> >
> > Cheers
> > Alain
> >
> >
> > The version of ConfigurationOfPharo is 1.2-beta2
> >
> > I've to sleep now :).
> > Tomorrow I'll open an issue for 1) if everyone agrees. With whom should
> I talk to get 2) fixed? Lukas, Alain?
> >
> > Cheers!
> >
> >
> >
> > <PharoScreenshot.1.png>
>
> --
> www.tudorgirba.com
>
> "Beauty is where we see it."
>
>
>
>
>
'From Pharo1.2a of ''11 June 2010'' [Latest update: #12271] on 7 December 2010
at 2:47:16 am'!
!TextEditor methodsFor: 'model access' stamp: 'GuillermoPolito 12/7/2010 02:46'!
model
^model! !
!TextEditor reorganize!
('accessing' currentCharacterStyleOrNil currentParagraphStyle editingState
editingStateClass emphasisHere findRegex findText:isRegex: lastFont
lastParagraphStyle replace:with:and: replaceSelectionWith: string text
textStyle transformFrom:)
('accessing-selection' hasCaret markBlock markIndex markIndex: pointBlock
pointIndex pointIndex: selection selectionAsStream startBlock startIndex
stopBlock stopIndex unselect)
('as yet unclassified' totalTextHeight visibleHeight)
('attributes' changeEmphasisOrAlignment changeStyle changeTextFont
offerFontMenu)
('binding' bindingOf:)
('current selection' recomputeInterval recomputeSelection reverseSelection)
('deprecated' offerMenuFromEsc:)
('displaying' flash)
('editing keys' align: blankParagraph cancel: changeEmphasis: changeLfToCr:
chooseColor compareToClipboard: copyHiddenInfo duplicate: enclose: exchange:
handleDisabledKey: hiddenInfo inOutdent:delta: indent: initialize
makeCapitalized: makeLowercase: makeUppercase: offerFontMenu: outdent: redo:
shiftEnclose: swapChars: undo:)
('events' doubleClick: focused: mouseDown: mouseMove: mouseUp:)
('find-select' findAll:endingAt: findAll:startingAt:
findAndSelect:startingAt:searchBackwards: findAndSelectNextOccurenceOf:
findAndSelectPreviousOccurenceOf: findNext:startingAt:
findNextString:startingAt: findPrevious:startingAt: findReplaceService findText
findText: replaceAll:with: replaceAll:with:startingAt:)
('initialize-release' changeParagraph: resetState stateArray stateArrayPut:)
('menu messages' accept accept: again align cancel changeAlignment
chooseAlignment compareToClipboard copySelection exchange find findAgain
findAgainAndReplace paste pasteRecent redo saveContentsInFile setSearch:
setSearchString setSelectorSearch: undo yellowButtonActivity)
('model access' model model:)
('mvc compatibility' storeSelectionInParagraph zapSelectionWith:)
('new selection' afterSelectionInsertAndSelect: correctFrom:to:with:
insertAndSelect:at: selectFrom:to: selectLine)
('nonediting/nontyping keys' cursorEnd: cursorHome: raiseContextMenu:
selectCurrentTypeIn: setSearchString:)
('parenblinking' blinkParen blinkParenAt: blinkPrevParen: clearParens
unapplyAttribute:)
('pluggable menus' pluggableYellowButtonActivity: shiftedTextPaneMenuRequest)
('scrolling' scrollBy:)
('settings' caseSensitiveFinds walkAlongDisplayedLine)
('testing' isTextEditor)
('typing support' addString: backTo: closeTypeIn dispatchOn: doneTyping
keystroke: openTypeIn processKeyStroke: setEmphasisHereFromText
setEmphasisHereFromTextForward: startOfTyping startOfTyping:)
('typing/selecting keys' backspace: changeStyle: crWithIndent: doAgainMany:
find: findAgain: forwardDelete: normalCharacter: search:)
('undo-redo private' addDeleteSelectionUndoRecord addTypeInUndoRecord
clearUndoManager: exploreUndoManager:)
('undoers-redoers' redoTypeIn:interval: undoRedoExchange:with:
undoTypeIn:interval:)
('private' applyAttribute: cut encompassParagraph: exchangeWith:
findText:isRegex:caseSensitive:entireWordsOnly:
findText:isRegex:entireWordsOnly: getPluggableYellowButtonMenu:
indent:fromStream:toStream: isDisjointFrom:
moveCursor:forward:specialBlock:event: nullText pageHeight paragraph
sameColumn:newLine:forward: setEmphasisHere
unapplyAttributesThat:fromWholeParagraph:)
!