Subversion Repositories oidplus

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
1366 2023-08-01 20:22:51 daniel-marschall /trunk/ Admin control panel logs: Log files for admin target will be printed bold

Logger: Messages without target user will not be logged anymore

... existing invalid log entries can be selected with this command
select base.*
from oidplus_log base
left join oidplus_log_user target1 on target1.log_id = base.id
left join oidplus_log_object target2 on target2.log_id = base.id
where target1.id is null and target2.id is null;

... to delete, replace "select base.*" with "delete base"
 
1350 2023-07-30 23:48:26 daniel-marschall /trunk/ Various smaller fixes  
1316 2023-06-24 01:46:45 daniel-marschall /trunk/ Bugfix: Problem when adding multiple ASN.1 / IRI identifiers for one OID  
1290 2023-05-28 20:51:58 daniel-marschall /trunk/ Creating objects using AJAX was not working. Fixed.  
1285 2023-05-19 13:24:51 daniel-marschall /trunk/ Implemented REST "OPTIONS"  
1268 2023-05-14 11:28:37 daniel-marschall /trunk/  
1267 2023-05-14 02:47:49 daniel-marschall /trunk/ Introduced new version of Logger Maskcodes
!!! Attention! If you have installed foreign plugins (not bundled with OIDplus), you MUST update their logging maskcodes;
!!! if you are the developer of the plugin, please run dev/logger/verify_maskcodes.phps to verify the plugins
!!! A documentation of the new maskcodes can be found in doc/developer_notes/logger_maskcodes.md
 
1207 2023-04-15 02:29:09 daniel-marschall /trunk/ Documentation update  
1200 2023-04-12 01:12:42 daniel-marschall /trunk/  
1199 2023-04-11 15:02:59 daniel-marschall /trunk/ Log method: Added functionality to add arguments like in _L()  
1197 2023-04-11 01:00:28 daniel-marschall /trunk/ OIDplusLogger: Changed array-of-arrays into an object oriented structure  
1194 2023-04-10 19:35:40 daniel-marschall /trunk/includes/classes/ Fixed issue where failed version check wrote wrong value to config key "last_known_version"  
1186 2023-04-08 20:32:34 daniel-marschall /trunk/ Methods in OIDplusAuthUtils, OIDplusGui, OIDplusMailUtils, OIDplusMenuUtils are now not static anymore  
1185 2023-04-08 19:58:20 daniel-marschall /trunk/ Logger methods are now not static anymore  
1140 2023-03-26 23:45:51 daniel-marschall /trunk/  
1116 2023-03-23 23:09:25 daniel-marschall /trunk/ BIG CHANGE: All methods have received a PHPdoc comment and a lot of parameter and return types have been added (as far as PHP 7.0 allows)
!!! PLEASE NOTE THAT THE NEW VERSION OF OIDPLUS IS NOT COMPATIBLE WITH OLD THIRD PARTY PLUGINS (EXCEPT THE ONES THAT ARE BUNDLED WITH OIDPLUS)
!!! IF YOU HAVE THIRD PARTY PLUGINS INSTALLED (OR WRITTEN YOURSELF), THEN YOU *WILL* RECEIVE ERROR MESSAGES AFTER THE UPDATE
!!! AND NEED TO CHANGE THE METHOD SIGNATURES IN THESE PLUGINS TO MAKE THEM WORK AGAIN. (We can help you with this task if you need help!)
Please note that due to the amount of changes, there could have been a few bugs introduced; please send all bug reports via GitHub or email
and if you have the possibility, it is recommended to test the version of a test system before applying the update on a productive system.
Thank you very much!
 
1086 2023-02-26 01:12:29 daniel-marschall /trunk/ Avoid calling *.class.php files directly to avoid PHP errors (Github Issue #4)  
1050 2022-12-21 01:13:04 daniel-marschall /trunk/ Huge change in internal code structure!
All OIDplus classes are now in the class namespace "ViaThinkSoft\OIDplus".
!!! WARNING:
!!! All plugins MUST put their classes in a namespace and the constant "INSIDE_OIDPLUS" must not be used anymore.
!!! If you have a third-party plugin installed which is NOT bundled with OIDplus, you MUST update it.
!!! Recommendation: Remove the plugin first, then update OIDplus, then ask the author to change the plugin.
!!! If you have not installed any third-party plugins, then it is safe to update now.
 
825 2022-04-09 12:00:32 daniel-marschall /trunk/ - If plugins tried to log things before the logger plugins were initialized, then nothing happened. The log messages are now submitted delayed.
- Improved compatibility with OpenSSL not working out of the box if openssl.cnf file is missing.
 
730 2022-01-23 22:10:52 daniel-marschall /trunk/ "ImplementsFeature" is now available for all PHP classes of OIDplus, not just Plugin classes.
Therefore, OID-WHOIS can now also receive WHOIS attributes from Objects (not just the Object Plugin) or the OIDplusRA class.
 

Show All