Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: GitHub <noreply(a)github.com>
Date: Sun, 21 Mar 2021 22:46:49 UTC
Commit: 3ba2f6fc9f7b6144a9cc57ae133d359c50ff33dc
https://github.com/geany/www.geany.org/commit/3ba2f6fc9f7b6144a9cc57ae133d3…
Log Message:
-----------
Merge pull request #29 from eht16/add_association_imprint
Add imprint on Geany e.V. association page
Modified Paths:
--------------
geany/settings.py
page_content/association.md
page_content/support/mailing-lists.md
Modified: geany/settings.py
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -19,6 +19,7 @@
import warnings
from django.utils.translation import ugettext_lazy as _
+from markdown.extensions.toc import TocExtension
######################
@@ -382,7 +383,9 @@
# markdown extensions
'nl2br',
'tables',
- 'toc',
+ # create TOC entries only for heading level 2 to 4
+ # level 1 usually is the page header, we don't need levels deeper than 4
+ TocExtension(toc_depth='2-4'),
)
#########################
Modified: page_content/association.md
33 lines changed, 28 insertions(+), 5 deletions(-)
===================================================================
@@ -1,6 +1,10 @@
Geany e.V. - the registered association for the Geany project
=================================================
+**Contents**
+
+[TOC]
+
## About
The association "Geany e.V." is registered in Stendal, Germany and is intended to represent the Geany project. The main goal is to provide a legal entity for the Geany project and to handle donated money.
@@ -77,13 +81,32 @@ The rules of order (Geschäftsordnung) are available at: [go.pdf](/media/uploads
Unfortunately, currently the charter and rules of order documents are available only in German.
-## Contact
+## Imprint & Contact
+
+##### Represented by
+
+Geany e.V.
+c/o Enrico Tröger
+Vogelsanger Str. 169
+50823 Cologne
+Germany
+
+Email: association-board [at] geany [dot] org
+
+##### Board
+
+Enrico Tröger - chairman
+Frank Lanitz - treasurer
+Silvio Knizek - minutes secretary
+
+##### Association register entry
+
+Registering court: Amtsgericht Stendal (Germany)
+Registration number: 2477/16
-For any questions or requests, feel free to contact any or all of the board members.
+##### Contact
-Enrico Tröger - enrico [dot] troeger [at] uvena.de
-Frank Lanitz - frank [at] lanitz [dot] info
-Silvio Knizek - silvio [dot] knizek [at] gmx [dot] de
+For any questions or requests, feel free to contact the board members at association-board [at] geany [dot] org.
For members communication, there is a mailing list at
https://lists.geany.org/cgi-bin/mailman/listinfo/association-members.
Modified: page_content/support/mailing-lists.md
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -3,6 +3,8 @@ Mailing Lists
For announcements, general discussing, coordinating development and more, we use mailing lists (read about at [Wikipedia][1]).
+Available mailing lists:
+
[TOC]
* _Note: You must subscribe to a list before you can send mail to it_
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Luiz Bettoni <72033323+luizbettoni(a)users.noreply.github.com>
Committer: GitHub <noreply(a)github.com>
Date: Sun, 21 Mar 2021 14:35:06 UTC
Commit: a653b9072b5b66ab4938334f5343282038eccc69
https://github.com/geany/www.geany.org/commit/a653b9072b5b66ab4938334f53432…
Log Message:
-----------
Update tips about change language on unix (#28)
Modified Paths:
--------------
page_content/documentation/faq.md
Modified: page_content/documentation/faq.md
18 lines changed, 14 insertions(+), 4 deletions(-)
===================================================================
@@ -149,10 +149,20 @@ Simply start Geany like this:
and of course, change "C" to your language code (see above) or set
your locale specific environment variables accordingly.
-If your system supports launcher shortcuts (for example, `.desktop` files),
-then Geany's shortcut can be updated (created a new one) to add the `LANG`
-setting as shown above. In case of `.desktop` files, this usually goes into
-the `Exec` line.
+If your system supports launcher shortcuts then Geany's shortcut can be updated
+to add language setting. For example, in
+[modern `.desktop` files](https://developer.gnome.org/desktop-entry-spec/#exec-variables),
+this usually goes into the `Exec` line:
+
+ Exec=/bin/sh -c "LANGUAGE=en_IN /usr/bin/geany %F"
+
+As alternative, you can create a shell script in any directory in your `$PATH` to
+override the default `geany` binary. As example, one can create a file at
+`~/.local/bin/geany` (remember to make it executable):
+
+ #!/bin/sh
+ export LANGUAGE=en_US
+ exec /usr/bin/geany $@
## I get build errors after updating from Git, why?
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: GitHub <noreply(a)github.com>
Date: Sun, 21 Mar 2021 14:32:49 UTC
Commit: 318c14e065e9c717743bf9a02f80e33c4787befe
https://github.com/geany/www.geany.org/commit/318c14e065e9c717743bf9a02f80e…
Log Message:
-----------
Geany e. V. General Assembly 2020 was done (#27)
Modified Paths:
--------------
page_content/association.md
Modified: page_content/association.md
6 lines changed, 4 insertions(+), 2 deletions(-)
===================================================================
@@ -11,6 +11,10 @@ There are no plans to direct the development of Geany itself from the associatio
#### Upcoming meetings
+None scheduled.
+
+#### Past meetings
+
##### Geany e.V. General Assembly 2020
Date: 27th September 2020 - 15:00 CEST
Location: Remote (via Jitsi)
@@ -21,8 +25,6 @@ Agenda:
* General report
* Financial report
-#### Past meetings
-
##### Geany e.V. General Assembly 2019
Date: 24th November 2019 - 14:00 CET
Location: Remote (via Mumble)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/annual_meeting_2020
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 21 Mar 2021 14:26:08 UTC
Commit: 9f9fb7f36f8e2881e287027903e75f30d9188ec3
https://github.com/geany/www.geany.org/commit/9f9fb7f36f8e2881e287027903e75…
Log Message:
-----------
Geany e. V. General Assembly 2020 was done
Modified Paths:
--------------
page_content/association.md
Modified: page_content/association.md
6 lines changed, 4 insertions(+), 2 deletions(-)
===================================================================
@@ -11,6 +11,10 @@ There are no plans to direct the development of Geany itself from the associatio
#### Upcoming meetings
+None scheduled.
+
+#### Past meetings
+
##### Geany e.V. General Assembly 2020
Date: 27th September 2020 - 15:00 CEST
Location: Remote (via Jitsi)
@@ -21,8 +25,6 @@ Agenda:
* General report
* Financial report
-#### Past meetings
-
##### Geany e.V. General Assembly 2019
Date: 24th November 2019 - 14:00 CET
Location: Remote (via Mumble)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 21 Mar 2021 14:15:16 UTC
Commit: b846da6bbdb30506ee47abe4f5ea6803595e813d
https://github.com/geany/www.geany.org/commit/b846da6bbdb30506ee47abe4f5ea6…
Log Message:
-----------
Add imprint on Geany e.V. association page
We probably need this for German law and so add it to be safe.
It doesn't expose that much new information except for an already
present address.
Modified Paths:
--------------
geany/settings.py
page_content/association.md
page_content/support/mailing-lists.md
Modified: geany/settings.py
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -19,6 +19,7 @@
import warnings
from django.utils.translation import ugettext_lazy as _
+from markdown.extensions.toc import TocExtension
######################
@@ -382,7 +383,9 @@
# markdown extensions
'nl2br',
'tables',
- 'toc',
+ # create TOC entries only for heading level 2 to 4
+ # level 1 usually is the page header, we don't need levels deeper than 4
+ TocExtension(toc_depth='2-4'),
)
#########################
Modified: page_content/association.md
33 lines changed, 28 insertions(+), 5 deletions(-)
===================================================================
@@ -1,6 +1,10 @@
Geany e.V. - the registered association for the Geany project
=================================================
+**Contents**
+
+[TOC]
+
## About
The association "Geany e.V." is registered in Stendal, Germany and is intended to represent the Geany project. The main goal is to provide a legal entity for the Geany project and to handle donated money.
@@ -75,13 +79,32 @@ The rules of order (Geschäftsordnung) are available at: [go.pdf](/media/uploads
Unfortunately, currently the charter and rules of order documents are available only in German.
-## Contact
+## Imprint & Contact
+
+##### Represented by
+
+Geany e.V.
+c/o Enrico Tröger
+Vogelsanger Str. 169
+50823 Cologne
+Germany
+
+Email: association-board [at] geany [dot] org
+
+##### Board
+
+Enrico Tröger - chairman
+Frank Lanitz - treasurer
+Silvio Knizek - minutes secretary
+
+##### Association register entry
+
+Registering court: Amtsgericht Stendal (Germany)
+Registration number: 2477/16
-For any questions or requests, feel free to contact any or all of the board members.
+##### Contact
-Enrico Tröger - enrico [dot] troeger [at] uvena.de
-Frank Lanitz - frank [at] lanitz [dot] info
-Silvio Knizek - silvio [dot] knizek [at] gmx [dot] de
+For any questions or requests, feel free to contact the board members at association-board [at] geany [dot] org.
For members communication, there is a mailing list at
https://lists.geany.org/cgi-bin/mailman/listinfo/association-members.
Modified: page_content/support/mailing-lists.md
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -3,6 +3,8 @@ Mailing Lists
For announcements, general discussing, coordinating development and more, we use mailing lists (read about at [Wikipedia][1]).
+Available mailing lists:
+
[TOC]
* _Note: You must subscribe to a list before you can send mail to it_
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 21 Mar 2021 13:36:37 UTC
Commit: a1d462be341bbe2aca29520255c1e5826194f1c4
https://github.com/geany/www.geany.org/commit/a1d462be341bbe2aca29520255c1e…
Log Message:
-----------
Fix fetching all lexer from Pygments
The Pygments API have changed in the return value of get_all_lexers(),
so update our code as well.
Modified Paths:
--------------
pastebin/highlight.py
Modified: pastebin/highlight.py
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -19,7 +19,10 @@
from pygments.lexers.python import PythonLexer
-LEXER_LIST_ALL = sorted([(i[1][0], i[0]) for i in get_all_lexers()])
+LEXER_LIST_ALL = sorted([
+ (lexer[1][0], lexer[0])
+ for lexer in get_all_lexers()
+ if lexer[1]])
LEXER_LIST = (
('nasm', 'Assembler'),
('bash', 'Bash'),
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).