History log of /plugin/gitbacked/ (Results 1 – 25 of 82)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
84aa20e721-Feb-2026 Markus Hoffrogge <mhoffrogge@gmail.com>

Update CHANGELOG.md for release 2026-02-21

- update CHANGELOG.md
- update plugin.info.txt

1bd38d0c17-Feb-2026 Sam Edwards <sam@samedwards.ca>

Document new substitutions

477c7cb417-Feb-2026 Sam Edwards <sam@samedwards.ca>

Apply %mail% and %user% substitutions to all commit messages, add page %ns% substitution

f8541e5102-Feb-2026 Markus Hoffrogge <mhoffrogge@gmail.com>

Action dokuwiki.yml: Allow manual triggering

3a8c745911-Nov-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

README.md: fix License badge displaying "Unable to select next GitHub token from pool"

Workaround license tag showing "Unable to select next GitHub token from pool"

e815344f11-Nov-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Update CHANGELOG.md

41fa3ce711-Nov-2025 mhoffrog <45703410+mhoffrog@users.noreply.github.com>

�� Automatic code style fixes

a62ce74411-Nov-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Update CHANGELOG.md: update release notes and compare links for release 2025-11-11

- CHANGELOG.md:
- update release info for 2025-11-11
- plugin.info.txt:
- align release date

19993fa110-Nov-2025 ribsey <lukas.ribi@gmail.com>

Refactor user info retrieval methods

fix warnings:
E_WARNING: Trying to access array offset on null/storage/lib/plugins/gitbacked/action/editcommit.php(96)

E_WARNING: Trying to access array offs

Refactor user info retrieval methods

fix warnings:
E_WARNING: Trying to access array offset on null/storage/lib/plugins/gitbacked/action/editcommit.php(96)

E_WARNING: Trying to access array offset on null/storage/lib/plugins/gitbacked/action/editcommit.php(100)

show more ...

4075d34603-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

README.md: add tags for license and CICD task

d2137f1303-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Improve IDE / editor config

- add .vscode/extensions.json
- configure *.json/*.jsonc for 2 spaces indentation

aeb41f7d03-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Followup fix of Automatic code style fixes

c365e7db03-Mar-2025 mhoffrog <45703410+mhoffrog@users.noreply.github.com>

�� Automatic code style fixes

4685940503-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

#71: Add initial DW standard Unit Test for this plugin

- .github/workflows/dokuwiki.yml:
- add DW standard action for code style checks
and generic Unit Test execution

- _test/GeneralTest.php

#71: Add initial DW standard Unit Test for this plugin

- .github/workflows/dokuwiki.yml:
- add DW standard action for code style checks
and generic Unit Test execution

- _test/GeneralTest.php:
- initial test for general DW plugin configurations

- update CHANGELOG.md

show more ...

2762023d03-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Format code to comply with DW standard code style rules

- add code formatter definitions:
- .editorconfig
- .vscode/settings.json

- update code to meet code style:
- conf/default.php,
con

Format code to comply with DW standard code style rules

- add code formatter definitions:
- .editorconfig
- .vscode/settings.json

- update code to meet code style:
- conf/default.php,
conf/metadata.php,
lang/de/settings.php,
lang/en/settings.php:
- fix for white space code style

- classes/*.php:
- attach classes to plugin specific namespace
- format to meet DW code style
- refactor method names to fix PSR1.Methods.CamelCapsMethodName.NotCamelCaps

- loader.php:
- add autoloader for plugin specific namespace classes

- action/editcommit.php:
- replace use of deprecated DW class definitions
by non deprecated class definitions
- followup code formatting of classes/*.php
- make use of auto loader loader.php

show more ...

b08c3d5103-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Refactor lib/*.php to classes/*.php as prep for DW conform unit testing

- no functional code change

8087f60103-Mar-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Split GitRepo class from Git.php to GitRepo.php

- no functional code change

58d06e1f03-Jul-2023 Markus Hoffrogge <mhoffrogge@gmail.com>

Add .gitignore

- ignore manager.dat

740d45a325-Feb-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Update CHANGELOG.md: update release notes and compare links for release 2025-02-26

- CHANGELOG.md:
- add release info for 2025-02-26
- plugin.info.txt:
- align release date

a1c1345025-Feb-2025 Markus Hoffrogge <mhoffrogge@gmail.com>

Update settings description for 'updateIndexOnPull'

a2effbcb19-Dec-2024 msx80 <msx80@github>

update index on pull

d2a62b8022-Jan-2024 Markus Hoffrogge <mhoffrogge@gmail.com>

Avoid Using $_ENV - update CHANGELOG.md

a06ad15522-Jan-2024 Markus Hoffrogge <mhoffrogge@gmail.com>

Avoid Using $_ENV - ensure backward compatibility

Update to ensure to inherit original system environment
to be backward compatible to previous implementation as follows:

Provide any $this->envopts

Avoid Using $_ENV - ensure backward compatibility

Update to ensure to inherit original system environment
to be backward compatible to previous implementation as follows:

Provide any $this->envopts via putenv
and call proc_open with env=null to inherit the rest
of env variables from the original process of the system.
Note: Variables set by putenv live for a
single PHP request run only.
These variables are visible "locally".
They are NOT listed by getenv(),
but they are visible to the process forked by proc_open().

show more ...

47703dc106-Jan-2024 Xin Li <delphij@users.noreply.github.com>

Avoid Using $_ENV

PHP exposes sensitive information like cookies in $_ENV. Additionally, it may include command line arguments (argv) as an array in $_ENV in certain configurations, causing a warnin

Avoid Using $_ENV

PHP exposes sensitive information like cookies in $_ENV. Additionally, it may include command line arguments (argv) as an array in $_ENV in certain configurations, causing a warning because proc_open expects env to be an array of string and would issue a warning when it happens:

Warning: Array to string conversion

Because the existing environment information are not generally useful for Git operations anyways, simply remove the merging of existing $_ENV. Instead, the environment options passed from caller are directly passed to proc_open as is, ensuring more controlled and secure handling of environment variables.

show more ...

00885c3b07-May-2023 Markus Hoffrogge <mhoffrogge@gmail.com>

Update CHANGELOG.md: update release notes and compare links for release 2023-05-07

- CHANGELOG.md:
- add release info for 2023-05-07
- plugin.info.txt:
- align release date

1234