Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15432819
D11588.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D11588.diff
View Options
diff --git a/src/applications/diviner/publisher/DivinerPublisher.php b/src/applications/diviner/publisher/DivinerPublisher.php
--- a/src/applications/diviner/publisher/DivinerPublisher.php
+++ b/src/applications/diviner/publisher/DivinerPublisher.php
@@ -42,6 +42,7 @@
$this->atomCache = $cache;
$graph_map = $this->atomCache->getGraphMap();
$this->atomGraphHashToNodeHashMap = array_flip($graph_map);
+ return $this;
}
protected function getAtomFromGraphHash($graph_hash) {
diff --git a/src/applications/diviner/workflow/DivinerGenerateWorkflow.php b/src/applications/diviner/workflow/DivinerGenerateWorkflow.php
--- a/src/applications/diviner/workflow/DivinerGenerateWorkflow.php
+++ b/src/applications/diviner/workflow/DivinerGenerateWorkflow.php
@@ -19,6 +19,12 @@
'param' => 'path',
'help' => pht('Path to a Diviner book configuration.'),
),
+ array(
+ 'name' => 'publisher',
+ 'param' => 'class',
+ 'help' => pht('Specify a subclass of %s.', 'DivinerPublisher'),
+ 'default' => 'DivinerLivePublisher',
+ ),
));
}
@@ -164,7 +170,22 @@
$this->buildAtomCache();
$this->buildGraphCache();
- $this->publishDocumentation($args->getArg('clean'));
+ $publisher_class = $args->getArg('publisher');
+ $symbols = id(new PhutilSymbolLoader())
+ ->setName($publisher_class)
+ ->setConcreteOnly(true)
+ ->setAncestorClass('DivinerPublisher')
+ ->selectAndLoadSymbols();
+ if (!$symbols) {
+ throw new Exception(
+ pht(
+ "Publisher class '%s' must be a concrete subclass of %s.",
+ $publisher_class,
+ 'DivinerPublisher'));
+ }
+ $publisher = newv($publisher_class, array());
+
+ $this->publishDocumentation($args->getArg('clean'), $publisher);
}
/* -( Atom Cache )--------------------------------------------------------- */
@@ -497,18 +518,18 @@
return md5(serialize($inputs)).'G';
}
- private function publishDocumentation($clean) {
+ private function publishDocumentation($clean, DivinerPublisher $publisher) {
$atom_cache = $this->getAtomCache();
$graph_map = $atom_cache->getGraphMap();
$this->log(pht('PUBLISHING DOCUMENTATION'));
- $publisher = new DivinerLivePublisher();
- $publisher->setDropCaches($clean);
- $publisher->setConfig($this->getAllConfig());
- $publisher->setAtomCache($atom_cache);
- $publisher->setRenderer(new DivinerDefaultRenderer());
- $publisher->publishAtoms(array_values($graph_map));
+ $publisher
+ ->setDropCaches($clean)
+ ->setConfig($this->getAllConfig())
+ ->setAtomCache($atom_cache)
+ ->setRenderer(new DivinerDefaultRenderer())
+ ->publishAtoms(array_values($graph_map));
$this->log(pht('Done.'));
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 7:44 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7650557
Default Alt Text
D11588.diff (2 KB)
Attached To
Mode
D11588: Allow `DivinerPublisher` to be specified as a flag
Attached
Detach File
Event Timeline
Log In to Comment