aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* TODOs.md: Mark #task-9be7e4f5-df3c-ed5f-1ca1-2ce9fc61d944 as DONEEuAndreh2021-06-211-1/+5
|
* doc/git-permalink.*.1: Mark SUPPORTED REMOTES and OVERRIDES as .SSEuAndreh2021-06-217-520/+542
| | | | | | | Make SUPPORTED REMOTES and OVERRIDES subsections (.SS) of a new parent section: CONFIGURATIONS. Also put SUPPORTED REMOTES before OVERRIDES on the order.
* TODOs.md: Mark #task-1d80cea9-b246-0168-7844-34fe629b255f as DONEEuAndreh2021-06-211-1/+7
|
* doc/git-permalink.*.1: Mark OPTIONS as to be replacedEuAndreh2021-06-217-16/+16
| | | | Also improve french translation: s/FICHIERS/FICHIER/.
* TODOs.md: Mark #task-de34e119-049f-67a0-da8b-e0103ed24a2b as DONEEuAndreh2021-06-211-1/+5
|
* doc/git-permalink.*.1: Add `EXIT STATUS` section; mention `STDOUT` in `-p` ↵EuAndreh2021-06-217-56/+256
| | | | option
* TODOs.md: Add #task-9be7e4f5-df3c-ed5f-1ca1-2ce9fc61d944EuAndreh2021-06-211-0/+3
|
* TODOs.md: Add #task-1d80cea9-b246-0168-7844-34fe629b255fEuAndreh2021-06-211-0/+8
|
* TODOs.md: Add #task-de34e119-049f-67a0-da8b-e0103ed24a2bEuAndreh2021-06-211-0/+3
|
* TODOs.md: Add #task-4ae91595-6e6d-be17-d882-754a478da878EuAndreh2021-06-211-0/+3
|
* TODOs.md: Add #task-fbc4e2cc-b9e0-53e2-6b0a-8ec118962046EuAndreh2021-06-211-0/+3
|
* TODOs.md: Add #task-9ee2bbc8-295f-52b7-4104-483869bad017EuAndreh2021-06-211-0/+7
|
* doc/pt.po: Fix typo s/OPÇÔES/OPÇÕES/EuAndreh2021-06-202-3/+3
|
* README.md: Mention po4a and gettext on the list of development toolsEuAndreh2021-06-191-0/+3
|
* TODOs.md: Mark #task-eb65cbf1-bff9-be13-f185-3ea53333aa6f as DONEEuAndreh2021-06-191-1/+5
|
* aux/ci/report.sh: Fetch only CI-related notesEuAndreh2021-06-191-1/+4
|
* TODOs.md: Add #task-eb65cbf1-bff9-be13-f185-3ea53333aa6fEuAndreh2021-06-191-0/+3
|
* Release v0.2.0v0.2.0EuAndreh2021-06-193-2/+15
|
* Makefile: Fix arguments to aux/workflow/dist.shEuAndreh2021-06-191-1/+1
|
* doc/: Add new supported forges to the manpagesEuAndreh2021-06-197-75/+196
|
* TODOs.md: Mark #task-cebc5298-17ad-5c60-dfa5-a25b66433a3a as DONEEuAndreh2021-06-191-12/+13
|
* Add support for the Linux kernel CGit instanceEuAndreh2021-06-191-0/+7
|
* Add support for bitbucket.orgEuAndreh2021-06-191-0/+8
|
* Add support for pagure.ioEuAndreh2021-06-191-0/+7
| | | | | | | | | | | | | I only added support for HTTPS remotes, because I'm not willing to go out of my way for creating a Fedora account just to see what an SSH URL looks like. I guess just the prefix would change, but repositories not named "A/B.git" but just "B.git" would need more (trivial) treatment, which I'm not willing to do. It shall stay this way until a contribution comes to improve it, or Pagure stops making it hard for me to implement this.
* Add support for codeberg.orgEuAndreh2021-06-191-0/+8
|
* Add support for notabug.orgEuAndreh2021-06-191-21/+31
|
* aux/workflow/manpages.sh: Suppress ShellCheck warningsEuAndreh2021-06-191-0/+2
|
* TODOs.md: Mark #task-9e842529-b782-84a2-1d0a-801a8766cb7e as DONEEuAndreh2021-06-191-3/+7
|
* Add aux/workflow/manpages.sh to install, uninstall and generate HTML from ↵EuAndreh2021-06-194-31/+62
| | | | translated manpages
* aux/workflow/assert-manpages.sh: Mark as executableEuAndreh2021-06-191-0/+0
|
* TODOs.md: Update #task-9e842529-b782-84a2-1d0a-801a8766cb7e DOING statusEuAndreh2021-06-191-2/+5
|
* Leverage po4a to translate manpagesEuAndreh2021-06-1913-17/+1943
|
* TODOs.md: Mark #task-9e842529-b782-84a2-1d0a-801a8766cb7e as DOINGEuAndreh2021-06-171-1/+5
|
* src/git-permalink.sh: Translate program output to pt, fr and eoEuAndreh2021-06-172-17/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The choice of implementation was very basic: Use strings in the script itself rather than relying on external tools. Compared to a compiled C program using, say, gettext.3, an sh script could also depend on it, but at runtime. An equivalent C code would require the gettext.3 dependency, but at compile time. After compilation, the code required for doing the translation is already on the binary, while an sh script would need gettext.1 to run gettext.1 commands while it executes, such as "gettext -s 'MSG_ABC'". Bash has a very appealing feature: using $"" does a lookup and translates the string. In other words, $"" runs gettext for you, without the script requiring gettext.1, just Bash. As tempting as it was, I chose not to rely on Bash. I preferred the cost of an ad-hoc solution over requiring Bash over POSIX sh. The final solution is simple enough for the git-permalink.1 program, but wouldn't scale for bigger scripts. Strings are placed together for translation, and no external tool is used for this. Due to the way that strings are now given to printf.1, ShellCheck complains a lot about those strings, alonside saying that the string translation variables are unused. They actually are used, but hidden behind an eval. Overall I'm satisfied with the solution, but I probably won't follow the same path for the manpages, and will choose something like po4a for it, instead.
* Makefile: Use mkdir+cp over installEuAndreh2021-06-171-1/+2
| | | | TIL: install isn't POSIX.
* Makefile: Ignore failure when creating ./git-permalink fileEuAndreh2021-06-171-3/+2
| | | | In case of failure, a "make clean" will fix it.
* Update aux/workflow/assert-changelog.shEuAndreh2021-06-173-6/+9
|
* README.md: s/Extratools/Extra tools/EuAndreh2021-06-171-1/+1
|
* Makefile: Remove .PHONY targetEuAndreh2021-06-161-2/+0
|
* doc/git-permalink.1: Add period at the end of NAMEEuAndreh2021-06-161-1/+1
|
* Makefile: Add $(manpages) as a dependency of the "public" targetEuAndreh2021-06-161-1/+1
|
* aux/workflow/assert-manpages.sh: Fix link to mailing listEuAndreh2021-06-162-2/+2
|
* Show -h and -V flags on usage textEuAndreh2021-06-162-2/+2
|
* aux/workflow/assert-changelog.sh: Assert link exists in CHANGELOGEuAndreh2021-06-161-0/+9
|
* aux/workflow/preamble.md: Join first and second paragraphsEuAndreh2021-06-161-3/+1
|
* aux/workflow/preamble.md: Link only to homepageEuAndreh2021-06-161-1/+1
|
* CHANGELOG.md: Add link to homepageEuAndreh2021-06-161-0/+2
|
* s/Home page/Homepage/EuAndreh2021-06-164-4/+4
|
* TODOs.md: Add #task-9e842529-b782-84a2-1d0a-801a8766cb7eEuAndreh2021-06-161-0/+3
|
* TODOs.md: Mark #question-e3b7748d-2e67-b60b-e966-ad80c754ea58 as DONEEuAndreh2021-06-161-1/+5
|