Page MenuHomePhabricator

D11588.id.diff
No OneTemporary

D11588.id.diff

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

Mime Type
text/plain
Expires
Thu, Mar 20, 12:27 AM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7650557
Default Alt Text
D11588.id.diff (2 KB)

Event Timeline