2011-03-31 08:27:06 +02:00
|
|
|
/**
|
|
|
|
* @provides javelin-behavior-diffusion-pull-lastmodified
|
Bring Javelin into Phabricator via git submodule, not copy-and-paste
Summary:
Javelin is currently embedded in Phabricator via copy-and-paste of prebuilt
packages. This is not so great.
Pull it in as a submodule instead and make all the Phabriator resources declare
proper dependency trees. Add Javelin linting.
Test Plan:
I tried to run through pretty much all the JS functionality on the site. This is
still a high-risk change, but I did a pretty thorough test
Differential: inline comments, revealing diffs, list tokenizers, comment
preview, editing/deleting comments, add review action.
Maniphest: list tokenizer, comment actions
Herald: rule editing, tokenizers, add/remove rows
Reviewed By: tomo
Reviewers: aran, tomo, mroch, jungejason, tuomaspelkonen
CC: aran, tomo, epriestley
Differential Revision: 223
2011-05-04 00:11:55 +02:00
|
|
|
* @requires javelin-behavior
|
|
|
|
* javelin-dom
|
|
|
|
* javelin-util
|
2014-05-11 00:32:53 +02:00
|
|
|
* javelin-workflow
|
|
|
|
* javelin-json
|
2011-03-31 08:27:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
JX.behavior('diffusion-pull-lastmodified', function(config) {
|
|
|
|
|
2014-05-11 00:32:53 +02:00
|
|
|
new JX.Workflow(config.uri, {paths: JX.JSON.stringify(JX.keys(config.map))})
|
|
|
|
.setHandler(function(r) {
|
2011-03-31 08:27:06 +02:00
|
|
|
for (var k in r) {
|
2014-05-11 00:32:53 +02:00
|
|
|
for (var l in r[k]) {
|
2014-05-11 00:57:16 +02:00
|
|
|
if (!config.map[k][l]) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-05-11 00:32:53 +02:00
|
|
|
JX.DOM.setContent(JX.$(config.map[k][l]), JX.$H(r[k][l]));
|
2011-03-31 08:27:06 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-11 00:32:53 +02:00
|
|
|
})
|
|
|
|
.start();
|
2011-03-31 08:27:06 +02:00
|
|
|
|
|
|
|
});
|