@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.

Display file name in <title> for easier browsing of code

Summary:
Having the filename in the <title> will make it easier to browse through many
many tabs of diffusion

Test Plan:
Open up a file or directory in diffusion and ensure that it shows only the file
name.

Reviewed By: tuomaspelkonen
Reviewers: epriestley, tuomaspelkonen, jungejason
Commenters: epriestley
CC: epriestley, aizatto, tuomaspelkonen
Differential Revision: 150

+3 -1
+3 -1
src/applications/diffusion/controller/file/DiffusionBrowseFileController.php
··· 83 83 $nav = $this->buildSideNav('browse', true); 84 84 $nav->appendChild($content); 85 85 86 + $basename = basename($this->getDiffusionRequest()->getPath()); 87 + 86 88 return $this->buildStandardPageResponse( 87 89 $nav, 88 90 array( 89 - 'title' => 'Browse', 91 + 'title' => $basename, 90 92 )); 91 93 } 92 94