2016-03-04 17:48:22 -05:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2015 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<link rel="import" href="../../../bower_components/polymer/polymer.html">
|
2017-08-03 15:16:20 -07:00
|
|
|
<link rel="import" href="../../../behaviors/gr-patch-set-behavior/gr-patch-set-behavior.html">
|
Weblinks API for embedded scenario using Gerrit.Nav interface
Gerrit.Nav.setup() now takes a weblinks generator function as a third
parameter. Here's the function signature:
``` js
Gerrit.Nav.setup(navigate, generateUrl, generateWeblinks)
```
Weblinks generator function takes single payload parameter with
`type` property that determines which part of the UI is the consumer of
the weblinks. `type` property can be one of `file`, `change`, or
`patchset`.
For `file` type, payload will also contain string properties:
`repo`, `commit`, `file`.
For `pachset` type, payload will also contain string properties:
`repo`, `commit`.
For `change` type, payload will also contain string properties:
`repo`, `commit`.
If server provides weblinks, those will be passed as `options.weblinks`
property on the main payload object.
Change-Id: I0d9de3a295435304e2b6aad551112440075cf098
2017-11-10 16:03:13 -08:00
|
|
|
<link rel="import" href="../../../styles/shared-styles.html">
|
2018-02-13 16:31:10 -08:00
|
|
|
<link rel="import" href="../../core/gr-reporting/gr-reporting.html">
|
2016-03-04 17:48:22 -05:00
|
|
|
<link rel="import" href="../../shared/gr-button/gr-button.html">
|
2016-03-05 19:20:09 -05:00
|
|
|
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
|
2016-06-01 11:41:47 -07:00
|
|
|
<link rel="import" href="../gr-diff-builder/gr-diff-builder.html">
|
2016-06-09 16:39:17 -07:00
|
|
|
<link rel="import" href="../gr-diff-comment-thread/gr-diff-comment-thread.html">
|
2016-06-10 12:47:57 -07:00
|
|
|
<link rel="import" href="../gr-diff-highlight/gr-diff-highlight.html">
|
2016-06-09 16:39:17 -07:00
|
|
|
<link rel="import" href="../gr-diff-selection/gr-diff-selection.html">
|
2016-07-25 22:23:14 -07:00
|
|
|
<link rel="import" href="../gr-syntax-themes/gr-theme-default.html">
|
2016-03-04 17:48:22 -05:00
|
|
|
|
2017-05-12 11:24:31 -07:00
|
|
|
<script src="../../../scripts/hiddenscroll.js"></script>
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
<dom-module id="gr-diff">
|
|
|
|
<template>
|
2017-06-01 15:31:55 -07:00
|
|
|
<style include="shared-styles">
|
2016-03-25 16:48:13 -04:00
|
|
|
:host {
|
|
|
|
--light-remove-highlight-color: #fee;
|
2016-10-18 18:18:00 -07:00
|
|
|
--dark-remove-highlight-color: rgba(255, 0, 0, 0.15);
|
2016-03-25 16:48:13 -04:00
|
|
|
--light-add-highlight-color: #efe;
|
2016-10-18 18:18:00 -07:00
|
|
|
--dark-add-highlight-color: rgba(0, 255, 0, 0.15);
|
2017-05-05 17:48:31 +02:00
|
|
|
--light-rebased-remove-highlight-color: #fff6ea;
|
|
|
|
--dark-rebased-remove-highlight-color: rgba(255, 139, 6, 0.15);
|
|
|
|
--light-rebased-add-highlight-color: #edfffa;
|
|
|
|
--dark-rebased-add-highlight-color: rgba(11, 255, 155, 0.15);
|
2016-03-25 16:48:13 -04:00
|
|
|
}
|
2017-06-05 14:40:54 -07:00
|
|
|
:host(.no-left) .sideBySide ::content .left,
|
|
|
|
:host(.no-left) .sideBySide ::content .left + td,
|
|
|
|
:host(.no-left) .sideBySide ::content .right:not([data-value]),
|
|
|
|
:host(.no-left) .sideBySide ::content .right:not([data-value]) + td {
|
2016-08-10 11:53:12 -07:00
|
|
|
display: none;
|
|
|
|
}
|
2016-03-04 17:48:22 -05:00
|
|
|
.diffContainer {
|
|
|
|
display: flex;
|
Respect default font size preference from browsers
We encountered an issue where PolyGerrit was not respecting browser
font preferences. Browser font preferences include both a default font
size and a minimum font size.
In the event that a font declared in px is smaller than the minimum font
size, the size is increased to equal the minimum font size. However,
if the font is declared in px and greater than the minimum, the
preferred font size is not taken into account.
Browsers' default font size is 16px [1], So instead of declaring the
base font in px (previously 13px), this change makes it a percentage
of the default font size. If the user has changed their default, this
is taken into account.
From this point, all other fonts will be declared in rems, which makes
it easier to base the new size off of the base font size of the <html>
tag, rather than ems which bases it on the container[2]. This allows us
to declare font sizes in a way more similar to pixels, yet relative.
A follow-up change will change all font size declaration to use rem from
em for consistency.
[1] https://stackoverflow.com/questions/29511983/is-the-default-font-size-of-every-browser-16px-why
[2] https://webdesign.tutsplus.com/tutorials/comprehensive-guide-when-to-use-em-vs-rem--cms-23984
Bug: Issue 8157
Change-Id: I04ec2c861b2fb288ec7556dfb655d7feea9c9157
2018-01-26 13:49:01 -08:00
|
|
|
font: var(--font-size-small) var(--monospace-font-family);
|
2017-11-28 15:49:20 -08:00
|
|
|
@apply --diff-container-styles;
|
2016-03-04 17:48:22 -05:00
|
|
|
}
|
2017-05-12 11:24:31 -07:00
|
|
|
.diffContainer.hiddenscroll {
|
|
|
|
padding-bottom: .8em;
|
|
|
|
}
|
2016-03-25 16:48:13 -04:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
2016-03-04 17:48:22 -05:00
|
|
|
border-right: 1px solid #ddd;
|
2016-08-05 15:56:33 -07:00
|
|
|
table-layout: fixed;
|
2016-03-04 17:48:22 -05:00
|
|
|
}
|
2016-06-09 16:39:17 -07:00
|
|
|
.lineNum {
|
2016-03-25 16:48:13 -04:00
|
|
|
background-color: #eee;
|
|
|
|
}
|
2016-05-23 17:18:43 -07:00
|
|
|
.image-diff .gr-diff {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.image-diff img {
|
|
|
|
max-width: 50em;
|
|
|
|
outline: 1px solid #ccc;
|
|
|
|
}
|
2017-11-27 10:07:44 -08:00
|
|
|
.image-diff label,
|
|
|
|
.binary-diff label {
|
2016-05-23 17:18:43 -07:00
|
|
|
font-family: var(--font-family);
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2017-06-06 16:59:22 -07:00
|
|
|
.diff-row {
|
|
|
|
outline: none;
|
|
|
|
}
|
2016-05-16 14:40:51 -07:00
|
|
|
.diff-row.target-row.target-side-left .lineNum.left,
|
|
|
|
.diff-row.target-row.target-side-right .lineNum.right,
|
|
|
|
.diff-row.target-row.unified .lineNum {
|
2016-05-19 14:50:43 -07:00
|
|
|
background-color: #BBDEFB;
|
|
|
|
color: #000;
|
2016-05-16 14:40:51 -07:00
|
|
|
}
|
2016-03-25 16:48:13 -04:00
|
|
|
.blank,
|
|
|
|
.content {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2016-10-31 14:35:35 -07:00
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-11-02 17:57:16 -07:00
|
|
|
.full-width .contentText {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2016-03-25 16:48:13 -04:00
|
|
|
.lineNum,
|
|
|
|
.content {
|
2016-10-31 14:35:35 -07:00
|
|
|
/* Set font size based the user's diff preference. */
|
Respect default font size preference from browsers
We encountered an issue where PolyGerrit was not respecting browser
font preferences. Browser font preferences include both a default font
size and a minimum font size.
In the event that a font declared in px is smaller than the minimum font
size, the size is increased to equal the minimum font size. However,
if the font is declared in px and greater than the minimum, the
preferred font size is not taken into account.
Browsers' default font size is 16px [1], So instead of declaring the
base font in px (previously 13px), this change makes it a percentage
of the default font size. If the user has changed their default, this
is taken into account.
From this point, all other fonts will be declared in rems, which makes
it easier to base the new size off of the base font size of the <html>
tag, rather than ems which bases it on the container[2]. This allows us
to declare font sizes in a way more similar to pixels, yet relative.
A follow-up change will change all font size declaration to use rem from
em for consistency.
[1] https://stackoverflow.com/questions/29511983/is-the-default-font-size-of-every-browser-16px-why
[2] https://webdesign.tutsplus.com/tutorials/comprehensive-guide-when-to-use-em-vs-rem--cms-23984
Bug: Issue 8157
Change-Id: I04ec2c861b2fb288ec7556dfb655d7feea9c9157
2018-01-26 13:49:01 -08:00
|
|
|
font-size: var(--font-size, var(--font-size-small));
|
2016-03-25 16:48:13 -04:00
|
|
|
vertical-align: top;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
2018-02-09 13:34:56 -08:00
|
|
|
.contextLineNum,
|
|
|
|
.lineNum {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
|
2016-03-25 16:48:13 -04:00
|
|
|
color: #666;
|
2017-04-19 16:12:56 -07:00
|
|
|
padding: 0 .5em;
|
2016-03-25 16:48:13 -04:00
|
|
|
text-align: right;
|
|
|
|
}
|
2018-02-09 13:34:56 -08:00
|
|
|
.canComment .lineNum {
|
2016-03-25 16:48:13 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
overflow: hidden;
|
2016-04-02 21:53:35 -04:00
|
|
|
/* Set max and min width since setting width on table cells still
|
|
|
|
allows them to shrink. */
|
|
|
|
max-width: var(--content-width, 80ch);
|
|
|
|
min-width: var(--content-width, 80ch);
|
2016-10-31 14:35:35 -07:00
|
|
|
width: var(--content-width, 80ch);
|
2016-10-12 10:55:26 -07:00
|
|
|
}
|
2016-06-22 17:18:06 -07:00
|
|
|
.content.add .intraline,
|
2016-12-21 12:55:21 -08:00
|
|
|
.delta.total .content.add {
|
2016-03-25 16:48:13 -04:00
|
|
|
background-color: var(--dark-add-highlight-color);
|
|
|
|
}
|
2016-12-21 12:55:21 -08:00
|
|
|
.content.add {
|
2016-03-25 16:48:13 -04:00
|
|
|
background-color: var(--light-add-highlight-color);
|
|
|
|
}
|
2016-06-22 17:18:06 -07:00
|
|
|
.content.remove .intraline,
|
2016-12-21 12:55:21 -08:00
|
|
|
.delta.total .content.remove {
|
2016-03-25 16:48:13 -04:00
|
|
|
background-color: var(--dark-remove-highlight-color);
|
|
|
|
}
|
2016-12-21 12:55:21 -08:00
|
|
|
.content.remove {
|
2016-03-25 16:48:13 -04:00
|
|
|
background-color: var(--light-remove-highlight-color);
|
|
|
|
}
|
2017-07-20 16:31:02 +00:00
|
|
|
.dueToRebase .content.add .intraline,
|
|
|
|
.delta.total.dueToRebase .content.add {
|
|
|
|
background-color: var(--dark-rebased-add-highlight-color);
|
|
|
|
}
|
|
|
|
.dueToRebase .content.add {
|
|
|
|
background-color: var(--light-rebased-add-highlight-color);
|
|
|
|
}
|
|
|
|
.dueToRebase .content.remove .intraline,
|
|
|
|
.delta.total.dueToRebase .content.remove {
|
|
|
|
background-color: var(--dark-rebased-remove-highlight-color);
|
|
|
|
}
|
|
|
|
.dueToRebase .content.remove {
|
|
|
|
background-color: var(--light-rebased-remove-highlight-color);
|
|
|
|
}
|
2018-01-24 01:31:15 +00:00
|
|
|
.content .contentText:empty:after {
|
|
|
|
/* Newline, to ensure empty lines are one line-height tall. */
|
2016-12-09 12:30:29 -08:00
|
|
|
content: '\A';
|
|
|
|
}
|
2016-03-25 16:48:13 -04:00
|
|
|
.contextControl {
|
|
|
|
background-color: #fef;
|
2016-06-01 15:13:33 -07:00
|
|
|
color: #849;
|
2016-03-25 16:48:13 -04:00
|
|
|
}
|
|
|
|
.contextControl gr-button {
|
2016-06-01 15:13:33 -07:00
|
|
|
display: inline-block;
|
2016-03-25 16:48:13 -04:00
|
|
|
font-family: var(--monospace-font-family);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.contextControl td:not(.lineNum) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-06-28 16:29:56 -07:00
|
|
|
.displayLine .diff-row.target-row td {
|
|
|
|
box-shadow: inset 0 -1px #bbb;
|
2016-11-02 16:25:53 -07:00
|
|
|
}
|
2016-03-25 16:48:13 -04:00
|
|
|
.br:after {
|
|
|
|
/* Line feed */
|
|
|
|
content: '\A';
|
|
|
|
}
|
|
|
|
.tab {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
Improves visible tabs rendering
This change reverts visible tabs to use the » character. A few different
approaches have been used for rendering these tab indicators:
I: Before the Annotation Pipeline, tab indicators were configured by a
class that was optionally applied to tab elements by the diff
builder. The class was guarded by the show_tabs preference and a CSS
rule created a `::before` pseudo element to insert the character.
(Thus also preventing the » from being copyable text.)
II: When the Annotation Pipeline was implemented, the ordering of layers
called for intraline difference elements being rendered *inside* tab
indicators. As a result, the » indicator would sometimes have a
different background than the intraline difference, looking sloppy.
To solve this, the pseudo element was positioned using absolute,
allowing the pseudo element to consume no horizontal space and and
the intraline background to extend across the entire tab.
III:When performance tuning, it was discovered that the
absolute-positioned tab indicators were positioned incorrectly when
GPU acceleration was hinted for the diff, so the containing tab
elements were made relative.
IV: Continuing performance tuning, the tab indicators seemed to slow
scrolling on very large diffs with tabs. It was mistakenly assumed
(by me) that this was related to the pseudo-elements when it was
actually caused by the thousands of positioning contexts they
created using relative and absolute.
Instead they were modified to use strike-through instead of a pseudo
element, which was more-performant, but less-usable (it looked bad).
With this change, we roll-back the clock a little and solve a core
problem: namely that tab indicators were not annotated inside the
intraline differences. Fixing that, positioning tricks are no-longer
needed to make the background look right.
To do this, we decouple the tab elements (which control tab width) from
the tab indicators (which optionally make tabs visible). This is done
using an annotation layer that inserts tab indicator elements wherever
a tab character is used in the source content, and it does so after
intraline differences have been applied.
Bug: Issue 4441
Change-Id: I4fea2a3a20a7039bfeb746bd1e1c1004e43c4801
2016-08-25 11:31:42 -07:00
|
|
|
.tab-indicator:before {
|
|
|
|
color: #C62828;
|
|
|
|
/* >> character */
|
|
|
|
content: '\00BB';
|
2016-03-25 16:48:13 -04:00
|
|
|
}
|
2016-11-17 12:03:51 -08:00
|
|
|
.trailing-whitespace {
|
|
|
|
border-radius: .4em;
|
|
|
|
background-color: #FF9AD2;
|
|
|
|
}
|
2017-04-07 15:52:28 -07:00
|
|
|
#diffHeader {
|
|
|
|
background-color: #F9F9F9;
|
|
|
|
color: #2A00FF;
|
|
|
|
font-family: var(--monospace-font-family);
|
Respect default font size preference from browsers
We encountered an issue where PolyGerrit was not respecting browser
font preferences. Browser font preferences include both a default font
size and a minimum font size.
In the event that a font declared in px is smaller than the minimum font
size, the size is increased to equal the minimum font size. However,
if the font is declared in px and greater than the minimum, the
preferred font size is not taken into account.
Browsers' default font size is 16px [1], So instead of declaring the
base font in px (previously 13px), this change makes it a percentage
of the default font size. If the user has changed their default, this
is taken into account.
From this point, all other fonts will be declared in rems, which makes
it easier to base the new size off of the base font size of the <html>
tag, rather than ems which bases it on the container[2]. This allows us
to declare font sizes in a way more similar to pixels, yet relative.
A follow-up change will change all font size declaration to use rem from
em for consistency.
[1] https://stackoverflow.com/questions/29511983/is-the-default-font-size-of-every-browser-16px-why
[2] https://webdesign.tutsplus.com/tutorials/comprehensive-guide-when-to-use-em-vs-rem--cms-23984
Bug: Issue 8157
Change-Id: I04ec2c861b2fb288ec7556dfb655d7feea9c9157
2018-01-26 13:49:01 -08:00
|
|
|
font-size: var(--font-size, var(--font-size-small));
|
2017-04-07 15:52:28 -07:00
|
|
|
padding: 0.5em 0 0.5em 4em;
|
|
|
|
}
|
2017-06-13 15:32:51 -07:00
|
|
|
#sizeWarning {
|
|
|
|
display: none;
|
|
|
|
margin: 1em auto;
|
|
|
|
max-width: 60em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#sizeWarning gr-button {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
#sizeWarning.warn {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-09-14 09:45:50 -07:00
|
|
|
.target-row td.blame {
|
|
|
|
background: #eee;
|
|
|
|
}
|
2017-09-30 14:54:01 +01:00
|
|
|
col.blame {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-09-14 09:45:50 -07:00
|
|
|
td.blame {
|
|
|
|
display: none;
|
|
|
|
font-family: var(--font-family);
|
Respect default font size preference from browsers
We encountered an issue where PolyGerrit was not respecting browser
font preferences. Browser font preferences include both a default font
size and a minimum font size.
In the event that a font declared in px is smaller than the minimum font
size, the size is increased to equal the minimum font size. However,
if the font is declared in px and greater than the minimum, the
preferred font size is not taken into account.
Browsers' default font size is 16px [1], So instead of declaring the
base font in px (previously 13px), this change makes it a percentage
of the default font size. If the user has changed their default, this
is taken into account.
From this point, all other fonts will be declared in rems, which makes
it easier to base the new size off of the base font size of the <html>
tag, rather than ems which bases it on the container[2]. This allows us
to declare font sizes in a way more similar to pixels, yet relative.
A follow-up change will change all font size declaration to use rem from
em for consistency.
[1] https://stackoverflow.com/questions/29511983/is-the-default-font-size-of-every-browser-16px-why
[2] https://webdesign.tutsplus.com/tutorials/comprehensive-guide-when-to-use-em-vs-rem--cms-23984
Bug: Issue 8157
Change-Id: I04ec2c861b2fb288ec7556dfb655d7feea9c9157
2018-01-26 13:49:01 -08:00
|
|
|
font-size: var(--font-size, var(--font-size-small));
|
2017-09-14 09:45:50 -07:00
|
|
|
padding: 0 .5em;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
2017-09-30 14:54:01 +01:00
|
|
|
:host(.showBlame) col.blame {
|
|
|
|
display: table-column;
|
|
|
|
}
|
2017-09-14 09:45:50 -07:00
|
|
|
:host(.showBlame) td.blame {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
td.blame > span {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
td.blame > span.startOfRange {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
td.blame .sha {
|
|
|
|
font-family: var(--monospace-font-family);
|
|
|
|
}
|
|
|
|
.full-width td.blame {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 200px;
|
|
|
|
}
|
2016-03-04 17:48:22 -05:00
|
|
|
</style>
|
2016-07-25 22:23:14 -07:00
|
|
|
<style include="gr-theme-default"></style>
|
2017-04-07 15:52:28 -07:00
|
|
|
<div id="diffHeader" hidden$="[[_computeDiffHeaderHidden(_diffHeaderItems)]]">
|
|
|
|
<template
|
|
|
|
is="dom-repeat"
|
|
|
|
items="[[_diffHeaderItems]]">
|
|
|
|
<div>[[item]]</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
2016-11-02 16:25:53 -07:00
|
|
|
<div class$="[[_computeContainerClass(_loggedIn, viewMode, displayLine)]]"
|
2016-06-09 16:39:17 -07:00
|
|
|
on-tap="_handleTap">
|
2016-09-08 14:09:11 -07:00
|
|
|
<gr-diff-selection diff="[[_diff]]">
|
2016-06-10 12:47:57 -07:00
|
|
|
<gr-diff-highlight
|
|
|
|
id="highlights"
|
|
|
|
logged-in="[[_loggedIn]]"
|
2017-07-26 09:32:03 -07:00
|
|
|
comments="{{comments}}">
|
2016-06-10 12:47:57 -07:00
|
|
|
<gr-diff-builder
|
|
|
|
id="diffBuilder"
|
2017-07-26 09:32:03 -07:00
|
|
|
comments="[[comments]]"
|
2017-07-31 14:33:16 -07:00
|
|
|
project-name="[[projectName]]"
|
2016-07-21 22:19:25 -07:00
|
|
|
diff="[[_diff]]"
|
2017-04-13 14:48:31 -07:00
|
|
|
diff-path="[[path]]"
|
2017-10-10 09:47:26 -04:00
|
|
|
change-num="[[changeNum]]"
|
|
|
|
patch-num="[[patchRange.patchNum]]"
|
2016-06-10 12:47:57 -07:00
|
|
|
view-mode="[[viewMode]]"
|
2016-10-31 14:35:35 -07:00
|
|
|
line-wrapping="[[lineWrapping]]"
|
2016-06-10 12:47:57 -07:00
|
|
|
is-image-diff="[[isImageDiff]]"
|
|
|
|
base-image="[[_baseImage]]"
|
2017-11-17 10:57:46 -08:00
|
|
|
revision-image="[[_revisionImage]]"
|
2018-01-19 17:54:50 -08:00
|
|
|
parent-index="[[_parentIndex]]"
|
|
|
|
line-of-interest="[[lineOfInterest]]">
|
2017-06-06 16:59:22 -07:00
|
|
|
<table
|
|
|
|
id="diffTable"
|
|
|
|
class$="[[_diffTableClass]]"
|
|
|
|
role="presentation"></table>
|
2016-06-10 12:47:57 -07:00
|
|
|
</gr-diff-builder>
|
|
|
|
</gr-diff-highlight>
|
2016-06-09 16:39:17 -07:00
|
|
|
</gr-diff-selection>
|
2016-03-04 17:48:22 -05:00
|
|
|
</div>
|
2017-06-13 15:32:51 -07:00
|
|
|
<div id="sizeWarning" class$="[[_computeWarningClass(_showWarning)]]">
|
|
|
|
<p>
|
|
|
|
Prevented render because "Whole file" is enabled and this diff is very
|
|
|
|
large (about [[_diffLength(_diff)]] lines).
|
|
|
|
</p>
|
|
|
|
<gr-button on-tap="_handleLimitedBypass">
|
|
|
|
Render with limited context
|
|
|
|
</gr-button>
|
|
|
|
<gr-button on-tap="_handleFullBypass">
|
|
|
|
Render anyway (may be slow)
|
|
|
|
</gr-button>
|
|
|
|
</div>
|
2016-03-05 19:20:09 -05:00
|
|
|
<gr-rest-api-interface id="restAPI"></gr-rest-api-interface>
|
2018-02-13 16:31:10 -08:00
|
|
|
<gr-reporting id="reporting" category="diff"></gr-reporting>
|
2016-03-04 17:48:22 -05:00
|
|
|
</template>
|
2016-03-25 16:48:13 -04:00
|
|
|
<script src="gr-diff-line.js"></script>
|
|
|
|
<script src="gr-diff-group.js"></script>
|
2016-03-04 17:48:22 -05:00
|
|
|
<script src="gr-diff.js"></script>
|
|
|
|
</dom-module>
|