History log of /dokuwiki/inc/lang/en/lang.php (Results 1 – 25 of 215)
Revision Date Author Comments
# 455aa67e 25-Apr-2023 Andreas Gohr <andi@splitbrain.org>

Introduce token authentication #2431

This generates a JWT token for users. This token can be sent in a Bearer
authentication header as a login mechanism. Users can reset their token
in the profile.

Introduce token authentication #2431

This generates a JWT token for users. This token can be sent in a Bearer
authentication header as a login mechanism. Users can reset their token
in the profile.

Note: a previously suggested implementation used a custom token format,
not JWT tokens

show more ...


# 775003a7 20-Mar-2023 Hamid <hamid0x4c@gmail.com>

Avoid out-of-memory problems in log viewer

fixes #3919

Squashed commit of the following:

commit 322d0846f39b0641ab7af69e24d1bd70a95b58b5
Author: Andreas Gohr <andi@splitbrain.org>
Date: Mon Mar

Avoid out-of-memory problems in log viewer

fixes #3919

Squashed commit of the following:

commit 322d0846f39b0641ab7af69e24d1bd70a95b58b5
Author: Andreas Gohr <andi@splitbrain.org>
Date: Mon Mar 20 18:45:30 2023 +0100

some more simplifications for the log viewer

* use exceptions to abort on read errors
* use the same fread call regardless of log size

commit b8a3dfbd90a77811db380510cc279f973c92bd01
Author: Hamid <hamid0x4c@gmail.com>
Date: Mon Mar 20 17:49:41 2023 +0330

Fix code style

commit aa0e5b6692f9c26a9c22875111760803e280c9ac
Merge: 23b372c94 ac1d8211a
Author: Hamid <hamid0x4c@gmail.com>
Date: Mon Mar 20 17:39:05 2023 +0330

Merge branch 'dokuwiki:master' into fix-display-large-log

commit 23b372c94d466ff3436177bf8386c879b78c5777
Merge: d82b8818c e410a7b8f
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Mon Mar 20 17:35:07 2023 +0330

Merge branch 'fix-display-large-log' of github.com:Adibzadeh/dokuwiki into fix-display-large-log

commit d82b8818c86f614f7d504cf19ad6d0492bb6d92f
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Mon Mar 20 17:29:43 2023 +0330

Use only fopen to read logfile

commit e410a7b8fa7663039bbdcfd6a90aed89877bb744
Author: Hamid <hamid0x4c@gmail.com>
Date: Sat Mar 18 10:30:19 2023 +0330

White-space removed

commit 8f1ad23f785b1cccb790b39371b8989514777a38
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Sat Mar 18 10:12:16 2023 +0330

Refactoring getLogLines and code improvements

commit 37a0e60c920343ff45ed12ede2cf96c2251108a3
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Sat Mar 18 00:27:27 2023 +0330

Refactoring and improve error handling

commit 25d3465289053130546c9066c82b0b620f596c33
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Sat Mar 18 00:00:59 2023 +0330

Translation for log errors in Fa and En

commit cc96b9babee12e4f4678380208685b3497a29b70
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Fri Mar 17 00:34:06 2023 +0330

code improve

commit 9c0e42285fc8d553e26c030d407d46f69f8c3d91
Author: Hamid <hamid0x4c@gmail.com>
Date: Tue Mar 14 18:16:23 2023 +0330

variable name fixed

commit 89124317ba2cccc12cb506f4d641a9e6288969e1
Author: Hamid <hamid0x4c@gmail.com>
Date: Tue Mar 14 18:13:30 2023 +0330

tab indent fix

commit b154bfde3ecd2039c16b8f8002ada291301e19b2
Author: Hamid Adibzadeh <hamid0x4c@gmail.com>
Date: Tue Mar 14 17:21:09 2023 +0330

fix #3919 log viewer runs into OOM

show more ...


# 90c7493e 14-Sep-2021 Satoshi Sahara <sahara.satoshi@gmail.com>

list external edits also in revs list

- current revision changelogline is already in changelog, so retrieve in one go
- include listing of external edits
- for external deletions no date is known


# d3f829c2 11-Jan-2021 Andreas Gohr <andi@splitbrain.org>

cleaner behaviour for data directory check

Show a properly translated message.


# 6ed7a26d 21-Jul-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Display the list of allowed mime types in media uploader


# b00af75f 14-Jun-2020 Henry Pan <git@phy25.com>

Update links to dokuwiki.org in language file


# 3f6872b1 17-May-2020 Myron Turner <turnermm02@shaw.ca>

Checks for PHP mail in install.php and warns if mail used after install (#3056)

* Checks for PHP mail in install.php and warns if mail used after install.

* fixed spacing in instal.php

* Recon

Checks for PHP mail in install.php and warns if mail used after install (#3056)

* Checks for PHP mail in install.php and warns if mail used after install.

* fixed spacing in instal.php

* Reconfigured warning message and code for PHP mail not existing or disabled. Removed the substitute mail function in inc/compatibility.php

* fixed some spacing errors in install.php

* Adds warning to error_log when call is made to unavailable PHP mail function and posts the warning to browser top if current user is admin.

* adds newline at end of compatibility.php and $lang global to Mailer.class.php

* Changes to handling of msg and `return false` as suggested by @phy25

* Removed tab from lilne 719

* removed additional tabs from Mailer.class.php

* Update inc/Mailer.class.php

removes unnecessary object

* Update inc/Mailer.class.php

changed msg styling for msg_managers_only warning for no PHP mail function

* Update inc/Mailer.class.php

* Update inc/Mailer.class.php

show more ...


# 387250ef 29-Feb-2020 Phy <git@phy25.com>

Add random_bytes check in installer

Fixes #1892. This will be triggered by:

- PHP 7+: "If an appropriate source of randomness cannot be found, an Exception will be thrown"
- paragonie/random_compat

Add random_bytes check in installer

Fixes #1892. This will be triggered by:

- PHP 7+: "If an appropriate source of randomness cannot be found, an Exception will be thrown"
- paragonie/random_compat: PHP 5.6 support will fail if urandom is not readable

show more ...


# 826e222f 28-Mar-2018 Andreas Gohr <gohr@cosmocode.de>

show adavanced tools with JavaScript only


# a00078f7 28-Mar-2018 Andreas Gohr <gohr@cosmocode.de>

adjusted language files to remove outdated string


# c5bd5721 27-Mar-2018 Michael Große <grosse@cosmocode.de>

l10n(search): localization for the toggle tools button


# 2ce8affc 27-Mar-2018 Michael Große <grosse@cosmocode.de>

l10n(search): Add link to create page from query to searchintro

Implements the functionality requested in #1124


# c6b5b74a 27-Mar-2018 Michael Große <grosse@cosmocode.de>

fix(search): detect irregular fragment query

If the entered query does not cleanly fall into the area of the given
options, show the current behavior as "custom".


# 01c23ba8 26-Mar-2018 Michael Große <grosse@cosmocode.de>

l10n(search): en translation for new search functionality


# f023c68e 05-Nov-2017 Andreas Gohr <andi@splitbrain.org>

comment out empty language string

The empty string is not translatable in the translation interface and
causes all languages to be <100%

This is an alternative approach to #2164


# 774514c9 27-May-2016 Gerrit Uitslag <klapinklapin@gmail.com>

translate html and text string for signature

Default only text string exists, via localized translation a wiki admin
can add his/her own (html) version.


# e03b842a 15-Apr-2016 Andreas Gohr <andi@splitbrain.org>

Merge branch 'master' into emailsignature

* master: (406 commits)
msglint is HTTPS now. fixed failing tests
URI scheme is only relevant for TLS if not proxy connection #1526
use SSL if scheme

Merge branch 'master' into emailsignature

* master: (406 commits)
msglint is HTTPS now. fixed failing tests
URI scheme is only relevant for TLS if not proxy connection #1526
use SSL if scheme is https
add conf as global
translation update
avoid HTTP Response Splitting attacks via redirects #1513
translation update
another tiny tab CSS addition
minor change to make tabs more flexible
translation update
adjusted for scrutinizer hints
adjusted tests for reflection based method export
first go at using reflection for remote export
Fixes for the FR translation
obfuscate auth passwords in config. fixes #1487
add support for new Django hashing methods
usie a strict comparison === instead
use getNS() call instead of dirname()
#1477:Search heading still displayed although search disabled
Fix PHP7 evaluation order incompatibility
...

show more ...


# 5cbc6478 09-May-2015 Anika Henke <anika@selfthinker.org>

Merge pull request #1072 from flammy/master

Added file-in-use reference to page


# db9faf02 06-May-2015 Patrick Brown <ptbrown@whoopdedo.org>

Report more meaningful errors when an auth backend fails. closes #1093


# d49d4260 04-Apr-2015 Patrick Brown <ptbrown@whoopdedo.org>

Remove no longer needed language string


# 247faa0e 04-Apr-2015 Patrick Brown <ptbrown@whoopdedo.org>

Remove unused language strings


# ba2c2f17 27-Mar-2015 furun <furun@arcor.de>

Cleanup of the mail text signature.

Done:
Cleanup of the mail text signature.
The signature is deleted from the txt files and moved in to lang.php
Mailer.class.php updated to insert the signature

F

Cleanup of the mail text signature.

Done:
Cleanup of the mail text signature.
The signature is deleted from the txt files and moved in to lang.php
Mailer.class.php updated to insert the signature

Fix:
- Cleaner text
- no more "-- " "--" "---" "----" problems.
- mailwrap.html is not needed anymore an can be deleted (?)

Changed files in all languages:
lang.php
mailtext.txt
password.txt
registermail.txt
subscr_digest.txt
subscr_list.txt
subscr_single.txt
uploadmail.txt
pwconfirm.txt
showrev.txt

delete?:
mailwrap.html

show more ...


# e605e041 12-Mar-2015 flammy <flamabelde@yahoo.de>

Added file-in-use reference to page

Added english translation for file-in-use reference


# 51cc540c 18-Jan-2015 Gilles-Philippe Morin <gphmorin@gmail.com>

"Login" and "Logout" become "Log In" and "Log Out"

This change improves consistency with neighboring links such as "Update Profile" and "Register", which are two action verbs. "Login" and "Logout" w

"Login" and "Logout" become "Log In" and "Log Out"

This change improves consistency with neighboring links such as "Update Profile" and "Register", which are two action verbs. "Login" and "Logout" were nouns and not verbs. Title case capitalization is applied because of "Update Profile".

show more ...


# dca6aaca 14-Jan-2015 Gilles-Philippe Morin <gphmorin@gmail.com>

"Recent changes" becomes "Recent Changes"

To improve consistency: it is surrounded by "Update Profile" and "Media Manager".


123456789