# HG changeset patch # User Denis Laxalde # Date 1527066211 -7200 # Node ID 4aabc5c8b2af56ab0be4781e15eb1447a4842ca9 # Parent f0f9139016d84332eae25c8d4801fd36d106defa topic: dedent items about publishing behavior in docstring Also change item bullets from '#' to '*'. diff -r f0f9139016d8 -r 4aabc5c8b2af hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Wed May 23 11:00:11 2018 +0200 +++ b/hgext3rd/topic/__init__.py Wed May 23 11:03:31 2018 +0200 @@ -82,22 +82,22 @@ phase usually happens on push, but it is possible to update that behavior. The server needs to have specific config for this. - # everything pushed become public (the default):: +* everything pushed become public (the default):: - [phase] - publish = yes + [phase] + publish = yes - # nothing push turned public:: +* nothing push turned public:: - [phase] - publish = no + [phase] + publish = no - # topic branches are not published, changeset without topic are:: +* topic branches are not published, changeset without topic are:: - [phase] - publish = no - [experimental] - topic.publish-bare-branch = yes + [phase] + publish = no + [experimental] + topic.publish-bare-branch = yes In addition, the topic extension adds a ``--publish`` flag on :hg:`push`. When used, the pushed revisions are published if the push succeeds. It also applies diff -r f0f9139016d8 -r 4aabc5c8b2af tests/test-topic.t --- a/tests/test-topic.t Wed May 23 11:00:11 2018 +0200 +++ b/tests/test-topic.t Wed May 23 11:03:31 2018 +0200 @@ -92,22 +92,22 @@ phase usually happens on push, but it is possible to update that behavior. The server needs to have specific config for this. - # everything pushed become public (the default): + * everything pushed become public (the default): - [phase] - publish = yes + [phase] + publish = yes - # nothing push turned public: + * nothing push turned public: - [phase] - publish = no + [phase] + publish = no - # topic branches are not published, changeset without topic are: + * topic branches are not published, changeset without topic are: - [phase] - publish = no - [experimental] - topic.publish-bare-branch = yes + [phase] + publish = no + [experimental] + topic.publish-bare-branch = yes In addition, the topic extension adds a "--publish" flag on 'hg push'. When used, the pushed revisions are published if the push succeeds. It also applies