Molkobain
3c2c2d7a51
Code cleanup: Remove unused methods from early implementation
2021-05-26 10:37:02 +02:00
Molkobain
3ee4a14c56
N°4021 - Introduce sticky header for panels and object details (tab container to be done)
2021-05-26 10:37:02 +02:00
Molkobain
dd284a6c1d
SCSS: Fix base content layout not behaving the same way as the one with side content
2021-05-26 10:37:02 +02:00
Molkobain
c240a8991d
SCSS: Fix import ordering of the custom root folders
2021-05-26 10:37:02 +02:00
Molkobain
0948c46dc7
SCSS: Add more variables for jQuery UI
2021-05-26 10:37:02 +02:00
Molkobain
d9755fe59d
Code format
2021-05-26 10:37:02 +02:00
Stephen Abello
7f82e9262b
N°3923 Fix date picker widget not initialized in ajax forms
2021-05-26 10:21:30 +02:00
Pierre Goiffon
44952d1ea0
✅ Fix \UtilsTest::testIsMemoryLimit
2021-05-25 17:04:32 +02:00
Pierre Goiffon
7f15eed9a8
🔧 Update .editorconfig
...
* Preserve XML line breaks
* Add markdown
* Add editorconfig
2021-05-25 15:50:23 +02:00
Stephen Abello
14930fbab2
N°3914 Fix configure this list "sort fields" feature
2021-05-25 15:38:52 +02:00
Stephen Abello
2cbca93d77
N°3914 Fix modal backdrop on lists' "configure this list" modal
2021-05-25 14:54:54 +02:00
BGdu38
c2f5cafaf3
Avoid setting memory_limit to lower value than the one already configured ( #215 )
...
Some scripts are setting the memory_limit PHP option : setup, csvimport and XLSX export. This was done to avoid crashing when dealing with such large amount of data.
But sometimes we were setting the value without any prior check, so we could actually lower the memory_limit value :/
Now this memory_limit change is done using \utils::SetMinMemoryLimit, which will call ini_set if and only if the current value is lower than the one to be set.
Setup calls (setup/ajax.dataloader.php and webservices/backoffice.dataloader.php) were left as is as they weren't subject to this bug, and also they are more complex (logging done on each case).
2021-05-25 12:03:19 +02:00
Pierre Goiffon
81822efa0f
💡 PHPDoc for \DBObject::ApplyStimulus
2021-05-25 10:52:12 +02:00
Molkobain
104cf9479c
List: Remove vertical scrolling for all lists except dashlets
2021-05-21 17:06:12 +02:00
Molkobain
a36632def6
Fix modal title displaying behind closing "X" on long titles
2021-05-21 17:06:12 +02:00
Molkobain
6a1b1d7740
Code format
2021-05-21 17:06:11 +02:00
Molkobain
f544d53c36
List: Fix height / scroll for linkedsets add items modal
2021-05-21 17:06:10 +02:00
Pierre Goiffon
3188204d05
📝 CONTRIBUTING : add "allow edits from maintainers" PR option
2021-05-21 11:28:48 +02:00
Molkobain
a7294d48a6
Update precompiled themes
2021-05-20 19:08:46 +02:00
Molkobain
42be0c20cb
Field: Rework on the SCSS file
...
- Fix button being too large on AttributeImage
- Reorganize the classes a bit
2021-05-20 18:18:29 +02:00
Molkobain
1c6ffab0e3
Remove index variable from foreach as it was misleading ($sClass does not contain classes but a numeric index)
2021-05-20 18:18:29 +02:00
Molkobain
095d61b6f9
N°3171 - Rollback on the AttributeExternalKey::GetPrerequisites() as it was introducing more regressions than fixes ( acf0548c)
2021-05-20 18:18:29 +02:00
Pierre Goiffon
923a025f1c
🌐 N°4017 Report pt_br translations for TTO/TTR made in combodo-dispatch-incident
...
Those dict keys were wrongly duplicated in this module, but they are core iTop !
Original commit 75f00d993c
Thanks to @rokam !
2021-05-20 15:51:21 +02:00
Pierre Goiffon
a4b6f4e37c
👥 Add @rokam to contributors list
...
Thanks to him for his PT-BR translations !
2021-05-20 15:44:24 +02:00
Stephen Abello
78b2824c13
N°3914 Harmonize advanced search's external key search buttons style and positions on modals and fix add button id
2021-05-20 15:38:31 +02:00
Pierre Goiffon
f0c73451a2
🌐 N°4017 Report pt_br translations for TTO/TTR made in combodo-dispatch-userrequest
...
Those dict keys were wrongly duplicated in this module, but they are core iTop !
Original commit 9725897623
Thanks to @rokam !
2021-05-20 15:30:00 +02:00
Stephen Abello
62f5eb5ae9
N°3914 Harmonize external key / linksets buttons style and positions on modals
2021-05-20 15:06:39 +02:00
Stephen Abello
7d9416cc81
Fix indirect links block height
2021-05-20 15:02:51 +02:00
Molkobain
a82a2df6aa
N°1964 - Add informative message on dashboard when its container (eg. an object) is currently in edition
2021-05-20 10:32:28 +02:00
Molkobain
f1e4120364
Fix text decoration icon size being too big
2021-05-20 10:32:28 +02:00
Pierre Goiffon
3471d9d693
Protect \iApplicationUIExtension::EnumAllowedActions uses ( #214 )
...
Some impl just return null while we expect to have an array... This is causing PHP notices in lots of iTop instances with modules implementing this method incorrectly !
This modification get rid of the notice and :
* add a log (warning level) indicating the impl classes
* if dev env, then throw an exception after browsing all impl (so you get a complete invalid impl list)
Note : since iTop 2.7.0 you should use \AbstractApplicationUIExtension instead of implementing the whole interface !
2021-05-19 14:58:55 +02:00
Molkobain
6d7bcb8a7c
N°3956 - Fix AJAX error when creating an object which has a linkedset with a friendlyname composed of its own external keys' friendlynames 🤪
2021-05-18 17:58:37 +02:00
acognet
db6e813cba
N°3945 - Password database is visible in the setup process
2021-05-18 17:34:57 +02:00
Pierre Goiffon
d74e3e6b42
💡 ItopTestCase : some PHPDoc
2021-05-18 17:16:04 +02:00
acognet
e9648ad75e
N°3766 - Migrate module to new UIBlock system : Gantt view - fix error message when the class doesn't exist
2021-05-18 13:46:07 +02:00
Molkobain
e53da47647
UIBlock: Add MakeRaw to the HTML factory
2021-05-18 10:46:27 +02:00
Molkobain
1128490d47
N°2982 - Branding: Theme imports with no xsi:type are ignored
2021-05-17 17:51:08 +02:00
Molkobain
186ef1689e
CI: Fix folder creation on Windows environments
2021-05-17 17:44:01 +02:00
Molkobain
0487cb8701
N°3914 - Fix single row selection in the portal's datatables
2021-05-17 13:49:17 +02:00
Molkobain
27b930c31c
N°3914 - Fix rows selection in the portal's datatables
2021-05-17 13:47:41 +02:00
Molkobain
a8ef1c7899
N°3796 - Make designer compatible with iTop 3.0
2021-05-17 08:55:21 +02:00
Molkobain
644f0bc94c
N°1964 - Fix missing parenthesis in previous commit
2021-05-14 11:31:35 +02:00
Eric
f3b0f79a59
N°3796 - Make designer compatible with iTop 3.0
2021-05-12 15:42:57 +02:00
Molkobain
eaae79a5f0
N°1964 - Fix focus moving to another tab on modification when one tab is readonly
2021-05-12 10:34:00 +02:00
Pierre Goiffon
bc10baed3e
:bulb PHPDoc
2021-05-12 09:06:48 +02:00
acognet
b740cb2afd
N°2540 - prevent the mysql password to appear on misconfigured servers
2021-05-12 08:17:35 +02:00
Molkobain
c0ec7e02f8
N°3939 - Keep focus on current tab on object modification
2021-05-11 16:34:54 +02:00
Stephen Abello
5977c5dd9e
N°4007 - When a search is on auto submit, auto submit it also on first display
2021-05-11 14:16:40 +02:00
Molkobain
1c2dcc7b9a
Merge remote-tracking branch 'origin/support/2.7' into develop
2021-05-11 12:22:47 +02:00
Molkobain
6ad3c40c42
Merge branch 'support/2.7.4' into support/2.7
2021-05-11 12:14:36 +02:00