Skip to content

Commit 801b27e

Browse files
committed
chore: configure author and copyright
Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent 9533fb5 commit 801b27e

4 files changed

Lines changed: 22 additions & 4 deletions

File tree

docs/admin_manual/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import os
22
import sys
3+
import datetime
34
sys.path.insert(0, os.path.abspath('.'))
45

6+
now = datetime.datetime.now()
7+
8+
copyright = str(now.year) + ' LibreCode coop'
59
project = 'LibreSign Documentation'
610
author = 'LibreSign Team'
711
release = '1.0'

docs/developer_manual/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import os
22
import sys
3+
import datetime
34
sys.path.insert(0, os.path.abspath('.'))
45

6+
now = datetime.datetime.now()
7+
8+
copyright = str(now.year) + ' LibreCode coop'
59
project = 'LibreSign Documentation'
610
author = 'LibreSign Team'
711
release = '1.0'

docs/main/conf.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
# conf.py para a documentação principal
1+
import os
2+
import sys
3+
import datetime
4+
5+
now = datetime.datetime.now()
6+
7+
copyright = str(now.year) + ' LibreCode coop'
8+
project = 'LibreSign Documentation'
9+
author = 'LibreSign Team'
10+
release = '1.0'
211

3-
project = 'LibreSign'
4-
copyright = ''
5-
author = ''
612

713
release = '1.0'
814

docs/user_manual/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import os
22
import sys
3+
import datetime
34
sys.path.insert(0, os.path.abspath('.'))
45

6+
now = datetime.datetime.now()
7+
8+
copyright = str(now.year) + ' LibreCode coop'
59
project = 'LibreSign Documentation'
610
author = 'LibreSign Team'
711
release = '1.0'

0 commit comments

Comments
 (0)