Subversion Repositories oidplus

Rev

Rev 1284 | Rev 1288 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1284 Rev 1285
1
 
1
 
2
June 2023 planned:
-
 
3
- Test REST API
-
 
4
- Test if REST API "OPTIONS" is implemented
-
 
5
 
-
 
6
May 2023 planned:
2
May 2023 planned:
7
- Don't send "information object OIDs" (= Non-OIDs) OIDs to oid-info.com anymore
3
- Don't send "information object OIDs" (= Non-OIDs) OIDs to oid-info.com anymore
8
	=> 17 May 2023 mitigated at VTS internal side
4
	=> 17 May 2023 mitigated at VTS internal side
9
- In re Internet access:
5
- In re Internet access:
10
          * Check if all instances of https://github.com/danielmarschall/oidplus/issues/5 ("Offline mode") have been addressed
6
          * Check if all instances of https://github.com/danielmarschall/oidplus/issues/5 ("Offline mode") have been addressed
11
    [OK!] * Everywhere where url_post_contents() is used, we need to check url_post_contents_available() too.
7
    [OK!] * Everywhere where url_post_contents() is used, we need to check url_post_contents_available() too.
12
          * Everywhere where url_get_contents() is used, we need to check url_get_contents_available() too.
8
          * Everywhere where url_get_contents() is used, we need to check url_get_contents_available() too.
13
- Not good: url_*_contents() throws an Exception if not available, but returns false if URL is not available. That's inconsistant...
9
- Not good: url_*_contents() throws an Exception if not available, but returns false if URL is not available. That's inconsistant...
14
- Idea: If we enter "oid:2.999.123" in the goto box, and only "oid:2.999" exists, should we recommend the user to look at 2.999?
10
- Idea: If we enter "oid:2.999.123" in the goto box, and only "oid:2.999" exists, should we recommend the user to look at 2.999?
15
 
11
 
16
Future:
12
Future:
17
- Check if we can also support these databases listed at the PHP documentation:
13
- Check if we can also support these databases listed at the PHP documentation:
18
	CUBRID
14
	CUBRID
19
	dBase
15
	dBase
20
	Firebird/InterBase => No. This PHP extension is not maintained anymore
16
	Firebird/InterBase => No. This PHP extension is not maintained anymore
21
	IBM DB2 - IBM DB2, Cloudscape and Apache Derby
17
	IBM DB2 - IBM DB2, Cloudscape and Apache Derby
22
 
18
 
23
Unicode compatibility:
19
Unicode compatibility:
24
- [DONE]  SQL Server needs nvarchar instead of varchar (works with emoji too)
20
- [DONE]  SQL Server needs nvarchar instead of varchar (works with emoji too)
25
- [DONE]  MySQL works with Unicode and emoji if collation is utf8mb4
21
- [DONE]  MySQL works with Unicode and emoji if collation is utf8mb4
26
- [DONE]  Access table structure works with Unicode
22
- [DONE]  Access table structure works with Unicode
27
-         PDO+MySQL: Unicode (with emoji) works, but PDO+ODBC+MSSQL and PDO+ODBC+ACCESS does not work, so it's ODBC's or ODBC-Driver's fault. Can we do something about it?
23
-         PDO+MySQL: Unicode (with emoji) works, but PDO+ODBC+MSSQL and PDO+ODBC+ACCESS does not work, so it's ODBC's or ODBC-Driver's fault. Can we do something about it?
28
-         ODBC+MSSQL and ODBC+ACCESS: Unicode deos not work. So it's ODBC's or ODBC-Driver's fault. Can we do something about it?
24
-         ODBC+MSSQL and ODBC+ACCESS: Unicode deos not work. So it's ODBC's or ODBC-Driver's fault. Can we do something about it?
29
          (Note: ODBC and PDO can save UTF-8, but then they are double-encoded in DBTool/Access/SQLManagementStudio. When you insert Unicode in DBTool/Access/SQLManagementStudio, then they show up as '??' in OIDplus)
25
          (Note: ODBC and PDO can save UTF-8, but then they are double-encoded in DBTool/Access/SQLManagementStudio. When you insert Unicode in DBTool/Access/SQLManagementStudio, then they show up as '??' in OIDplus)
30
-         ADO via OLEDB does not seem to support Unicode??? But it should! https://stackoverflow.com/questions/28311687/unable-to-retrieve-utf-8-accented-characters-from-access-via-pdo-odbc/28341697#28341697
26
-         ADO via OLEDB does not seem to support Unicode??? But it should! https://stackoverflow.com/questions/28311687/unable-to-retrieve-utf-8-accented-characters-from-access-via-pdo-odbc/28341697#28341697
31
- [DONE]  SRVSRV plugin is capable of Unicode and pile of poo Emoji.
27
- [DONE]  SRVSRV plugin is capable of Unicode and pile of poo Emoji.
32
 
28
 
33
Exception Refactoring:
29
Exception Refactoring:
34
- [DONE]  Instead of catching OIDplusException, catch Exception
30
- [DONE]  Instead of catching OIDplusException, catch Exception
35
- [DONE]  Check every "new OIDplusException" and "new \OIDplusException" if it contains HTML and needs to be "new OIDplusHtmlException"
31
- [DONE]  Check every "new OIDplusException" and "new \OIDplusException" if it contains HTML and needs to be "new OIDplusHtmlException"
36
- [DONE]  Check every instance of "->getMessage()" it it needs to be HTML or Text
32
- [DONE]  Check every instance of "->getMessage()" it it needs to be HTML or Text
37
                HTML would be   $htmlmsg = $e instanceof OIDplusException ? $e->getHtmlMessage() : htmlentities($e->getMessage());
33
                HTML would be   $htmlmsg = $e instanceof OIDplusException ? $e->getHtmlMessage() : htmlentities($e->getMessage());
38
-         Check every instance of "catch (\Exception"
34
-         Check every instance of "catch (\Exception"
39
                Question: In the whole code we write "catch (\Exception" . Is that correct or should we write "catch (\Throwable" ?
35
                Question: In the whole code we write "catch (\Exception" . Is that correct or should we write "catch (\Throwable" ?
40
- [DONE]  Why are there 66 matches of  "$out['icon'] = 'img/error.png';"  ?  Shouldn't gui() just throw OIDplusException or OIDplusHtmlException and let the caller do the rest?
36
- [DONE]  Why are there 66 matches of  "$out['icon'] = 'img/error.png';"  ?  Shouldn't gui() just throw OIDplusException or OIDplusHtmlException and let the caller do the rest?
41
-               Idea: Implement "friendly Exceptions"
37
-               Idea: Implement "friendly Exceptions"
42
                    * A "friendly" Exception is an Exception where the user has done something wrong (i.e. they are not logged in).
38
                    * A "friendly" Exception is an Exception where the user has done something wrong (i.e. they are not logged in).
43
                    * The error is therefore clearly known and therefore a technical stacktrace is NOT shown.
39
                    * The error is therefore clearly known and therefore a technical stacktrace is NOT shown.
44
 
40
 
45
Type safety:
41
Type safety:
46
- PhpStorm warnings
42
- PhpStorm warnings
47
- Re-Check "mixed"
43
- Re-Check "mixed"
48
- Nullable params passed to non-nullable methods => find using PHPStan level 7
44
- Nullable params passed to non-nullable methods => find using PHPStan level 7
49
 
45
 
50
Admin Auth:
46
Admin Auth:
51
- implement argon2 as alternative to bcrypt?
47
- implement argon2 as alternative to bcrypt?
52
- idea: could RA-auth-plugins also be used to create the admin-hash? problem: setup/ generates hash with javascript, not via PHP!!!
48
- idea: could RA-auth-plugins also be used to create the admin-hash? problem: setup/ generates hash with javascript, not via PHP!!!
53
- BCrypt
49
- BCrypt
54
	Make #rounds and length of admin password configurable (pre-baseconfig?)
50
	Make #rounds and length of admin password configurable (pre-baseconfig?)
55
	Include dev/bcrypt_cost_calculator somewhere in the configuration page?
51
	Include dev/bcrypt_cost_calculator somewhere in the configuration page?
56
	... At least give a hint to the documentation, so they know how to run the tool and how to enter the cost in the configuration (for RA and Admin)
52
	... At least give a hint to the documentation, so they know how to run the tool and how to enter the cost in the configuration (for RA and Admin)
57
	... or in the setup page make an extra control how complex the admin password should be? but be aware that nobody enters a too big number (it makes DoS possible!)
53
	... or in the setup page make an extra control how complex the admin password should be? but be aware that nobody enters a too big number (it makes DoS possible!)
58
	See "Example #3" here https://www.php.net/manual/de/function.password-hash.php which helps you finding a good cost value for your system
54
	See "Example #3" here https://www.php.net/manual/de/function.password-hash.php which helps you finding a good cost value for your system
59
 
55
 
60
Feb 2023 entries:
56
Feb 2023 entries:
61
- Create oid => immediately after creating an OID, show the title/description edit dialog in a popup?? we must be sure that people don't add OIDs without title
57
- Create oid => immediately after creating an OID, show the title/description edit dialog in a popup?? we must be sure that people don't add OIDs without title
62
- OID Description textarea: add link to oid-info.com faq to show how descriptions should be done
58
- OID Description textarea: add link to oid-info.com faq to show how descriptions should be done
63
- Oidinfo blacklist object types (set by the user in the system config)
59
- Oidinfo blacklist object types (set by the user in the system config)
64
- Db Config: datatypes/enums for the settings
60
- Db Config: datatypes/enums for the settings
65
- Db Config: default setting button
61
- Db Config: default setting button
66
- improved PHP class loader, see frdlweb github discussion https://github.com/frdl/frdl-oidplus-plugin-type-pen/issues/1
62
- improved PHP class loader, see frdlweb github discussion https://github.com/frdl/frdl-oidplus-plugin-type-pen/issues/1
67
 
63
 
68
Ideas by Simon T.:
64
Ideas by Simon T.:
69
- System status plugin: Check if file owners are mixed
65
- System status plugin: Check if file owners are mixed
70
- a possibility to upload & assign custom icons to objects (both in the tree & in the page)
66
- a possibility to upload & assign custom icons to objects (both in the tree & in the page)
71
- a possibility to move objects/nodes from one hierarchy level to another (for now, I have to reconstruct them)
67
- a possibility to move objects/nodes from one hierarchy level to another (for now, I have to reconstruct them)
72
- 2FA TOTP support (+backup codes) - good for public instances, like FreeOID (Yes, I'm that one person who always asks for true totp 2FA everywhere xD )
68
- 2FA TOTP support (+backup codes) - good for public instances, like FreeOID (Yes, I'm that one person who always asks for true totp 2FA everywhere xD )
73
- a setting for a permanent choice between 'Always switch to newly created object' / 'Never switch' / 'Ask user if they want to switch'
69
- a setting for a permanent choice between 'Always switch to newly created object' / 'Never switch' / 'Ask user if they want to switch'
74
- a possibility to export&transfer all data between OIDplus'es: Attention: Do not use this XML Export/Import to exchange, backup or restore data between OIDplus systems!
70
- a possibility to export&transfer all data between OIDplus'es: Attention: Do not use this XML Export/Import to exchange, backup or restore data between OIDplus systems!
75
- a possibility to 'construct' my own object types in UI (1: specify list of their fields and 2: choose "oid-like/forward" com.example.api or "domain-like/reverse" api.example.com naming scheme), so they would appear as the whole new type
71
- a possibility to 'construct' my own object types in UI (1: specify list of their fields and 2: choose "oid-like/forward" com.example.api or "domain-like/reverse" api.example.com naming scheme), so they would appear as the whole new type
76
 
72
 
77
Recently added TODO entries:
73
Recently added TODO entries:
78
- should all country codes (even unused) in 1.2 and 2.16 be added to the wellknown list?
74
- should all country codes (even unused) in 1.2 and 2.16 be added to the wellknown list?
79
- "Decoding" section (tech info) at OID nodes, e.g. the AID decoder, should this be a scrolling <pre> block instead of a <code> block? (For mobile devices)
75
- "Decoding" section (tech info) at OID nodes, e.g. the AID decoder, should this be a scrolling <pre> block instead of a <code> block? (For mobile devices)
80
- problem: if an identical class file (with same namespace) is placed in two plugin folders, then the oidplus autoloader will include both, which will cause a fatal error
76
- problem: if an identical class file (with same namespace) is placed in two plugin folders, then the oidplus autoloader will include both, which will cause a fatal error
81
- oidplus docker image?
77
- oidplus docker image?
82
 
78
 
83
Databases:
79
Databases:
84
- Let plugins create tables for all DBMS by including a "create table" function with abstract types in the SQL slang plugins (similar to Medoo)
80
- Let plugins create tables for all DBMS by including a "create table" function with abstract types in the SQL slang plugins (similar to Medoo)
85
 
81
 
86
Ideas
82
Ideas
87
- if a third-party plugin throws an exception in the init() method, maybe OIDplus should avoid loading the plugin?
83
- if a third-party plugin throws an exception in the init() method, maybe OIDplus should avoid loading the plugin?
88
- "hidden" alt ids which are not shown in the GUI, but can be used for reverse-Alt-ID ? (I believe we have excluded some AltIDs which are "not neccessary", e.g. an GUID already is a GUID and therefore does not need a Namespace GUID, or something like that)
84
- "hidden" alt ids which are not shown in the GUI, but can be used for reverse-Alt-ID ? (I believe we have excluded some AltIDs which are "not neccessary", e.g. an GUID already is a GUID and therefore does not need a Namespace GUID, or something like that)
89
 
85
 
90
RDAP:
86
RDAP:
91
- Extend handle404() to handle more things required by the RFC, as well as more object types
87
- Extend handle404() to handle more things required by the RFC, as well as more object types
92
- More TODO see GitHub repository https://github.com/frdl/oidplus-frdlweb-rdap/issues
88
- More TODO see GitHub repository https://github.com/frdl/oidplus-frdlweb-rdap/issues
93
 
89
 
94
GS1 plugin:
90
GS1 plugin:
95
- prefilterQuery: If we query a gs1 which has a check digit, we should be redirected to the number without checkdigit.
91
- prefilterQuery: If we query a gs1 which has a check digit, we should be redirected to the number without checkdigit.
96
                  But... how do we know if the last digit is a checkdigit or if it is a longer number with a missing check-digit?
92
                  But... how do we know if the last digit is a checkdigit or if it is a longer number with a missing check-digit?
97
 
93
 
98
New Object Type plugins:
94
New Object Type plugins:
99
- LSID ?
95
- LSID ?
100
 
96
 
101
Treeview / Navigation:
97
Treeview / Navigation:
102
- In the tree, let the operator create "shortcuts" to important OIDs?
98
- In the tree, let the operator create "shortcuts" to important OIDs?
103
- Define "critical" OIDs which should always be visible; this means: the tree will always be extended so that these OIDs are shown?
99
- Define "critical" OIDs which should always be visible; this means: the tree will always be extended so that these OIDs are shown?
104
 
100
 
105
SECURITY Improvements:
101
SECURITY Improvements:
106
- Small security issue: A visitor can check which plugins are installed by either entering a "goto" command (e.g. "oidplus:vnag_version_check")
102
- Small security issue: A visitor can check which plugins are installed by either entering a "goto" command (e.g. "oidplus:vnag_version_check")
107
  and see which error message appears, or they could try to enter "plugin/adminPages/..." using the web browser and see if the result is HTTP 200 or HTTP 404.
103
  and see which error message appears, or they could try to enter "plugin/adminPages/..." using the web browser and see if the result is HTTP 200 or HTTP 404.
108
 
104
 
109
Setup:
105
Setup:
110
- Make following things configurable in some kind of base-config INI/XML file:
106
- Make following things configurable in some kind of base-config INI/XML file:
111
	Min length of admin password
107
	Min length of admin password
112
	Bcrypt Round
108
	Bcrypt Round
113
	Default language (like the "DEFAULT_LANGUAGE" base config setting)
109
	Default language (like the "DEFAULT_LANGUAGE" base config setting)
114
	Design (like the "design" config setting)
110
	Design (like the "design" config setting)
115
 
111
 
116
IDEAS FOR NEW FUNCTIONALITIES
112
IDEAS FOR NEW FUNCTIONALITIES
117
- Admin plugin "Attachments" with following functionalities:
113
- Admin plugin "Attachments" with following functionalities:
118
	* Show every object and its attachments, so that the admin knows what's going on
114
	* Show every object and its attachments, so that the admin knows what's going on
119
	  (Alternatively they can just look in the userdata directory using FTP)
115
	  (Alternatively they can just look in the userdata directory using FTP)
120
	* Give the ability to enable/disable RA uploading/deleting
116
	* Give the ability to enable/disable RA uploading/deleting
121
	  (Alternatively they need to do it in the configuration module and enter '0' and '1' by hand)
117
	  (Alternatively they need to do it in the configuration module and enter '0' and '1' by hand)
122
- "Notifications plugin"
118
- "Notifications plugin"
123
	OK:      Make a plugin that shows warnings from plugins (via "feature-interface"), e.g. the registration plugin could warn that CURL is not working correctly etc.
119
	OK:      Make a plugin that shows warnings from plugins (via "feature-interface"), e.g. the registration plugin could warn that CURL is not working correctly etc.
124
	No:	 But it should also have JavaScript components, e.g. check if dev/ and other confidential folders can be accessed (see code in setup/)
120
	No:	 But it should also have JavaScript components, e.g. check if dev/ and other confidential folders can be accessed (see code in setup/)
125
	Not yet: Also offer VNag that informs the user via Nagios if new Notifications are there?
121
	Not yet: Also offer VNag that informs the user via Nagios if new Notifications are there?
126
- Excel/CSV import tool for bulk data import (as alternative to XML import. Maybe previous Excel->XML import tool?)
122
- Excel/CSV import tool for bulk data import (as alternative to XML import. Maybe previous Excel->XML import tool?)
127
- External Syslog server
123
- External Syslog server
128
 
124
 
129
LDAP / OAUTH
125
LDAP / OAUTH
130
- Implement other OAuth providers?
126
- Implement other OAuth providers?
131
	Try out https://github.com/SocialConnect/auth
127
	Try out https://github.com/SocialConnect/auth
132
	     or https://github.com/hybridauth/hybridauth
128
	     or https://github.com/hybridauth/hybridauth
133
- Credentials and API-Keys should be protected or obfuscated or encrypted? (JoomlaKeychainKeychain?)
129
- Credentials and API-Keys should be protected or obfuscated or encrypted? (JoomlaKeychainKeychain?)
134
 
130
 
135
TINYMCE
131
TINYMCE
136
- mce dirty flag: call performCloseQueryCB()/performCloseCB(), if ...
132
- mce dirty flag: call performCloseQueryCB()/performCloseCB(), if ...
137
	OK:   The page (browser tab) is about to be closed or the page is reloaded
133
	OK:   The page (browser tab) is about to be closed or the page is reloaded
138
	      => TinyMCE uses the window.onbeforeunload event
134
	      => TinyMCE uses the window.onbeforeunload event
139
	TODO: The browser navigation buttons are clicked
135
	TODO: The browser navigation buttons are clicked
140
	      => This only works PARTIALLY. Preventing popstate() works and no data is lost,
136
	      => This only works PARTIALLY. Preventing popstate() works and no data is lost,
141
	         but the browser will think that it was successful!!
137
	         but the browser will think that it was successful!!
142
	OK:   When a node at the jsTree is clicked (conditional select)
138
	OK:   When a node at the jsTree is clicked (conditional select)
143
	OK:   In the openOidInPanel() function, i.e. when you enter something into the goto-bar.
139
	OK:   In the openOidInPanel() function, i.e. when you enter something into the goto-bar.
144
- critical bug: open page, edit tiny mce, click save. Then F5 reload (not Ctrl+F5): then the old content is there again. Except if you press Ctrl+F5
140
- critical bug: open page, edit tiny mce, click save. Then F5 reload (not Ctrl+F5): then the old content is there again. Except if you press Ctrl+F5
145
	(cannot be reproduced anymore? tested with firefox and chrome)
141
	(cannot be reproduced anymore? tested with firefox and chrome)
146
- TinyMCE "isDirty" does not correctly work on Internet Explorer: It always reports "dirty"
142
- TinyMCE "isDirty" does not correctly work on Internet Explorer: It always reports "dirty"
147
	see bug https://github.com/tinymce/tinymce/issues/6048
143
	see bug https://github.com/tinymce/tinymce/issues/6048
148
- The "is dirty" check should also include the "Title" input box
144
- The "is dirty" check should also include the "Title" input box
149
- (Sep 2022) Need more detailled reproduction:
145
- (Sep 2022) Need more detailled reproduction:
150
	If you use the browser back functionality and switch between
146
	If you use the browser back functionality and switch between
151
	content pages (containing TinyMCE) and non-content pages (e.g. FreeOID page)
147
	content pages (containing TinyMCE) and non-content pages (e.g. FreeOID page)
152
	then sometimes TinyMCE has vanished and you just have a small textarea with HTML code.
148
	then sometimes TinyMCE has vanished and you just have a small textarea with HTML code.
153
	You probably also need to use the "GoTo" button for reloading (not F5).
149
	You probably also need to use the "GoTo" button for reloading (not F5).
154
	Could be reproduced a few times. JavaScript console shows no error.
150
	Could be reproduced a few times. JavaScript console shows no error.
155
 
151
 
156
OID-IP
152
OID-IP
157
- query 'oid:' should show all root entries (subordinate entries), but there is only the message "not found"
153
- query 'oid:' should show all root entries (subordinate entries), but there is only the message "not found"
158
- offer signature checker tool to verify responses
154
- offer signature checker tool to verify responses
159
 
155
 
160
SETUP
156
SETUP
161
- There should be a "test database connection" button
157
- There should be a "test database connection" button
162
	=> however, this button could be abused to brute-force database connections,
158
	=> however, this button could be abused to brute-force database connections,
163
	   and even abusing the server to connect (brute-force) to foreign database servers
159
	   and even abusing the server to connect (brute-force) to foreign database servers
164
 
160
 
165
DATA TRANSFER PLUGIN
161
DATA TRANSFER PLUGIN
166
- XML import: Let the user decide if existing OIDs shall be overwritten
162
- XML import: Let the user decide if existing OIDs shall be overwritten
167
- XML import: Let the user decide if RAs should be created
163
- XML import: Let the user decide if RAs should be created
168
- XML import: Let the user decide if "created=now" should be set
164
- XML import: Let the user decide if "created=now" should be set
169
- XML import: Waiting animation
165
- XML import: Waiting animation
170
- XML import: If output (errors) is too long, show them in a page rather than an alert() box
166
- XML import: If output (errors) is too long, show them in a page rather than an alert() box
171
 
167
 
172
SMALL THINGS
168
SMALL THINGS
173
- when you copy something into the clipboard, please show a toast message
169
- when you copy something into the clipboard, please show a toast message
174
- Setup: "None" CAPTCHA plugin should be the first option
170
- Setup: "None" CAPTCHA plugin should be the first option
175
- oobe.php leaks email address of administrator to spam bots
171
- oobe.php leaks email address of administrator to spam bots
176
- Use DIRECTORY_SEPARATOR everywhere where local paths are used
172
- Use DIRECTORY_SEPARATOR everywhere where local paths are used
177
- when you enter "guid:{0139d44e-6afe-49f2-8690-3dafcae6ffb8}" (which will be corrected in PHP prefilterQuery), JavaScript will not highlight "guid:0139d44e-6afe-49f2-8690-3dafcae6ffb8", because it searches for the brackets
173
- when you enter "guid:{0139d44e-6afe-49f2-8690-3dafcae6ffb8}" (which will be corrected in PHP prefilterQuery), JavaScript will not highlight "guid:0139d44e-6afe-49f2-8690-3dafcae6ffb8", because it searches for the brackets
178
- Let the user create shortcuts to any OIDplus-Goto-URLS (e.g. important OIDs) directly in the menu, without writing a plugin?
174
- Let the user create shortcuts to any OIDplus-Goto-URLS (e.g. important OIDs) directly in the menu, without writing a plugin?
179
- Auto open some nodes automatically, or open until a specific level (like done in the Resources plugin?)
175
- Auto open some nodes automatically, or open until a specific level (like done in the Resources plugin?)
180
- Let the JavaScript value "oidplus_menu_width" being modified by a design plugin and/or the database config.
176
- Let the JavaScript value "oidplus_menu_width" being modified by a design plugin and/or the database config.
181
  A plugin can already do this by using htmlHeaderUpdate() and creating an inline JavaScript to modify the global variable "oidplus_menu_width"
177
  A plugin can already do this by using htmlHeaderUpdate() and creating an inline JavaScript to modify the global variable "oidplus_menu_width"
182
- At a lot of forms, if you press "enter", the "form" will not be submitted (e.g. "create ra" plugin), cannot reproduce?
178
- At a lot of forms, if you press "enter", the "form" will not be submitted (e.g. "create ra" plugin), cannot reproduce?
183
- system log plugin: Only show 100 events and let the user switch pages. To avoid that you load a page with 10000+ log entries!
179
- system log plugin: Only show 100 events and let the user switch pages. To avoid that you load a page with 10000+ log entries!
184
- Alpine Linux SVN update: I get the error "svn: warning: W000013: Can't open file '/root/.subversion/servers': Permission denied", although "whoami" is "apache"! (Maybe because the initial checkout was done by root?!)
180
- Alpine Linux SVN update: I get the error "svn: warning: W000013: Can't open file '/root/.subversion/servers': Permission denied", although "whoami" is "apache"! (Maybe because the initial checkout was done by root?!)
185
- AutoUpdate via cron?
181
- AutoUpdate via cron?
186
- Login page etc.: If user clicks on a tab, then the gotoedit and static link should change to e.g. "oidplus:login$admin" or "oidplus:login$ra", respectively.
182
- Login page etc.: If user clicks on a tab, then the gotoedit and static link should change to e.g. "oidplus:login$admin" or "oidplus:login$ra", respectively.
187
        $('#static_link').attr("href", "index.php?goto="+encodeURIComponent(id));
183
        $('#static_link').attr("href", "index.php?goto="+encodeURIComponent(id));
188
        $("#gotoedit").val(id);
184
        $("#gotoedit").val(id);
189
- Add show_waiting_anim() and hide_waiting_anim() to all AJAX queries, like it is done in plugin "Software update"
185
- Add show_waiting_anim() and hide_waiting_anim() to all AJAX queries, like it is done in plugin "Software update"
190
- #gotobutton should have the same top and height as #gotoedit
186
- #gotobutton should have the same top and height as #gotoedit
191
- RA address data: Country selection box like in OIDInfo
187
- RA address data: Country selection box like in OIDInfo
192
	Possible data source: https://datahub.io/core/country-list#resource-data
188
	Possible data source: https://datahub.io/core/country-list#resource-data
193
- minimum menu expansion level: make it configurable for all objects and plugins, e.g. so that when you open OIDplus, all OIDs till level 2 are expanded
189
- minimum menu expansion level: make it configurable for all objects and plugins, e.g. so that when you open OIDplus, all OIDs till level 2 are expanded
194
- There can be an extra table which contains "key - value" fields for each object
190
- There can be an extra table which contains "key - value" fields for each object
195
	Maybe even let the user define fields (with data type) which is then displayed at every OID,
191
	Maybe even let the user define fields (with data type) which is then displayed at every OID,
196
	e.g. HL7 could define a lot of fields which are then all displayed at the OIDs and can be edited
192
	e.g. HL7 could define a lot of fields which are then all displayed at the OIDs and can be edited
197
- API : Make a function that checks if a RA exists, and use it everywhere where needed
193
- API : Make a function that checks if a RA exists, and use it everywhere where needed
198
- Object type plugins : take care that "treeicon.png" and "icon_big.png" exist everywhere (become standard)
194
- Object type plugins : take care that "treeicon.png" and "icon_big.png" exist everywhere (become standard)
199
- freeoid: gmail app does not hyperlink the activation URL. why?
195
- freeoid: gmail app does not hyperlink the activation URL. why?
200
- how to avoid invite spamming?
196
- how to avoid invite spamming?
201
- when login expired, remove entries in the treeview
197
- when login expired, remove entries in the treeview
202
- disable specific functions (e.g. invite, login, rainfo, forgot password) if the plugins are not installed (check if class type is registered using class_exists())
198
- disable specific functions (e.g. invite, login, rainfo, forgot password) if the plugins are not installed (check if class type is registered using class_exists())
203
- <abbr> in <code> is double underlined; that's not good
199
- <abbr> in <code> is double underlined; that's not good
204
- if you have multiple identifiers, how do you tell the system which identifier should be the preferred one?
200
- if you have multiple identifiers, how do you tell the system which identifier should be the preferred one?
205
- show whois links only if folder "whois/" exists
201
- show whois links only if folder "whois/" exists
206
- disable autocomplete on some forms
202
- disable autocomplete on some forms
207
- graphical improvements of forms (input edits aligned)
203
- graphical improvements of forms (input edits aligned)
208
- "Documents" section: Make documentation for usage of OIDplus (for members only)
204
- "Documents" section: Make documentation for usage of OIDplus (for members only)
209
- admin config more user friendly, e.g. having the enable/disable object type stuff (like in registration wizard) also in the admin control panel. Also, have types like bool, so we show a checkbox instead of an edit control
205
- admin config more user friendly, e.g. having the enable/disable object type stuff (like in registration wizard) also in the admin control panel. Also, have types like bool, so we show a checkbox instead of an edit control
210
- it would be good if after the login, the opened nodes in the tree would stay open
206
- it would be good if after the login, the opened nodes in the tree would stay open
211
- html checkbox: make use of "label for"
207
- html checkbox: make use of "label for"
212
- when javascript fails, the form will be submitted to './' , that is not good! failed javascript must return false, so that the form does not get submitted
208
- when javascript fails, the form will be submitted to './' , that is not good! failed javascript must return false, so that the form does not get submitted
213
- admin: show privacy entries from RAs (but grey, so you know that it is private)
209
- admin: show privacy entries from RAs (but grey, so you know that it is private)
214
- admin should be able to edit contact data of a foreign RA [XXX isn't that already implemented?]
210
- admin should be able to edit contact data of a foreign RA [XXX isn't that already implemented?]
215
- freeoid: hide asn.1 and iri columns, because the RA is not allocating these identifiers?
211
- freeoid: hide asn.1 and iri columns, because the RA is not allocating these identifiers?
216
- .... maybe we should have a list of OIDs where the OID does not allocate ASN.1/IRI identifiers... then we can also make use of the OID-WHOIS attributes
212
- .... maybe we should have a list of OIDs where the OID does not allocate ASN.1/IRI identifiers... then we can also make use of the OID-WHOIS attributes
217
- Privacy flag of RAs: Should there be more privacy levels, e.g. that you don't show your personal name etc.?
213
- Privacy flag of RAs: Should there be more privacy levels, e.g. that you don't show your personal name etc.?
218
- You should be able to change the "created" date for an object! Or maybe hide it completely if you don't know the original creation date?
214
- You should be able to change the "created" date for an object! Or maybe hide it completely if you don't know the original creation date?
219
- In the CRUD table, you should be able to see the name of the OID? But on the other hand, the title is not in the control of the Superior RA, and the CRUD table is actually the allocation table of the Superior RA.
215
- In the CRUD table, you should be able to see the name of the OID? But on the other hand, the title is not in the control of the Superior RA, and the CRUD table is actually the allocation table of the Superior RA.
220
- jstree select: automatically scroll down
216
- jstree select: automatically scroll down
221
- jstree: right click "open in new tab" is not possible
217
- jstree: right click "open in new tab" is not possible
222
- things like RA: show more things, address, email etc.
218
- things like RA: show more things, address, email etc.
223
- note that we (and the Internet Draft) talk about Objects, but actually OIDs only reference objects, but they are not the objects
219
- note that we (and the Internet Draft) talk about Objects, but actually OIDs only reference objects, but they are not the objects
224
- Multilang
220
- Multilang
225
	* Not yet translated:
221
	* Not yet translated:
226
		- plugins\publicPages\100_whois\whois\index.php [Problem: This page is kinda standalone and does not include the OIDplus code]
222
		- plugins\publicPages\100_whois\whois\index.php [Problem: This page is kinda standalone and does not include the OIDplus code]
227
		- vendor\danielmarschall\fileformats\fileformats.conf [Problem: This is a third-party code!]
223
		- vendor\danielmarschall\fileformats\fileformats.conf [Problem: This is a third-party code!]
228
		- includes\classes\VtsBrowserDownload.class.php [Problem: This is a third-party code!]
224
		- includes\classes\VtsBrowserDownload.class.php [Problem: This is a third-party code!]
229
	* Is there some useful German translation of the Apache 2.0 license?
225
	* Is there some useful German translation of the Apache 2.0 license?
230
- WEID UUID: Show the UUID 2.25/GUID equivalent as alternative ID
226
- WEID UUID: Show the UUID 2.25/GUID equivalent as alternative ID
231
- When an OID is edited/added/deleted, don't reload the whole tree. Instead, just change the tree! This looks much more fluid.
227
- When an OID is edited/added/deleted, don't reload the whole tree. Instead, just change the tree! This looks much more fluid.
232
- adminPages/902_systemfile_check/OIDplusPageAdminSystemFileCheck.class.php
228
- adminPages/902_systemfile_check/OIDplusPageAdminSystemFileCheck.class.php
233
	Should thumbs.db (case insensitive) and Apple turds be excluded?
229
	Should thumbs.db (case insensitive) and Apple turds be excluded?
234
	On the other hand, these files could then be used to hide malicious data
230
	On the other hand, these files could then be used to hide malicious data
235
- Actually, there should be two Update-Timestamps: An Update-Timestamp for the Superior RA (i.e. when was the ASN.1/IRI or the RA changed? And a RA Update-Timestamp (i.e. when did the RA change its description?)
231
- Actually, there should be two Update-Timestamps: An Update-Timestamp for the Superior RA (i.e. when was the ASN.1/IRI or the RA changed? And a RA Update-Timestamp (i.e. when did the RA change its description?)
236
 
232
 
237
UPDATER
233
UPDATER
238
- Internal problem with GIT distribution channel:
234
- Internal problem with GIT distribution channel:
239
	The GIT version might be behind the master SVN repository
235
	The GIT version might be behind the master SVN repository
240
	So if you do "git pull", the update/index.php page might still show that an update is available!
236
	So if you do "git pull", the update/index.php page might still show that an update is available!
241
- add some kind of loading cricle animation or a progress bar during the update
237
- add some kind of loading cricle animation or a progress bar during the update
242
 
238
 
243
DATABASE
239
DATABASE
244
- make usage of Foreign Keys
240
- make usage of Foreign Keys
245
	PROBLEM: we need foreign keys with no check, because
241
	PROBLEM: we need foreign keys with no check, because
246
	a) we want to keep log entries even if an object/user is deleted
242
	a) we want to keep log entries even if an object/user is deleted
247
	b) log_user.username can also be 'admin' (and therefore not be a foreign key to table 'ra')
243
	b) log_user.username can also be 'admin' (and therefore not be a foreign key to table 'ra')
248
	c) not every object should have a registered RA. There should be "unknown" RAs where only the email address is known
244
	c) not every object should have a registered RA. There should be "unknown" RAs where only the email address is known
249
	d) well-known ASN1/IRI don't require an existing OID
245
	d) well-known ASN1/IRI don't require an existing OID
250
 
246
 
251
FUTURE
247
FUTURE
252
- implement sitemaps xml
248
- implement sitemaps xml
253
- admin should be able to change wellknown oids?
249
- admin should be able to change wellknown oids?
254
- move oid to different arc
250
- move oid to different arc
255
- for very large arcs (e.g. PEN): maybe you should not show everything in the tree select?
251
- for very large arcs (e.g. PEN): maybe you should not show everything in the tree select?
256
- support for ORS?
252
- support for ORS?
257
- "Cutting Edge Technologie": AJAX, JSON, completely UTF-8, CRUD frameworks, PDO, HTML5, Mobile Design, Pure CSS, Autoloading, Object Oriented (maybe not MVC, though), Testing, ...
253
- "Cutting Edge Technologie": AJAX, JSON, completely UTF-8, CRUD frameworks, PDO, HTML5, Mobile Design, Pure CSS, Autoloading, Object Oriented (maybe not MVC, though), Testing, ...
258
- "Search" plugin: Feature to search inside documentation (doc/ directory)
254
- "Search" plugin: Feature to search inside documentation (doc/ directory)
259
- "Search" plugin: I want to search in all object types and RAs. Not first select the type.
255
- "Search" plugin: I want to search in all object types and RAs. Not first select the type.
260
- How can we make sure that example objects are not exported using oid-info.com export?
256
- How can we make sure that example objects are not exported using oid-info.com export?
261
- Administrator-Interface: enable and disable object types
257
- Administrator-Interface: enable and disable object types
262
- detailled change-history of each oid
258
- detailled change-history of each oid
263
- Add a "nonce" to all inline JavaScripts and add this nonce to CSP. Then disallow inline-JavaScripts in CSP completely.
259
- Add a "nonce" to all inline JavaScripts and add this nonce to CSP. Then disallow inline-JavaScripts in CSP completely.
264
 
260
 
265
BUGS?
261
BUGS?
266
- BUG! RA is logged in, then it is deleted => the RA can still edit their OIDs, since their session is not destroyed
262
- BUG! RA is logged in, then it is deleted => the RA can still edit their OIDs, since their session is not destroyed
267
- OIDplus does not work in Safari Mobile!
263
- OIDplus does not work in Safari Mobile!
268
	1. You cannot scroll the OID grid, as the scrolling affects the whole page, not the grid.
264
	1. You cannot scroll the OID grid, as the scrolling affects the whole page, not the grid.
269
	2. JQueryUI sliders cannot be dragged
265
	2. JQueryUI sliders cannot be dragged
270
 
266
 
271
REJECTED IDEAS
267
REJECTED IDEAS
272
- well known OIDs: Should also the RA address be recorded? (so that you cannot create a 2.999 OID and telling that you are the RA?)
268
- well known OIDs: Should also the RA address be recorded? (so that you cannot create a 2.999 OID and telling that you are the RA?)
273
- should there more than one person be able to manage an OID? (multiple emails per "RA" ?)
269
- should there more than one person be able to manage an OID? (multiple emails per "RA" ?)
274
- record first RA and current RA => X.660 does not have this requirement
270
- record first RA and current RA => X.660 does not have this requirement
275
- markers DRAFT, LEAF and FROZEN etc. => use "Protected" if you want to make it invisible
271
- markers DRAFT, LEAF and FROZEN etc. => use "Protected" if you want to make it invisible
276
- Giving the "goto" argument OIDs instead of names, so that there are no conflict
272
- Giving the "goto" argument OIDs instead of names, so that there are no conflict
277
  with plugin vendors (like it was done with the "plugin" argument at ajax.php)
273
  with plugin vendors (like it was done with the "plugin" argument at ajax.php)
278
	Rejected due to following reasons:
274
	Rejected due to following reasons:
279
	a) The "goto" parameter should usually be human readable (especially since it is shown at the right top)...
275
	a) The "goto" parameter should usually be human readable (especially since it is shown at the right top)...
280
	   Having a ViaThinkSoft OID there might get the user confused because they could think that the
276
	   Having a ViaThinkSoft OID there might get the user confused because they could think that the
281
	   page is a OID page request for that OID instead of a plugin page.
277
	   page is a OID page request for that OID instead of a plugin page.
282
	b) Vendors should use something like "?goto=oidplus:com.example...."
278
	b) Vendors should use something like "?goto=oidplus:com.example...."
283
- AID Plugin: When aid_decoder.inc.php finds a mistake, should we forbid to create the AID?
279
- AID Plugin: When aid_decoder.inc.php finds a mistake, should we forbid to create the AID?
284
	=> Rejected. Some companies might already use invalid identifiers.
280
	=> Rejected. Some companies might already use invalid identifiers.
285
- oidplus dependency system (dependency plugin oid in manifest) => Rejected. Check dependencies in the init() method of a plugin.
281
- oidplus dependency system (dependency plugin oid in manifest) => Rejected. Check dependencies in the init() method of a plugin.
286
 
282
 
287
LOGS
283
LOGS
288
- prune logs entries? automatically prune things like "logged in" but not prune OID changes, etc?
284
- prune logs entries? automatically prune things like "logged in" but not prune OID changes, etc?
289
- admin logs: don't show all logs. load more log entries as soon as the page is scrolled down
285
- admin logs: don't show all logs. load more log entries as soon as the page is scrolled down
290
- when user changed email from "A" => "B", then all previous log events for "A" are not visible for "B" anymore!
286
- when user changed email from "A" => "B", then all previous log events for "A" are not visible for "B" anymore!
291
	=> should we also change the log entry email address references when the user changes their email address?
287
	=> should we also change the log entry email address references when the user changes their email address?
292
- At "oidplus:system_log", user log section and object log section, the users and/or objects should be clickable
288
- At "oidplus:system_log", user log section and object log section, the users and/or objects should be clickable
293
 
289
 
294
IDEAS
290
IDEAS
295
- admin plugin that shows the recent oid edits / inserts?
291
- admin plugin that shows the recent oid edits / inserts?
296
- in the search feature, search for object creation/update date?
292
- in the search feature, search for object creation/update date?
297
- adminPages/800_plugins: We could also list plugins that have been blacklisted in the config? But that is hard to achieve, because these plugins are ignored and not loaded at all
293
- adminPages/800_plugins: We could also list plugins that have been blacklisted in the config? But that is hard to achieve, because these plugins are ignored and not loaded at all
298
- Similar to Security Event Token, we could issue JWT tokens which log the allocation of an OID to an RA. This signed token can be stored somewhere and can be used to proove the ownership of an OID.
294
- Similar to Security Event Token, we could issue JWT tokens which log the allocation of an OID to an RA. This signed token can be stored somewhere and can be used to proove the ownership of an OID.
299
- have an option to assign a custom icon to any object in the system (file attachment with name "icon.*"?). Especially useful for easy visual distinguishing between root objects inside 'Other objects', but may be useful for other object types too.
295
- have an option to assign a custom icon to any object in the system (file attachment with name "icon.*"?). Especially useful for easy visual distinguishing between root objects inside 'Other objects', but may be useful for other object types too.
300
- Give configuration settings a type (int, bool, enum, etc.) so that the configuration page can be more user friendly (use a checkbox rather than typing "1" and "0")
296
- Give configuration settings a type (int, bool, enum, etc.) so that the configuration page can be more user friendly (use a checkbox rather than typing "1" and "0")
301
	Even better: Give plugins the opportunity to display their own config GUI, exactly like OOBE does
297
	Even better: Give plugins the opportunity to display their own config GUI, exactly like OOBE does
302
- OID-WHOIS: For well-known OIDs, e.g. IANA PEN, show information where to retrieve information
298
- OID-WHOIS: For well-known OIDs, e.g. IANA PEN, show information where to retrieve information
303
	=> Problem: Well-known OIDs are implemented as ASN/IRI identifiers only; no information in table "objects"!
299
	=> Problem: Well-known OIDs are implemented as ASN/IRI identifiers only; no information in table "objects"!
304
- Should plugins be able to add additional object sub-nodes/pages into the tree,
300
- Should plugins be able to add additional object sub-nodes/pages into the tree,
305
  which are not "real" objects? For example, in the object tree,
301
  which are not "real" objects? For example, in the object tree,
306
  you could include file attachments [by File Attachment Plugin].
302
  you could include file attachments [by File Attachment Plugin].
307
  Also, Object Type Plugins could add more sub-nodes/pages into the
303
  Also, Object Type Plugins could add more sub-nodes/pages into the
308
  tree, for example if you have object types where each object
304
  tree, for example if you have object types where each object
309
  consists of various components.
305
  consists of various components.
310
  => currently OIDplus::menuUtils()->tree_populate() handles the object tree loading
306
  => currently OIDplus::menuUtils()->tree_populate() handles the object tree loading
311
     ... but shouldn't this task do the plugin publicPages/000_objects ?
307
     ... but shouldn't this task do the plugin publicPages/000_objects ?
312
     ... then we could establish an API which can give object type plugins the possibility to add additional children
308
     ... then we could establish an API which can give object type plugins the possibility to add additional children
313
- Hide/Proxy RA E-Mails from public requests
309
- Hide/Proxy RA E-Mails from public requests
314
- let users choose their own creation arc
310
- let users choose their own creation arc
315
- In regards multilinguality: Allow "oidplus_base$dede.css", so that languages can have their own CSS (e.g. wider "Go" button)
311
- In regards multilinguality: Allow "oidplus_base$dede.css", so that languages can have their own CSS (e.g. wider "Go" button)
316
	But this means that a language change also need to reload the style sheet (like the color-plugin does when you click "Test")
312
	But this means that a language change also need to reload the style sheet (like the color-plugin does when you click "Test")
317
- when an object was not found, the error message could show the next possible known object (like WebWHOIS does)
313
- when an object was not found, the error message could show the next possible known object (like WebWHOIS does)
318
- the "goto" quickbar (at the top right) could also be used to search something ...
314
- the "goto" quickbar (at the top right) could also be used to search something ...
319
- ... alternatively, the "object not found" error page could link to the search plugin
315
- ... alternatively, the "object not found" error page could link to the search plugin
320
- make color plugin available for everyone. Admin may permanently save the colors, but users should be able to set their own theme, saved via cookies
316
- make color plugin available for everyone. Admin may permanently save the colors, but users should be able to set their own theme, saved via cookies
321
- there should be a form where an RA can request an invitation, even if the superior RA did not invite them.
317
- there should be a form where an RA can request an invitation, even if the superior RA did not invite them.
322
  the fact that a RA exists in the Object Table should permit the RA to invite theirself.
318
  the fact that a RA exists in the Object Table should permit the RA to invite theirself.
323
- make a list of OIDs that do not assign ASN1/IRI identifiers (e.g. IANA PEN or ViaThinkSoft FreeOID), then reject any identifier the user provides
319
- make a list of OIDs that do not assign ASN1/IRI identifiers (e.g. IANA PEN or ViaThinkSoft FreeOID), then reject any identifier the user provides
324
- sanitize IPv4, IPv6, GUID during creation
320
- sanitize IPv4, IPv6, GUID during creation
325
	at IPv4 and IPv6: - if it is a single host address, don't put /32 or /128 suffix
321
	at IPv4 and IPv6: - if it is a single host address, don't put /32 or /128 suffix
326
	                  - strike unnecessary bits that are not defined in the netmask (also at the whois output)
322
	                  - strike unnecessary bits that are not defined in the netmask (also at the whois output)
327
- let the sysadmin decide if they want the title be "systemtitle - object title" or "object title - systemtitle"
323
- let the sysadmin decide if they want the title be "systemtitle - object title" or "object title - systemtitle"
328
- should a RA be able to mark their own oid as confidential, instead of asking the superior RA?
324
- should a RA be able to mark their own oid as confidential, instead of asking the superior RA?
329
- should there be an OIDplus project page at oidplus.viathinksoft.com instead of a "naked" system?
325
- should there be an OIDplus project page at oidplus.viathinksoft.com instead of a "naked" system?
330
- vendor signature to plugins + viathinksoft signatures + "check" program if all signatures match
326
- vendor signature to plugins + viathinksoft signatures + "check" program if all signatures match
331
	Why do we need it?
327
	Why do we need it?
332
		We want to make sure that the OIDplus files aren't modified by hackers (e.g. replaced by a webshell)
328
		We want to make sure that the OIDplus files aren't modified by hackers (e.g. replaced by a webshell)
333
		Unfortunately, we can only verify our own files. Plugins by vendors cannot be checked.
329
		Unfortunately, we can only verify our own files. Plugins by vendors cannot be checked.
334
	Problem:
330
	Problem:
335
		We cannot store the ViaThinkSoft public key or the checking-tool in the OIDplus directory,
331
		We cannot store the ViaThinkSoft public key or the checking-tool in the OIDplus directory,
336
		because then they could be altered by the hacker.
332
		because then they could be altered by the hacker.
337
		We also cannot add a "verified" icon in the "Plugins" admin section,
333
		We also cannot add a "verified" icon in the "Plugins" admin section,
338
		because this could also be fake.
334
		because this could also be fake.
339
		The only solution to verify the OIDplus installation is to run a tool that
335
		The only solution to verify the OIDplus installation is to run a tool that
340
		is downloaded on-demand over a secure connection.
336
		is downloaded on-demand over a secure connection.
341
	Solution:
337
	Solution:
342
		1. The OIDplus installation contains a file "signature.md5" that contains the MD5 sums of all files.
338
		1. The OIDplus installation contains a file "signature.md5" that contains the MD5 sums of all files.
343
		   The whole file is RSA signed with a ViaThinkSoft key.
339
		   The whole file is RSA signed with a ViaThinkSoft key.
344
		2. We should offer a tool which can be started on-demand by running something like:
340
		2. We should offer a tool which can be started on-demand by running something like:
345
		   curl -sSL https://oidplus.viathinksoft.com/signature_check/ | bash
341
		   curl -sSL https://oidplus.viathinksoft.com/signature_check/ | bash
346
		   This tool contains a check procedure and the ViaThinkSoft public key,
342
		   This tool contains a check procedure and the ViaThinkSoft public key,
347
		   and verifies the OIDplus installation.
343
		   and verifies the OIDplus installation.
348
		3. The tool should also warn if there are missing or additional files,
344
		3. The tool should also warn if there are missing or additional files,
349
		   because some additional files may be executed (e.g. if they are located in includes/db_updates/)
345
		   because some additional files may be executed (e.g. if they are located in includes/db_updates/)
350
		4. With every new release of OIDplus, this file must be re-generated!
346
		4. With every new release of OIDplus, this file must be re-generated!
351
- have a menu item (plugin) "latest updates" which lists OIDs that have been changed or added recently?
347
- have a menu item (plugin) "latest updates" which lists OIDs that have been changed or added recently?
352
- (unsure:) would it be good if the superior RA comment is shown in the object page itself?
348
- (unsure:) would it be good if the superior RA comment is shown in the object page itself?
353
- Protect attachments with a password? (Information objects?)
349
- Protect attachments with a password? (Information objects?)
354
- IPv4/IPv6 plugin: Should we allow that private IPs are put into categories (e.g. different physical locations having the same subnet?)
350
- IPv4/IPv6 plugin: Should we allow that private IPs are put into categories (e.g. different physical locations having the same subnet?)
355
- Like in OOBE, plugins should give the possibility to add an individual UI in the "oidplus:edit_config" page
351
- Like in OOBE, plugins should give the possibility to add an individual UI in the "oidplus:edit_config" page
356
- Login area: The "administrator" node in the treeview could be clicked, leading to a page that contains a link to all sub pages (big icons ordered in a grid?)
352
- Login area: The "administrator" node in the treeview could be clicked, leading to a page that contains a link to all sub pages (big icons ordered in a grid?)
357
- "Invisible/service" plugin type, like page plugins, but they have no gui() method. They can be used for a simple task like extending HTTP headers
353
- "Invisible/service" plugin type, like page plugins, but they have no gui() method. They can be used for a simple task like extending HTTP headers
358
- OAuth for admin login? (email of administrator)
354
- OAuth for admin login? (email of administrator)
359
- SAML 2.0 SSO auth plugin?
355
- SAML 2.0 SSO auth plugin?
360
 
356
 
361
QUESTIONS
357
QUESTIONS
362
- should the collation be case sensitive or case insensitive? For Java package names, it should be case senstivie
358
- should the collation be case sensitive or case insensitive? For Java package names, it should be case senstivie
363
- use word "guid" or "uuid"?
359
- use word "guid" or "uuid"?
364
- should "OID updated" be split into two categories "updated by superior" (e.g. identifiers) and "updated by owner" (description etc)?
360
- should "OID updated" be split into two categories "updated by superior" (e.g. identifiers) and "updated by owner" (description etc)?
365
- Don't renew "updated" field if you just click "Update" but didn't change anything (e.g. because you just wanted to send an invitation again)
361
- Don't renew "updated" field if you just click "Update" but didn't change anything (e.g. because you just wanted to send an invitation again)
366
- "Documents" section: Can base of URLs/images inside the HTML be changed automatically?
362
- "Documents" section: Can base of URLs/images inside the HTML be changed automatically?
367
 
363
 
368
PRIVACY
364
PRIVACY
369
- bring back "vendor/cookiecontent"? DM 28 May 2019: Removed CookieConsent temporarily, because it is placed at the beginning of the page and therefore ruins the Google index ...
365
- bring back "vendor/cookiecontent"? DM 28 May 2019: Removed CookieConsent temporarily, because it is placed at the beginning of the page and therefore ruins the Google index ...
370
	=> We might not need it, because cookies are only set during login, and at the login page itself, we already warn about cookies, in addition to the Privacy documentation
366
	=> We might not need it, because cookies are only set during login, and at the login page itself, we already warn about cookies, in addition to the Privacy documentation
371
- Cookie law:
367
- Cookie law:
372
	Download CookieConsent code into vendor folder, do not hotlink it
368
	Download CookieConsent code into vendor folder, do not hotlink it
373
	we need to log all consents
369
	we need to log all consents
374
	do we need an explicit consent at the login form?
370
	do we need an explicit consent at the login form?
375
	do we need a consent for the cookie SSL_CHECK?
371
	do we need a consent for the cookie SSL_CHECK?
376
 
372
 
377
GUID Management
373
GUID Management
378
- Leaf nodes (GUIDs) should show/edit the Title in the CRUD, so you dont have to click the GUID to see the title
374
- Leaf nodes (GUIDs) should show/edit the Title in the CRUD, so you dont have to click the GUID to see the title
379
- weird bug: when i edit "guid:oidplus", then, after reload the treeview after the update, "guid:activedirectory" will be opened. somehow, the last opened node will be opened during the reload?!
375
- weird bug: when i edit "guid:oidplus", then, after reload the treeview after the update, "guid:activedirectory" will be opened. somehow, the last opened node will be opened during the reload?!