acognet
|
c1dde51404
|
Merge remote-tracking branch 'origin/support/3.0' into develop
|
2022-10-17 16:35:19 +02:00 |
|
acognet
|
5ddc006f51
|
N°4517 - PHP 8.1 compatibility
|
2022-10-17 16:27:42 +02:00 |
|
acognet
|
1fcb3af4c0
|
N°5618 - Setup : Compatibility PHP 8.1
|
2022-10-14 17:09:35 +02:00 |
|
acognet
|
9ccff4f8de
|
Fix comment. filter created only since 3.1.
|
2022-10-14 09:27:59 +02:00 |
|
BenGrenoble
|
1e0fc4714d
|
Correction of the system tooltip, following discussion with Molkobain
|
2022-10-13 09:31:09 +02:00 |
|
Eric Espie
|
8fc8342358
|
Revert default value for AttributeDateTime
|
2022-10-12 10:28:10 +02:00 |
|
Eric Espie
|
14673ff1f5
|
Return HTTP 400 when operation is not found (instead of 404 page not found)
|
2022-10-11 15:24:54 +02:00 |
|
Pierre Goiffon
|
ae95cf37f5
|
Merge remote-tracking branch 'origin/support/3.0' into develop
|
2022-10-11 14:29:26 +02:00 |
|
Pierre Goiffon
|
85a72d6a10
|
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
|
2022-10-11 14:29:07 +02:00 |
|
Pierre Goiffon
|
189ca3c555
|
🚚 Move visual test file to the dedicated directory
|
2022-10-11 14:28:44 +02:00 |
|
Eric Espie
|
567f333017
|
Remove default value for AttributeDateTime
|
2022-10-10 14:28:55 +02:00 |
|
BenGrenoble
|
acd8944aec
|
Add tooltip on System
|
2022-10-06 16:01:30 +02:00 |
|
Pierre Goiffon
|
5b1b5b0cc1
|
Merge remote-tracking branch 'origin/support/3.0' into develop
|
2022-10-03 15:56:16 +02:00 |
|
Pierre Goiffon
|
c02b36a00c
|
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
|
2022-10-03 15:56:02 +02:00 |
|
Pierre Goiffon
|
1e1f1f78bf
|
📝 Backup : more details on check-backup parameters
|
2022-10-03 14:41:44 +02:00 |
|
Pierre Goiffon
|
1494604740
|
📝 Backup : move info from wiki to distrib file
|
2022-10-03 14:35:14 +02:00 |
|
Timmy38
|
30664bc5ec
|
N°4765 fixing a typo
|
2022-09-30 11:30:42 +02:00 |
|
Molkobain
|
59b20ac1ee
|
Fix typo
|
2022-09-27 20:14:53 +02:00 |
|
Eric Espie
|
f32f36fc74
|
N°5551 - System information database size is way off
|
2022-09-26 11:51:51 +02:00 |
|
bdalsass
|
5157f511fc
|
N°5073 - Implements line actions in a datatable (#337)
* datatable row actions
Below is a sample of extra param to enable feature:
$aExtraParams['row_actions'] = [
[
'tooltip' => 'add an element',
'icon_css_class' => 'fa-plus',
'css_class' => 'ibo-is-success',
'level' => 'secondary',
'on_action_js' => 'console.log(aData);',
],
[
'tooltip' => 'remove an element',
'icon_css_class' => 'fa-minus',
'css_class' => 'ibo-is-danger',
'level' => 'secondary',
'on_action_js' => 'console.log("You clicked the remove button");',
],
[
'tooltip' => 'open in new tab',
'icon_css_class' => 'fa-external-link-square-alt',
'on_action_js' => 'window.open("http://localhost/itop-branchs/dev/pages/UI.php?operation=details&class=UserRequest&id=" + aData.id + "&c[menu]=UserRequest%3AOpenRequests");',
],
[
'tooltip' => 'other actions',
'icon_css_class' => 'fa-ellipsis-v',
'on_action_js' => 'console.log(event);',
],
];
* datatable row actions (update)
* datatable row actions (update)
* datatable row actions (add template role)
* datatable row actions (align actions)
* datatable row actions (change template factory make to make standard)
* datatable row actions (use trait to handle row actions)
* datatable row actions (row actions templates)
* datatable row actions (row actions templates)
* datatable row actions (row actions templates)
* datatable row actions (extends to static and form)
* datatable row actions (extends to static and form)
* datatable row actions (code review S)
* datatable row actions (code review S)
* datatable row actions (code review S)
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update templates/base/components/datatable/row-actions/handler.js.twig
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* datatable row actions (code review M)
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* Update application/utils.inc.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
* datatable row actions (code review M2)
* datatable row actions (code review M3)
Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
|
2022-09-26 08:20:28 +02:00 |
|
Eric Espie
|
3196e105a1
|
N°4756 - small adjustments
|
2022-09-23 15:10:21 +02:00 |
|
Eric Espie
|
b9d865f881
|
N°4756 - Fix DBInsert/NoReload call order
|
2022-09-21 18:08:44 +02:00 |
|
Molkobain
|
2e39a650eb
|
Merge remote-tracking branch 'origin/support/3.0' into develop
|
2022-09-21 17:48:57 +02:00 |
|
Molkobain
|
c753b57265
|
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
|
2022-09-21 16:23:42 +02:00 |
|
Molkobain
|
583ab98210
|
Fix typo
|
2022-09-21 16:11:24 +02:00 |
|
Pierre Goiffon
|
e4f6a02de6
|
Merge remote-tracking branch 'origin/support/3.0' into develop
# Conflicts:
# lib/composer/autoload_files.php
# lib/composer/autoload_real.php
# lib/composer/autoload_static.php
|
2022-09-21 14:28:25 +02:00 |
|
Pierre Goiffon
|
a5b5518533
|
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
# Conflicts:
# core/cmdbsource.class.inc.php
# test/core/CMDBSource/TransactionsTest.php
|
2022-09-21 14:21:28 +02:00 |
|
Pierre Goiffon
|
88d743b1cc
|
✅ N°5538 Make PHPUnit test fail if transaction opened but not closed
|
2022-09-21 14:05:27 +02:00 |
|
Pierre Goiffon
|
7ac4bc95bb
|
ItopDataTestCase : improve log message
|
2022-09-21 11:51:07 +02:00 |
|
Eric Espie
|
fac455da48
|
N°4756 - Global event listeners
|
2022-09-21 10:34:38 +02:00 |
|
odain
|
b01627f39d
|
Merge branch 'saas/3.0' into develop
|
2022-09-20 16:04:55 +02:00 |
|
odain-cbd
|
766c9f0e7e
|
N°5305 - CSV import ergonomy PR (#332)
Reworked UI feedbacks on following attributes:
- enum
- date
- external key
|
2022-09-20 16:00:33 +02:00 |
|
Eric Espie
|
d1414a3f34
|
N°4756 - revert events for datamodel/2.x objects for backward compatibility
|
2022-09-20 15:35:59 +02:00 |
|
Molkobain
|
6386a302b2
|
Merge remote-tracking branch 'origin/support/3.0' into develop
# Conflicts:
# composer.json
|
2022-09-20 13:44:11 +02:00 |
|
Molkobain
|
7071712a0a
|
N°5535 - Fix PHP max version to 8.1 in composer for iTop 3.0.2+
|
2022-09-20 13:42:45 +02:00 |
|
Molkobain
|
31454b2946
|
Merge remote-tracking branch 'origin/support/3.0' into develop
# Conflicts:
# core/config.class.inc.php
# setup/setuputils.class.inc.php
|
2022-09-20 13:27:20 +02:00 |
|
Molkobain
|
e55ac6002a
|
Increase ITOP_VERSION to 3.0.3-dev
|
2022-09-20 13:22:18 +02:00 |
|
Molkobain
|
e9c6549847
|
N°5535 - Fix PHP not validated version to 8.1 in iTop 3.0.2+
|
2022-09-20 13:17:59 +02:00 |
|
Eric Espie
|
4aad555649
|
N°4756 - Fix unit tests,
|
2022-09-20 12:18:53 +02:00 |
|
Eric Espie
|
93ee565d29
|
N°4756 - Fix unit tests
|
2022-09-19 16:59:51 +02:00 |
|
Eric Espie
|
6c097a128b
|
N°4756 - Fix unit tests
|
2022-09-19 16:49:40 +02:00 |
|
Eric Espie
|
eea3f78cec
|
N°4756 - Fix unit tests
|
2022-09-19 16:28:13 +02:00 |
|
Eric Espie
|
6c4caf64c8
|
N°4756 - Fix unit tests
|
2022-09-19 16:26:02 +02:00 |
|
Eric Espie
|
88f0013330
|
N°4756 - Fix unit tests
|
2022-09-19 16:09:02 +02:00 |
|
Eric Espie
|
aa31da34e5
|
N°5389 - Email Notification templates with AttributeLinkedSetIndirect failed
|
2022-09-19 15:30:24 +02:00 |
|
Eric Espie
|
71464f6d0e
|
Merge branch 'develop' into feature/faf_event_service
# Conflicts:
# core/cmdbobject.class.inc.php
# core/dbobject.class.php
# core/designdocument.class.inc.php
# lib/composer/autoload_files.php
# lib/composer/autoload_static.php
|
2022-09-19 09:45:08 +02:00 |
|
Pierre Goiffon
|
e5a9648206
|
📝 CONTRIBUTING : keep stickers images history in directory
|
2022-09-14 18:02:16 +02:00 |
|
Molkobain
|
abf2120097
|
Add 3.0.2-1 to mermaid graph
|
2022-09-14 17:14:48 +02:00 |
|
Pierre Goiffon
|
2f5eaa2dfd
|
Merge remote-tracking branch 'origin/support/3.0' into develop
# Conflicts:
# sources/Core/Email/EmailSwiftMailer.php
|
2022-09-14 15:36:14 +02:00 |
|
Pierre Goiffon
|
091aaac55e
|
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
|
2022-09-14 15:34:36 +02:00 |
|