Skip to content

Commit

Permalink
Revert xhanges from ubccr#1031 now that trello fixed their backend
Browse files Browse the repository at this point in the history
  • Loading branch information
plessbd committed Oct 22, 2019
1 parent 6b97907 commit 2f11370
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ class ConfigFilesMigration extends AbstractConfigFilesMigration
public function execute()
{
$this->assertPortalSettingsIsWritable();
$this->writePortalSettingsFile();
$data = parse_ini_file($this->portalSettingsPath, true);
$roadmapUrl = 'https://trello.com/b/mdFESh6j.html';
if('https://trello.com/embed/board?id=mdFESh6j' !== $data['roadmap']['url']){
$roadmapUrl = $data['roadmap']['url'];
}
$this->writePortalSettingsFile(
array_merge(
['roadmap_url' => $roadmapUrl]
)
);
}
}
2 changes: 1 addition & 1 deletion configuration/portal_settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dw_desc_cache = "off"

; Settings that control the "Roadmap" action on the "About" tab.
[roadmap]
url = "https://trello.com/embed/board?id=mdFESh6j"
url = "https://trello.com/b/mdFESh6j.html"
header = "Located below is the XDMoD Development roadmap, organized by XDMoD release and powered by Trello.com. To view the full roadmap as well as vote and comment on features click any one of the elements on the roadmap. This will take you to the full roadmap on the Trello.com site in a new browser window (or tab). All users will be able to view the roadmap, however if you wish to vote or comment on a feature you will need to create a (free) Trello account if you do not already have one."

[rest]
Expand Down
3 changes: 2 additions & 1 deletion tests/ui/test/specs/xdmod/about.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class About {
expect(err).to.be.a('undefined');
expect(result).to.not.be.a('null');
});
browser.waitForExist('.board-tile-container', 30000);
browser.waitForExist('.trello-lists', 30000);
browser.waitForText('.trello-lists', 30000);
browser.frameParent();
}

Expand Down

0 comments on commit 2f11370

Please sign in to comment.