From 5ad652f25b740974acbda5b5b81c1a00ecce67ed Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 26 Jul 2020 13:23:45 -0500 Subject: [PATCH] Testing Norbert's add-all-future branch. --- repository/BaselineOfBrea/BaselineOfBrea.class.st | 2 +- repository/Brea/BreaWikiPage.class.st | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/BaselineOfBrea/BaselineOfBrea.class.st b/repository/BaselineOfBrea/BaselineOfBrea.class.st index ca332c9..5335ae2 100644 --- a/repository/BaselineOfBrea/BaselineOfBrea.class.st +++ b/repository/BaselineOfBrea/BaselineOfBrea.class.st @@ -19,7 +19,7 @@ BaselineOfBrea >> baseline: spec [ spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache/repository' ]; - baseline: 'TaskIt' with: [ spec repository: 'github://pharo-contributions/taskit' ]. + baseline: 'TaskIt' with: [ spec repository: 'github://noha/taskit:add-all-future' ]. "Packages" spec package: 'Brea' with: [ spec requires: #('NeoJSON' 'Mustache' 'TaskIt') ]. diff --git a/repository/Brea/BreaWikiPage.class.st b/repository/Brea/BreaWikiPage.class.st index dfd8aee..2e6471e 100644 --- a/repository/Brea/BreaWikiPage.class.st +++ b/repository/Brea/BreaWikiPage.class.st @@ -54,7 +54,7 @@ BreaWikiPage >> populateBodyAs: key [ | allActions result | allActions := TKTFuture all: { [self bodyContentsAsHTML] future. - [ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ] + [ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ] future }. allActions onSuccessDo: [ :values | result := values ].