@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make links to hidden comments work (Fixes T11117)

Summary: This Fixes T11117.

Test Plan:
- Ran `bin/celerity map`
- Followed STR in T11117.
- Now it works.

Reviewers: epriestley, #blessed_reviewers, chad

Reviewed By: epriestley, #blessed_reviewers, chad

Subscribers: chad, Korvin

Maniphest Tasks: T11117

Differential Revision: https://secure.phabricator.com/D16256

+11 -9
+9 -9
resources/celerity/map.php
··· 8 8 return array( 9 9 'names' => array( 10 10 'core.pkg.css' => '4e7e9bde', 11 - 'core.pkg.js' => '1bcca0f3', 11 + 'core.pkg.js' => '13c7e56a', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '3e81ae60', 14 14 'differential.pkg.js' => '634399e9', ··· 439 439 'rsrc/js/application/transactions/behavior-comment-actions.js' => '06460e71', 440 440 'rsrc/js/application/transactions/behavior-reorder-configs.js' => 'd7a74243', 441 441 'rsrc/js/application/transactions/behavior-reorder-fields.js' => 'b59e1e96', 442 - 'rsrc/js/application/transactions/behavior-show-older-transactions.js' => 'dbbf48b6', 442 + 'rsrc/js/application/transactions/behavior-show-older-transactions.js' => '94c65b72', 443 443 'rsrc/js/application/transactions/behavior-transaction-comment-form.js' => 'b23b49e6', 444 444 'rsrc/js/application/transactions/behavior-transaction-list.js' => '13c739ea', 445 445 'rsrc/js/application/typeahead/behavior-typeahead-browse.js' => '635de1ec', ··· 663 663 'javelin-behavior-phabricator-remarkup-assist' => '116cf19b', 664 664 'javelin-behavior-phabricator-reveal-content' => '60821bc7', 665 665 'javelin-behavior-phabricator-search-typeahead' => '06c32383', 666 - 'javelin-behavior-phabricator-show-older-transactions' => 'dbbf48b6', 666 + 'javelin-behavior-phabricator-show-older-transactions' => '94c65b72', 667 667 'javelin-behavior-phabricator-tooltips' => '42fcb747', 668 668 'javelin-behavior-phabricator-transaction-comment-form' => 'b23b49e6', 669 669 'javelin-behavior-phabricator-transaction-list' => '13c739ea', ··· 1655 1655 'javelin-resource', 1656 1656 'javelin-routable', 1657 1657 ), 1658 + '94c65b72' => array( 1659 + 'javelin-behavior', 1660 + 'javelin-stratcom', 1661 + 'javelin-dom', 1662 + 'phabricator-busy', 1663 + ), 1658 1664 '988040b4' => array( 1659 1665 'javelin-install', 1660 1666 'javelin-dom', ··· 2013 2019 'javelin-dom', 2014 2020 'javelin-util', 2015 2021 'phabricator-shaped-request', 2016 - ), 2017 - 'dbbf48b6' => array( 2018 - 'javelin-behavior', 2019 - 'javelin-stratcom', 2020 - 'javelin-dom', 2021 - 'phabricator-busy', 2022 2022 ), 2023 2023 'de2e896f' => array( 2024 2024 'javelin-behavior',
+2
webroot/rsrc/js/application/transactions/behavior-show-older-transactions.js
··· 97 97 JX.Router.getInstance().queue(routable); 98 98 }); 99 99 100 + JX.Stratcom.listen('hashchange', null, check_hash); 101 + 100 102 check_hash(); 101 103 102 104 new JX.KeyboardShortcut(['@'], 'Show all older changes in the timeline.')