Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(152)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: dart/site/try/create_manifest.sh
Issue
125123002
:
try.dartlang.org version 5. (Closed)
Base URL: /Users/ahe/Dart/all@master
Patch Set:
Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
dart/site/try/app.yaml
dart/site/try/compiler_isolate.dart
dart/site/try/create_manifest.sh
dart/site/try/dart-icon.png
dart/site/try/dart-iphone5.png
dart/site/try/dartlang-style.css
dart/site/try/decoration.dart
dart/site/try/deploy.sh
dart/site/try/extract_theme.dart
dart/site/try/extracted_themes.dart
dart/site/try/favicon.ico
dart/site/try/iframe.html
dart/site/try/iframe.js
dart/site/try/index.html
dart/site/try/jsonify.dart
dart/site/try/leap.dart
dart/site/try/leap.dart.js
dart/site/try/nossl.appcache
dart/site/try/part.js
dart/site/try/theme_default.dart
dart/site/try/themes.dart
dart/site/try/try-dart-screenshot.png
dart/site/try/update_howto.txt
View unified diff
|
Download patch
« dart/site/try/app.yaml
('K') |
« dart/site/try/compiler_isolate.dart
('k') |
dart/site/try/dart-icon.png »
('j') |
dart/site/try/deploy.sh »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
#!/bin/bash
2
3
echo CACHE MANIFEST
4
5
date +'# %s'
6
7
echo CACHE:
8
9
PKG_DIR="$(cd $(dirname ${0})/../pkg ; pwd)"
10
SDK_DIR="$(cd $(dirname ${0})/../sdk ; pwd)"
11
LIVE_DIR="$(cd $(dirname ${0})/../web_editor ; pwd)"
12
13
echo ${PKG_DIR}/browser/lib/dart.js | sed -e "s|$(pwd)/||"
14
15
# find ${SDK_DIR} \
16
# \( -name dartdoc -o -name pub -o -name dartium \) -prune \
17
# -o -name \*.dart -print \
18
# | sed -e "s|$(pwd)/||"
19
20
find ${LIVE_DIR} \
21
\( -name \*~ \) -prune \
22
-o -type f -print | sed -e "s|$(pwd)/||"
23
24
echo iframe.html
25
echo iframe.js
26
echo dart-icon.png
27
echo dart-iphone5.png
28
29
echo NETWORK:
30
echo '*'
OLD
NEW
« dart/site/try/app.yaml
('K') |
« dart/site/try/compiler_isolate.dart
('k') |
dart/site/try/dart-icon.png »
('j') |
dart/site/try/deploy.sh »
('J')
Issue 125123002: try.dartlang.org version 5. (Closed)
Created 6 years, 11 months ago by ahe
Modified 6 years, 11 months ago
Reviewers: kasperl
Base URL: /Users/ahe/Dart/all@master
Comments: 36
This is Rietveld
408576698