Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2016-05-26 12:13:42 +0000
committerLaurent Redor2016-05-27 12:54:16 +0000
commitda09a65df546121c269c2d68f36ba29ab3c5ad80 (patch)
treee715653c05f105eb2fe58db644d30f705ff51737
parent4ef8cae1aa25f2e5babc8373d0db2c23370fc930 (diff)
downloadorg.eclipse.sirius-da09a65df546121c269c2d68f36ba29ab3c5ad80.tar.gz
org.eclipse.sirius-da09a65df546121c269c2d68f36ba29ab3c5ad80.tar.xz
org.eclipse.sirius-da09a65df546121c269c2d68f36ba29ab3c5ad80.zip
[481573] Add hyperlink in release notes
Bug: 481573 Change-Id: I066cbc10cbdb66234fbac5e1583b9d176128daab Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/Release_Notes.html3
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile2
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.html2
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.textile2
4 files changed, 5 insertions, 4 deletions
diff --git a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
index 3199ce0004..294ac498b2 100644
--- a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
+++ b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
@@ -133,7 +133,8 @@
<ul>
<li><span class="label label-success">Added</span> It is now possible to provide a full customized tab-bar by implementing the
<code>ITabbarContributor</code> through the
- <code>org.eclipse.sirius.diagram.ui.tabbarContributor</code> extension-point. See the developer documentation for more details.
+ <code>org.eclipse.sirius.diagram.ui.tabbarContributor</code> extension-point. See the
+ <a href="developer/extensions-provide_tabbar_extensions.html#contributeFullTabbar">developer documentation</a> for more details.
</li>
<li><span class="label label-success">Added</span> It is now possible to provide new shapes for basic shape styles through the
<code>org.eclipse.sirius.diagram.bundledImageShape</code> extension-point. See the developer documentation for more details.
diff --git a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
index 2982d1995a..13522db8de 100644
--- a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
+++ b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
@@ -31,7 +31,7 @@ h3. Specifier-Visible Changes
h3. Developer-Visible Changes
-* <span class="label label-success">Added</span> It is now possible to provide a full customized tab-bar by implementing the @ITabbarContributor@ through the @org.eclipse.sirius.diagram.ui.tabbarContributor@ extension-point. See the developer documentation for more details.
+* <span class="label label-success">Added</span> It is now possible to provide a full customized tab-bar by implementing the @ITabbarContributor@ through the @org.eclipse.sirius.diagram.ui.tabbarContributor@ extension-point. See the "developer documentation":developer/extensions-provide_tabbar_extensions.html#contributeFullTabbar for more details.
* <span class="label label-success">Added</span> It is now possible to provide new shapes for basic shape styles through the @org.eclipse.sirius.diagram.bundledImageShape@ extension-point. See the developer documentation for more details.
h4. Changes in @org.eclipse.sirius@
diff --git a/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.html b/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.html
index 8c672e5bca..617f1e732b 100644
--- a/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.html
+++ b/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.html
@@ -186,7 +186,7 @@ public class SampleTestTabbarExtensionActivationPropertyTester extends PropertyT
<p>
<img border="0" src="images/tabbar_extension_result.png"/>
</p>
- <h2 id="Contributeafullcustomizedtabbar">Contribute a full customized tab-bar</h2>
+ <h2 id="contributeFullTabbar">Contribute a full customized tab-bar</h2>
<p>Sirius lets the possibility to contribute an entire customized tab-bar. To do so, the developer has to contribute an
<code>org.eclipse.sirius.diagram.ui.tools.api.editor.tabbar.ITabbarContributor</code> to the
<code>org.eclipse.sirius.diagram.ui.tabbarContributor</code> extension-point. An abstract implementation of
diff --git a/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.textile b/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.textile
index 9207e51db4..b86f47e9f4 100644
--- a/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.textile
+++ b/plugins/org.eclipse.sirius.doc/doc/developer/extensions-provide_tabbar_extensions.textile
@@ -160,7 +160,7 @@ p. The a new button is added to the tab-bar only when the selection contains an
!images/tabbar_extension_result.png!
-h2. Contribute a full customized tab-bar
+h2(#contributeFullTabbar). Contribute a full customized tab-bar
Sirius lets the possibility to contribute an entire customized tab-bar. To do so, the developer has to contribute an @org.eclipse.sirius.diagram.ui.tools.api.editor.tabbar.ITabbarContributor@ to the @org.eclipse.sirius.diagram.ui.tabbarContributor@ extension-point. An abstract implementation of @ITabbarContributor@ exists: @org.eclipse.sirius.diagram.ui.tools.api.editor.tabbar.AbstractTabbarContributor@. This implementation contains protected methods that allows creating one or several contributions of the default Sirius tab-bar. See the "Tab-bar":../user/diagrams/Diagrams.html#ref_tabbar section in user manual for more details about each items.

Back to the top