Skip to content

Commit fc57780

Browse files
committed
Fixed relative paths to sources.
1 parent e6b25a4 commit fc57780

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/IPCores/sync/sync_Bits.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Constraints:
4343

4444
.. rubric:: Entity Declaration:
4545

46-
.. literalinclude:: ../../../../src/sync/sync_Bits.vhdl
46+
.. literalinclude:: ../../../src/sync/sync_Bits.vhdl
4747
:language: vhdl
4848
:tab-width: 2
4949
:linenos:

docs/IPCores/sync/sync_Command.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Constraints:
3535

3636
.. rubric:: Entity Declaration:
3737

38-
.. literalinclude:: ../../../../src/sync/sync_Command.vhdl
38+
.. literalinclude:: ../../../src/sync/sync_Command.vhdl
3939
:language: vhdl
4040
:tab-width: 2
4141
:linenos:

docs/IPCores/sync/sync_Pulse.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Constraints:
4343

4444
.. rubric:: Entity Declaration:
4545

46-
.. literalinclude:: ../../../../src/sync/sync_Pulse.vhdl
46+
.. literalinclude:: ../../../src/sync/sync_Pulse.vhdl
4747
:language: vhdl
4848
:tab-width: 2
4949
:linenos:

docs/IPCores/sync/sync_Reset.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Constraints:
4545

4646
.. rubric:: Entity Declaration:
4747

48-
.. literalinclude:: ../../../../src/sync/sync_Reset.vhdl
48+
.. literalinclude:: ../../../src/sync/sync_Reset.vhdl
4949
:language: vhdl
5050
:tab-width: 2
5151
:linenos:

docs/IPCores/sync/sync_Strobe.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Constraints:
4040

4141
.. rubric:: Entity Declaration:
4242

43-
.. literalinclude:: ../../../../src/sync/sync_Strobe.vhdl
43+
.. literalinclude:: ../../../src/sync/sync_Strobe.vhdl
4444
:language: vhdl
4545
:tab-width: 2
4646
:linenos:

docs/IPCores/sync/sync_Vector.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Constraints:
3434

3535
.. rubric:: Entity Declaration:
3636

37-
.. literalinclude:: ../../../../src/sync/sync_Vector.vhdl
37+
.. literalinclude:: ../../../src/sync/sync_Vector.vhdl
3838
:language: vhdl
3939
:tab-width: 2
4040
:linenos:
File renamed without changes.
File renamed without changes.

docs/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
# release = versionInformation.Version
3434
project = 'The PoC-Library'
3535
copyright = '2007-2016 Technische Universitaet Dresden - Germany, Chair of VLSI-Design, Diagnostics and Architecture'
36-
author = 'Patrick Lehmann, Thomas B. Preusser, Martin Zabel'
36+
author = 'The PoC-Library Authors'
3737

38-
version = "1.1" # The short X.Y version.
39-
release = "1.1.1" # The full version, including alpha/beta/rc tags.
38+
version = "2.1" # The short X.Y version.
39+
release = "2.1.0" # The full version, including alpha/beta/rc tags.
4040

4141
from subprocess import check_output
4242

@@ -268,8 +268,8 @@ def _LatestTagName():
268268
"ghsrc": (f"https://GitHub.com/{githubNamespace}/{project}/blob/master/%s", None),
269269
"wiki": (f"https://en.wikipedia.org/wiki/%s", None),
270270

271-
"pocissue": (f"https://github.com/{githubNamespace}/{project}/issues/%s", 'issue #'), # => replace by ghissue
272-
"pocpull": (f"https://github.com/{githubNamespace}/{project}/pull/%s", 'pull request #'), # => replace by ghpull
271+
"pocissue": (f"https://github.com/{githubNamespace}/{project}/issues/%s", 'issue #%s'), # => replace by ghissue
272+
"pocpull": (f"https://github.com/{githubNamespace}/{project}/pull/%s", 'pull request #%s'), # => replace by ghpull
273273
"pocsrc": (f"https://github.com/{githubNamespace}/{project}/blob/master/src/%s?ts=2", None), # => replace by ghsrc
274274
"poctb": (f"https://github.com/{githubNamespace}/{project}/blob/master/tb/%s?ts=2", None)
275275
}

0 commit comments

Comments
 (0)