2012-01-05 02:10:34 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file is automatically generated. Use 'celerity_mapper.php' to rebuild
|
|
|
|
* it.
|
|
|
|
* @generated
|
|
|
|
*/
|
|
|
|
|
|
|
|
celerity_register_resource_map(array(
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/apps.png' =>
|
|
|
|
array(
|
2012-08-10 21:13:22 +02:00
|
|
|
'hash' => 'f7cb4abeb73245fea4098a02fd784653',
|
|
|
|
'uri' => '/res/f7cb4abe/rsrc/image/apps.png',
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'disk' => '/rsrc/image/apps.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-08-02 23:07:21 +02:00
|
|
|
'/rsrc/image/appstatus_empty.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '2f8102e0a0f5a0980d87d4ab4ba8c8fd',
|
|
|
|
'uri' => '/res/2f8102e0/rsrc/image/appstatus_empty.png',
|
|
|
|
'disk' => '/rsrc/image/appstatus_empty.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/appstatus_info.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '407de6daf2edc4a8b68e2e369f4fc8cb',
|
|
|
|
'uri' => '/res/407de6da/rsrc/image/appstatus_info.png',
|
|
|
|
'disk' => '/rsrc/image/appstatus_info.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/appstatus_needs.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '2c1e193bc786ca4fca0b851ed9cd3d92',
|
|
|
|
'uri' => '/res/2c1e193b/rsrc/image/appstatus_needs.png',
|
|
|
|
'disk' => '/rsrc/image/appstatus_needs.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/appstatus_okay.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'd00e683ee1c61d0ccced1200775cdbb5',
|
|
|
|
'uri' => '/res/d00e683e/rsrc/image/appstatus_okay.png',
|
|
|
|
'disk' => '/rsrc/image/appstatus_okay.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-04-26 09:18:42 +02:00
|
|
|
'/rsrc/image/avatar.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '1c5f255071537f05406adee86717ff27',
|
|
|
|
'uri' => '/res/1c5f2550/rsrc/image/avatar.png',
|
|
|
|
'disk' => '/rsrc/image/avatar.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-08-14 02:21:16 +02:00
|
|
|
'/rsrc/image/checker_dark.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '640f795343df76ebe5409aae6187e57f',
|
|
|
|
'uri' => '/res/640f7953/rsrc/image/checker_dark.png',
|
|
|
|
'disk' => '/rsrc/image/checker_dark.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/checker_light.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '7f8f3ef8beb0f2cc4cc69efb9e1c3308',
|
|
|
|
'uri' => '/res/7f8f3ef8/rsrc/image/checker_light.png',
|
|
|
|
'disk' => '/rsrc/image/checker_light.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/credit_cards.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '681448de424ea159b6ea68af04c046ae',
|
|
|
|
'uri' => '/res/681448de/rsrc/image/credit_cards.png',
|
|
|
|
'disk' => '/rsrc/image/credit_cards.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-08-01 21:31:33 +02:00
|
|
|
'/rsrc/image/divot.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '3be267bd11ea375bf68e808893718e0e',
|
|
|
|
'uri' => '/res/3be267bd/rsrc/image/divot.png',
|
|
|
|
'disk' => '/rsrc/image/divot.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/grippy_texture.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'a8945e12ceeaddd5b491a8d81cfa19c1',
|
|
|
|
'uri' => '/res/a8945e12/rsrc/image/grippy_texture.png',
|
|
|
|
'disk' => '/rsrc/image/grippy_texture.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/arrow_branch.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'f27b67520766e3d971722bcff703f3a8',
|
|
|
|
'uri' => '/res/f27b6752/rsrc/image/icon/fatcow/arrow_branch.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/arrow_branch.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/arrow_merge.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'c4bd97f3b1257439e2123ef69d2194d0',
|
|
|
|
'uri' => '/res/c4bd97f3/rsrc/image/icon/fatcow/arrow_merge.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/arrow_merge.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-05-25 19:14:17 +02:00
|
|
|
'/rsrc/image/icon/fatcow/bullet_black.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '718f9c560a13766796f1be7dfaadeeab',
|
|
|
|
'uri' => '/res/718f9c56/rsrc/image/icon/fatcow/bullet_black.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/bullet_black.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-05-19 18:18:34 +02:00
|
|
|
'/rsrc/image/icon/fatcow/bullet_orange.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'c3bf91b65baacb27f2af143ab9180119',
|
|
|
|
'uri' => '/res/c3bf91b6/rsrc/image/icon/fatcow/bullet_orange.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/bullet_orange.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/bullet_red.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '00273e4aa6ea3de630295610d6c9560c',
|
|
|
|
'uri' => '/res/00273e4a/rsrc/image/icon/fatcow/bullet_red.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/bullet_red.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/icon/fatcow/calendar_edit.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'de249c0f4f37bf5b2c69ff39ec5573fb',
|
|
|
|
'uri' => '/res/de249c0f/rsrc/image/icon/fatcow/calendar_edit.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/calendar_edit.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-10-23 04:06:56 +02:00
|
|
|
'/rsrc/image/icon/fatcow/document_black.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '44d65a7f05a9c921719deedc160d68f7',
|
|
|
|
'uri' => '/res/44d65a7f/rsrc/image/icon/fatcow/document_black.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/document_black.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/icon/fatcow/flag_blue.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '75a080492f900fbe489e4b27e403962b',
|
|
|
|
'uri' => '/res/75a08049/rsrc/image/icon/fatcow/flag_blue.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_blue.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_finish.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '4af11fc7fab8e4610cbc3c88a02d4f78',
|
|
|
|
'uri' => '/res/4af11fc7/rsrc/image/icon/fatcow/flag_finish.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_finish.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_ghost.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '14c9f30a37b43f276f27a27a924bf02d',
|
|
|
|
'uri' => '/res/14c9f30a/rsrc/image/icon/fatcow/flag_ghost.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_ghost.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_green.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'fed01374cd396cb774872762dcc447e1',
|
|
|
|
'uri' => '/res/fed01374/rsrc/image/icon/fatcow/flag_green.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_green.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_orange.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '88008cb8bb99761a37e5a743e2455aeb',
|
|
|
|
'uri' => '/res/88008cb8/rsrc/image/icon/fatcow/flag_orange.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_orange.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_pink.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '2f199f06ffc3dfc81b7561a057e0bc33',
|
|
|
|
'uri' => '/res/2f199f06/rsrc/image/icon/fatcow/flag_pink.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_pink.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_purple.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '16358629dc86c39550b575586eb5df80',
|
|
|
|
'uri' => '/res/16358629/rsrc/image/icon/fatcow/flag_purple.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_purple.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_red.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '210c28b4d93c439a499f5814f5e05772',
|
|
|
|
'uri' => '/res/210c28b4/rsrc/image/icon/fatcow/flag_red.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_red.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/flag_yellow.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'bdfd73744a80bb80329ae50bc8a5f962',
|
|
|
|
'uri' => '/res/bdfd7374/rsrc/image/icon/fatcow/flag_yellow.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/flag_yellow.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/folder.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '25e46cf9d210dde2242332296f79938c',
|
|
|
|
'uri' => '/res/25e46cf9/rsrc/image/icon/fatcow/folder.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/folder.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/folder_go.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'ba922ff7959309f51a14cb7ed5124d8b',
|
|
|
|
'uri' => '/res/ba922ff7/rsrc/image/icon/fatcow/folder_go.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/folder_go.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/key_question.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '530a6448a4b91edec091a9292ccfd3d9',
|
|
|
|
'uri' => '/res/530a6448/rsrc/image/icon/fatcow/key_question.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/key_question.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/link.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'be1bea49b216548433014f3324902928',
|
|
|
|
'uri' => '/res/be1bea49/rsrc/image/icon/fatcow/link.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/link.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-08-21 06:47:44 +02:00
|
|
|
'/rsrc/image/icon/fatcow/page_white_edit.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'e7b7e7f2d9730bc80bc5c9eac1f3e36d',
|
|
|
|
'uri' => '/res/e7b7e7f2/rsrc/image/icon/fatcow/page_white_edit.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/page_white_edit.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/icon/fatcow/page_white_link.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '1cfbad14412bda6c6f132dcc7c8725fd',
|
|
|
|
'uri' => '/res/1cfbad14/rsrc/image/icon/fatcow/page_white_link.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/page_white_link.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/page_white_put.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'bb7308aa5ac40137a8262da395a267fd',
|
|
|
|
'uri' => '/res/bb7308aa/rsrc/image/icon/fatcow/page_white_put.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/page_white_put.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/page_white_text.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'e47d590b626f617fb7d1d44e96e8fd11',
|
|
|
|
'uri' => '/res/e47d590b/rsrc/image/icon/fatcow/page_white_text.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/page_white_text.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/conduit.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '1cae0656580aa3cd0b54b9d98306b1b9',
|
|
|
|
'uri' => '/res/1cae0656/rsrc/image/icon/fatcow/source/conduit.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/conduit.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/email.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '93bdb3e168da1ed68f50c42125729d4e',
|
|
|
|
'uri' => '/res/93bdb3e1/rsrc/image/icon/fatcow/source/email.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/email.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/fax.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'd7dedf229841f2d041b347afd881596f',
|
|
|
|
'uri' => '/res/d7dedf22/rsrc/image/icon/fatcow/source/fax.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/fax.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/mobile.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '786e7146d1e7d7318baf76c9d2baad97',
|
|
|
|
'uri' => '/res/786e7146/rsrc/image/icon/fatcow/source/mobile.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/mobile.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/tablet.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '374cd40e4965be6b2fbdef4059d0ca05',
|
|
|
|
'uri' => '/res/374cd40e/rsrc/image/icon/fatcow/source/tablet.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/tablet.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/source/web.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'f4882a8f5619ba505ca033f72a340635',
|
|
|
|
'uri' => '/res/f4882a8f/rsrc/image/icon/fatcow/source/web.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/source/web.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/default160x120.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '1b52ebd1fe0eee3ed0abfc382991b265',
|
|
|
|
'uri' => '/res/1b52ebd1/rsrc/image/icon/fatcow/thumbnails/default160x120.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/default160x120.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/default60x45.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '048d851d8d1daad4754e891e734c1899',
|
|
|
|
'uri' => '/res/048d851d/rsrc/image/icon/fatcow/thumbnails/default60x45.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/default60x45.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/image160x120.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '434acbd8dbbc2da9f09f6205a396eba1',
|
|
|
|
'uri' => '/res/434acbd8/rsrc/image/icon/fatcow/thumbnails/image160x120.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/image160x120.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/image60x45.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '29f7872dc53588fe0b8f0b330c7ee23a',
|
|
|
|
'uri' => '/res/29f7872d/rsrc/image/icon/fatcow/thumbnails/image60x45.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/image60x45.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/pdf160x120.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '39d2e22541658a3472ba41ae2fa548e5',
|
|
|
|
'uri' => '/res/39d2e225/rsrc/image/icon/fatcow/thumbnails/pdf160x120.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/pdf160x120.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/pdf60x45.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'b3572e9317cbed5184d12bdfabed2727',
|
|
|
|
'uri' => '/res/b3572e93/rsrc/image/icon/fatcow/thumbnails/pdf60x45.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/pdf60x45.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/zip160x120.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'e505108688a903b5cfb674707a289bcc',
|
|
|
|
'uri' => '/res/e5051086/rsrc/image/icon/fatcow/thumbnails/zip160x120.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/zip160x120.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/fatcow/thumbnails/zip60x45.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'f00716f4e8f7a95e70d43504f06be0a6',
|
|
|
|
'uri' => '/res/f00716f4/rsrc/image/icon/fatcow/thumbnails/zip60x45.png',
|
|
|
|
'disk' => '/rsrc/image/icon/fatcow/thumbnails/zip60x45.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-10-23 04:06:56 +02:00
|
|
|
'/rsrc/image/icon/lightbox/close-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '72ff3ddcc1ed5d19a715ed6242114b53',
|
|
|
|
'uri' => '/res/72ff3ddc/rsrc/image/icon/lightbox/close-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/close-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/lightbox/close-hover-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '6ad4bd4a7820547a1d9041752546ba16',
|
|
|
|
'uri' => '/res/6ad4bd4a/rsrc/image/icon/lightbox/close-hover-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/close-hover-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/lightbox/left-arrow-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'd84cbb0d42739f87b8f25b2f1d2f1153',
|
|
|
|
'uri' => '/res/d84cbb0d/rsrc/image/icon/lightbox/left-arrow-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/left-arrow-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/lightbox/left-arrow-hover-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'cdf05f98fff3f390cd8df0c89894a3e1',
|
|
|
|
'uri' => '/res/cdf05f98/rsrc/image/icon/lightbox/left-arrow-hover-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/left-arrow-hover-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/lightbox/right-arrow-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '52021038cb6995c71f62a804bc2d420d',
|
|
|
|
'uri' => '/res/52021038/rsrc/image/icon/lightbox/right-arrow-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/right-arrow-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/lightbox/right-arrow-hover-2.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '65d5756b7b9cfcdeb2eb197a9aa6bbd2',
|
|
|
|
'uri' => '/res/65d5756b/rsrc/image/icon/lightbox/right-arrow-hover-2.png',
|
|
|
|
'disk' => '/rsrc/image/icon/lightbox/right-arrow-hover-2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/icon/subscribe.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '5f47a4b17de245af39a4e7a097e40623',
|
|
|
|
'uri' => '/res/5f47a4b1/rsrc/image/icon/subscribe.png',
|
|
|
|
'disk' => '/rsrc/image/icon/subscribe.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/tango/attachment.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '776fed2de89803fd8a0ba4b9deede230',
|
|
|
|
'uri' => '/res/776fed2d/rsrc/image/icon/tango/attachment.png',
|
|
|
|
'disk' => '/rsrc/image/icon/tango/attachment.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/tango/edit.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'c0028d99dcf4e9559bbf3c88ce2d8a8d',
|
|
|
|
'uri' => '/res/c0028d99/rsrc/image/icon/tango/edit.png',
|
|
|
|
'disk' => '/rsrc/image/icon/tango/edit.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-05-01 21:09:50 +02:00
|
|
|
'/rsrc/image/icon/tango/go-down.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '96862812cbb0445573c264dc057b8300',
|
|
|
|
'uri' => '/res/96862812/rsrc/image/icon/tango/go-down.png',
|
|
|
|
'disk' => '/rsrc/image/icon/tango/go-down.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'/rsrc/image/icon/tango/log.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'a6f72499bef279ff6807a7dbc5148f1e',
|
|
|
|
'uri' => '/res/a6f72499/rsrc/image/icon/tango/log.png',
|
|
|
|
'disk' => '/rsrc/image/icon/tango/log.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/tango/upload.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '8c11b63d6d99db3d7159c5d9a94e3062',
|
|
|
|
'uri' => '/res/8c11b63d/rsrc/image/icon/tango/upload.png',
|
|
|
|
'disk' => '/rsrc/image/icon/tango/upload.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/icon/unsubscribe.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '29429ad65aa3af50b072b32087057361',
|
|
|
|
'uri' => '/res/29429ad6/rsrc/image/icon/unsubscribe.png',
|
|
|
|
'disk' => '/rsrc/image/icon/unsubscribe.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-10-24 02:34:43 +02:00
|
|
|
'/rsrc/image/loading.gif' =>
|
|
|
|
array(
|
|
|
|
'hash' => '664297671941142f37d8c89e717ff2ce',
|
|
|
|
'uri' => '/res/66429767/rsrc/image/loading.gif',
|
|
|
|
'disk' => '/rsrc/image/loading.gif',
|
|
|
|
'type' => 'gif',
|
|
|
|
),
|
2012-08-21 01:02:36 +02:00
|
|
|
'/rsrc/image/main_texture.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => 'e34d8143384721be73ec9b7532a977ab',
|
|
|
|
'uri' => '/res/e34d8143/rsrc/image/main_texture.png',
|
|
|
|
'disk' => '/rsrc/image/main_texture.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-08-20 23:13:15 +02:00
|
|
|
'/rsrc/image/menu_texture.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '42193f24a52bd94be596c442d59a68ce',
|
|
|
|
'uri' => '/res/42193f24/rsrc/image/menu_texture.png',
|
|
|
|
'disk' => '/rsrc/image/menu_texture.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-07-31 01:09:14 +02:00
|
|
|
'/rsrc/image/search.png' =>
|
|
|
|
array(
|
2012-08-06 00:07:12 +02:00
|
|
|
'hash' => 'ff7da044e6f923b8f569dec11f97e5e5',
|
|
|
|
'uri' => '/res/ff7da044/rsrc/image/search.png',
|
2012-07-31 01:09:14 +02:00
|
|
|
'disk' => '/rsrc/image/search.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-12-07 22:38:02 +01:00
|
|
|
'/rsrc/image/sprite-apps-X2.png' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'hash' => '452196e8e455dc6f052daa2f17ee1230',
|
|
|
|
'uri' => '/res/452196e8/rsrc/image/sprite-apps-X2.png',
|
2012-12-07 22:38:02 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-apps-X2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-apps-large-X2.png' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'hash' => 'a95b5ff9d1ecb3209b27ee43a080e896',
|
|
|
|
'uri' => '/res/a95b5ff9/rsrc/image/sprite-apps-large-X2.png',
|
2012-12-07 22:38:02 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-apps-large-X2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-apps-large.png' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'hash' => '19accaf0aeb89bd432c8dd63c6e47077',
|
|
|
|
'uri' => '/res/19accaf0/rsrc/image/sprite-apps-large.png',
|
2012-12-07 22:38:02 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-apps-large.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-apps-xlarge.png' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'hash' => '71730d0043182993df46fb727a7f356e',
|
|
|
|
'uri' => '/res/71730d00/rsrc/image/sprite-apps-xlarge.png',
|
2012-12-07 22:38:02 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-apps-xlarge.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-apps.png' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'hash' => 'eb17f93f9c79a577b7d92b0d92807d68',
|
|
|
|
'uri' => '/res/eb17f93f/rsrc/image/sprite-apps.png',
|
2012-12-07 22:38:02 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-apps.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-gradient.png' =>
|
|
|
|
array(
|
|
|
|
'hash' => '6666ab677f5dc4fd3fa14ba394f41d3c',
|
|
|
|
'uri' => '/res/6666ab67/rsrc/image/sprite-gradient.png',
|
|
|
|
'disk' => '/rsrc/image/sprite-gradient.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-11-24 01:35:39 +01:00
|
|
|
'/rsrc/image/sprite-icon-X2.png' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'hash' => 'c9fae25bc6221922ce26517e654a18e4',
|
|
|
|
'uri' => '/res/c9fae25b/rsrc/image/sprite-icon-X2.png',
|
2012-11-24 01:35:39 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-icon-X2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-icon.png' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'hash' => 'b690ea69bf5f2abe84d0a6e9ef64b03d',
|
|
|
|
'uri' => '/res/b690ea69/rsrc/image/sprite-icon.png',
|
2012-11-24 01:35:39 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-icon.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-11-27 23:03:25 +01:00
|
|
|
'/rsrc/image/sprite-menu-X2.png' =>
|
|
|
|
array(
|
2012-12-07 23:29:09 +01:00
|
|
|
'hash' => '11017d94e949aa169361b966716e8729',
|
|
|
|
'uri' => '/res/11017d94/rsrc/image/sprite-menu-X2.png',
|
2012-11-27 23:03:25 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-menu-X2.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/image/sprite-menu.png' =>
|
|
|
|
array(
|
2012-12-07 23:29:09 +01:00
|
|
|
'hash' => 'ba0f7d61f49ea50e9c3ff93b160e14c5',
|
|
|
|
'uri' => '/res/ba0f7d61/rsrc/image/sprite-menu.png',
|
2012-11-27 23:03:25 +01:00
|
|
|
'disk' => '/rsrc/image/sprite-menu.png',
|
|
|
|
'type' => 'png',
|
|
|
|
),
|
2012-12-07 22:38:02 +01:00
|
|
|
'/rsrc/image/texture/dark-menu.png' =>
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
array(
|
2012-12-07 22:38:02 +01:00
|
|
|
'hash' => '41dfbdfba88ba361c72bbf289396200c',
|
|
|
|
'uri' => '/res/41dfbdfb/rsrc/image/texture/dark-menu.png',
|
|
|
|
'disk' => '/rsrc/image/texture/dark-menu.png',
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'type' => 'png',
|
|
|
|
),
|
|
|
|
'/rsrc/swf/aphlict.swf' =>
|
|
|
|
array(
|
2012-06-12 02:52:17 +02:00
|
|
|
'hash' => '4b9a9d83bebaf254f3790e87b45c1f92',
|
|
|
|
'uri' => '/res/4b9a9d83/rsrc/swf/aphlict.swf',
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'disk' => '/rsrc/swf/aphlict.swf',
|
|
|
|
'type' => 'swf',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'aphront-attached-file-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/a6ca5487/rsrc/css/aphront/attached-file-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/attached-file-view.css',
|
|
|
|
),
|
|
|
|
'aphront-calendar-view-css' =>
|
|
|
|
array(
|
2012-12-21 19:15:48 +01:00
|
|
|
'uri' => '/res/87d6e40d/rsrc/css/aphront/calendar-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/calendar-view.css',
|
|
|
|
),
|
|
|
|
'aphront-contextbar-view-css' =>
|
|
|
|
array(
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/ecfd5ba9/rsrc/css/aphront/context-bar.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/context-bar.css',
|
|
|
|
),
|
|
|
|
'aphront-crumbs-view-css' =>
|
|
|
|
array(
|
2012-10-03 19:58:56 +02:00
|
|
|
'uri' => '/res/699be12a/rsrc/css/aphront/crumbs-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/crumbs-view.css',
|
|
|
|
),
|
|
|
|
'aphront-dark-console-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/1e1f78d4/rsrc/css/aphront/dark-console.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/dark-console.css',
|
|
|
|
),
|
|
|
|
'aphront-dialog-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/0ec64c77/rsrc/css/aphront/dialog-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/dialog-view.css',
|
|
|
|
),
|
|
|
|
'aphront-error-view-css' =>
|
|
|
|
array(
|
2012-10-17 17:28:37 +02:00
|
|
|
'uri' => '/res/410dbe72/rsrc/css/aphront/error-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/error-view.css',
|
|
|
|
),
|
|
|
|
'aphront-form-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/2d04bf03/rsrc/css/aphront/form-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/form-view.css',
|
|
|
|
),
|
|
|
|
'aphront-headsup-action-list-view-css' =>
|
|
|
|
array(
|
2012-05-22 19:52:16 +02:00
|
|
|
'uri' => '/res/1dce0ad7/rsrc/css/aphront/headsup-action-list-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/headsup-action-list-view.css',
|
|
|
|
),
|
2012-03-30 23:12:10 +02:00
|
|
|
'aphront-headsup-view-css' =>
|
|
|
|
array(
|
2012-12-11 23:59:27 +01:00
|
|
|
'uri' => '/res/73874cd2/rsrc/css/aphront/headsup.css',
|
2012-03-30 23:12:10 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/headsup.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'aphront-list-filter-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/0f5ddaba/rsrc/css/aphront/list-filter-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/list-filter-view.css',
|
|
|
|
),
|
|
|
|
'aphront-pager-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/43fb79f0/rsrc/css/aphront/pager-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/pager-view.css',
|
|
|
|
),
|
|
|
|
'aphront-panel-view-css' =>
|
|
|
|
array(
|
2012-11-15 23:27:50 +01:00
|
|
|
'uri' => '/res/77bb2527/rsrc/css/aphront/panel-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/panel-view.css',
|
|
|
|
),
|
|
|
|
'aphront-request-failure-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/c9a43002/rsrc/css/aphront/request-failure-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/request-failure-view.css',
|
|
|
|
),
|
|
|
|
'aphront-side-nav-view-css' =>
|
|
|
|
array(
|
2012-12-07 22:32:14 +01:00
|
|
|
'uri' => '/res/f697dc9b/rsrc/css/aphront/side-nav-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/side-nav-view.css',
|
|
|
|
),
|
|
|
|
'aphront-table-view-css' =>
|
|
|
|
array(
|
2012-12-18 00:16:44 +01:00
|
|
|
'uri' => '/res/94d76d56/rsrc/css/aphront/table-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/table-view.css',
|
|
|
|
),
|
|
|
|
'aphront-tokenizer-control-css' =>
|
|
|
|
array(
|
2012-11-15 23:27:50 +01:00
|
|
|
'uri' => '/res/f4570596/rsrc/css/aphront/tokenizer.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'aphront-typeahead-control-css',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/tokenizer.css',
|
|
|
|
),
|
2012-03-13 02:21:02 +01:00
|
|
|
'aphront-tooltip-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/3a7d8e07/rsrc/css/aphront/tooltip.css',
|
2012-03-13 02:21:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/tooltip.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'aphront-typeahead-control-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/ef59c20c/rsrc/css/aphront/typeahead.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/typeahead.css',
|
|
|
|
),
|
2013-01-01 23:09:59 +01:00
|
|
|
'config-options-css' =>
|
|
|
|
array(
|
2013-01-02 23:04:05 +01:00
|
|
|
'uri' => '/res/6f7f64e8/rsrc/css/application/config/config-options.css',
|
2013-01-01 23:09:59 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/config/config-options.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'differential-changeset-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/ea694162/rsrc/css/application/differential/changeset-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/changeset-view.css',
|
|
|
|
),
|
|
|
|
'differential-core-view-css' =>
|
|
|
|
array(
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/85fe5117/rsrc/css/application/differential/core.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/core.css',
|
|
|
|
),
|
|
|
|
'differential-inline-comment-editor' =>
|
|
|
|
array(
|
2012-08-06 00:07:12 +02:00
|
|
|
'uri' => '/res/1bc649b7/rsrc/js/application/differential/DifferentialInlineCommentEditor.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-dom',
|
2012-02-29 23:28:48 +01:00
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-install',
|
|
|
|
4 => 'javelin-request',
|
|
|
|
5 => 'javelin-workflow',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/DifferentialInlineCommentEditor.js',
|
|
|
|
),
|
|
|
|
'differential-local-commits-view-css' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/224f3703/rsrc/css/application/differential/local-commits-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/local-commits-view.css',
|
|
|
|
),
|
2012-05-01 19:15:56 +02:00
|
|
|
'differential-results-table-css' =>
|
|
|
|
array(
|
2012-12-12 17:50:55 +01:00
|
|
|
'uri' => '/res/aab3123c/rsrc/css/application/differential/results-table.css',
|
2012-05-01 19:15:56 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/results-table.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'differential-revision-add-comment-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/849748d3/rsrc/css/application/differential/add-comment.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/add-comment.css',
|
|
|
|
),
|
|
|
|
'differential-revision-comment-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/42c222f4/rsrc/css/application/differential/revision-comment.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/revision-comment.css',
|
|
|
|
),
|
|
|
|
'differential-revision-comment-list-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/3b31faa3/rsrc/css/application/differential/revision-comment-list.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/revision-comment-list.css',
|
|
|
|
),
|
|
|
|
'differential-revision-history-css' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/d41bc64c/rsrc/css/application/differential/revision-history.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/revision-history.css',
|
|
|
|
),
|
2012-08-20 23:05:46 +02:00
|
|
|
'differential-revision-list-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/7659ad8d/rsrc/css/application/differential/revision-list.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/revision-list.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'differential-table-of-contents-css' =>
|
|
|
|
array(
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/4fde8bfc/rsrc/css/application/differential/table-of-contents.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/differential/table-of-contents.css',
|
|
|
|
),
|
|
|
|
'diffusion-commit-view-css' =>
|
|
|
|
array(
|
2012-04-05 19:47:20 +02:00
|
|
|
'uri' => '/res/b445944e/rsrc/css/application/diffusion/commit-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/diffusion/commit-view.css',
|
|
|
|
),
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 22:01:20 +01:00
|
|
|
'diffusion-icons-css' =>
|
|
|
|
array(
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'uri' => '/res/b93e32c9/rsrc/css/application/diffusion/diffusion-icons.css',
|
Improve Diffusion behavior for externals
Summary:
- Feature request from Airtime that I missed in the feedback notes, came up yesterday.
- Identify git submodules as "FILE_SUBMODULE", not "FILE_NORMAL".
- Link git submodules to an external resolver endpoint, which tries to find commits in tracked repositories.
- Identify git symlinks as "FILE_SYMLINK", not "FILE_NORMAL".
- Add folder, file, symlink and externals icons.
Test Plan:
- externals/javelin is now identified as a submoudule and links to Javelin, not identified as a file and links to error.
- bin/phd is now identified as a symlink.
- Interfaces have pretty icons.
Reviewers: btrahan, cpiro, ddfisher, keebuhm, allenjohnashton
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D1975
2012-03-21 22:01:20 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/diffusion/diffusion-icons.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'diffusion-source-css' =>
|
|
|
|
array(
|
2012-10-25 00:27:37 +02:00
|
|
|
'uri' => '/res/6a28b429/rsrc/css/application/diffusion/diffusion-source.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/diffusion/diffusion-source.css',
|
|
|
|
),
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'global-drag-and-drop-css' =>
|
2012-01-05 02:10:34 +01:00
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/4e24cb65/rsrc/css/application/files/global-drag-and-drop.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'disk' => '/rsrc/css/application/files/global-drag-and-drop.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'herald-css' =>
|
|
|
|
array(
|
General Herald refactoring pass
Summary:
**Who can delete global rules?**: I discussed this with @jungejason. The current behavior is that the rule author or any administrator can delete a global rule, but this
isn't consistent with who can edit a rule (anyone) and doesn't really make much sense (it's an artifact of the global/personal split). I proposed that anyone can delete a
rule but we don't actually delete them, and log the deletion. However, when it came time to actually write the code for this I backed off a bit and continued actually
deleting the rules -- I think this does a reasonable job of balancing accountability with complexity. So the new impelmentation is:
- Personal rules can be deleted only by their owners.
- Global rules can be deleted by any user.
- All deletes are logged.
- Logs are more detailed.
- All logged actions can be viewed in aggregate.
**Minor Cleanup**
- Merged `HomeController` and `AllController`.
- Moved most queries to Query classes.
- Use AphrontFormSelectControl::renderSelectTag() where appropriate (this is a fairly recent addition).
- Use an AphrontErrorView to render the dry run notice (this didn't exist when I ported).
- Reenable some transaction code (this works again now).
- Removed the ability for admins to change rule authors (this was a little buggy, messy, and doesn't make tons of sense after the personal/global rule split).
- Rules which depend on other rules now display the right options (all global rules, all your personal rules for personal rules).
- Fix a bug in AphrontTableView where the "no data" cell would be rendered too wide if some columns are not visible.
- Allow selectFilter() in AphrontNavFilterView to be called without a 'default' argument.
Test Plan:
- Browsed, created, edited, deleted personal and gules.
- Verified generated logs.
- Did some dry runs.
- Verified transcript list and transcript details.
- Created/edited all/any rules; created/edited once/every time rules.
- Filtered admin views by users.
Reviewers: jungejason, btrahan
Reviewed By: btrahan
CC: aran, epriestley
Differential Revision: https://secure.phabricator.com/D2040
2012-03-30 19:49:55 +02:00
|
|
|
'uri' => '/res/5051f3ab/rsrc/css/application/herald/herald.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/herald/herald.css',
|
|
|
|
),
|
|
|
|
'herald-rule-editor' =>
|
|
|
|
array(
|
2012-03-30 22:51:54 +02:00
|
|
|
'uri' => '/res/3a2979de/rsrc/js/application/herald/HeraldRuleEditor.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'multirow-row-manager',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'javelin-typeahead',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
4 => 'javelin-dom',
|
|
|
|
5 => 'javelin-tokenizer',
|
|
|
|
6 => 'javelin-typeahead-preloaded-source',
|
|
|
|
7 => 'javelin-stratcom',
|
|
|
|
8 => 'javelin-json',
|
|
|
|
9 => 'phabricator-prefab',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/herald/HeraldRuleEditor.js',
|
|
|
|
),
|
|
|
|
'herald-test-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/c0cd6bdb/rsrc/css/application/herald/herald-test.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/herald/herald-test.css',
|
|
|
|
),
|
2012-03-20 03:45:16 +01:00
|
|
|
'inline-comment-summary-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/338704f7/rsrc/css/application/diff/inline-comment-summary.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/diff/inline-comment-summary.css',
|
|
|
|
),
|
2012-03-07 05:14:03 +01:00
|
|
|
'javelin-aphlict' =>
|
|
|
|
array(
|
2012-06-14 15:12:54 +02:00
|
|
|
'uri' => '/res/c0b9e53f/rsrc/js/application/aphlict/Aphlict.js',
|
2012-03-07 05:14:03 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/aphlict/Aphlict.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior' =>
|
|
|
|
array(
|
2012-04-18 07:04:54 +02:00
|
|
|
'uri' => '/res/ef4eda09/rsrc/js/javelin/lib/behavior.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-magical-init',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/behavior.js',
|
|
|
|
),
|
2012-06-11 18:37:06 +02:00
|
|
|
'javelin-behavior-aphlict-dropdown' =>
|
|
|
|
array(
|
2012-12-08 01:26:43 +01:00
|
|
|
'uri' => '/res/f09bc90d/rsrc/js/application/aphlict/behavior-aphlict-dropdown.js',
|
2012-06-11 18:37:06 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
2012-06-14 15:13:53 +02:00
|
|
|
1 => 'javelin-request',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
4 => 'javelin-dom',
|
2012-12-08 01:26:43 +01:00
|
|
|
5 => 'javelin-uri',
|
2012-06-11 18:37:06 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/aphlict/behavior-aphlict-dropdown.js',
|
|
|
|
),
|
2012-03-07 05:14:03 +01:00
|
|
|
'javelin-behavior-aphlict-listen' =>
|
|
|
|
array(
|
2012-10-09 00:22:29 +02:00
|
|
|
'uri' => '/res/6dde3f43/rsrc/js/application/aphlict/behavior-aphlict-listen.js',
|
2012-03-07 05:14:03 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-aphlict',
|
2012-06-18 23:07:45 +02:00
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
4 => 'javelin-uri',
|
|
|
|
5 => 'javelin-dom',
|
2012-06-20 22:20:47 +02:00
|
|
|
6 => 'javelin-json',
|
|
|
|
7 => 'phabricator-notification',
|
2012-03-07 05:14:03 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/aphlict/behavior-aphlict-listen.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-aphront-basic-tokenizer' =>
|
|
|
|
array(
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
'uri' => '/res/cf049052/rsrc/js/application/core/behavior-tokenizer.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
1 => 'phabricator-prefab',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-tokenizer.js',
|
|
|
|
),
|
2012-02-23 21:26:14 +01:00
|
|
|
'javelin-behavior-aphront-drag-and-drop' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/84a67d72/rsrc/js/application/core/behavior-drag-and-drop.js',
|
2012-02-23 21:26:14 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
2 => 'phabricator-drag-and-drop-file-upload',
|
2012-02-23 21:26:14 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-drag-and-drop.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-aphront-drag-and-drop-textarea' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/853e33b9/rsrc/js/application/core/behavior-drag-and-drop-textarea.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'phabricator-drag-and-drop-file-upload',
|
2012-02-24 00:47:41 +01:00
|
|
|
3 => 'phabricator-paste-file-upload',
|
2012-10-02 03:48:39 +02:00
|
|
|
4 => 'phabricator-textareautils',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-drag-and-drop-textarea.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-aphront-form-disable-on-submit' =>
|
|
|
|
array(
|
2012-04-19 00:13:29 +02:00
|
|
|
'uri' => '/res/ca54e8b9/rsrc/js/application/core/behavior-form.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-form.js',
|
|
|
|
),
|
2012-05-10 00:56:37 +02:00
|
|
|
'javelin-behavior-aphront-more' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/9ad83c3c/rsrc/js/application/core/behavior-more.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-more.js',
|
|
|
|
),
|
2012-02-27 22:00:23 +01:00
|
|
|
'javelin-behavior-audit-preview' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/3048b073/rsrc/js/application/diffusion/behavior-audit-preview.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-audit-preview.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-countdown-timer' =>
|
|
|
|
array(
|
2012-08-15 04:19:23 +02:00
|
|
|
'uri' => '/res/7468acb7/rsrc/js/application/countdown/timer.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/countdown/timer.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-dark-console' =>
|
|
|
|
array(
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/aa6f8a71/rsrc/js/application/core/behavior-dark-console.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-request',
|
|
|
|
5 => 'phabricator-keyboard-shortcut',
|
2012-05-25 19:14:17 +02:00
|
|
|
6 => 'javelin-behavior-dark-console-ajax',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-dark-console.js',
|
|
|
|
),
|
2012-05-25 19:14:17 +02:00
|
|
|
'javelin-behavior-dark-console-ajax' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/ac3ab63a/rsrc/js/application/core/behavior-dark-console-ajax.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-dark-console-ajax.js',
|
|
|
|
),
|
2012-07-25 20:51:27 +02:00
|
|
|
'javelin-behavior-device' =>
|
|
|
|
array(
|
2012-12-11 23:03:16 +01:00
|
|
|
'uri' => '/res/d30d2401/rsrc/js/application/core/behavior-device.js',
|
2012-07-25 20:51:27 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-vector',
|
2012-08-31 03:58:51 +02:00
|
|
|
4 => 'javelin-install',
|
2012-07-25 20:51:27 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-device.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-differential-accept-with-errors' =>
|
|
|
|
array(
|
2012-12-18 00:16:44 +01:00
|
|
|
'uri' => '/res/8fea67b3/rsrc/js/application/differential/behavior-accept-with-errors.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-accept-with-errors.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-add-reviewers-and-ccs' =>
|
|
|
|
array(
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
'uri' => '/res/27be3f81/rsrc/js/application/differential/behavior-add-reviewers-and-ccs.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
2 => 'phabricator-prefab',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-add-reviewers-and-ccs.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-comment-jump' =>
|
|
|
|
array(
|
2012-06-14 07:47:46 +02:00
|
|
|
'uri' => '/res/b580229b/rsrc/js/application/differential/behavior-comment-jump.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-comment-jump.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-diff-radios' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/004cb66f/rsrc/js/application/differential/behavior-diff-radios.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-diff-radios.js',
|
|
|
|
),
|
2012-01-05 01:52:13 +01:00
|
|
|
'javelin-behavior-differential-dropdown-menus' =>
|
|
|
|
array(
|
2012-08-10 21:13:22 +02:00
|
|
|
'uri' => '/res/752f5dfc/rsrc/js/application/differential/behavior-dropdown-menus.js',
|
2012-01-05 01:52:13 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
2012-01-05 23:41:11 +01:00
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-stratcom',
|
|
|
|
4 => 'phabricator-dropdown-menu',
|
|
|
|
5 => 'phabricator-menu-item',
|
2012-01-05 01:52:13 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-dropdown-menus.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-differential-edit-inline-comments' =>
|
|
|
|
array(
|
2012-08-16 17:33:47 +02:00
|
|
|
'uri' => '/res/70c1f3a3/rsrc/js/application/differential/behavior-edit-inline-comments.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
4 => 'javelin-vector',
|
|
|
|
5 => 'differential-inline-comment-editor',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-edit-inline-comments.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-feedback-preview' =>
|
|
|
|
array(
|
2012-10-01 23:56:57 +02:00
|
|
|
'uri' => '/res/5fbce8db/rsrc/js/application/differential/behavior-comment-preview.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
4 => 'javelin-util',
|
|
|
|
5 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-comment-preview.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-keyboard-navigation' =>
|
|
|
|
array(
|
2012-11-06 20:45:10 +01:00
|
|
|
'uri' => '/res/a7798465/rsrc/js/application/differential/behavior-keyboard-nav.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
Add more keyboard navigation options for inline comments
Summary:
- Use n/p to jump between comments.
- Use r to reply to the selected comment.
- Use e to edit the selected comment.
Test Plan: Verified n, p, r, e, j, k, J, K, "click edit" and "click reply"
behavior in as many weird cases as I could come up with.
Reviewers: btrahan, jungejason, nh, cpiro, jl
Reviewed By: btrahan
CC: aran, btrahan, epriestley
Maniphest Tasks: T583
Differential Revision: https://secure.phabricator.com/D1308
2012-01-04 17:21:22 +01:00
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'phabricator-keyboard-shortcut',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-keyboard-nav.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-populate' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/769b91da/rsrc/js/application/differential/behavior-populate.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-workflow',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
2012-03-13 04:04:12 +01:00
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
5 => 'phabricator-tooltip',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-populate.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-differential-show-all-comments' =>
|
|
|
|
array(
|
2012-02-26 12:54:17 +01:00
|
|
|
'uri' => '/res/eaa12efc/rsrc/js/application/differential/behavior-show-all-comments.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-show-all-comments.js',
|
|
|
|
),
|
2012-05-01 01:08:01 +02:00
|
|
|
'javelin-behavior-differential-show-field-details' =>
|
|
|
|
array(
|
2012-05-01 19:15:56 +02:00
|
|
|
'uri' => '/res/8d57f459/rsrc/js/application/differential/behavior-show-field-details.js',
|
2012-05-01 01:08:01 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-show-field-details.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-differential-show-more' =>
|
|
|
|
array(
|
2012-08-30 01:34:52 +02:00
|
|
|
'uri' => '/res/88115daf/rsrc/js/application/differential/behavior-show-more.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-workflow',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-show-more.js',
|
|
|
|
),
|
2012-06-14 07:47:46 +02:00
|
|
|
'javelin-behavior-differential-toggle-files' =>
|
|
|
|
array(
|
2012-08-24 18:36:40 +02:00
|
|
|
'uri' => '/res/ae937207/rsrc/js/application/differential/behavior-toggle-files.js',
|
2012-06-14 07:47:46 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-toggle-files.js',
|
|
|
|
),
|
2012-04-17 03:53:38 +02:00
|
|
|
'javelin-behavior-differential-user-select' =>
|
|
|
|
array(
|
2012-09-24 22:56:04 +02:00
|
|
|
'uri' => '/res/23c51a5d/rsrc/js/application/differential/behavior-user-select.js',
|
2012-04-17 03:53:38 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/differential/behavior-user-select.js',
|
|
|
|
),
|
2012-08-01 01:27:48 +02:00
|
|
|
'javelin-behavior-diffusion-commit-branches' =>
|
|
|
|
array(
|
2012-08-01 03:28:08 +02:00
|
|
|
'uri' => '/res/1ede335a/rsrc/js/application/diffusion/behavior-commit-branches.js',
|
2012-08-01 01:27:48 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-commit-branches.js',
|
|
|
|
),
|
2012-03-24 01:11:15 +01:00
|
|
|
'javelin-behavior-diffusion-commit-graph' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/cfe336e8/rsrc/js/application/diffusion/behavior-commit-graph.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-commit-graph.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-diffusion-jump-to' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/7c42e1ba/rsrc/js/application/diffusion/behavior-jump-to.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-vector',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-jump-to.js',
|
|
|
|
),
|
2012-08-04 18:47:51 +02:00
|
|
|
'javelin-behavior-diffusion-line-linker' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/d3cf5499/rsrc/js/application/diffusion/behavior-line-linker.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-uri',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-line-linker.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-diffusion-pull-lastmodified' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/29fe2790/rsrc/js/application/diffusion/behavior-pull-lastmodified.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/diffusion/behavior-pull-lastmodified.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-error-log' =>
|
|
|
|
array(
|
2012-04-18 21:50:06 +02:00
|
|
|
'uri' => '/res/f46289e9/rsrc/js/application/core/behavior-error-log.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-error-log.js',
|
|
|
|
),
|
2012-04-04 21:14:10 +02:00
|
|
|
'javelin-behavior-fancy-datepicker' =>
|
|
|
|
array(
|
2012-12-22 01:34:35 +01:00
|
|
|
'uri' => '/res/0a1bc610/rsrc/js/application/core/behavior-fancy-datepicker.js',
|
2012-04-04 21:14:10 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-dom',
|
2012-10-23 21:07:08 +02:00
|
|
|
3 => 'javelin-stratcom',
|
|
|
|
4 => 'javelin-vector',
|
2012-04-04 21:14:10 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-fancy-datepicker.js',
|
|
|
|
),
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'javelin-behavior-global-drag-and-drop' =>
|
2012-01-05 02:10:34 +01:00
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/73ae3fd1/rsrc/js/application/core/behavior-global-drag-and-drop.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-uri',
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
3 => 'javelin-mask',
|
|
|
|
4 => 'phabricator-drag-and-drop-file-upload',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'disk' => '/rsrc/js/application/core/behavior-global-drag-and-drop.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'javelin-behavior-herald-rule-editor' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/77a0c945/rsrc/js/application/herald/herald-rule-editor.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'herald-rule-editor',
|
|
|
|
1 => 'javelin-behavior',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/herald/herald-rule-editor.js',
|
|
|
|
),
|
2012-08-22 17:20:23 +02:00
|
|
|
'javelin-behavior-konami' =>
|
|
|
|
array(
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/2199602f/rsrc/js/application/core/behavior-konami.js',
|
2012-08-22 17:20:23 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-konami.js',
|
|
|
|
),
|
2012-10-23 04:06:56 +02:00
|
|
|
'javelin-behavior-lightbox-attachments' =>
|
|
|
|
array(
|
2012-11-22 17:25:13 +01:00
|
|
|
'uri' => '/res/5efba371/rsrc/js/application/core/behavior-lightbox-attachments.js',
|
2012-10-23 04:06:56 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-mask',
|
2012-10-24 02:34:43 +02:00
|
|
|
4 => 'javelin-util',
|
|
|
|
5 => 'phabricator-busy',
|
2012-10-23 04:06:56 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-lightbox-attachments.js',
|
|
|
|
),
|
2012-07-30 19:44:08 +02:00
|
|
|
'javelin-behavior-line-chart' =>
|
|
|
|
array(
|
2012-07-31 01:08:10 +02:00
|
|
|
'uri' => '/res/1aa5ac88/rsrc/js/application/maniphest/behavior-line-chart.js',
|
2012-07-30 19:44:08 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-vector',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-line-chart.js',
|
|
|
|
),
|
2012-02-24 22:00:48 +01:00
|
|
|
'javelin-behavior-maniphest-batch-editor' =>
|
|
|
|
array(
|
2012-03-21 22:01:04 +01:00
|
|
|
'uri' => '/res/d22661be/rsrc/js/application/maniphest/behavior-batch-editor.js',
|
2012-02-24 22:00:48 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-prefab',
|
|
|
|
4 => 'multirow-row-manager',
|
2012-03-21 22:01:04 +01:00
|
|
|
5 => 'javelin-json',
|
2012-02-24 22:00:48 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-batch-editor.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-maniphest-batch-selector' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/398cf8d7/rsrc/js/application/maniphest/behavior-batch-selector.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-batch-selector.js',
|
|
|
|
),
|
2012-01-25 20:23:00 +01:00
|
|
|
'javelin-behavior-maniphest-description-preview' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/8acd6f07/rsrc/js/application/maniphest/behavior-task-preview.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-task-preview.js',
|
|
|
|
),
|
2012-04-02 21:12:04 +02:00
|
|
|
'javelin-behavior-maniphest-subpriority-editor' =>
|
|
|
|
array(
|
2012-04-02 21:14:26 +02:00
|
|
|
'uri' => '/res/5e02f19a/rsrc/js/application/maniphest/behavior-subpriorityeditor.js',
|
2012-04-02 21:12:04 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-magical-init',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
5 => 'javelin-workflow',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-subpriorityeditor.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-maniphest-transaction-controls' =>
|
|
|
|
array(
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
'uri' => '/res/62465554/rsrc/js/application/maniphest/behavior-transaction-controls.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
2 => 'phabricator-prefab',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-transaction-controls.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-maniphest-transaction-expand' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/966410de/rsrc/js/application/maniphest/behavior-transaction-expand.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-workflow',
|
|
|
|
3 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-transaction-expand.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-maniphest-transaction-preview' =>
|
|
|
|
array(
|
2012-04-14 16:05:58 +02:00
|
|
|
'uri' => '/res/855c9f0c/rsrc/js/application/maniphest/behavior-transaction-preview.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
2012-04-14 16:05:58 +02:00
|
|
|
3 => 'javelin-json',
|
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
5 => 'phabricator-shaped-request',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/maniphest/behavior-transaction-preview.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-owners-path-editor' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/9cf78ffc/rsrc/js/application/owners/owners-path-editor.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'owners-path-editor',
|
|
|
|
1 => 'javelin-behavior',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/owners/owners-path-editor.js',
|
|
|
|
),
|
2012-08-22 00:03:01 +02:00
|
|
|
'javelin-behavior-phabricator-active-nav' =>
|
|
|
|
array(
|
2012-10-25 00:27:37 +02:00
|
|
|
'uri' => '/res/f879d4dd/rsrc/js/application/core/behavior-active-nav.js',
|
2012-08-22 00:03:01 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-vector',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-uri',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-active-nav.js',
|
|
|
|
),
|
2012-02-16 02:49:23 +01:00
|
|
|
'javelin-behavior-phabricator-autofocus' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/2946bb89/rsrc/js/application/core/behavior-autofocus.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-autofocus.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-phabricator-keyboard-pager' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/56d64eff/rsrc/js/application/core/behavior-keyboard-pager.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-uri',
|
|
|
|
2 => 'phabricator-keyboard-shortcut',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-keyboard-pager.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-phabricator-keyboard-shortcuts' =>
|
|
|
|
array(
|
2012-07-31 01:09:14 +02:00
|
|
|
'uri' => '/res/c5eb65cd/rsrc/js/application/core/behavior-keyboard-shortcuts.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-workflow',
|
|
|
|
2 => 'javelin-json',
|
2012-03-20 03:17:40 +01:00
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'phabricator-keyboard-shortcut',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-keyboard-shortcuts.js',
|
|
|
|
),
|
2012-08-01 21:31:33 +02:00
|
|
|
'javelin-behavior-phabricator-nav' =>
|
|
|
|
array(
|
2012-12-15 15:39:33 +01:00
|
|
|
'uri' => '/res/1aa9aa6f/rsrc/js/application/core/behavior-phabricator-nav.js',
|
2012-08-01 21:31:33 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
2012-08-31 03:58:51 +02:00
|
|
|
1 => 'javelin-behavior-device',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-magical-init',
|
|
|
|
5 => 'javelin-vector',
|
2012-08-01 21:31:33 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-phabricator-nav.js',
|
|
|
|
),
|
2012-06-14 00:00:24 +02:00
|
|
|
'javelin-behavior-phabricator-notification-example' =>
|
|
|
|
array(
|
2012-10-09 00:22:29 +02:00
|
|
|
'uri' => '/res/a6d51998/rsrc/js/application/uiexample/notification-example.js',
|
2012-06-14 00:00:24 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'phabricator-notification',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-behavior',
|
2012-06-17 20:35:36 +02:00
|
|
|
3 => 'javelin-uri',
|
2012-06-14 00:00:24 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/notification-example.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-phabricator-object-selector' =>
|
|
|
|
array(
|
2012-04-07 21:58:18 +02:00
|
|
|
'uri' => '/res/0c4b0d82/rsrc/js/application/core/behavior-object-selector.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-request',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-object-selector.js',
|
|
|
|
),
|
Kind-of-terrible (?) oncopy handler
Summary: Works in Safari, Firefox, Chrome.
Test Plan: Copied some text, threw up a little in my mouth.
Reviewers: aran, tuomaspelkonen, tomo, rstout, btrahan
Reviewed By: aran
CC: aran, epriestley, ddfisher
Maniphest Tasks: T145, T995
Differential Revision: https://secure.phabricator.com/D244
2012-03-16 03:04:59 +01:00
|
|
|
'javelin-behavior-phabricator-oncopy' =>
|
|
|
|
array(
|
2012-04-16 23:50:01 +02:00
|
|
|
'uri' => '/res/f490b8d1/rsrc/js/application/core/behavior-oncopy.js',
|
Kind-of-terrible (?) oncopy handler
Summary: Works in Safari, Firefox, Chrome.
Test Plan: Copied some text, threw up a little in my mouth.
Reviewers: aran, tuomaspelkonen, tomo, rstout, btrahan
Reviewed By: aran
CC: aran, epriestley, ddfisher
Maniphest Tasks: T145, T995
Differential Revision: https://secure.phabricator.com/D244
2012-03-16 03:04:59 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-oncopy.js',
|
|
|
|
),
|
2012-10-02 03:48:39 +02:00
|
|
|
'javelin-behavior-phabricator-remarkup-assist' =>
|
|
|
|
array(
|
2012-10-18 02:20:04 +02:00
|
|
|
'uri' => '/res/8a4f3a35/rsrc/js/application/core/behavior-phabricator-remarkup-assist.js',
|
2012-10-02 03:48:39 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'phabricator-textareautils',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-phabricator-remarkup-assist.js',
|
|
|
|
),
|
2012-08-01 02:58:21 +02:00
|
|
|
'javelin-behavior-phabricator-search-typeahead' =>
|
|
|
|
array(
|
2012-08-01 21:36:47 +02:00
|
|
|
'uri' => '/res/046ab274/rsrc/js/application/core/behavior-search-typeahead.js',
|
2012-08-01 02:58:21 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-typeahead-ondemand-source',
|
|
|
|
2 => 'javelin-typeahead',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-uri',
|
2012-08-01 21:36:33 +02:00
|
|
|
5 => 'javelin-util',
|
|
|
|
6 => 'javelin-stratcom',
|
2012-08-01 02:58:21 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-search-typeahead.js',
|
|
|
|
),
|
2012-03-13 02:21:02 +01:00
|
|
|
'javelin-behavior-phabricator-tooltips' =>
|
|
|
|
array(
|
2012-08-31 03:59:08 +02:00
|
|
|
'uri' => '/res/e0b344c6/rsrc/js/application/core/behavior-tooltip.js',
|
2012-03-13 02:21:02 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
2012-08-31 03:59:08 +02:00
|
|
|
1 => 'javelin-behavior-device',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'phabricator-tooltip',
|
2012-03-13 02:21:02 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-tooltip.js',
|
|
|
|
),
|
2012-12-21 14:51:33 +01:00
|
|
|
'javelin-behavior-phabricator-transaction-comment-form' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/acc3ada1/rsrc/js/application/transactions/behavior-transaction-comment-form.js',
|
2012-12-21 14:51:33 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/transactions/behavior-transaction-comment-form.js',
|
|
|
|
),
|
2012-12-11 23:03:16 +01:00
|
|
|
'javelin-behavior-phabricator-transaction-list' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/307a71af/rsrc/js/application/transactions/behavior-transaction-list.js',
|
2012-12-11 23:03:16 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-workflow',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-fx',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/transactions/behavior-transaction-list.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-phabricator-watch-anchor' =>
|
|
|
|
array(
|
2012-08-21 06:47:44 +02:00
|
|
|
'uri' => '/res/b20b1cc2/rsrc/js/application/core/behavior-watch-anchor.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
2012-01-06 01:36:59 +01:00
|
|
|
3 => 'javelin-vector',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-watch-anchor.js',
|
|
|
|
),
|
2012-04-12 22:09:04 +02:00
|
|
|
'javelin-behavior-phame-post-preview' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/ac4c503a/rsrc/js/application/phame/phame-post-preview.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/phame/phame-post-preview.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-phriction-document-preview' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/f1665ecd/rsrc/js/application/phriction/phriction-document-preview.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/phriction/phriction-document-preview.js',
|
|
|
|
),
|
2012-08-10 19:44:04 +02:00
|
|
|
'javelin-behavior-ponder-feedback-preview' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/2e802dd9/rsrc/js/application/ponder/behavior-comment-preview.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'phabricator-shaped-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/ponder/behavior-comment-preview.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-ponder-votebox' =>
|
|
|
|
array(
|
2012-10-01 21:56:33 +02:00
|
|
|
'uri' => '/res/9d091af3/rsrc/js/application/ponder/behavior-votebox.js',
|
2012-08-10 19:44:04 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-util',
|
2012-10-01 21:56:33 +02:00
|
|
|
3 => 'javelin-stratcom',
|
|
|
|
4 => 'javelin-request',
|
2012-08-10 19:44:04 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/ponder/behavior-votebox.js',
|
|
|
|
),
|
2012-08-08 19:03:41 +02:00
|
|
|
'javelin-behavior-project-create' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/e91f3f8f/rsrc/js/application/projects/behavior-project-create.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-workflow',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/projects/behavior-project-create.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-refresh-csrf' =>
|
|
|
|
array(
|
2012-10-24 02:34:43 +02:00
|
|
|
'uri' => '/res/6fd76d0f/rsrc/js/application/core/behavior-refresh-csrf.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-request',
|
|
|
|
1 => 'javelin-behavior',
|
|
|
|
2 => 'javelin-dom',
|
2012-10-24 02:34:43 +02:00
|
|
|
3 => 'phabricator-busy',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-refresh-csrf.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-repository-crossreference' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/244c5251/rsrc/js/application/repository/repository-crossreference.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
2012-09-17 23:50:49 +02:00
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-uri',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/repository/repository-crossreference.js',
|
|
|
|
),
|
2012-04-05 01:09:29 +02:00
|
|
|
'javelin-behavior-stripe-payment-form' =>
|
|
|
|
array(
|
2012-04-05 19:47:20 +02:00
|
|
|
'uri' => '/res/87c7b043/rsrc/js/application/phortune/behavior-stripe-payment-form.js',
|
2012-04-05 01:09:29 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-json',
|
|
|
|
3 => 'stripe-core',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/phortune/behavior-stripe-payment-form.js',
|
|
|
|
),
|
2012-07-31 01:08:42 +02:00
|
|
|
'javelin-behavior-toggle-class' =>
|
|
|
|
array(
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
'uri' => '/res/fa818e0f/rsrc/js/application/core/behavior-toggle-class.js',
|
2012-07-31 01:08:42 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-toggle-class.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-behavior-view-placeholder' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/5b89bdf5/rsrc/js/javelin/ext/view/ViewPlaceholder.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-view-renderer',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/ViewPlaceholder.js',
|
|
|
|
),
|
|
|
|
'javelin-behavior-workflow' =>
|
|
|
|
array(
|
2012-11-22 17:25:13 +01:00
|
|
|
'uri' => '/res/2b0e2754/rsrc/js/application/core/behavior-workflow.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-workflow',
|
2012-10-17 17:28:37 +02:00
|
|
|
3 => 'javelin-dom',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/behavior-workflow.js',
|
|
|
|
),
|
|
|
|
'javelin-color' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/b0439fc9/rsrc/js/javelin/ext/fx/Color.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/fx/Color.js',
|
|
|
|
),
|
|
|
|
'javelin-cookie' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/a9cddab0/rsrc/js/javelin/lib/Cookie.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Cookie.js',
|
|
|
|
),
|
|
|
|
'javelin-dom' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/2826c532/rsrc/js/javelin/lib/DOM.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-magical-init',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/DOM.js',
|
|
|
|
),
|
|
|
|
'javelin-dynval' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/d89c6f88/rsrc/js/javelin/ext/reactor/core/DynVal.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-reactornode',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-reactor',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/reactor/core/DynVal.js',
|
|
|
|
),
|
|
|
|
'javelin-event' =>
|
|
|
|
array(
|
2012-11-22 17:25:13 +01:00
|
|
|
'uri' => '/res/3815b473/rsrc/js/javelin/core/Event.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/core/Event.js',
|
|
|
|
),
|
|
|
|
'javelin-fx' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/30ef0914/rsrc/js/javelin/ext/fx/FX.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-color',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/fx/FX.js',
|
|
|
|
),
|
|
|
|
'javelin-history' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/9bb36651/rsrc/js/javelin/lib/History.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-stratcom',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'javelin-uri',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/History.js',
|
|
|
|
),
|
|
|
|
'javelin-install' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/cab679ff/rsrc/js/javelin/core/install.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-util',
|
|
|
|
1 => 'javelin-magical-init',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/core/install.js',
|
|
|
|
),
|
|
|
|
'javelin-json' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/561b8056/rsrc/js/javelin/lib/JSON.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/JSON.js',
|
|
|
|
),
|
|
|
|
'javelin-magical-init' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/4f3c705c/rsrc/js/javelin/core/init.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/core/init.js',
|
|
|
|
),
|
|
|
|
'javelin-mask' =>
|
|
|
|
array(
|
2012-10-23 20:39:33 +02:00
|
|
|
'uri' => '/res/d2a35fff/rsrc/js/javelin/lib/Mask.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
2012-10-23 20:39:33 +02:00
|
|
|
1 => 'javelin-dom',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Mask.js',
|
|
|
|
),
|
|
|
|
'javelin-reactor' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/dfd87f3c/rsrc/js/javelin/ext/reactor/core/Reactor.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/reactor/core/Reactor.js',
|
|
|
|
),
|
|
|
|
'javelin-reactor-dom' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/701b6f39/rsrc/js/javelin/ext/reactor/dom/RDOM.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-dom',
|
|
|
|
1 => 'javelin-dynval',
|
|
|
|
2 => 'javelin-reactornode',
|
|
|
|
3 => 'javelin-install',
|
|
|
|
4 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/reactor/dom/RDOM.js',
|
|
|
|
),
|
|
|
|
'javelin-reactor-node-calmer' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/5a35920a/rsrc/js/javelin/ext/reactor/core/ReactorNodeCalmer.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-reactor',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/reactor/core/ReactorNodeCalmer.js',
|
|
|
|
),
|
|
|
|
'javelin-reactornode' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/f278cc27/rsrc/js/javelin/ext/reactor/core/ReactorNode.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-reactor',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-reactor-node-calmer',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/reactor/core/ReactorNode.js',
|
|
|
|
),
|
|
|
|
'javelin-request' =>
|
|
|
|
array(
|
2012-11-21 17:37:01 +01:00
|
|
|
'uri' => '/res/e25d75b3/rsrc/js/javelin/lib/Request.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-behavior',
|
|
|
|
4 => 'javelin-json',
|
|
|
|
5 => 'javelin-dom',
|
2012-11-21 03:01:25 +01:00
|
|
|
6 => 'javelin-resource',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Request.js',
|
|
|
|
),
|
|
|
|
'javelin-resource' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/d5a3f835/rsrc/js/javelin/lib/Resource.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-magical-init',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-uri',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Resource.js',
|
|
|
|
),
|
|
|
|
'javelin-stratcom' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/c81f64eb/rsrc/js/javelin/core/Stratcom.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-event',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-magical-init',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/core/Stratcom.js',
|
|
|
|
),
|
|
|
|
'javelin-tokenizer' =>
|
|
|
|
array(
|
2012-10-20 19:53:51 +02:00
|
|
|
'uri' => '/res/c75c9e12/rsrc/js/javelin/lib/control/tokenizer/Tokenizer.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-dom',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/tokenizer/Tokenizer.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead' =>
|
|
|
|
array(
|
2012-10-20 19:53:51 +02:00
|
|
|
'uri' => '/res/dccb789e/rsrc/js/javelin/lib/control/typeahead/Typeahead.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-vector',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/Typeahead.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead-composite-source' =>
|
|
|
|
array(
|
2012-10-02 00:37:02 +02:00
|
|
|
'uri' => '/res/99705f64/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadCompositeSource.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-typeahead-source',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadCompositeSource.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead-normalizer' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/a9e97c0d/rsrc/js/javelin/lib/control/typeahead/normalizer/TypeaheadNormalizer.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/normalizer/TypeaheadNormalizer.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead-ondemand-source' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/81e531aa/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadOnDemandSource.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
4 => 'javelin-typeahead-source',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadOnDemandSource.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead-preloaded-source' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/d464efd2/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadPreloadedSource.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
4 => 'javelin-typeahead-source',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadPreloadedSource.js',
|
|
|
|
),
|
|
|
|
'javelin-typeahead-source' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/74b1f091/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadSource.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-typeahead-normalizer',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadSource.js',
|
|
|
|
),
|
2012-09-17 23:50:49 +02:00
|
|
|
'javelin-typeahead-static-source' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/c8e247fc/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadStaticSource.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-typeahead-source',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/control/typeahead/source/TypeaheadStaticSource.js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'javelin-uri' =>
|
|
|
|
array(
|
2012-10-02 00:37:02 +02:00
|
|
|
'uri' => '/res/c107d858/rsrc/js/javelin/lib/URI.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/URI.js',
|
|
|
|
),
|
|
|
|
'javelin-util' =>
|
|
|
|
array(
|
2012-09-17 23:50:49 +02:00
|
|
|
'uri' => '/res/25786b6c/rsrc/js/javelin/core/util.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/core/util.js',
|
|
|
|
),
|
|
|
|
'javelin-vector' =>
|
|
|
|
array(
|
2012-02-23 21:26:14 +01:00
|
|
|
'uri' => '/res/f240bdb3/rsrc/js/javelin/lib/Vector.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-event',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Vector.js',
|
|
|
|
),
|
|
|
|
'javelin-view' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/b98657a7/rsrc/js/javelin/ext/view/View.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/View.js',
|
|
|
|
),
|
|
|
|
'javelin-view-html' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/7e5a2122/rsrc/js/javelin/ext/view/HTMLView.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/HTMLView.js',
|
|
|
|
),
|
|
|
|
'javelin-view-interpreter' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/17e911ca/rsrc/js/javelin/ext/view/ViewInterpreter.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-view',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/ViewInterpreter.js',
|
|
|
|
),
|
|
|
|
'javelin-view-renderer' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/db4ed5a2/rsrc/js/javelin/ext/view/ViewRenderer.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/ViewRenderer.js',
|
|
|
|
),
|
|
|
|
'javelin-view-visitor' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/0ef9dc43/rsrc/js/javelin/ext/view/ViewVisitor.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/ext/view/ViewVisitor.js',
|
|
|
|
),
|
|
|
|
'javelin-workflow' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/519c4e1a/rsrc/js/javelin/lib/Workflow.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-stratcom',
|
|
|
|
1 => 'javelin-request',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
4 => 'javelin-install',
|
|
|
|
5 => 'javelin-util',
|
|
|
|
6 => 'javelin-mask',
|
|
|
|
7 => 'javelin-uri',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/javelin/lib/Workflow.js',
|
|
|
|
),
|
2012-10-23 04:06:56 +02:00
|
|
|
'lightbox-attachment-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/4657e15d/rsrc/css/aphront/lightbox-attachment.css',
|
2012-10-23 04:06:56 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/lightbox-attachment.css',
|
|
|
|
),
|
2012-02-24 22:00:48 +01:00
|
|
|
'maniphest-batch-editor' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/fb15d744/rsrc/css/application/maniphest/batch-editor.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/maniphest/batch-editor.css',
|
|
|
|
),
|
2012-03-01 23:19:11 +01:00
|
|
|
'maniphest-report-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/2e633fcf/rsrc/css/application/maniphest/report.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/maniphest/report.css',
|
|
|
|
),
|
2012-01-25 20:23:00 +01:00
|
|
|
'maniphest-task-edit-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/68c7863e/rsrc/css/application/maniphest/task-edit.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/maniphest/task-edit.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'maniphest-task-summary-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/a520d90e/rsrc/css/application/maniphest/task-summary.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/maniphest/task-summary.css',
|
|
|
|
),
|
|
|
|
'maniphest-transaction-detail-css' =>
|
|
|
|
array(
|
2012-02-24 22:02:35 +01:00
|
|
|
'uri' => '/res/24e5862f/rsrc/css/application/maniphest/transaction-detail.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/maniphest/transaction-detail.css',
|
|
|
|
),
|
|
|
|
'multirow-row-manager' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/0a9b3dee/rsrc/js/application/core/MultirowRowManager.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-stratcom',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/MultirowRowManager.js',
|
|
|
|
),
|
|
|
|
'owners-path-editor' =>
|
|
|
|
array(
|
2012-12-07 02:23:56 +01:00
|
|
|
'uri' => '/res/29b68354/rsrc/js/application/owners/OwnersPathEditor.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'multirow-row-manager',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'path-typeahead',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-util',
|
2012-12-07 02:23:56 +01:00
|
|
|
5 => 'phabricator-prefab',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/owners/OwnersPathEditor.js',
|
|
|
|
),
|
|
|
|
'owners-path-editor-css' =>
|
|
|
|
array(
|
2012-12-07 02:23:56 +01:00
|
|
|
'uri' => '/res/4fcaabf6/rsrc/css/application/owners/owners-path-editor.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/owners/owners-path-editor.css',
|
|
|
|
),
|
|
|
|
'path-typeahead' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/50246fb6/rsrc/js/application/herald/PathTypeahead.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-typeahead',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-request',
|
|
|
|
4 => 'javelin-typeahead-ondemand-source',
|
|
|
|
5 => 'javelin-util',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/herald/PathTypeahead.js',
|
|
|
|
),
|
2012-08-15 19:45:06 +02:00
|
|
|
'phabricator-action-list-view-css' =>
|
|
|
|
array(
|
2012-12-11 23:03:16 +01:00
|
|
|
'uri' => '/res/7a67c3b9/rsrc/css/layout/phabricator-action-list-view.css',
|
2012-08-15 19:45:06 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-action-list-view.css',
|
|
|
|
),
|
2012-02-27 22:14:32 +01:00
|
|
|
'phabricator-app-buttons-css' =>
|
|
|
|
array(
|
2012-11-24 15:46:57 +01:00
|
|
|
'uri' => '/res/1a1f926e/rsrc/css/application/directory/phabricator-app-buttons.css',
|
2012-02-27 22:14:32 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/directory/phabricator-app-buttons.css',
|
|
|
|
),
|
2012-08-02 23:07:21 +02:00
|
|
|
'phabricator-application-launch-view-css' =>
|
|
|
|
array(
|
2012-12-09 02:03:33 +01:00
|
|
|
'uri' => '/res/464720b1/rsrc/css/application/base/phabricator-application-launch-view.css',
|
2012-08-02 23:07:21 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/base/phabricator-application-launch-view.css',
|
|
|
|
),
|
2012-10-24 02:34:43 +02:00
|
|
|
'phabricator-busy' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/6ec372e1/rsrc/js/application/core/Busy.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/Busy.js',
|
|
|
|
),
|
2012-02-17 19:21:38 +01:00
|
|
|
'phabricator-chatlog-css' =>
|
|
|
|
array(
|
2012-06-02 23:00:08 +02:00
|
|
|
'uri' => '/res/f6631adc/rsrc/css/application/chatlog/chatlog.css',
|
2012-02-17 19:21:38 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/chatlog/chatlog.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-content-source-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/8c738a93/rsrc/css/application/contentsource/content-source-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/contentsource/content-source-view.css',
|
|
|
|
),
|
|
|
|
'phabricator-core-buttons-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/7320ca6d/rsrc/css/core/buttons.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/core/buttons.css',
|
|
|
|
),
|
|
|
|
'phabricator-core-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/03c97d00/rsrc/css/core/core.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/core/core.css',
|
|
|
|
),
|
|
|
|
'phabricator-countdown-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/0f646281/rsrc/css/application/countdown/timer.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/countdown/timer.css',
|
|
|
|
),
|
2012-12-07 22:38:02 +01:00
|
|
|
'phabricator-crumbs-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/69fdba64/rsrc/css/layout/phabricator-crumbs-view.css',
|
2012-12-07 22:38:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-crumbs-view.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-directory-css' =>
|
|
|
|
array(
|
Replace home directory list with a dashboard
Summary:
Rough cut that still needs a lot of polish, but replace the directory list with
more of a dashboard type thing:
- Show "Unbreak Now", triage-in-your-projects, and other stuff that you're
supposed to deal with, then feed.
- Move tools a click a way behind nav -- this also lets us put more stuff
there and subtools, etc., later.
- Remove tabs.
- Merge the category/item editing views.
- I also added a light blue wash to the side nav, not sure if I like that or
not.
Test Plan:
- Viewed all elements in empty and nonempty states.
- Viewed applications, edited items/categories.
Reviewers: btrahan, aran
Reviewed By: btrahan
CC: aran, epriestley, davidreuss
Maniphest Tasks: T21, T631
Differential Revision: https://secure.phabricator.com/D1574
2012-02-08 01:04:48 +01:00
|
|
|
'uri' => '/res/61afca2b/rsrc/css/application/directory/phabricator-directory.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/directory/phabricator-directory.css',
|
|
|
|
),
|
|
|
|
'phabricator-drag-and-drop-file-upload' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/ce71f19a/rsrc/js/application/core/DragAndDropFileUpload.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-request',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-uri',
|
2012-10-09 00:23:05 +02:00
|
|
|
5 => 'phabricator-file-upload',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/DragAndDropFileUpload.js',
|
|
|
|
),
|
2012-01-05 01:52:13 +01:00
|
|
|
'phabricator-dropdown-menu' =>
|
|
|
|
array(
|
2012-06-27 03:22:53 +02:00
|
|
|
'uri' => '/res/2b4aa4d8/rsrc/js/application/core/DropdownMenu.js',
|
2012-01-05 01:52:13 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
4 => 'javelin-stratcom',
|
|
|
|
5 => 'phabricator-menu-item',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/DropdownMenu.js',
|
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'phabricator-feed-css' =>
|
|
|
|
array(
|
2012-04-10 00:07:38 +02:00
|
|
|
'uri' => '/res/8ddc1d44/rsrc/css/application/feed/feed.css',
|
2012-02-24 22:02:35 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/feed/feed.css',
|
|
|
|
),
|
2012-10-09 00:23:05 +02:00
|
|
|
'phabricator-file-upload' =>
|
|
|
|
array(
|
2012-10-09 17:34:06 +02:00
|
|
|
'uri' => '/res/2de10295/rsrc/js/application/core/FileUpload.js',
|
2012-10-09 00:23:05 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
2012-10-09 17:34:06 +02:00
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'phabricator-notification',
|
2012-10-09 00:23:05 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/FileUpload.js',
|
|
|
|
),
|
2012-08-22 00:03:01 +02:00
|
|
|
'phabricator-filetree-view-css' =>
|
|
|
|
array(
|
2012-12-07 22:32:14 +01:00
|
|
|
'uri' => '/res/d05c5c2b/rsrc/css/layout/phabricator-filetree-view.css',
|
2012-08-22 00:03:01 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-filetree-view.css',
|
|
|
|
),
|
2012-03-28 01:22:40 +02:00
|
|
|
'phabricator-flag-css' =>
|
|
|
|
array(
|
2012-08-21 06:47:44 +02:00
|
|
|
'uri' => '/res/2eee890a/rsrc/css/application/flag/flag.css',
|
2012-03-28 01:22:40 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/flag/flag.css',
|
|
|
|
),
|
2012-08-15 23:15:12 +02:00
|
|
|
'phabricator-form-view-css' =>
|
|
|
|
array(
|
2012-12-07 22:38:02 +01:00
|
|
|
'uri' => '/res/bdec7be5/rsrc/css/layout/phabricator-form-view.css',
|
2012-08-15 23:15:12 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-form-view.css',
|
|
|
|
),
|
2012-08-15 19:45:06 +02:00
|
|
|
'phabricator-header-view-css' =>
|
|
|
|
array(
|
2012-12-11 23:03:16 +01:00
|
|
|
'uri' => '/res/88ef478c/rsrc/css/layout/phabricator-header-view.css',
|
2012-08-15 19:45:06 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-header-view.css',
|
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'phabricator-jump-nav' =>
|
|
|
|
array(
|
2012-02-27 22:14:32 +01:00
|
|
|
'uri' => '/res/8bdc0fc3/rsrc/css/application/directory/phabricator-jump-nav.css',
|
2012-02-24 22:02:35 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/directory/phabricator-jump-nav.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-keyboard-shortcut' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/beed38cd/rsrc/js/application/core/KeyboardShortcut.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'phabricator-keyboard-shortcut-manager',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/KeyboardShortcut.js',
|
|
|
|
),
|
|
|
|
'phabricator-keyboard-shortcut-manager' =>
|
|
|
|
array(
|
2012-03-06 04:51:16 +01:00
|
|
|
'uri' => '/res/0be80136/rsrc/js/application/core/KeyboardShortcutManager.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-stratcom',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-vector',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/KeyboardShortcutManager.js',
|
|
|
|
),
|
2012-07-31 01:09:14 +02:00
|
|
|
'phabricator-main-menu-view' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/51372302/rsrc/css/application/base/main-menu-view.css',
|
2012-07-31 01:09:14 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/base/main-menu-view.css',
|
|
|
|
),
|
2012-01-05 01:52:13 +01:00
|
|
|
'phabricator-menu-item' =>
|
|
|
|
array(
|
2012-01-17 07:17:18 +01:00
|
|
|
'uri' => '/res/32fc2325/rsrc/js/application/core/DropdownMenuItem.js',
|
2012-01-05 01:52:13 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/DropdownMenuItem.js',
|
|
|
|
),
|
2012-08-01 21:31:33 +02:00
|
|
|
'phabricator-nav-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/437241a5/rsrc/css/aphront/phabricator-nav-view.css',
|
2012-08-01 21:31:33 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/phabricator-nav-view.css',
|
|
|
|
),
|
2012-06-14 00:00:24 +02:00
|
|
|
'phabricator-notification' =>
|
|
|
|
array(
|
2012-10-09 17:34:06 +02:00
|
|
|
'uri' => '/res/ad727561/rsrc/js/application/core/Notification.js',
|
2012-06-14 00:00:24 +02:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-dom',
|
|
|
|
2 => 'javelin-stratcom',
|
2012-06-17 20:35:36 +02:00
|
|
|
3 => 'javelin-util',
|
2012-10-09 17:34:06 +02:00
|
|
|
4 => 'phabricator-notification-css',
|
2012-06-14 00:00:24 +02:00
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/Notification.js',
|
|
|
|
),
|
|
|
|
'phabricator-notification-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/664b9bec/rsrc/css/aphront/notification.css',
|
2012-06-14 00:00:24 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/notification.css',
|
|
|
|
),
|
2012-07-31 01:09:14 +02:00
|
|
|
'phabricator-notification-menu-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/d0d0264c/rsrc/css/application/base/notification-menu.css',
|
2012-07-31 01:09:14 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/base/notification-menu.css',
|
|
|
|
),
|
2012-08-15 19:45:06 +02:00
|
|
|
'phabricator-object-item-list-view-css' =>
|
|
|
|
array(
|
2012-12-17 17:26:44 +01:00
|
|
|
'uri' => '/res/8ae43833/rsrc/css/layout/phabricator-object-item-list-view.css',
|
2012-08-15 19:45:06 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-object-item-list-view.css',
|
|
|
|
),
|
2012-08-07 20:57:38 +02:00
|
|
|
'phabricator-object-list-view-css' =>
|
|
|
|
array(
|
2012-08-08 19:03:41 +02:00
|
|
|
'uri' => '/res/4f183668/rsrc/css/application/projects/phabricator-object-list-view.css',
|
2012-08-07 20:57:38 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/projects/phabricator-object-list-view.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-object-selector-css' =>
|
|
|
|
array(
|
2012-03-20 03:20:49 +01:00
|
|
|
'uri' => '/res/7eb4c705/rsrc/css/application/objectselector/object-selector.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'aphront-dialog-view-css',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/objectselector/object-selector.css',
|
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'phabricator-paste-file-upload' =>
|
2012-01-25 20:23:00 +01:00
|
|
|
array(
|
2012-10-23 04:06:56 +02:00
|
|
|
'uri' => '/res/b0b8afd8/rsrc/js/application/core/PasteFileUpload.js',
|
2012-01-25 20:23:00 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
2012-02-24 22:02:35 +01:00
|
|
|
2 => 'javelin-request',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-uri',
|
2012-02-24 00:47:41 +01:00
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'disk' => '/rsrc/js/application/core/PasteFileUpload.js',
|
2012-02-24 00:47:41 +01:00
|
|
|
),
|
2012-10-01 23:09:33 +02:00
|
|
|
'phabricator-pinboard-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/3a24d210/rsrc/css/layout/phabricator-pinboard-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-pinboard-view.css',
|
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'phabricator-prefab' =>
|
2012-02-24 00:47:41 +01:00
|
|
|
array(
|
2012-03-21 22:01:04 +01:00
|
|
|
'uri' => '/res/2734e45f/rsrc/js/application/core/Prefab.js',
|
2012-02-24 00:47:41 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
2012-02-24 22:02:35 +01:00
|
|
|
2 => 'javelin-dom',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
3 => 'javelin-typeahead',
|
|
|
|
4 => 'javelin-tokenizer',
|
|
|
|
5 => 'javelin-typeahead-preloaded-source',
|
|
|
|
6 => 'javelin-typeahead-ondemand-source',
|
|
|
|
7 => 'javelin-dom',
|
|
|
|
8 => 'javelin-stratcom',
|
|
|
|
9 => 'javelin-util',
|
2012-02-24 00:47:41 +01:00
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'disk' => '/rsrc/js/application/core/Prefab.js',
|
2012-02-24 00:47:41 +01:00
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-profile-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/9869d10b/rsrc/css/application/profile/profile-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/profile/profile-view.css',
|
|
|
|
),
|
|
|
|
'phabricator-profile-header-css' =>
|
|
|
|
array(
|
2012-01-25 20:51:20 +01:00
|
|
|
'uri' => '/res/4b1cb23b/rsrc/css/application/profile/profile-header-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/profile/profile-header-view.css',
|
|
|
|
),
|
2012-04-02 19:27:31 +02:00
|
|
|
'phabricator-project-tag-css' =>
|
|
|
|
array(
|
2012-04-02 20:16:05 +02:00
|
|
|
'uri' => '/res/6b0a5223/rsrc/css/application/projects/project-tag.css',
|
2012-04-02 19:27:31 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/projects/project-tag.css',
|
|
|
|
),
|
2012-08-15 19:45:06 +02:00
|
|
|
'phabricator-property-list-view-css' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/cd84ee5a/rsrc/css/layout/phabricator-property-list-view.css',
|
2012-08-15 19:45:06 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-property-list-view.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-remarkup-css' =>
|
|
|
|
array(
|
2012-12-17 22:19:45 +01:00
|
|
|
'uri' => '/res/f444d7c9/rsrc/css/core/remarkup.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/core/remarkup.css',
|
|
|
|
),
|
|
|
|
'phabricator-search-results-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/f8a86e27/rsrc/css/application/search/search-results.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/search/search-results.css',
|
|
|
|
),
|
|
|
|
'phabricator-shaped-request' =>
|
|
|
|
array(
|
2012-10-01 23:56:57 +02:00
|
|
|
'uri' => '/res/fbdb92db/rsrc/js/application/core/ShapedRequest.js',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-request',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/ShapedRequest.js',
|
|
|
|
),
|
2012-12-07 22:33:03 +01:00
|
|
|
'phabricator-side-menu-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/9453a468/rsrc/css/layout/phabricator-side-menu-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-side-menu-view.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-slowvote-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/94d20443/rsrc/css/application/slowvote/slowvote.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/slowvote/slowvote.css',
|
|
|
|
),
|
2012-08-15 19:45:06 +02:00
|
|
|
'phabricator-source-code-view-css' =>
|
|
|
|
array(
|
2012-12-17 02:58:16 +01:00
|
|
|
'uri' => '/res/87935c75/rsrc/css/layout/phabricator-source-code-view.css',
|
2012-08-15 19:45:06 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-source-code-view.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-standard-page-view' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/395bbefe/rsrc/css/application/base/standard-page-view.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/base/standard-page-view.css',
|
|
|
|
),
|
2012-11-24 15:47:06 +01:00
|
|
|
'phabricator-tag-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/e10bf844/rsrc/css/layout/phabricator-tag-view.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-tag-view.css',
|
|
|
|
),
|
2012-10-02 03:48:39 +02:00
|
|
|
'phabricator-textareautils' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/703614ea/rsrc/js/application/core/TextAreaUtils.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/TextAreaUtils.js',
|
|
|
|
),
|
2012-11-22 17:25:13 +01:00
|
|
|
'phabricator-timeline-view-css' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/d87e1d60/rsrc/css/layout/phabricator-timeline-view.css',
|
2012-11-22 17:25:13 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/layout/phabricator-timeline-view.css',
|
|
|
|
),
|
2012-03-13 02:21:02 +01:00
|
|
|
'phabricator-tooltip' =>
|
|
|
|
array(
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/55d76b9b/rsrc/js/application/core/ToolTip.js',
|
2012-03-13 02:21:02 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-util',
|
|
|
|
2 => 'javelin-dom',
|
|
|
|
3 => 'javelin-vector',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/core/ToolTip.js',
|
|
|
|
),
|
2012-02-24 22:02:35 +01:00
|
|
|
'phabricator-transaction-view-css' =>
|
|
|
|
array(
|
2012-02-24 23:14:39 +01:00
|
|
|
'uri' => '/res/731959fb/rsrc/css/aphront/transaction.css',
|
2012-02-24 22:02:35 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/aphront/transaction.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phabricator-ui-example-css' =>
|
|
|
|
array(
|
2012-07-31 01:08:42 +02:00
|
|
|
'uri' => '/res/376ab671/rsrc/css/application/uiexample/example.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/uiexample/example.css',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-javelin-view' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/a2ce2cfc/rsrc/js/application/uiexample/JavelinViewExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/JavelinViewExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-button' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/142127f6/rsrc/js/application/uiexample/ReactorButtonExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorButtonExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-checkbox' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/c75cb9e9/rsrc/js/application/uiexample/ReactorCheckboxExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorCheckboxExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-focus' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/3cc992eb/rsrc/js/application/uiexample/ReactorFocusExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorFocusExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-input' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/4953da16/rsrc/js/application/uiexample/ReactorInputExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
5 => 'javelin-view-html',
|
|
|
|
6 => 'javelin-view-interpreter',
|
|
|
|
7 => 'javelin-view-renderer',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorInputExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-mouseover' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/52a355b6/rsrc/js/application/uiexample/ReactorMouseoverExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorMouseoverExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-radio' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/ae87f3af/rsrc/js/application/uiexample/ReactorRadioExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorRadioExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-select' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/23cb448a/rsrc/js/application/uiexample/ReactorSelectExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorSelectExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-sendclass' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/8cd34264/rsrc/js/application/uiexample/ReactorSendClassExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorSendClassExample.js',
|
|
|
|
),
|
|
|
|
'phabricator-uiexample-reactor-sendproperties' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/18af54aa/rsrc/js/application/uiexample/ReactorSendPropertiesExample.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-install',
|
|
|
|
1 => 'javelin-view',
|
|
|
|
2 => 'javelin-util',
|
|
|
|
3 => 'javelin-dom',
|
|
|
|
4 => 'javelin-reactor-dom',
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/application/uiexample/ReactorSendPropertiesExample.js',
|
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'phabricator-zindex-css' =>
|
|
|
|
array(
|
2012-12-30 20:09:18 +01:00
|
|
|
'uri' => '/res/81ca67ef/rsrc/css/core/z-index.css',
|
2012-12-30 18:30:21 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/core/z-index.css',
|
|
|
|
),
|
2012-10-13 01:01:33 +02:00
|
|
|
'phame-css' =>
|
2012-10-02 00:37:02 +02:00
|
|
|
array(
|
2012-12-07 22:38:02 +01:00
|
|
|
'uri' => '/res/8e3edb71/rsrc/css/application/phame/phame.css',
|
2012-10-02 00:37:02 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
2012-10-13 01:01:33 +02:00
|
|
|
'disk' => '/rsrc/css/application/phame/phame.css',
|
2012-10-02 00:37:02 +02:00
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'phriction-document-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/8d09bd7f/rsrc/css/application/phriction/phriction-document-css.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/phriction/phriction-document-css.css',
|
|
|
|
),
|
adding comments to ponder
Summary: This is pretty spartan, but it does the job.
Test Plan:
Patch, update storage, add some comment
to your favorite question or answer.
Reviewers: nh, vrana, epriestley
Reviewed By: epriestley
CC: aran, Korvin, starruler, syrneus, me.here, victorzarate7
Maniphest Tasks: T1645
Differential Revision: https://secure.phabricator.com/D3471
2012-09-11 21:13:20 +02:00
|
|
|
'ponder-comment-table-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/a1bb9056/rsrc/css/application/ponder/comments.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/ponder/comments.css',
|
|
|
|
),
|
2012-08-10 19:44:04 +02:00
|
|
|
'ponder-core-view-css' =>
|
|
|
|
array(
|
adding comments to ponder
Summary: This is pretty spartan, but it does the job.
Test Plan:
Patch, update storage, add some comment
to your favorite question or answer.
Reviewers: nh, vrana, epriestley
Reviewed By: epriestley
CC: aran, Korvin, starruler, syrneus, me.here, victorzarate7
Maniphest Tasks: T1645
Differential Revision: https://secure.phabricator.com/D3471
2012-09-11 21:13:20 +02:00
|
|
|
'uri' => '/res/3a2d5e18/rsrc/css/application/ponder/core.css',
|
2012-08-10 19:44:04 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/ponder/core.css',
|
|
|
|
),
|
|
|
|
'ponder-feed-view-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/df22bd20/rsrc/css/application/ponder/feed.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/ponder/feed.css',
|
|
|
|
),
|
|
|
|
'ponder-post-css' =>
|
|
|
|
array(
|
adding comments to ponder
Summary: This is pretty spartan, but it does the job.
Test Plan:
Patch, update storage, add some comment
to your favorite question or answer.
Reviewers: nh, vrana, epriestley
Reviewed By: epriestley
CC: aran, Korvin, starruler, syrneus, me.here, victorzarate7
Maniphest Tasks: T1645
Differential Revision: https://secure.phabricator.com/D3471
2012-09-11 21:13:20 +02:00
|
|
|
'uri' => '/res/013b9e2c/rsrc/css/application/ponder/post.css',
|
2012-08-10 19:44:04 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/ponder/post.css',
|
|
|
|
),
|
|
|
|
'ponder-vote-css' =>
|
|
|
|
array(
|
2012-10-01 21:56:33 +02:00
|
|
|
'uri' => '/res/ea8316c2/rsrc/css/application/ponder/vote.css',
|
2012-08-10 19:44:04 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/ponder/vote.css',
|
|
|
|
),
|
2012-02-22 00:10:24 +01:00
|
|
|
'raphael-core' =>
|
|
|
|
array(
|
2012-04-02 21:07:59 +02:00
|
|
|
'uri' => '/res/3f48575a/rsrc/js/raphael/raphael.js',
|
2012-02-22 00:10:24 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/raphael/raphael.js',
|
|
|
|
),
|
|
|
|
'raphael-g' =>
|
|
|
|
array(
|
2012-04-02 21:07:59 +02:00
|
|
|
'uri' => '/res/b07e5245/rsrc/js/raphael/g.raphael.js',
|
2012-02-22 00:10:24 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/raphael/g.raphael.js',
|
|
|
|
),
|
|
|
|
'raphael-g-line' =>
|
|
|
|
array(
|
2012-04-02 21:07:59 +02:00
|
|
|
'uri' => '/res/a59c8556/rsrc/js/raphael/g.raphael.line.js',
|
2012-02-22 00:10:24 +01:00
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/raphael/g.raphael.line.js',
|
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'setup-issue-css' =>
|
|
|
|
array(
|
2012-12-31 02:04:38 +01:00
|
|
|
'uri' => '/res/d642d4e5/rsrc/css/application/config/setup-issue.css',
|
2012-12-30 18:30:21 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/config/setup-issue.css',
|
|
|
|
),
|
2012-12-07 22:38:02 +01:00
|
|
|
'sprite-apps-css' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'uri' => '/res/355e46a9/rsrc/css/sprite-apps.css',
|
2012-12-07 22:38:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-apps.css',
|
|
|
|
),
|
|
|
|
'sprite-apps-large-css' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'uri' => '/res/e291eaad/rsrc/css/sprite-apps-large.css',
|
2012-12-07 22:38:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-apps-large.css',
|
|
|
|
),
|
|
|
|
'sprite-apps-xlarge-css' =>
|
|
|
|
array(
|
2012-12-28 23:21:41 +01:00
|
|
|
'uri' => '/res/c5914e13/rsrc/css/sprite-apps-xlarge.css',
|
2012-12-07 22:38:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-apps-xlarge.css',
|
|
|
|
),
|
|
|
|
'sprite-gradient-css' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/37b2a829/rsrc/css/sprite-gradient.css',
|
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-gradient.css',
|
|
|
|
),
|
2012-11-24 01:35:39 +01:00
|
|
|
'sprite-icon-css' =>
|
|
|
|
array(
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
'uri' => '/res/ff841245/rsrc/css/sprite-icon.css',
|
2012-11-24 01:35:39 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-icon.css',
|
|
|
|
),
|
2012-11-27 23:03:25 +01:00
|
|
|
'sprite-menu-css' =>
|
|
|
|
array(
|
2012-12-07 23:29:09 +01:00
|
|
|
'uri' => '/res/3d9f75af/rsrc/css/sprite-menu.css',
|
2012-11-27 23:03:25 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/sprite-menu.css',
|
|
|
|
),
|
2012-04-05 01:09:29 +02:00
|
|
|
'stripe-core' =>
|
|
|
|
array(
|
|
|
|
'uri' => '/res/3b0f0ad4/rsrc/js/stripe/stripe_core.js',
|
|
|
|
'type' => 'js',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/js/stripe/stripe_core.js',
|
|
|
|
),
|
|
|
|
'stripe-payment-form-css' =>
|
|
|
|
array(
|
Use Celerity to version all static resources
Summary:
We don't use versioned URIs for images, so when they change users may get old versions.
This was a particular issue with the recent logo change, which several users reported cache-related issues from.
Instead, use Celerity to manage image URI versions in addition to CSS/JS.
This is complicated, because we need to rewrite image URIs inside of CSS, which means the hash of a CSS file has to be derived from the current image data. Otherwise, when we updated an image the CSS wouldn't update, so we wouldn't be any better off.
So basically we:
- Find all the "raw" files, and put them into the map.
- Find all the CSS/JS, perform content-altering transformations on it (i.e., not minification) based on the partial map, and then put it into the map based on transformed hashes.
(If we wanted, we could now do CSS variables or whatever for "free", more or less.)
Test Plan:
- Regenerated celerity map, browsed site, verified images generated with versioned URIs.
- Moved "blue" flag image over "green" flag image, regenerated map, verified "green" flag image and the associated CSS changed hashes.
- Added transformation unit tests; ran unit tests.
Reviewers: btrahan, vrana, jungejason
Reviewed By: vrana
CC: aran
Maniphest Tasks: T1073
Differential Revision: https://secure.phabricator.com/D2146
2012-04-08 19:07:51 +02:00
|
|
|
'uri' => '/res/634a6371/rsrc/css/application/phortune/stripe-payment-form.css',
|
2012-04-05 01:09:29 +02:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/application/phortune/stripe-payment-form.css',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
'syntax-highlighting-css' =>
|
|
|
|
array(
|
2012-08-10 19:44:04 +02:00
|
|
|
'uri' => '/res/cb3b9dc0/rsrc/css/core/syntax.css',
|
2012-01-05 02:10:34 +01:00
|
|
|
'type' => 'css',
|
|
|
|
'requires' =>
|
|
|
|
array(
|
|
|
|
),
|
|
|
|
'disk' => '/rsrc/css/core/syntax.css',
|
|
|
|
),
|
|
|
|
), array(
|
|
|
|
'packages' =>
|
|
|
|
array(
|
2012-12-30 20:09:18 +01:00
|
|
|
'3c048ceb' =>
|
2012-03-15 06:42:30 +01:00
|
|
|
array(
|
|
|
|
'name' => 'core.pkg.css',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'phabricator-core-css',
|
2012-12-30 18:30:21 +01:00
|
|
|
1 => 'phabricator-zindex-css',
|
|
|
|
2 => 'phabricator-core-buttons-css',
|
|
|
|
3 => 'phabricator-standard-page-view',
|
|
|
|
4 => 'aphront-dialog-view-css',
|
|
|
|
5 => 'aphront-form-view-css',
|
|
|
|
6 => 'aphront-panel-view-css',
|
|
|
|
7 => 'aphront-side-nav-view-css',
|
|
|
|
8 => 'aphront-table-view-css',
|
|
|
|
9 => 'aphront-crumbs-view-css',
|
|
|
|
10 => 'aphront-tokenizer-control-css',
|
|
|
|
11 => 'aphront-typeahead-control-css',
|
|
|
|
12 => 'aphront-list-filter-view-css',
|
|
|
|
13 => 'phabricator-directory-css',
|
|
|
|
14 => 'phabricator-jump-nav',
|
|
|
|
15 => 'phabricator-app-buttons-css',
|
|
|
|
16 => 'phabricator-remarkup-css',
|
|
|
|
17 => 'syntax-highlighting-css',
|
|
|
|
18 => 'aphront-pager-view-css',
|
|
|
|
19 => 'phabricator-transaction-view-css',
|
|
|
|
20 => 'aphront-tooltip-css',
|
|
|
|
21 => 'aphront-headsup-view-css',
|
|
|
|
22 => 'phabricator-flag-css',
|
|
|
|
23 => 'aphront-error-view-css',
|
|
|
|
24 => 'sprite-icon-css',
|
|
|
|
25 => 'sprite-gradient-css',
|
|
|
|
26 => 'sprite-menu-css',
|
|
|
|
27 => 'sprite-apps-large-css',
|
|
|
|
28 => 'phabricator-main-menu-view',
|
|
|
|
29 => 'phabricator-notification-css',
|
|
|
|
30 => 'phabricator-notification-menu-css',
|
|
|
|
31 => 'lightbox-attachment-css',
|
|
|
|
32 => 'phabricator-header-view-css',
|
|
|
|
33 => 'phabricator-form-view-css',
|
|
|
|
34 => 'phabricator-filetree-view-css',
|
|
|
|
35 => 'phabricator-nav-view-css',
|
|
|
|
36 => 'phabricator-side-menu-view-css',
|
|
|
|
37 => 'phabricator-crumbs-view-css',
|
|
|
|
38 => 'phabricator-object-item-list-view-css',
|
|
|
|
39 => 'global-drag-and-drop-css',
|
2012-03-15 06:42:30 +01:00
|
|
|
),
|
2012-12-30 20:09:18 +01:00
|
|
|
'uri' => '/res/pkg/3c048ceb/core.pkg.css',
|
2012-03-15 06:42:30 +01:00
|
|
|
'type' => 'css',
|
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'2921e259' =>
|
2012-03-15 06:42:30 +01:00
|
|
|
array(
|
|
|
|
'name' => 'core.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
2012-11-21 03:01:25 +01:00
|
|
|
0 => 'javelin-behavior-aphront-basic-tokenizer',
|
|
|
|
1 => 'javelin-behavior-workflow',
|
|
|
|
2 => 'javelin-behavior-aphront-form-disable-on-submit',
|
|
|
|
3 => 'phabricator-keyboard-shortcut-manager',
|
|
|
|
4 => 'phabricator-keyboard-shortcut',
|
|
|
|
5 => 'javelin-behavior-phabricator-keyboard-shortcuts',
|
|
|
|
6 => 'javelin-behavior-refresh-csrf',
|
|
|
|
7 => 'javelin-behavior-phabricator-watch-anchor',
|
|
|
|
8 => 'javelin-behavior-phabricator-autofocus',
|
|
|
|
9 => 'phabricator-paste-file-upload',
|
|
|
|
10 => 'phabricator-menu-item',
|
|
|
|
11 => 'phabricator-dropdown-menu',
|
|
|
|
12 => 'javelin-behavior-phabricator-oncopy',
|
|
|
|
13 => 'phabricator-tooltip',
|
|
|
|
14 => 'javelin-behavior-phabricator-tooltips',
|
|
|
|
15 => 'phabricator-prefab',
|
|
|
|
16 => 'javelin-behavior-device',
|
|
|
|
17 => 'javelin-behavior-toggle-class',
|
|
|
|
18 => 'javelin-behavior-lightbox-attachments',
|
|
|
|
19 => 'phabricator-busy',
|
|
|
|
20 => 'javelin-aphlict',
|
|
|
|
21 => 'phabricator-notification',
|
|
|
|
22 => 'javelin-behavior-aphlict-listen',
|
|
|
|
23 => 'javelin-behavior-phabricator-search-typeahead',
|
|
|
|
24 => 'javelin-behavior-konami',
|
|
|
|
25 => 'javelin-behavior-aphlict-dropdown',
|
|
|
|
26 => 'javelin-behavior-phabricator-active-nav',
|
|
|
|
27 => 'javelin-behavior-phabricator-nav',
|
|
|
|
28 => 'javelin-behavior-phabricator-remarkup-assist',
|
|
|
|
29 => 'phabricator-textareautils',
|
|
|
|
30 => 'phabricator-file-upload',
|
Modernize file uploads
Summary:
Modernizes file uploads. In particular:
- Adds a mobile menu, with an "Upload File" item.
- Adds crumbs to the list view, detail view and upload view.
- Adds "Upload File" action to crumbs.
- Moves upload file to a separate page.
- Removes the combined upload file + recent files page.
- Makes upload file use a normal file control by default (works on mobile).
- Home page, file list and file upload page are now global drop targets which accept files dropped anywhere on them. Dragging a file into the window shows a mask and an instructional message.
- User education on this is a little weak but I think that's a big can of worms?
- Fixes a bug where dropping multiple files into a Remarkup text area produced bad results (resolves T2190).
T879 is related, although it's specifically about Maniphest. I've declined to make global drop targets yet there because there are multiple drop targets on the page with different meanings. That UI needs updating in general.
@chad, do we have an "upload" icon (counterpart to "download")?
Test Plan: Uploaded files in Maniphest, Differential, Files, and from Home. Dragged and dropped multiple files into Differential. Used crumbs, mobile.
Reviewers: chad, btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2190
Differential Revision: https://secure.phabricator.com/D4200
2012-12-17 01:34:01 +01:00
|
|
|
31 => 'javelin-behavior-global-drag-and-drop',
|
2012-03-15 06:42:30 +01:00
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/pkg/2921e259/core.pkg.js',
|
2012-11-21 03:01:25 +01:00
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-12-15 00:14:14 +01:00
|
|
|
'8edbada5' =>
|
2012-11-21 03:01:25 +01:00
|
|
|
array(
|
|
|
|
'name' => 'darkconsole.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior-dark-console-ajax',
|
|
|
|
1 => 'javelin-behavior-dark-console',
|
|
|
|
2 => 'javelin-behavior-error-log',
|
|
|
|
),
|
2012-12-15 00:14:14 +01:00
|
|
|
'uri' => '/res/pkg/8edbada5/darkconsole.pkg.js',
|
2012-03-15 06:42:30 +01:00
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'20933a11' =>
|
2012-03-13 02:21:02 +01:00
|
|
|
array(
|
|
|
|
'name' => 'differential.pkg.css',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'differential-core-view-css',
|
|
|
|
1 => 'differential-changeset-view-css',
|
2012-05-01 19:15:56 +02:00
|
|
|
2 => 'differential-results-table-css',
|
2012-03-13 02:21:02 +01:00
|
|
|
3 => 'differential-revision-history-css',
|
2012-08-20 23:05:46 +02:00
|
|
|
4 => 'differential-revision-list-css',
|
|
|
|
5 => 'differential-table-of-contents-css',
|
|
|
|
6 => 'differential-revision-comment-css',
|
|
|
|
7 => 'differential-revision-add-comment-css',
|
|
|
|
8 => 'differential-revision-comment-list-css',
|
|
|
|
9 => 'phabricator-object-selector-css',
|
|
|
|
10 => 'aphront-headsup-action-list-view-css',
|
|
|
|
11 => 'phabricator-content-source-view-css',
|
|
|
|
12 => 'differential-local-commits-view-css',
|
|
|
|
13 => 'inline-comment-summary-css',
|
2012-03-13 02:21:02 +01:00
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/pkg/20933a11/differential.pkg.css',
|
2012-03-13 02:21:02 +01:00
|
|
|
'type' => 'css',
|
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'76556a8f' =>
|
2012-03-10 01:04:25 +01:00
|
|
|
array(
|
|
|
|
'name' => 'differential.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'phabricator-drag-and-drop-file-upload',
|
|
|
|
1 => 'phabricator-shaped-request',
|
|
|
|
2 => 'javelin-behavior-differential-feedback-preview',
|
|
|
|
3 => 'javelin-behavior-differential-edit-inline-comments',
|
|
|
|
4 => 'javelin-behavior-differential-populate',
|
|
|
|
5 => 'javelin-behavior-differential-show-more',
|
|
|
|
6 => 'javelin-behavior-differential-diff-radios',
|
|
|
|
7 => 'javelin-behavior-differential-accept-with-errors',
|
|
|
|
8 => 'javelin-behavior-differential-comment-jump',
|
|
|
|
9 => 'javelin-behavior-differential-add-reviewers-and-ccs',
|
|
|
|
10 => 'javelin-behavior-differential-keyboard-navigation',
|
|
|
|
11 => 'javelin-behavior-aphront-drag-and-drop',
|
|
|
|
12 => 'javelin-behavior-aphront-drag-and-drop-textarea',
|
|
|
|
13 => 'javelin-behavior-phabricator-object-selector',
|
2012-04-17 02:51:30 +02:00
|
|
|
14 => 'javelin-behavior-repository-crossreference',
|
|
|
|
15 => 'differential-inline-comment-editor',
|
|
|
|
16 => 'javelin-behavior-differential-dropdown-menus',
|
2012-11-21 03:01:25 +01:00
|
|
|
17 => 'javelin-behavior-differential-toggle-files',
|
|
|
|
18 => 'javelin-behavior-differential-user-select',
|
2012-03-10 01:04:25 +01:00
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/pkg/76556a8f/differential.pkg.js',
|
2012-03-10 01:04:25 +01:00
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-04-17 02:51:30 +02:00
|
|
|
'c8ce2d88' =>
|
2012-03-15 06:42:30 +01:00
|
|
|
array(
|
|
|
|
'name' => 'diffusion.pkg.css',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'diffusion-commit-view-css',
|
2012-04-17 02:51:30 +02:00
|
|
|
1 => 'diffusion-icons-css',
|
2012-03-15 06:42:30 +01:00
|
|
|
),
|
2012-04-17 02:51:30 +02:00
|
|
|
'uri' => '/res/pkg/c8ce2d88/diffusion.pkg.css',
|
2012-03-15 06:42:30 +01:00
|
|
|
'type' => 'css',
|
|
|
|
),
|
2012-04-17 02:51:30 +02:00
|
|
|
'5e68be89' =>
|
|
|
|
array(
|
|
|
|
'name' => 'diffusion.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior-diffusion-pull-lastmodified',
|
|
|
|
1 => 'javelin-behavior-diffusion-commit-graph',
|
|
|
|
2 => 'javelin-behavior-audit-preview',
|
|
|
|
),
|
|
|
|
'uri' => '/res/pkg/5e68be89/diffusion.pkg.js',
|
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'fbeded59' =>
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
array(
|
|
|
|
'name' => 'javelin.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-util',
|
|
|
|
1 => 'javelin-install',
|
|
|
|
2 => 'javelin-event',
|
|
|
|
3 => 'javelin-stratcom',
|
|
|
|
4 => 'javelin-behavior',
|
2012-11-21 03:01:25 +01:00
|
|
|
5 => 'javelin-resource',
|
|
|
|
6 => 'javelin-request',
|
|
|
|
7 => 'javelin-vector',
|
|
|
|
8 => 'javelin-dom',
|
|
|
|
9 => 'javelin-json',
|
|
|
|
10 => 'javelin-uri',
|
|
|
|
11 => 'javelin-workflow',
|
|
|
|
12 => 'javelin-mask',
|
|
|
|
13 => 'javelin-typeahead',
|
|
|
|
14 => 'javelin-typeahead-normalizer',
|
|
|
|
15 => 'javelin-typeahead-source',
|
|
|
|
16 => 'javelin-typeahead-preloaded-source',
|
|
|
|
17 => 'javelin-typeahead-ondemand-source',
|
|
|
|
18 => 'javelin-tokenizer',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
),
|
2012-12-21 14:57:14 +01:00
|
|
|
'uri' => '/res/pkg/fbeded59/javelin.pkg.js',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'ac211174' =>
|
2012-03-10 01:04:25 +01:00
|
|
|
array(
|
|
|
|
'name' => 'maniphest.pkg.css',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'maniphest-task-summary-css',
|
|
|
|
1 => 'maniphest-transaction-detail-css',
|
2012-04-05 19:47:20 +02:00
|
|
|
2 => 'aphront-attached-file-view-css',
|
2012-04-17 02:51:30 +02:00
|
|
|
3 => 'phabricator-project-tag-css',
|
2012-03-10 01:04:25 +01:00
|
|
|
),
|
2012-12-30 18:30:21 +01:00
|
|
|
'uri' => '/res/pkg/ac211174/maniphest.pkg.css',
|
2012-03-10 01:04:25 +01:00
|
|
|
'type' => 'css',
|
|
|
|
),
|
2012-04-17 02:51:30 +02:00
|
|
|
'7707de41' =>
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
array(
|
|
|
|
'name' => 'maniphest.pkg.js',
|
|
|
|
'symbols' =>
|
|
|
|
array(
|
|
|
|
0 => 'javelin-behavior-maniphest-batch-selector',
|
|
|
|
1 => 'javelin-behavior-maniphest-transaction-controls',
|
|
|
|
2 => 'javelin-behavior-maniphest-transaction-preview',
|
|
|
|
3 => 'javelin-behavior-maniphest-transaction-expand',
|
2012-04-17 02:51:30 +02:00
|
|
|
4 => 'javelin-behavior-maniphest-subpriority-editor',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
),
|
2012-04-17 02:51:30 +02:00
|
|
|
'uri' => '/res/pkg/7707de41/maniphest.pkg.js',
|
Use Javelin placeholders and new sorting rules broadly; consolidate tokenizer construction code
Summary:
- We have three nearly-identical blocks of Tokenizer construction code; consolidate them into Prefab.
- Add placeholder support.
- Augment server-side stuff to specify placeholder text.
Test Plan: Verified behavior of Differential edit tokenizers, Differential comment tokenizers, Maniphest edit tokenizers, Maniphest comment tokenizers, Maniphest filter tokenizers, Differential filter tokenizers, Owners filter tokenizers, Owners edit tokenizers, Herald edit tokenizers, Audit filter tokenizers.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran, epriestley
Maniphest Tasks: T772, T946
Differential Revision: https://secure.phabricator.com/D1844
2012-03-10 00:46:39 +01:00
|
|
|
'type' => 'js',
|
|
|
|
),
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
'reverse' =>
|
|
|
|
array(
|
2012-12-30 18:30:21 +01:00
|
|
|
'aphront-attached-file-view-css' => 'ac211174',
|
2012-12-30 20:09:18 +01:00
|
|
|
'aphront-crumbs-view-css' => '3c048ceb',
|
|
|
|
'aphront-dialog-view-css' => '3c048ceb',
|
|
|
|
'aphront-error-view-css' => '3c048ceb',
|
|
|
|
'aphront-form-view-css' => '3c048ceb',
|
2012-12-30 18:30:21 +01:00
|
|
|
'aphront-headsup-action-list-view-css' => '20933a11',
|
2012-12-30 20:09:18 +01:00
|
|
|
'aphront-headsup-view-css' => '3c048ceb',
|
|
|
|
'aphront-list-filter-view-css' => '3c048ceb',
|
|
|
|
'aphront-pager-view-css' => '3c048ceb',
|
|
|
|
'aphront-panel-view-css' => '3c048ceb',
|
|
|
|
'aphront-side-nav-view-css' => '3c048ceb',
|
|
|
|
'aphront-table-view-css' => '3c048ceb',
|
|
|
|
'aphront-tokenizer-control-css' => '3c048ceb',
|
|
|
|
'aphront-tooltip-css' => '3c048ceb',
|
|
|
|
'aphront-typeahead-control-css' => '3c048ceb',
|
2012-12-30 18:30:21 +01:00
|
|
|
'differential-changeset-view-css' => '20933a11',
|
|
|
|
'differential-core-view-css' => '20933a11',
|
2012-12-21 14:57:14 +01:00
|
|
|
'differential-inline-comment-editor' => '76556a8f',
|
2012-12-30 18:30:21 +01:00
|
|
|
'differential-local-commits-view-css' => '20933a11',
|
|
|
|
'differential-results-table-css' => '20933a11',
|
|
|
|
'differential-revision-add-comment-css' => '20933a11',
|
|
|
|
'differential-revision-comment-css' => '20933a11',
|
|
|
|
'differential-revision-comment-list-css' => '20933a11',
|
|
|
|
'differential-revision-history-css' => '20933a11',
|
|
|
|
'differential-revision-list-css' => '20933a11',
|
|
|
|
'differential-table-of-contents-css' => '20933a11',
|
2012-04-17 02:51:30 +02:00
|
|
|
'diffusion-commit-view-css' => 'c8ce2d88',
|
|
|
|
'diffusion-icons-css' => 'c8ce2d88',
|
2012-12-30 20:09:18 +01:00
|
|
|
'global-drag-and-drop-css' => '3c048ceb',
|
2012-12-30 18:30:21 +01:00
|
|
|
'inline-comment-summary-css' => '20933a11',
|
2012-12-21 14:57:14 +01:00
|
|
|
'javelin-aphlict' => '2921e259',
|
|
|
|
'javelin-behavior' => 'fbeded59',
|
|
|
|
'javelin-behavior-aphlict-dropdown' => '2921e259',
|
|
|
|
'javelin-behavior-aphlict-listen' => '2921e259',
|
|
|
|
'javelin-behavior-aphront-basic-tokenizer' => '2921e259',
|
|
|
|
'javelin-behavior-aphront-drag-and-drop' => '76556a8f',
|
|
|
|
'javelin-behavior-aphront-drag-and-drop-textarea' => '76556a8f',
|
|
|
|
'javelin-behavior-aphront-form-disable-on-submit' => '2921e259',
|
2012-04-17 02:51:30 +02:00
|
|
|
'javelin-behavior-audit-preview' => '5e68be89',
|
2012-12-15 00:14:14 +01:00
|
|
|
'javelin-behavior-dark-console' => '8edbada5',
|
|
|
|
'javelin-behavior-dark-console-ajax' => '8edbada5',
|
2012-12-21 14:57:14 +01:00
|
|
|
'javelin-behavior-device' => '2921e259',
|
|
|
|
'javelin-behavior-differential-accept-with-errors' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-add-reviewers-and-ccs' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-comment-jump' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-diff-radios' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-dropdown-menus' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-edit-inline-comments' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-feedback-preview' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-keyboard-navigation' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-populate' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-show-more' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-toggle-files' => '76556a8f',
|
|
|
|
'javelin-behavior-differential-user-select' => '76556a8f',
|
2012-04-17 02:51:30 +02:00
|
|
|
'javelin-behavior-diffusion-commit-graph' => '5e68be89',
|
|
|
|
'javelin-behavior-diffusion-pull-lastmodified' => '5e68be89',
|
2012-12-15 00:14:14 +01:00
|
|
|
'javelin-behavior-error-log' => '8edbada5',
|
2012-12-21 14:57:14 +01:00
|
|
|
'javelin-behavior-global-drag-and-drop' => '2921e259',
|
|
|
|
'javelin-behavior-konami' => '2921e259',
|
|
|
|
'javelin-behavior-lightbox-attachments' => '2921e259',
|
2012-04-17 02:51:30 +02:00
|
|
|
'javelin-behavior-maniphest-batch-selector' => '7707de41',
|
|
|
|
'javelin-behavior-maniphest-subpriority-editor' => '7707de41',
|
|
|
|
'javelin-behavior-maniphest-transaction-controls' => '7707de41',
|
|
|
|
'javelin-behavior-maniphest-transaction-expand' => '7707de41',
|
|
|
|
'javelin-behavior-maniphest-transaction-preview' => '7707de41',
|
2012-12-21 14:57:14 +01:00
|
|
|
'javelin-behavior-phabricator-active-nav' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-autofocus' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-keyboard-shortcuts' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-nav' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-object-selector' => '76556a8f',
|
|
|
|
'javelin-behavior-phabricator-oncopy' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-remarkup-assist' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-search-typeahead' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-tooltips' => '2921e259',
|
|
|
|
'javelin-behavior-phabricator-watch-anchor' => '2921e259',
|
|
|
|
'javelin-behavior-refresh-csrf' => '2921e259',
|
|
|
|
'javelin-behavior-repository-crossreference' => '76556a8f',
|
|
|
|
'javelin-behavior-toggle-class' => '2921e259',
|
|
|
|
'javelin-behavior-workflow' => '2921e259',
|
|
|
|
'javelin-dom' => 'fbeded59',
|
|
|
|
'javelin-event' => 'fbeded59',
|
|
|
|
'javelin-install' => 'fbeded59',
|
|
|
|
'javelin-json' => 'fbeded59',
|
|
|
|
'javelin-mask' => 'fbeded59',
|
|
|
|
'javelin-request' => 'fbeded59',
|
|
|
|
'javelin-resource' => 'fbeded59',
|
|
|
|
'javelin-stratcom' => 'fbeded59',
|
|
|
|
'javelin-tokenizer' => 'fbeded59',
|
|
|
|
'javelin-typeahead' => 'fbeded59',
|
|
|
|
'javelin-typeahead-normalizer' => 'fbeded59',
|
|
|
|
'javelin-typeahead-ondemand-source' => 'fbeded59',
|
|
|
|
'javelin-typeahead-preloaded-source' => 'fbeded59',
|
|
|
|
'javelin-typeahead-source' => 'fbeded59',
|
|
|
|
'javelin-uri' => 'fbeded59',
|
|
|
|
'javelin-util' => 'fbeded59',
|
|
|
|
'javelin-vector' => 'fbeded59',
|
|
|
|
'javelin-workflow' => 'fbeded59',
|
2012-12-30 20:09:18 +01:00
|
|
|
'lightbox-attachment-css' => '3c048ceb',
|
2012-12-30 18:30:21 +01:00
|
|
|
'maniphest-task-summary-css' => 'ac211174',
|
|
|
|
'maniphest-transaction-detail-css' => 'ac211174',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-app-buttons-css' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-busy' => '2921e259',
|
2012-12-30 18:30:21 +01:00
|
|
|
'phabricator-content-source-view-css' => '20933a11',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-core-buttons-css' => '3c048ceb',
|
|
|
|
'phabricator-core-css' => '3c048ceb',
|
|
|
|
'phabricator-crumbs-view-css' => '3c048ceb',
|
|
|
|
'phabricator-directory-css' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-drag-and-drop-file-upload' => '76556a8f',
|
|
|
|
'phabricator-dropdown-menu' => '2921e259',
|
|
|
|
'phabricator-file-upload' => '2921e259',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-filetree-view-css' => '3c048ceb',
|
|
|
|
'phabricator-flag-css' => '3c048ceb',
|
|
|
|
'phabricator-form-view-css' => '3c048ceb',
|
|
|
|
'phabricator-header-view-css' => '3c048ceb',
|
|
|
|
'phabricator-jump-nav' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-keyboard-shortcut' => '2921e259',
|
|
|
|
'phabricator-keyboard-shortcut-manager' => '2921e259',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-main-menu-view' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-menu-item' => '2921e259',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-nav-view-css' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-notification' => '2921e259',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-notification-css' => '3c048ceb',
|
|
|
|
'phabricator-notification-menu-css' => '3c048ceb',
|
|
|
|
'phabricator-object-item-list-view-css' => '3c048ceb',
|
2012-12-30 18:30:21 +01:00
|
|
|
'phabricator-object-selector-css' => '20933a11',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-paste-file-upload' => '2921e259',
|
|
|
|
'phabricator-prefab' => '2921e259',
|
2012-12-30 18:30:21 +01:00
|
|
|
'phabricator-project-tag-css' => 'ac211174',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-remarkup-css' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-shaped-request' => '76556a8f',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-side-menu-view-css' => '3c048ceb',
|
|
|
|
'phabricator-standard-page-view' => '3c048ceb',
|
2012-12-21 14:57:14 +01:00
|
|
|
'phabricator-textareautils' => '2921e259',
|
|
|
|
'phabricator-tooltip' => '2921e259',
|
2012-12-30 20:09:18 +01:00
|
|
|
'phabricator-transaction-view-css' => '3c048ceb',
|
|
|
|
'phabricator-zindex-css' => '3c048ceb',
|
|
|
|
'sprite-apps-large-css' => '3c048ceb',
|
|
|
|
'sprite-gradient-css' => '3c048ceb',
|
|
|
|
'sprite-icon-css' => '3c048ceb',
|
|
|
|
'sprite-menu-css' => '3c048ceb',
|
|
|
|
'syntax-highlighting-css' => '3c048ceb',
|
2012-01-05 02:10:34 +01:00
|
|
|
),
|
|
|
|
));
|