Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14075021
D19305.id46204.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
D19305.id46204.diff
View Options
diff --git a/resources/celerity/map.php b/resources/celerity/map.php
--- a/resources/celerity/map.php
+++ b/resources/celerity/map.php
@@ -473,7 +473,7 @@
'rsrc/js/core/behavior-keyboard-pager.js' => 'a8da01f0',
'rsrc/js/core/behavior-keyboard-shortcuts.js' => '01fca1f0',
'rsrc/js/core/behavior-lightbox-attachments.js' => '6b31879a',
- 'rsrc/js/core/behavior-line-linker.js' => '13e39479',
+ 'rsrc/js/core/behavior-line-linker.js' => 'febf4ae7',
'rsrc/js/core/behavior-more.js' => 'a80d0378',
'rsrc/js/core/behavior-object-selector.js' => '77c1f0b0',
'rsrc/js/core/behavior-oncopy.js' => '2926fff2',
@@ -638,7 +638,7 @@
'javelin-behavior-phabricator-gesture-example' => '558829c2',
'javelin-behavior-phabricator-keyboard-pager' => 'a8da01f0',
'javelin-behavior-phabricator-keyboard-shortcuts' => '01fca1f0',
- 'javelin-behavior-phabricator-line-linker' => '13e39479',
+ 'javelin-behavior-phabricator-line-linker' => 'febf4ae7',
'javelin-behavior-phabricator-nav' => '836f966d',
'javelin-behavior-phabricator-notification-example' => '8ce821c5',
'javelin-behavior-phabricator-object-selector' => '77c1f0b0',
@@ -964,12 +964,6 @@
'javelin-install',
'javelin-util',
),
- '13e39479' => array(
- 'javelin-behavior',
- 'javelin-stratcom',
- 'javelin-dom',
- 'javelin-history',
- ),
'15d5ff71' => array(
'aphront-typeahead-control-css',
'phui-tag-view-css',
@@ -2174,6 +2168,12 @@
'javelin-view-visitor',
'javelin-util',
),
+ 'febf4ae7' => array(
+ 'javelin-behavior',
+ 'javelin-stratcom',
+ 'javelin-dom',
+ 'javelin-history',
+ ),
),
'packages' => array(
'conpherence.pkg.css' => array(
diff --git a/src/aphront/AphrontRequest.php b/src/aphront/AphrontRequest.php
--- a/src/aphront/AphrontRequest.php
+++ b/src/aphront/AphrontRequest.php
@@ -61,6 +61,10 @@
*/
public function getURILineRange($key, $limit) {
$range = $this->getURIData($key);
+ return self::parseURILineRange($range, $limit);
+ }
+
+ public static function parseURILineRange($range, $limit) {
if (!strlen($range)) {
return null;
}
diff --git a/src/applications/diffusion/document/DiffusionDocumentRenderingEngine.php b/src/applications/diffusion/document/DiffusionDocumentRenderingEngine.php
--- a/src/applications/diffusion/document/DiffusionDocumentRenderingEngine.php
+++ b/src/applications/diffusion/document/DiffusionDocumentRenderingEngine.php
@@ -14,10 +14,6 @@
return $this->diffusionRequest;
}
- protected function getSelectedDocumentEngineKey() {
- return $this->getRequest()->getStr('as');
- }
-
protected function newRefViewURI(
PhabricatorDocumentRef $ref,
PhabricatorDocumentEngine $engine) {
@@ -58,6 +54,15 @@
));
}
+ protected function getSelectedDocumentEngineKey() {
+ return $this->getRequest()->getStr('as');
+ }
+
+ protected function getSelectedLineRange() {
+ $range = $this->getDiffusionRequest()->getLine();
+ return AphrontRequest::parseURILineRange($range, 1000);
+ }
+
protected function addApplicationCrumbs(
PHUICrumbsView $crumbs,
PhabricatorDocumentRef $ref = null) {
diff --git a/src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php b/src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php
--- a/src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php
+++ b/src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php
@@ -54,7 +54,7 @@
}
$engine = $engines[$engine_key];
- $lines = $request->getURILineRange('lines', 1000);
+ $lines = $this->getSelectedLineRange();
if ($lines) {
$engine->setHighlightedLines(range($lines[0], $lines[1]));
}
@@ -157,18 +157,6 @@
->appendChild($viewport);
}
- abstract protected function newRefViewURI(
- PhabricatorDocumentRef $ref,
- PhabricatorDocumentEngine $engine);
-
- abstract protected function newRefRenderURI(
- PhabricatorDocumentRef $ref,
- PhabricatorDocumentEngine $engine);
-
- protected function getSelectedDocumentEngineKey() {
- return $this->getRequest()->getURIData('engineKey');
- }
-
final public function newRenderResponse(PhabricatorDocumentRef $ref) {
$request = $this->getRequest();
$viewer = $request->getViewer();
@@ -280,6 +268,22 @@
return $crumbs;
}
+ abstract protected function newRefViewURI(
+ PhabricatorDocumentRef $ref,
+ PhabricatorDocumentEngine $engine);
+
+ abstract protected function newRefRenderURI(
+ PhabricatorDocumentRef $ref,
+ PhabricatorDocumentEngine $engine);
+
+ protected function getSelectedDocumentEngineKey() {
+ return $this->getRequest()->getURIData('engineKey');
+ }
+
+ protected function getSelectedLineRange() {
+ return $this->getRequest()->getURILineRange('lines', 1000);
+ }
+
protected function addApplicationCrumbs(
PHUICrumbsView $crumbs,
PhabricatorDocumentRef $ref = null) {
diff --git a/webroot/rsrc/js/core/behavior-line-linker.js b/webroot/rsrc/js/core/behavior-line-linker.js
--- a/webroot/rsrc/js/core/behavior-line-linker.js
+++ b/webroot/rsrc/js/core/behavior-line-linker.js
@@ -144,9 +144,14 @@
var o = getRowNumber(origin);
var t = getRowNumber(target);
var uri = JX.Stratcom.getData(root).uri;
+ var path;
if (!uri) {
- uri = ('' + window.location).split('$')[0];
+ uri = JX.$U(window.location);
+ path = uri.getPath();
+ path = path.replace(/\$[\d-]+$/, '');
+ uri.setPath(path);
+ uri = uri.toString();
}
origin = null;
@@ -154,7 +159,11 @@
root = null;
var lines = (o == t ? o : Math.min(o, t) + '-' + Math.max(o, t));
- uri = uri + '$' + lines;
+
+ uri = JX.$U(uri);
+ path = uri.getPath();
+ path = path + '$' + lines;
+ uri = uri.setPath(path).toString();
JX.History.replace(uri);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 22, 9:33 AM (12 h, 5 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6774302
Default Alt Text
D19305.id46204.diff (5 KB)
Attached To
Mode
D19305: Fix DocumentEngine line behaviors in Diffusion
Attached
Detach File
Event Timeline
Log In to Comment