odain
37351d6b3e
N°3464: fix ci
2020-12-07 16:23:17 +01:00
odain
57a085eec1
N°3464: move fix in itop-fence + fix/enhance rest api test
2020-12-07 15:56:35 +01:00
odain
0019595923
N°3464: fix ci
2020-12-07 00:44:39 +01:00
odain
4d61c14f80
N°3464 add test in phpunit.xml.dit to validate the fix
2020-12-07 00:12:31 +01:00
odain
cf1b613923
N°3464 REST comment field not working anymore
2020-12-06 23:54:27 +01:00
Pierre Goiffon
1304e2eb2d
N°3416 Updates after code review v2 :)
2020-12-04 08:51:07 +01:00
Pierre Goiffon
3cf16627c1
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# pages/ajax.render.php
2020-12-03 18:18:36 +01:00
Pierre Goiffon
4aaa237bf9
🔖 Prepare 2.7.3 version
2020-12-03 18:15:58 +01:00
Pierre Goiffon
cece15d10c
N°3416 Updates after code review
...
Many thanks @bruno-ds !
* add comments to explain intentions
* fix indentations
2020-12-03 17:45:44 +01:00
Pierre Goiffon
aa15e009cb
🔖 Prepare 2.7.2-2 version
2020-12-03 10:05:37 +01:00
Pierre Goiffon
b9ca2ac13d
N°3416 Fix DocumentFile preview not working anymore
...
Was caused by X-Frame-Options http header added with N°3317
(cherry picked from commit 35d77ff642 )
# Conflicts:
# pages/ajax.render.php
2020-12-03 08:20:51 +01:00
Pierre Goiffon
80e1e0e61a
N°3426 Fix no navigation menu on User object creation
...
Caused by a typo in js/forms-json-utils.js
Thanks @Molkobain !
2020-12-02 18:02:00 +01:00
Pierre Goiffon
ecebe4ecd5
N°3416 XFrame and cache headers optimizations
...
* Remove XFrame header set in \WebPage::no_cache : not this method responsability, was confusing :/
* Remove no_cache() calls when already set in page constructor (ajax_page mainly)
* Also calls everywhere the \WebPage::no_cache method instead of setting headers manually
2020-12-02 17:19:05 +01:00
Pierre Goiffon
8bfcb14d0c
N°3416 XFrame-Options header is now set using a config parameter, defaults to SAMEORIGIN
...
Also adds an indirection (\WebPage::add_xframe_options) to set header
2020-12-02 17:17:11 +01:00
Molkobain
1cf1473d6b
N°3469 - Fix variable declaration (let => var) 🤭
2020-12-02 17:01:00 +01:00
Molkobain
aa43425df3
N°3469 - Portal: Fix modal created without an ID
2020-12-02 16:59:39 +01:00
Pierre Goiffon
35d77ff642
N°3416 Fix DocumentFile preview not working anymore
...
Was caused by X-Frame-Options http header added with N°3317
2020-12-02 15:44:58 +01:00
acognet
539fa43503
N°3461 - Setup Broken with Chrome v87
2020-11-30 18:27:25 +01:00
acognet
eb537f45f4
N°3421 - Attributes of class Person are not accessible from :current_contact in portal anymore. Only attributes of class Contact are.
2020-11-30 09:24:35 +01:00
acognet
a2a4cd4e7a
N°3426 - Wrong tab is displayed when a creation or modification form is invalidated
2020-11-27 15:20:20 +01:00
Pierre Goiffon
35215cf62f
🌐 Fix typo in comma (2 "m" !!)
2020-11-26 18:34:07 +01:00
Pierre Goiffon
66273ebd39
Merge remote-tracking branch 'origin/support/2.7.2' into support/2.7
2020-10-30 18:08:01 +01:00
Eric
eebc29d2bb
N°3111 - Fix Portal export
...
(cherry picked from commit d3b57c3bda )
2020-10-30 14:16:57 +01:00
Pierre Goiffon
512b415bd6
N°3065 add test case in comment
2020-10-30 11:30:22 +01:00
Pierre Goiffon
906c8855b0
🔊 When error during CoreUpdate, show full file path instead of only basename
2020-10-28 18:32:49 +01:00
Pierre Goiffon
97d322a059
📝 N°3218 Add some PHPDoc on current change set/get
2020-10-27 15:17:17 +01:00
acognet
ada7f30793
N°3139 - import csv : hyperlink not clickable - replace htmlentities with utils::HtmlEntities() to ensure that the same options are used application wide.
2020-10-27 09:59:05 +01:00
Pierre Goiffon
b065d13374
Integration tests : add itop-community group
2020-10-27 09:46:03 +01:00
Pierre Goiffon
1f092f8418
🎨 Integration test code formatting
2020-10-27 09:45:26 +01:00
Pierre Goiffon
65d6947e52
🔖 Prepare 2.7.2 version
2020-10-22 15:06:48 +02:00
Pierre Goiffon
ba54b47f7d
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
2020-10-22 10:27:36 +02:00
Pierre Goiffon
65e43e8d04
🔧 remove .gitflow as we don't have any master branch anymore
2020-10-22 10:10:15 +02:00
Pierre Goiffon
adb4e77c8d
🎨 MetaModel : function modifiers order + little formatting
2020-10-19 15:36:56 +02:00
Pierre Goiffon
d3cf7176da
📝 MetaModel : add comment on @deprecated added in 9c75cb4537
2020-10-19 15:34:15 +02:00
Pierre Goiffon
1cfb52d220
🐛 Fix CoreException constructor generating a warning on PHP >= 7.2
...
In the CoreException constructor, we're using the $aContextData parameter to do a count(), a foreach(), and uses values as string.
Only a null check was done.
Now we are also checking that the value is_array().
As others checks (Countable, Iterable, __toString() impl) are quite difficult depending on the PHP version we're running, we didn't add any other checks.
The call in \MatchExpression::__construct (added in 05a0d612 ) was passing directly an Expression object. We could embed it in an array, but the object hierarchy isn't implementing __toString so we would have another bug.
In consequence we removed this parameter.
2020-10-19 11:57:53 +02:00
Pierre Goiffon
18d5231900
N°3332 Security hardening
2020-10-19 09:25:30 +02:00
Pierre Goiffon
e6539ccb6e
🔧 Update .editorconfig : braces on next line for classes and functions
2020-10-19 09:09:31 +02:00
acognet
96332b7885
N°3139 - import csv : hyperlink not clickable
2020-10-16 14:15:51 +02:00
acognet
557b9be795
N°3377 - Allow to get data of current user - Fix Exception when using :current_user->... for non admin users
2020-10-15 17:31:25 +02:00
Pierre Goiffon
75ebecddd5
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# datamodels/2.x/itop-portal-base/portal/src/controllers/userprofilebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/helpers/applicationhelper.class.inc.php
2020-10-14 09:19:07 +02:00
Pierre Goiffon
5fee2438ab
Fix comments : iTop 2.8.0 renamed to 3.0.0
2020-10-14 09:06:07 +02:00
Pierre Goiffon
2d130cbba8
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# test/core/UserRightsTest.php
# test/setup_params/default-params.xml
2020-10-12 12:47:58 +02:00
Pierre Goiffon
8b1c20cc11
N°3332 Security hardening
2020-10-12 12:40:51 +02:00
odain
df5aacca42
💚 use new ci validation
2020-10-09 10:08:31 +02:00
Pierre Goiffon
06acac97ba
✅ Fix tests
...
* update datamodel XML version
* Remove \Combodo\iTop\Test\UnitTest\Core\OQLTest::testTypeErrorQueryParser
2020-10-07 16:21:36 +02:00
acognet
2d6d1132c7
N°3262 - Avoid PHP notices on DBObject core code
2020-10-07 13:26:38 +02:00
acognet
ed0e16494d
N°3335 - Fix test
2020-10-05 16:23:56 +02:00
Pierre Goiffon
a765eb8725
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# application/ajaxwebpage.class.inc.php
# application/csvpage.class.inc.php
2020-10-05 16:12:49 +02:00
Eric
1f53757318
N°3248 - code hardening
...
(cherry picked from commit 6a25933744 )
(cherry picked from commit f74c78d61c )
2020-10-05 14:54:17 +02:00
Pierre Goiffon
090119147c
🎨 PHP formatting
2020-10-05 14:42:03 +02:00
Pierre Goiffon
1551694198
N°3317 Security hardening
2020-10-05 14:42:03 +02:00
BenGrenoble
5d7ae38adf
Merge remote-tracking branch 'origin/support/2.7' into support/2.7
2020-10-02 10:51:59 +02:00
BenGrenoble
2e08ae571a
3354 change sie by Sie
2020-10-02 10:51:25 +02:00
Pierre Goiffon
37522459a8
N°3351 restore LogKPI calls in portal index
2020-10-01 18:02:31 +02:00
Pierre Goiffon
db8c26da17
📝 update PHPDoc for \Expression::IsTrue
2020-10-01 17:02:22 +02:00
BenGrenoble
93c91c4077
3354 remove now from "Bitte bestätigen sie, dass jetzt ein Backup erstellen wollen now."
2020-10-01 15:11:07 +02:00
Pierre Goiffon
e4b3871947
📝 PHPDoc for \Expression::IsTrue
2020-10-01 14:51:28 +02:00
Pierre Goiffon
b2474d3368
N°3324 Portal fix ignore_silo when using nested query in scopes
...
The AllowAllData attribute wasn't updated in the nested queries.
It is now set both when calling DBObjectSearch::AllowAllData and when creating a new nested query (\DBObjectSearch::AddConditionExpression)
2020-10-01 12:15:34 +02:00
Pierre Goiffon
6cd0670d6b
🎨 Fix parameter for all DBSearch::AllowAllData impl
2020-10-01 10:09:34 +02:00
Pierre Goiffon
e9f81bd978
🔧 Update .Editorconfig for braces always at eol
2020-10-01 10:09:34 +02:00
Eric
0cc5dc0471
N°3317 - Add http headers
2020-09-30 10:18:44 +02:00
odain
20ce42b24b
Reintegrate validation tests to ease iTop release management from develop
...
- N°3053 - Check XML conversion methods
- N°3059 - Automatically set the documentation URLs
- N°3052 - Check community modules XML version against latest version
- N°3054 - Check community modules version against major version
- N°3062 - setup.css file integrity test
- N°3060 - Check consistency between the list of modules and installation.xml
- N°3061 - Automatically check the installation.xml consistency
- N°3268 Add test to check dictionary files: make sure that the Dict::Add declarations match the file name
2020-09-29 14:43:51 +02:00
Eric
d86e904e18
N°3317 - Add http headers
2020-09-29 14:11:11 +02:00
Eric
bef1832ac7
N°3317 - Add http headers
2020-09-29 14:07:24 +02:00
Eric
5a46bb8461
N°3320: Do not display empty tabs
2020-09-29 11:23:49 +02:00
acognet
05a0d61244
N°3335 - Notifications on threshold don't work when trigger is created on iTop 2.7.1 - nicer fix
2020-09-29 10:27:05 +02:00
acognet
80b3212a19
N°3335 - Notifications on threshold don't work when trigger is created on iTop 2.7.1
2020-09-29 09:12:47 +02:00
Molkobain
794d4f1e0e
N°3310 - Fix corrupted backups when a file has a size which is a multiple of 512 bytes
2020-09-28 14:31:36 +02:00
Molkobain
389b61d3a8
Fix missing author information in composer.json for TCPDF lib.
2020-09-28 14:29:51 +02:00
Molkobain
0948e80060
N°3320 - Fix empty tabs being displayed (misuse of the API or user rights)
2020-09-28 14:10:19 +02:00
odain
9520d2794f
💚 fix ci Serialization of 'ReflectionClass' is not allowed
2020-09-25 10:29:48 +02:00
Pierre Goiffon
e2c67dfcc4
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
2020-09-25 08:57:08 +02:00
odain
4e0eed6e13
N°3270 Notify on expiration not sending notification (trigger exception)
...
add boilerplate function and use it to intercept/enrich trigger exception loops
2020-09-25 07:18:14 +02:00
Pierre Goiffon
45e366745d
N°3333 Security hardening
2020-09-24 17:34:57 +02:00
Pierre Goiffon
1e634a8bba
N°3332 Security hardening
2020-09-23 17:17:05 +02:00
Eric
94b9a9bb75
N°3309 - Spelling mistake
2020-09-22 12:51:43 +02:00
Eric
0c90b701ea
N°3283 - Spelling mistake
2020-09-22 12:45:19 +02:00
Eric
58961cd4ec
N°3318 - don't display error details
2020-09-22 11:57:43 +02:00
Eric
1453558f3e
N°3317 - Add http headers
2020-09-22 11:39:19 +02:00
Eric
c6df0b6d7d
N°3311 - Stop capturing output before sending backup file (avoid memory problem)
2020-09-22 11:03:59 +02:00
Pierre Goiffon
7c3659d5ba
🔧 Remove versionned PHPStorm files
...
Those files were duplicates of the .editorconfig file
.editorconfig was pushed with ecd8f40c0f for 2.7.0 and should be the only source of the IDE / editor configuration
This generic format is implemented in PHPStorm since v2019.2 (see https://blog.jetbrains.com/idea/2019/06/managing-code-style-on-a-directory-level-with-editorconfig/ )
To check if your IDE / editor supports it, check https://editorconfig.org/
2020-09-18 18:26:31 +02:00
Pierre Goiffon
dd942997cb
🎨 Fix invalid formatting introduced in 827b4b5bbe
2020-09-18 14:22:28 +02:00
Pierre Goiffon
57fea03745
🔧 Fix editorconfig for JS files
2020-09-18 14:21:47 +02:00
Pierre Goiffon
827b4b5bbe
🎨 Fix string delimiter
...
Thanks @jbostoen for pointing this out (see discussion in 0773660ef2 )
2020-09-18 14:15:41 +02:00
Pierre Goiffon
7de59c1977
Update .editorconfig
2020-09-18 10:19:38 +02:00
Pierre Goiffon
c34c4bc09d
📝 Fix CRUD wiki page URL
...
was linking to Combodo private wiki :/, now is the public one \o/
Many thanks @Hipska !
2020-09-14 15:05:44 +02:00
Pierre Goiffon
bced819b3f
📝 N°2293 PHPDoc for DBObject::GetOriginal
2020-09-14 14:26:29 +02:00
acognet
23136bdf00
N°3303 - Bug on Mass update of actions (notification)
2020-09-11 09:53:23 +02:00
odain
98c371c5cf
add new code style for brackets
2020-09-07 16:12:12 +02:00
acognet
1e0415e902
3234 - php 5.6 compatibility
2020-09-07 12:14:38 +02:00
Eric
dbada2f72a
N°3238 - Fix multi-words search in FilterBrick and ManageBrick
2020-09-04 17:34:59 +02:00
Eric
9694e9848d
N°3285 - Fix Standard Global Search: multiple words search
2020-09-04 09:27:39 +02:00
bruno-ds
fe87700135
Un-deprecate ItopExtensionsExtraRoutes::AddRoutes(...)
...
we had imagined it as a compatibility layer for migrating from Silex to Symfony,
but it must'nt be deprecated until we provide a new API (ideally based on a scan of yaml configuration file?)
2020-09-03 16:43:30 +02:00
Eric
7107c2f616
N°3260 - Fix rendering of an ExternalField on a Text with XML content (format transitivity)
2020-09-02 18:15:31 +02:00
Eric
92e0f101d7
N°3260 - Fix rendering of an ExternalField on a Text with XML content (format transitivity)
2020-09-02 17:58:04 +02:00
acognet
29624bc5c5
N°3163 - Portal Filters doesn't work
2020-09-01 14:16:16 +02:00
acognet
d09f3f4f83
N°3149 - Change Color of Brick Search on Portail with extension Custom
2020-09-01 10:55:48 +02:00
acognet
f774a90b7e
N°3146 - Affichage des class user dans l'import CSV
2020-08-31 17:15:59 +02:00
acognet
fef8038f70
N°3261 - Configure this list : sort icon disappears when descending sort is selected
2020-08-31 15:11:47 +02:00
bruno-ds
2806a76c1d
:greenheart: test readability
2020-08-31 14:47:55 +02:00
Eric
328ec52c88
N°3162 - Remove default admin phone number (can be incompatible with validation pattern)
2020-08-31 11:38:24 +02:00
Eric
70734e2b71
N°3188 - Fix LIfeCycle visualization details
...
Fix js broken by the fix of N°309
2020-08-28 17:28:52 +02:00
Eric
bb892cc180
N°3078 - Fix error on login while in maintenance mode
2020-08-27 17:10:37 +02:00
acognet
4618f12d8a
N°3234 - Notify on expiration not sending notifications
2020-08-21 18:50:27 +02:00
odain
d12e2e592a
N°3265 - Log stacktrace when cron exception raised with debug enabled
2020-08-21 10:25:05 +02:00
Eric
6a25933744
N°3248 - code hardening
2020-08-18 17:21:48 +02:00
Pierre Goiffon
208ccfe3ab
N°3257 Fix cannot create objects with AttributeImage from extkey widget on PHP 7.4
2020-08-18 17:13:37 +02:00
Eric
f74c78d61c
N°3248 - code hardening
2020-08-18 17:02:46 +02:00
Eric
6176af089c
N°3256 - Invalid filter parameter, when using & (ampersand) in filter parameter (OQL Query)
2020-08-18 14:41:18 +02:00
odain
a35b2d83b7
Cancel functionnal changes to make sure they are ok in next release (develop/2.8) first
2020-08-07 15:17:24 +02:00
odain
8902d6e532
CI migration/automation + new test to ease iTop release management
...
- new Jenkinsfile and .jenkins removal to launch phpunit/behat tests
triggered on both iTop build and push.
- N°3053 - Check XML conversion methods
- N°3057 - New build recipe
- N°3059 - Automatically set the documentation URLs
- N°3052 - Check community modules XML version against latest version
- N°3054 - Check community modules version against major version
- N°3062 - setup.css file integrity test
- N°3060 - Check consistency between the list of modules and installation.xml
- Add exclusion group for CI
- N°3061 - Automatically check the installation.xml consistency
2020-08-07 14:48:51 +02:00
Pierre Goiffon
07bd6b8539
N°3219 cron : reset CMDBChange for each process
2020-08-04 09:44:20 +02:00
Pierre Goiffon
1148449bb7
📝 Add missing @since on \DBSearch::GetFirstResult
2020-07-29 17:21:15 +02:00
jbostoen
11d418fd49
🌐 Dutch translations: fix use of ITOP_APPLICATION, ITOP_APPLICATION_SHORT
...
* Fix incorrect ITOP_APPLICATION, ITOP_APPLICATION_SHORT
2020-07-28 16:26:16 +02:00
Eric
ace676dc24
N°2585 - Fix alias problem in portal scopes
...
The re-aliasing map structure now allows multiple mapping for the same alias (used for the translations of UNIONS)
2020-07-23 16:41:57 +02:00
Eric
8122270476
N°3176 - OQL: Fix malformed UNION queries in portal scopes
...
Fix regression in Unit tests
2020-07-22 17:30:38 +02:00
Eric
1f66d53ab4
N°3176 - OQL: Fix malformed UNION queries in portal scopes
...
Fixed AddCondition_ReferencedBy() for unions (regression introduced by N°2970)
2020-07-22 16:09:08 +02:00
Eric
dfaeca43e4
N°3148 - OQL request malformed
...
Fix variables in ListExpression
2020-07-22 10:06:11 +02:00
Eric
5b04143711
N°3111 - Fix Portal export
2020-07-21 16:39:55 +02:00
Eric
bd14096d43
N°3150 - Wrong count for archived objects
2020-07-21 14:21:55 +02:00
Eric
3b20be05cb
3189 - DBTools enhancements
...
* Add CLI command bin/report.php to generate report offline
* Keep the latest report in log/dbtools-report.log in order to visualize it with "Log management" menu
2020-07-21 14:08:36 +02:00
Eric
fdec608c3e
N°3174 - Remove stack trace from MySQLException
2020-07-16 18:09:44 +02:00
Eric
72cb3de50d
N°3173 - Installation issue with PHP 7.4 (fix php notice)
2020-07-16 17:23:21 +02:00
Eric
c03d32b423
N°3180 - Allow HTML in dictionary for login screen ('UI:Login:About')
2020-07-16 15:28:49 +02:00
Eric
94f9b16c03
N°2589 - Infinite loops when logging with a Contact having a non empty TagSet field
...
Add ListParameters to DBSearch for nested queries
2020-06-24 15:18:11 +02:00
acognet
311aeb0b07
N°2589 - Infinite loops when logging with a Contact having a non empty TagSet field
2020-06-24 12:09:55 +02:00
acognet
68fe3f01be
Spelling corrections
2020-06-23 17:38:24 +02:00
acognet
7ce94486bd
Spelling correction
2020-06-23 13:49:53 +02:00
acognet
6523b34d58
Update version number for 2.7.1
2020-06-23 11:19:44 +02:00
bruno DA SILVA
be20705449
Add unit test.
...
unit test the behaviour of the removal of the blacklisted html tags
this is in fact an adaptation of the test added for the rolled-back feature of the n°2556.
This feature has been postponed to the 2.8 due to performance scaling issues.
2020-06-22 16:13:31 +02:00
acognet
e7abaa2838
Update dictionnaries
2020-06-22 15:50:18 +02:00
Pierre Goiffon
8d73eb6dff
Revert "N°2556 - Html sanitization preserve content of removed tags (except for a forbidden list)"
...
This reverts commit 746b47bb0e .
Revert "N°2556 - Repair CI"
This reverts commit 79909fadc0 .
2020-06-22 11:36:46 +02:00
acognet
f84995a58f
N°309 - Afficher les arbres pliés ou dépliés
2020-06-19 18:45:26 +02:00
acognet
7f66e26b5f
Merge remote-tracking branch 'origin/support/2.7' into support/2.7
2020-06-19 12:27:35 +02:00
acognet
a6639b067f
N°309 - Afficher les arbres pliés ou dépliés
2020-06-19 12:26:08 +02:00
Pierre Goiffon
8a6d66effd
📝 Fix PHPDoc
2020-06-18 11:08:18 +02:00
Pierre Goiffon
6885d64124
📝 N°1418 DBObject PHPDoc
2020-06-17 19:03:29 +02:00
acognet
6fa153ae8b
N°3107 - Remove code merged by mistake
2020-06-17 15:20:52 +02:00
acognet
e226222c2a
N°3102 - widget regression: OQL syntax error now crash the page instead of displaying an error in place of the widget
2020-06-17 11:11:48 +02:00
Pierre Goiffon
aca0143e89
📝 PHPDoc for BackgroundProcess exceptions
2020-06-17 09:25:38 +02:00
Pierre Goiffon
1968c60770
📝 \DBObjectSet::ToArray PHPDoc
2020-06-16 12:32:57 +02:00
Pierre Goiffon
26014f410a
Set back version for 2.7.1
...
Was set to 2.8 by mistake in 23afee51 (PR #125 that was rebased in GitHub web)
2020-06-15 15:49:01 +02:00
Pierre Goiffon
8912618732
Revert "N°2214 Add PHP check in CLI scripts"
...
This reverts commit c768e18e2b .
No risk taken for the 2.7.1 : this will be included but for 2.8 !
2020-06-15 15:18:26 +02:00
Eric
7bee718a13
N°3775 - Dashboard Definition with unknown class leads to an error
2020-06-15 14:53:58 +02:00
Pierre Goiffon
2705543efd
N°2997 new test for AbstractWeeklyScheduledProcess
...
Document the way GetNextOccurrence works O:)
2020-06-12 18:20:07 +02:00
Pierre Goiffon
1e6b885301
SetupUtils : add missing public access keyword for methods
2020-06-12 16:50:04 +02:00
Pierre Goiffon
c768e18e2b
N°2214 Add PHP check in CLI scripts
...
It is quite common that the PHP interpreter that is launched in CLI is different that the one used by the webserver. So iTop code launched by CLI could run in a context that doesn't meet iTop requirements !
This adds in the following scripts the same control that is done on the setup wizard first step :
* cron.php
* backup, check-backup
* export, exportv2
* bulk import
* synchro-exec, synchro-import
If the check throws at least one error then the script is stopped with an appropriate message, and a log is made (IssueLog, Error level, CLI channel)
2020-06-12 16:46:37 +02:00
Eric
d4b93f3bf0
N°2641 - Create a dedicated ErrorPage for fatal errors
2020-06-11 17:16:47 +02:00
acognet
6354c62c2b
N°3012 - Fix blocking MTT/MTP when /extensions
2020-06-11 14:13:27 +02:00
acognet
cf8a12fe95
PMP light first version - small evolutions
2020-06-10 10:44:18 +02:00
acognet
36804dfcf4
N°3098 - Portal with IE : apply a transition ends with blank page
2020-06-10 10:44:17 +02:00
Eric
6966c0498a
N°3071 - fix missing index for AttributeSet (for migration)
2020-06-08 16:50:32 +02:00
Eric
bbffc40ee0
N°3074 - Fix dashlet creation for IE
2020-06-08 16:20:41 +02:00
acognet
1b7473365d
N°3075 - Fix syntax error with PHP 5.6 and TCPDF 6.3.4
2020-06-05 17:03:46 +02:00
Eric
0b84e809f6
Add cache to twig templates
2020-06-05 15:52:26 +02:00
acognet
a858362622
N°3080 - Portal cannot display more 10 attachments
2020-06-05 09:42:04 +02:00
Eric
d195c2b4c9
N°3071 - fix missing index for AttributeSet
2020-06-04 17:04:07 +02:00
acognet
28b75f29e5
N°3020 - Recurring PHP Notice with itop-fence "Undefined index: login_temp_auth_user
2020-06-04 16:21:07 +02:00
Eric
9d8a7bf561
N°3007 - Warn the user that installing a patch on a non conform install is not recommended
2020-06-04 10:38:58 +02:00
Eric
8064a20718
N°2970 - Reset conditions of joined filter because they can be used later by the Filter() method
2020-06-03 11:47:12 +02:00
acognet
f301a283e2
N°3015 - Fix "Undefined index: login_mode" Notice
2020-06-02 16:04:50 +02:00
Pierre Goiffon
e6a8f492d5
N°3049 Fix notice when having an ENUM field with values containing parenthesis
2020-05-28 15:38:21 +02:00
Pierre Goiffon
336637a7a4
SetupLog : ease changing manually the default level
...
In setup no conf file available so the log_level_min config option cannot be read
A solution is to manually change this constant
2020-05-28 11:40:22 +02:00
acognet
0e5a501b2a
N°3012 - Fix blocking MTT/MTP when /extensions
2020-05-27 10:13:44 +02:00
acognet
59af58a173
N°3008 - Align transition form markup metadata to regular form in the backoffice
2020-05-27 10:00:20 +02:00
acognet
7f922560ba
N°1976 - Duplicate Service on Customer Contract - formating code
2020-05-27 09:35:02 +02:00
acognet
d2e286345e
N°1976 - Duplicate Service on Customer Contract
2020-05-27 09:30:52 +02:00
Pierre Goiffon
fb120bdc7c
Merge remote-tracking branch 'origin/support/2.7.0' into support/2.7
2020-05-26 08:44:21 +02:00
Pierre Goiffon
5548997f3e
📝 README : fix for 2.7.0-2
2020-05-26 08:43:11 +02:00
bruno DA SILVA
156828c448
Merge branch 'feature/2958_unescape_slack' into support/2.7
2020-05-25 16:07:05 +02:00
bruno DA SILVA
04ef2b0454
2958 - test a restore
2020-05-25 15:52:37 +02:00
bruno DA SILVA
076d2e3d46
2958 - test a failure
2020-05-25 15:51:42 +02:00
bruno DA SILVA
0c6ab86e54
2958 - Slack notification : fix escaped branch name
2020-05-25 15:34:18 +02:00
bruno DA SILVA
876db3e58f
2958 - Slack notification : fix escaped branch name
2020-05-25 15:32:16 +02:00
Molkobain
5f7fe345cc
Update README with iTop 2.7.0-2 information
2020-05-20 10:23:18 +02:00
Molkobain
cb6f78c9e3
Update README with iTop 2.7.0-2 information
2020-05-20 10:22:34 +02:00
acognet
8c86908652
N°3023 - Portal: Fix filter brick input not working in IE11
2020-05-19 10:17:27 +02:00
acognet
7e69256cb4
N°2668 - Notifications - Export wrong attribut format in html
2020-05-18 21:52:31 +02:00
acognet
83e3c089a4
N°1976 - Duplicate Service on Customer Contract
2020-05-18 21:51:29 +02:00
Pierre Goiffon
0d1059a8fc
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# application/utils.inc.php
# conf/web.config
# datamodels/2.x/itop-backup/ajax.backup.php
# datamodels/2.x/itop-backup/status.php
2020-05-18 09:24:46 +02:00
Eric
e2f15ca24a
🌐 Add ES_CR translations to Application Upgrade Menu
...
From PR#128 by Federico Lazcano
2020-05-15 14:39:22 +02:00
Eric
7628b85b70
🌐 Add ES CR translations for DB Tools
...
From PR#127 by Federico Lazcano
2020-05-15 14:13:24 +02:00
Eric
525f600c18
🌐 Config Menu title should be uppercase
...
From PR#126 by Federico Lazcano
2020-05-15 14:04:15 +02:00
Pierre Goiffon
0ffa2850ea
Deadlock log : log inside a dedicated log file instead of creating an EventIssue object ( #139 )
...
First log implementation (75730ee ) was creating EventIssue objects, and was rollbacking transaction if it exists
The new one has some benefits :
* always log one line by default in log/error.log, but details must be activated though config (channels `Deadlock-WaitTimeout` and `Deadlock-Found`)
* detailed logs are in a dedicated file (log/deadlock.log) :
- easier for our clients to get and share
- has rotation by default
- looking at the file size is a direct way to know if error happened
- more compliant to industry standards !
* the transaction stays untouched, so that the consumer can do whatever it prefers
2020-05-14 17:49:05 +02:00
Eric
fa3610cfee
N°2641 - Create a dedicated ErrorPage for fatal errors
...
Fix fatal errors being logged in setup.log instead of error.log
2020-05-14 14:37:38 +02:00
acognet
898ee95a2c
N°1997 - dbClick to exit the "description" field when creating an incident on the portal
2020-05-14 13:03:49 +02:00
Pierre Goiffon
730570f1f8
📝 MFCompiler language injection
2020-05-14 11:43:57 +02:00
Pierre Goiffon
80ce1eb125
N°2984 Security hardening
2020-05-14 11:33:48 +02:00
Pierre Goiffon
228a945da9
N°2984 Security hardening
2020-05-14 11:26:35 +02:00
bruno DA SILVA
79909fadc0
N°2556 - Repair CI
2020-05-14 10:49:31 +02:00
bruno DA SILVA
746b47bb0e
N°2556 - Html sanitization preserve content of removed tags (except for a forbidden list)
...
forbidden list: see $aTagsContentRemovableList
2020-05-14 10:33:30 +02:00
acognet
150d3e096d
N°2346 - Function GetTrackOrigin() doesn't return good value during csvimport
2020-05-13 23:55:26 +02:00
Thomas Casteleyn
23afee514d
🌐 Update nl.dictionary.itop.ui.php ( #125 )
2020-05-13 14:38:32 +02:00
acognet
48c5698f08
N°2934 - Backoffice theme: Add variable for menu group background color
2020-05-13 12:22:35 +02:00
acognet
1a4ee0f977
N°1953 - Dashlet Title alignment not consistent : Left on List, Center on Table/Pie/Chart
2020-05-13 12:22:35 +02:00
Eric
1ca39618e1
N°1610 - Fix [DBObject] ExecAction - apply_stimulus
...
removed unnecessary test
2020-05-13 11:38:22 +02:00
Eric
7bb1f9f423
N°2937 - fix export error on EventIssue object
2020-05-13 11:24:34 +02:00
Pierre Goiffon
834297e675
N°2985 Security hardening ( #140 )
...
Thanks @bruno-ds for the review !
2020-05-13 10:04:40 +02:00
bruno DA SILVA
21c2574cd9
N°2358 - Fix deletion of a single replica within a list
2020-05-13 09:37:36 +02:00
Pierre Goiffon
6d9923be68
AbstractWeeklyScheduledProcess fix typo and add @noinspection
2020-05-13 08:45:03 +02:00
bruno DA SILVA
839bbc425f
N°2901 Add log to help diagnose lost InlineImage
...
they are disabled by default, use this to enable:
```
'log_level_min' => array(
'InlineImage' => LogAPI::LEVEL_TRACE,
'UserRequest' => LogAPI::LEVEL_TRACE,
),
```
2020-05-12 15:34:13 +02:00
acognet
70cc19768a
N°1953 - Dashlet Title alignment not consistent : Left on List, Center on Table/Pie/Chart
2020-05-12 14:48:56 +02:00
acognet
873d109b98
N°1910 - iTop - Search on Text contains "_" not working - move correction in other place
2020-05-12 14:48:16 +02:00
Eric
a81950571a
N°1598 - Fix regression on modify
2020-05-12 14:21:34 +02:00
Eric
bcd9679957
N°3006 - Fix filtering an UNION with parent class
2020-05-12 12:08:18 +02:00
Eric
2c10913fe5
N°2093 - Keep object values when a stimulus action fails
2020-05-12 11:29:30 +02:00
Eric
0342b89481
N°1598 - warning for bad stimulus instead of fatal error
2020-05-12 11:01:04 +02:00
Pierre Goiffon
3c9318d56a
N°2990 Fix count warning on audit OQL error
2020-05-12 09:41:24 +02:00
Pierre Goiffon
30d10b6f11
N°2990 Security hardening
2020-05-12 09:40:58 +02:00
acognet
3fd55c6dd6
N°1693 - the history of AttributeEncryptedString must not interpret HTML tags
2020-05-11 12:14:55 +02:00
Pierre Goiffon
f8e39877b3
N°2988 Security hardening
2020-05-07 11:49:58 +02:00
Pierre Goiffon
0a3f7d7ef7
N°2989 ajax.backup small updates
...
* update copyright
* in messages replace iTop by constant
2020-05-07 11:18:21 +02:00
Pierre Goiffon
222eb47bd2
N°2989 ajax.backup : refactor exit conditions
...
Adding a die() call so that we are sure to exit on errors !
2020-05-07 10:49:05 +02:00
Eric
c15b3462d1
N°2945 - Adding an empty file as an attachment is generating a fatal error
...
Changed error message
2020-05-07 08:49:05 +02:00
Pierre Goiffon
32f05ea917
👥 Added Pascal Schirrmann as contributor (N°2980, thanks to him !)
2020-05-07 08:36:53 +02:00
Molkobain
6a50b55a2a
N°1598 - Improve user feedback on invalid transition: Display a better error message to the user in the portal
2020-05-06 16:58:25 +02:00
Eric
72f11c6a4d
N°2815 - Fix basic authentication with Apache
...
Added support for REDIRECT_HTTP_AUTHORIZATION
2020-05-06 11:35:56 +02:00
Eric
609ea47f7b
PHPDoc
2020-05-06 10:29:47 +02:00
Pierre Goiffon
74b3cfd46c
Merge remote-tracking branch 'origin/support/2.7.0' into support/2.7
2020-05-06 10:13:15 +02:00
acognet
f7ea6c09cd
N°2589 - Infinite loops when logging with a Contact having a non empty TagSet field
2020-05-05 19:00:24 +02:00
acognet
526a7f9817
N°1910 - iTop - Search on Text contains "_" not working - convert _ to \_ in javascript
2020-05-05 18:36:38 +02:00
Eric
5ccb1ef72a
N°1662 - Fix Auto-complete on external key ignore obsolescence user preference
...
ValueSetObjects now consider obsolete data
2020-05-05 11:14:59 +02:00
Pierre Goiffon
180da03f08
N°2980 Fix backup not executed anymore
...
Regression introduced by #89
2020-05-05 09:00:40 +02:00
Pierre Goiffon
7ec7626aa0
N°2977 PHP Doc change
2020-05-04 18:13:40 +02:00
Eric
f92a980b4d
N°2974 - Fix Global Search doesn't search in external field.
...
For External Field, allow the search also for FriendlyNames.
2020-05-04 18:13:18 +02:00
Pierre Goiffon
5d7582bb6f
N°2977 LogAPI : restore default log level to OK, and really allow LEVEL_DEFAULT overloads
...
* Level was changed by mistake to trace with refactoring in 289171b9
Thanks @v-dumas !
* self wouldn't allow to override
see https://www.php.net/manual/fr/language.oop5.late-static-bindings.php
Thanks @bruno-ds !
* improve PHPDoc !
2020-05-04 16:55:46 +02:00
bruno DA SILVA
7a40db94fb
2424 - Better messages when an object update fail & removed an unwanted webserver error log entry
2020-05-04 12:00:30 +02:00
Eric
843798505a
N°2974 - Fix Global Search doesn't search in external field
...
The IsSearchable() check was wrong for some attributes
2020-05-04 11:40:02 +02:00
Pierre Goiffon
bf13f9fc8a
N°2975 improve RotatingLogFileNameBuilder next cron occurrence computation
2020-04-30 08:41:55 +02:00
Pierre Goiffon
289171b9f1
N°2977 LogAPI : allow to overwrite the default log level
2020-04-29 15:16:45 +02:00
Pierre Goiffon
9b065ffb0a
Merge remote-tracking branch 'origin/support/2.7.0' into support/2.7
...
# Conflicts:
# datamodels/2.x/itop-attachments/renderers.itop-attachments.php
2020-04-29 09:00:10 +02:00
Pierre Goiffon
96d888fcf3
N°2968 fix email-reply notification not updated
...
- add a specific container for attachments list, upload button and #attachment_plugin hidden input is outside of it
- refactor code between abstract class and implementation, add some comments
- now refreshes only the attachment list instead of the whole content
2020-04-28 17:47:20 +02:00
Vladimir Kunin
a182a37139
Add Russian translations for 2.7.0-1 (rebased)
2020-04-28 08:42:17 +02:00
Pierre Goiffon
23c15c1b6c
Revert "N°2902 - Intersect with union generates unwanted alias renaming"
...
This reverts commit 866e4ab995 .
Fix isn't yet commited, so we don't want to break the build.
The fix will be done in the hotfix/2902_intersect_alias branch
2020-04-27 09:36:38 +02:00
Eric
866e4ab995
N°2902 - Intersect with union generates unwanted alias renaming
2020-04-24 18:32:40 +02:00
Eric
75730eeea0
Log database deadlocks in EventIssue
2020-04-23 15:25:12 +02:00
Pierre Goiffon
58fd8709be
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# css/css-variables.scss
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/combodo-db-tools/module.combodo-db-tools.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2020-04-22 11:14:59 +02:00
Eric
f18ea18a5b
N°2936 - TLs option is not set for restore function
2020-04-21 16:59:16 +02:00
Pierre Goiffon
1904bfdba6
css-variables : update to 2.7.0-2
2020-04-21 16:35:41 +02:00
acognet
e1949cd3eb
N°2509 - Change Columns via "Configure this list" show obsolete data though user preferences is "not shown obsolete data"
2020-04-21 12:45:59 +02:00
Eric
1b2d3d1e84
N°2952 - Provisioning for hybrid auth fails
...
Changed Origin for change to an allowed value
2020-04-21 11:59:48 +02:00
Pierre Goiffon
c5b1f02d2b
🔖 Update versions to 2.6.4
2020-04-21 08:52:42 +02:00
Pierre Goiffon
f81ab4d71a
🚀 Release tool to update versions
...
Was already comitted in 2.7 branch (fd1e17cc )
2020-04-21 08:50:25 +02:00
acognet
0b95dbee7f
N°1588 - Count on Managed Brick sometimes wrong
2020-04-20 16:31:56 +02:00
Pierre Goiffon
db593ff85e
Merge remote-tracking branch 'origin/support/2.6' into support/2.7
...
# Conflicts:
# application/loginwebpage.class.inc.php
# application/menunode.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/aggregatepagebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/userprofilebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/views/bricks/manage/popup-export-excel.html.twig
# pages/ajax.render.php
2020-04-20 16:05:56 +02:00
Eric Espié
1f750bb12d
N°2902 Fix alias renaming when already exists in one OQL of an UNION
...
The legacy impl is not modified
2020-04-20 14:59:56 +02:00
Pierre Goiffon
4ee66377ce
Merge commit '15e5e21a89a3d3214dace82b8765a47e304a8f29' into support/2.7
2020-04-20 14:21:55 +02:00
Eric
432a950f8c
N°2945 - Fix fatal error when adding empty attachment
...
alert when empty attachment is detected
2020-04-20 10:54:27 +02:00
acognet
bbc751bee4
N°2383 - GetAttributeFlag ignored on form refresh with dependent field
2020-04-14 17:56:27 +02:00
acognet
a77ba2fbab
N°2564 - Stop copy after "<" character in a Copy operation on a Transition - change only in Copy function
2020-04-14 17:56:27 +02:00
Eric
5b60ec9edf
N°2919 - Dashboard - Fix dashboard not saved
...
the sanitization was too strong. Some names can contain ':'
2020-04-10 18:11:36 +02:00
Eric
b88b9dabdb
N°2919 - Dashboard - Fix dashboard not saved
...
The sanitization was too strong. Some names can contain ':'
2020-04-09 17:59:52 +02:00
Eric
06b17e82db
N°2755 - Security hardening
2020-04-09 11:03:07 +02:00
Eric
2add79a473
N°2853 - Security hardening
2020-04-09 10:55:17 +02:00
Molkobain
3103f361a4
Update 2.7.0-1 release date
2020-04-08 11:02:03 +02:00
Eric
3a37e24496
N°2306 - Security hardening
2020-04-08 09:28:20 +02:00
acognet
621295199c
N°1402 - Attribut File cannot be emptied Add a trash next to the name of the file
2020-04-06 16:36:46 +02:00
Eric
b1d703bff3
N°1671 Portal: Fix Aggregate Brick when user profile is not allowed to see one of the sub-brick
2020-04-06 14:07:42 +02:00
Eric
a3a34a94e7
N°1355 - Security hardening
2020-04-06 11:47:57 +02:00
Stephen Abello
6edc365685
N°2742 - HTML files preview are now raw text only
2020-04-06 09:47:24 +02:00
Stephen Abello
4b7f736af0
N°2755 - Security hardening
2020-04-06 09:42:41 +02:00
Stephen Abello
016fbaed36
N°2755 - Security hardening
2020-04-06 09:42:15 +02:00
Stephen Abello
bfcd137e52
N°2853 - Security hardening
...
(cherry picked from commit d01caaf4e4 )
2020-04-06 09:37:58 +02:00
Stephen Abello
f9af8fc912
N°2855 - Security hardening
...
(cherry picked from commit c5c7fd5c85 )
2020-04-06 09:20:02 +02:00
Eric
c1a7a36896
Compatibility with MySQL 5.6
2020-04-06 09:02:06 +02:00
acognet
d5fe653e51
N°2848 - Align creation and update message on portal to console message - add a comment for next time
2020-04-02 20:31:06 +02:00
acognet
fc2fb235a2
N°1344 - Save without all mandatory attributes (ajax reload not finished)
2020-04-02 17:46:18 +02:00
acognet
d7211509bd
N°1062 - Portal : autocomplete and search = broken : change the max size of the list
2020-04-02 17:29:39 +02:00
acognet
c182b1a01f
N°2848 - Align creation and update message on portal to console message
2020-04-02 11:50:01 +02:00
Eric
15e5e21a89
Compatibility with MySQL 5.6
2020-04-01 17:37:55 +02:00
acognet
ee0d231426
N°2895 - Tab dictionnary entries not taken in account in "Printer Friendly Version" screen
2020-04-01 01:05:13 +02:00
acognet
3282b46c9b
N°2395 - Error in file light-gray.scss
2020-04-01 00:01:26 +02:00
acognet
05649ba50f
Merge branch 'master' of github.com:Combodo/iTop
2020-03-31 23:48:35 +02:00
acognet
40efc4cbb1
N°1062 - Portal : autocomplete and search = broken
2020-03-31 23:47:46 +02:00
Molkobain
30034d381b
Update version number to 2.7.0-1
2020-03-31 09:47:37 +02:00
Molkobain
986eb90546
N°2893 - Fix DataModel Viewer not supporting special chars in class name (eg. ")
2020-03-31 09:40:31 +02:00
Pierre Goiffon
eb41d3e2ef
📝 Fix erroneous PHPDoc for InlineImageGC
2020-03-30 17:09:04 +02:00
acognet
c6b16bb52e
N°2119 - Dashlet Header statistic on ExternalKey, display id instead of name
2020-03-30 16:24:12 +02:00
acognet
95adbbb58f
N°1181 - List of searchable classes in SearchMenuNode - add user rights tests
2020-03-30 16:23:23 +02:00
acognet
60f5c60059
N°1796 - Search : false criteria after using the magnifier
2020-03-30 16:19:23 +02:00
acognet
c0284ecc3b
N°1953 - Dashlet Title alignment not consistent : Left on List, Center on Table/Pie/Chart
2020-03-30 16:18:43 +02:00
acognet
fc7b772ba3
N°1910 - iTop - Search on Text contains "_" not working
...
_ is a special caracter in mysql -> replace with \_
2020-03-30 16:13:47 +02:00
Pierre Goiffon
011d742ae3
N°2891 📌 add mbstring as optional extension
2020-03-27 14:41:59 +01:00
Pierre Goiffon
5b496f4d15
N°2866 Change "cron" case in labels as it is not an acronym
...
Thanks @Hipska for the feedback done in Combodo/iTop#124 !
2020-03-26 11:15:47 +01:00
Pierre Goiffon
97f4c32271
N°2881 Improve robustnedd of \ModuleInstallerAPI::RenameEnumValueInDB
...
Was causing errors when migrating from datamodels where the fields were not enum yet (this method is usually launched using \ModuleInstallerAPI::BeforeDatabaseCreation, so before an ALTER could be done to the column)
2020-03-26 10:18:34 +01:00
Pierre Goiffon
c002ca7902
setup.css : update .css that was not up to date :/
2020-03-26 10:13:10 +01:00
Pierre Goiffon
ff22074418
🎨 setup.css : remove warnings & unused code
...
Removed unused legacy code :
* #header>H1 : a noline-height ugly when renamed to line-height, seems totally unused when noline-height
* table.formTable : cellpadding & cellspacing
2020-03-26 10:09:08 +01:00
Pierre Goiffon
84968ff550
Merge remote-tracking branch 'origin/release/2.7.0'
2020-03-26 08:50:14 +01:00
bruno DA SILVA
46151c87c0
N°2888 Check password policy only if field set with a string
...
Some callers are setting the field using an ormPassword object containing hashed password + salt
examples:
- csv import
- data synchro
- ...
2020-03-25 12:43:41 +01:00
Pierre Goiffon
75a900c6f8
🚀 Tool to batch update XML datamodel version
2020-03-24 16:46:48 +01:00
Molkobain
e8c9d99783
Increase XML version to v1.7
2020-03-24 14:06:41 +01:00
Eric
1600302ad9
N°2869 - Removed Check for bad finalclass in root classes (already done)
2020-03-19 15:40:52 +01:00
Eric
a9c3a1b782
N°2869 - Check for bad finalclass in root classes (Allow all non-abstract child classes)
2020-03-19 10:01:16 +01:00
Eric
74848254a4
N°2869 - Check for bad finalclass in root classes
2020-03-18 14:10:35 +01:00
Eric
d7d9bfe0fd
N°2869 - Check for bad finalclass in intermediate classes
2020-03-18 10:09:05 +01:00
odain
dd96dec100
Fix license file generation; exclude itop-portal-base
2020-03-18 08:42:55 +01:00
Pierre Goiffon
16ff51f3b7
📄 Update licenses after generation tool upgrade
...
See 76d26e8e
2020-03-18 08:15:09 +01:00
Pierre Goiffon
27c651b33c
📄 Remove itop-portal-base from license file
2020-03-17 18:08:49 +01:00
Pierre Goiffon
32375265cb
📄 Remove 2.x/authent-cas from license file
2020-03-17 17:47:25 +01:00
Pierre Goiffon
0cba163dc9
🔖 Update version to final in iTop files
2020-03-17 16:50:45 +01:00
Pierre Goiffon
fd1e17cc32
🚀 Release tool to update versions
2020-03-17 16:49:05 +01:00
Eric
d85e1906b7
N°2746 - New Attribute Enum Set
...
XML migration from 1.7 to 1.6
2020-03-17 12:03:10 +01:00
Pierre Goiffon
f8df84aa7b
Update dict for 2.7.0-RC
2020-03-17 10:55:53 +01:00
Eric
c26b9459bb
N°2869 - Fix 2.7 Migration
...
Run UPDATE requests just after the corresponding ALTER TABLE requests
2020-03-16 18:49:12 +01:00
Molkobain
4f7676c42d
N°2735 - Rollback previous "fixes" to keep the simple ID policy in the Designer and a unique ID generation at runtime
2020-03-16 12:17:09 +01:00
Molkobain
ceddafaebe
N°2735 - Rename parameter for better consistency
2020-03-16 12:17:09 +01:00
Stephen Abello
950640babe
N°1986 - Revert feature
2020-03-13 10:24:25 +01:00
jbostoen
11e6be1037
🌐 Added NL translations ( #124 )
...
Co-authored-by: jbostoen <->
2020-03-13 09:42:37 +01:00
Molkobain
29d963317f
N°2735 - Fix dashlet ID generation to have the "CUSTOM" prefix only at runtime
2020-03-12 16:46:15 +01:00
Molkobain
dd300e075c
N°2735 - Fix dashlet edition in the Designer (property form ID was not matching dashlet's)
2020-03-12 16:46:03 +01:00
Molkobain
774ace2302
Fix icon select widget to be compatible with iTop 2.7
2020-03-12 14:16:03 +01:00
Molkobain
bbfddea93d
Open new_dashlet_id operation for Designer
2020-03-12 14:16:02 +01:00
Stephen Abello
c5c7fd5c85
N°2855 - Security hardening
2020-03-12 14:13:17 +01:00
jbostoen
5d4b9f4a89
🌐 Fix typos in English translation ( #123 )
2020-03-12 08:51:40 +01:00
Stephen Abello
d01caaf4e4
N°2853 - Security hardening
2020-03-10 10:23:38 +01:00
Pierre Goiffon
f895821db9
⚗️ CONTRIBUTING : added some emoji O:)
2020-03-06 20:52:33 +01:00
bruno DA SILVA
19f34d1a72
composer reflexion: list outdated packages
2020-03-05 11:33:36 +01:00
Pierre Goiffon
7ff1a03a3c
N°2820 monthly log rotation : restore default config
2020-03-04 16:04:19 +01:00
Pierre Goiffon
eadc3b72c2
📝 N°2793 log rotation add PHPDoc about timezones
2020-03-04 14:23:34 +01:00
odain
c06f8e9a98
N°2793 log rotation test : fix timezone issues
2020-03-04 12:05:42 +01:00
Pierre Goiffon
6675d7d42a
N°2793 Test log rotation
2020-03-04 09:21:05 +01:00
Eric
afc118e9c2
🐛 fix GetAsPlainText() on EnumSet
2020-03-03 17:34:15 +01:00
Pierre Goiffon
f36fcb2a2d
N°2820 Log rotation : change default from weekly to monthly
2020-03-03 15:31:11 +01:00
Eric
f062af367d
N°2826 - Bad SQL request for group by with data-localizer
...
Unit tests to check the fix in data-localizer
2020-03-03 15:25:12 +01:00
Pierre Goiffon
29d24faf52
N°2793 Log rotation : fix no rotation :/
...
Was caused by erroneous file exists test
2020-03-03 10:18:09 +01:00
Pierre Goiffon
33f3f2810e
N°2793 Log rotation : add file exists check in the lock
2020-03-02 18:33:00 +01:00
Pierre Goiffon
fad00200b6
🔧 PHPStorm remove is_null() rewrite inspection
2020-03-02 15:56:26 +01:00
Pierre Goiffon
56ef6feadf
N°2820 Log rotation : new MonthlyRotatingLogFileNameBuilder class
2020-03-02 15:52:59 +01:00
Pierre Goiffon
2be16f9078
N°2793 Log rotation ( #117 )
...
Now log file name is unchanged : current log is still /log/error.log \o/
Rotation check (using file last modification time) is done :
* on each file write : we don't want to miss calls if session last from 23:59:59 to 00:01 for example ! Though the filemtime() call is done once per session to lower performance impacts
* using a new background process (LogFileRotationProcess)
File renaming on setup is therefore removed.
Also the interface is renamed (from ILogFileNameBuilder to iLogFileNameBuilder) to conform to iTop convention.
2020-03-02 15:01:12 +01:00
Eric
6874aed4a2
N°1627 - Ticket ref sometimes duplicate
...
add MakeInsertQuery() to legacy
2020-03-02 12:04:12 +01:00
Pierre Goiffon
07b8830436
N°2814 Fix cannot authenticate in some HTTP calls
...
basic mode was forced in 0dd1f26b
scripts concerned :
* synchro/synchro_import.php
* webservices/cron.php
* webservices/import.php
2020-03-02 11:56:00 +01:00
Molkobain
39d3e00ba1
N°2822 - Fix timeout message through AJAX calls in the Portal
2020-02-28 16:53:16 +01:00
Stephen Abello
ffa43160bf
N°1164 #1491 - Add padding and border to code blocks
2020-02-28 16:42:46 +01:00
Pierre Goiffon
a45d1336f4
🎨 Change \ormStopWatch::ComputeGoal for IDE convencience, add phpdoc
2020-02-28 12:02:20 +01:00
Federico Lazcano
5a287fabba
🌐 Typo in ES_CR User Requests
2020-02-28 08:23:34 +01:00
Federico Lazcano
da86ee4114
🌐 Typo in ES_CR Incidents
2020-02-28 08:22:59 +01:00
Federico Lazcano
5157788afe
🌐 Typo in ES_CR User Requests
2020-02-28 08:22:14 +01:00
Molkobain
386e25efd6
N°2314 - Remove basque-red, ocean-blue and test-blue from default themes
2020-02-27 15:41:54 +01:00
Molkobain
649e2f8e6a
Internal: Remove unused import
2020-02-27 15:10:41 +01:00
Molkobain
3c3d744747
N°2314 - Refactor part of the compilation in dedicated helpers
2020-02-27 15:09:57 +01:00
Molkobain
1371eee826
N°2735 - Continue rework of the dashlet id generation: Dashlet could not be added in the Designer
2020-02-27 11:54:20 +01:00
Molkobain
6645a5053f
N°2806 - Fix errors on legacy portal "portal" tag during migration to iTop 2.7
2020-02-26 17:17:56 +01:00
Molkobain
e2a3e0e74f
N°2735 - Continue rework of the dashlet id generation:
...
- Move generation from DashboardLayout to Dashboard
- Migrate dashlet user preference in RuntimeDashboard only (and not in DesignTimeDashboard)
2020-02-26 16:29:32 +01:00
Molkobain
401f82062a
N°2735 - Make sure to always have the dashboard (sanitized) id for dashlets rendering
2020-02-26 12:10:18 +01:00
Molkobain
5a01a76f80
N°2735 - Add new sanitize filter ('element_identifier') for dashboard identifier
2020-02-26 12:10:18 +01:00
Pierre Goiffon
3e5520d079
N°2735 Fix new dashlet id didn't contain dashboard id
2020-02-26 09:13:19 +01:00
Pierre Goiffon
beef2a89a3
N°2684 Remove upgrade from another repository
...
This upgrade procedure was :
* dangerous : running two iTop of different versions on the same database should not be done
* insufficient : just /extensions/* was copied, not any Hub or Designer data, no log, no instance.txt, ...
2020-02-25 18:01:59 +01:00
Molkobain
2f920cbb46
Internal: PHPDoc and warnings suppression
2020-02-25 17:45:18 +01:00
Pierre Goiffon
feae36e5b8
N°2735 Fix dashlet id duplicates when moving dashlet from one cell to another
2020-02-25 15:43:20 +01:00
Stephen Abello
92ae0e72e1
N°2314 - Markup extensibility: Add a variable for hovered table lines background color
2020-02-25 15:14:12 +01:00
Stephen Abello
ed030403aa
N°2112 - Remove unused legacy portal conf variable and its usage
2020-02-25 14:00:58 +01:00
Pierre Goiffon
dfc894f6fd
N°2735 Fix cannot edit new dashlet properties regression
...
Was introduced by cf83bc73
2020-02-25 11:17:52 +01:00
Stephen Abello
368b49ef8f
N°2314 - Markup extensibility: Fix table sorter icons in html export pages
2020-02-25 10:36:56 +01:00
Stephen Abello
ccfd3848fb
N°1164 #1491 - Fix syntax code highlighting display in CaseLog/HTML fields
2020-02-25 09:54:18 +01:00
Molkobain
ea59f7bc23
N°2314 - Markup extensibility: Add metadata to caselogs in the admin. console
2020-02-24 18:22:01 +01:00
Molkobain
9d6ed7f489
N°2806 - Fix errors on legacy portal constants during migration to iTop 2.7
2020-02-24 17:03:13 +01:00
Molkobain
0aa006f7c4
Internal: Fix typo in PHPDoc
2020-02-24 16:47:10 +01:00
Molkobain
c669d6951b
PHPDoc and warnings suppression
2020-02-24 16:36:31 +01:00
Molkobain
9412f260ae
PHPDoc
2020-02-24 11:01:24 +01:00
Molkobain
9781a11988
N°2803 - Regression: Fix "forgot_password" parameter not working anymore
2020-02-24 10:58:24 +01:00
Molkobain
1ed0210fe2
N°2799 - Fix double encoding in "top-list" display mode of the ManageBrick
2020-02-24 09:47:22 +01:00
Molkobain
1ce5ec73ea
N°2798 - Fix unable to submit portal forms (Regression from dba6e8ce)
2020-02-24 09:24:23 +01:00
Eric
98304e2bda
N°2596 - Allow '1' as true value for boolean in XML files
2020-02-21 18:14:03 +01:00
Pierre Goiffon
04fc58b55c
📝 Some @since annotations were missing complete version (ex 2.5 instead of 2.5.0)
2020-02-21 18:05:30 +01:00
Eric
096c3a3f13
N°2772 - Revert the loading of JS Dict in setup pages
2020-02-21 17:15:12 +01:00
Eric
87e22163d7
N°2037 - Add Twig template rendering to the WebPage
2020-02-21 14:35:25 +01:00
acognet
4cc8b89f4e
N°2037 - New dashlet Gantt - add method to insert twig in an existing page
2020-02-21 12:09:15 +01:00
Pierre Goiffon
19809249a2
📝 Update PHPDoc for StopWatches interfaces
2020-02-20 18:01:09 +01:00
Molkobain
7347eed3ac
PHPDoc
2020-02-20 17:43:14 +01:00
Molkobain
69d816e345
N°2275 - Add XML delta cleanup on datamodel BC breaking changes introduced in 2.7.0
2020-02-20 17:43:14 +01:00
Vincent Dumas
4008cb7688
Add blocks to enable customization
2020-02-20 17:18:39 +01:00
Lars Hippler
41a1bede70
🌐 Update DE-dictionary for iTop 2.7.0 ( #113 )
...
Many thanks @r0ert !
2020-02-20 16:04:24 +01:00
odain
e12845e412
N°2651 - Remove test directories from lib
2020-02-20 15:03:36 +01:00
odain
b30ad45792
N°2651 - Fix missing autoload
2020-02-20 14:58:39 +01:00
odain
84a11fb3c1
added namespace + mv iTopComposer + optimize FileIterator
2020-02-20 14:56:08 +01:00
Pierre Goiffon
ee39a387db
N°2651 Remove tests from lib : browse dirs using SPL classes instead of GLOB
2020-02-20 14:56:08 +01:00
bruno DA SILVA
e3c6ac814e
N°2651 - Removal of "Test" dirs within dependencies handled using composer
2020-02-20 14:56:08 +01:00
Eric
d668d65c70
N°2772 - Fix errors during upgrade. Prevent JS Dict load for setup pages.
2020-02-20 14:45:39 +01:00
Pierre Goiffon
e21e7c9cf0
🌐 N°2795 Fix dict typos
2020-02-20 09:36:33 +01:00
bruno DA SILVA
27a0de1da1
N°2154 - fix server crash in rare cases
...
Under undetermined circumstances, `exec('php -v')` called the current script triggering an infinite loop crashing the server
problem reported by @molkobain
see: https://stackoverflow.com/questions/43728378/running-php-files-through-shell-exec
2020-02-19 15:43:33 +01:00
Molkobain
d76e54996c
PHPDoc
2020-02-19 11:54:50 +01:00
Pierre Goiffon
a4710f7542
N°2760 Abstract classes for extension API interfaces : remove return; for @return void methods
2020-02-18 18:15:45 +01:00
Eric
98a9c680c5
🐛 Updated rest example
2020-02-18 17:02:13 +01:00
Pierre Goiffon
a92157f763
N°2790 fix collapsibleLabel
...
* change icon when label closed
* fix switch in about dialog for licenses details
2020-02-18 16:34:51 +01:00
bruno DA SILVA
412f1a394f
N°2574 - 💚 fix unit test
...
The behaviours has changed since the "password_renewed_date" is not changed only after the inter/update and no more just aftyer the $oUserLocal->Set('password')
2020-02-18 14:49:53 +01:00
Molkobain
dba6e8ce1a
Fix images being too wide in HTML fields and caselogs in the end-users portal
...
Regression introduced in a previous version of iTop.
2020-02-17 16:29:21 +01:00
Molkobain
a127ca9ca0
N°2313 - Fix regression: No more validation message on password update in the end-users portal
2020-02-17 15:51:38 +01:00
Molkobain
0b5ee1e05c
Internal: Fix typo in PHPDoc
2020-02-17 11:24:20 +01:00
Eric
f94e86ecea
🐛 Add missing function
2020-02-14 17:18:00 +01:00
Pierre Goiffon
fe770f36c5
N°2634 / N°2735 Migrate dashlet user prefs to new dashlet ID format
2020-02-14 15:59:09 +01:00
Pierre Goiffon
cf83bc7364
N°2634 / N°2735 Fix dashlets identifiers : was causing prb on widget init, prefs save
...
Dashlet id now includes :
* "CUSTOM-" if dashlet is contained in a custom dashboard, nothing elsewhere
* the ID of the dashboard
- for menus : menu id escaped for HTML
- for AttributeDashboard : <class>__<field>
* the row / cell / dashlet idx
Examples :
CUSTOM-UserRequestOverview_IDrow1-col0-0
Organization__overview_IDrow1-col0-12
2020-02-14 15:59:09 +01:00
Eric
76982a2846
Revert Last change. The values are already protected at this stage.
2020-02-14 15:42:05 +01:00
bruno DA SILVA
4cedd30625
N°2574 - bugfix and UI
...
- 🐛 fix regression preventing automatic update of password_renewed_date
- 💄 add a "general information" fieldset
2020-02-13 15:23:56 +01:00
bruno DA SILVA
a86079c477
N°2154 - 🐛 fix an awful typo producing a nonsense
...
I'm sorry!
2020-02-13 15:21:01 +01:00
Eric
128a237392
N°2746 - Fix Tags configuration screen (removed EnumSet from tag editable list)
2020-02-13 12:31:22 +01:00
Eric
0ecfffe413
N°2746 - Fix export separator
2020-02-13 12:12:35 +01:00
Eric
ef3bdd63a4
N°2746 - Fix search from shortcut
2020-02-13 11:56:19 +01:00
Eric
585135c6c7
N°2758 - Keep AddCondition to avoid BC break
2020-02-13 11:56:01 +01:00
Eric
b3faa96a45
🌐 Add Trigger context label
2020-02-13 09:53:55 +01:00
Eric
6f04525cdf
🎨 cleanup code
2020-02-13 09:49:58 +01:00
Pierre Goiffon
03834fedb8
N°2369 deprecate MySQL views
2020-02-12 18:11:12 +01:00
Vincent Dumas
6bde8e867f
Move menu "Universal Search" under "Query"
2020-02-12 18:01:38 +01:00
Molkobain
0e3d195250
N°2275 - Fix XML delta computation putting flags on wrong XML levels
2020-02-12 17:40:53 +01:00
Pierre Goiffon
fae8c9edbd
N°2780 Add ContextTag::TAG_CONSOLE for ajax operations
2020-02-12 17:20:10 +01:00
Pierre Goiffon
133d267aca
N°2329 Update TCPDF to version fixing unlink bug
...
Was updated to 6.3.2 fot PHP 7.4 compat, but this version had a regression (issue 159 in the original repo)
This commit integrates 6.3.4 that includes a fix for issue 159
2020-02-12 15:23:57 +01:00
Stephen Abello
166986f336
N°2314 - Markup extensibility: Replace some hardcoded values by overloadable variables
2020-02-12 14:53:19 +01:00
Stephen Abello
f76d649d1a
Wee cleanup
2020-02-12 14:53:19 +01:00
Stephen Abello
30747b92c7
N°2755 - Security hardening
2020-02-12 14:53:19 +01:00
Stephen Abello
12ce718662
Internal: Add HtmlEntityDecode() to utils, a counterpart to HtmlEntities()
2020-02-12 14:53:19 +01:00
Molkobain
a1cdb46663
Internal: Refactor newsroom SCSS rules to real SCSS
2020-02-12 14:20:27 +01:00
Pierre Goiffon
824d8398a3
N°2634 / N°2735 Allow saving list prefs for all DashletObjectList
...
The id generated for the dashlets in the markup is the one used in the saved appUserPreferences. As no control is done during compilation nor in the Designer editor, we could have duplicates.
The first fix (081ba68a ) was adding a generated suffix, but for default dashlet this was generated each time so the id was different on every page load ! For custom dashlets as their definition was saved in a XML file it was ok.
This new fix adds a prefix containing row and col id, so every time the id is the same. No duplicates should be found in the same cell.
2020-02-12 14:07:57 +01:00
Eric
406774aa15
N°2746 - Fix Import/Export using labels or code
2020-02-12 12:08:40 +01:00
Pierre Goiffon
dd8712e2e8
📝 Add more doc for \DBObject::GetAsHTML
2020-02-12 11:44:00 +01:00
Eric
767bcdf117
N°2746 - Fix unit tests (typo)
2020-02-11 17:00:55 +01:00
Eric
5e060737df
N°2746 - Fix unit tests
2020-02-11 16:46:24 +01:00
Eric
d9bf0fe012
N°2746 - Fix breadcrumb for search of enumSet
2020-02-11 16:02:55 +01:00
Eric
93c9783b1a
N°2746 - Fix empty search for TagSet
2020-02-11 14:51:22 +01:00
Eric
e9c1467026
N°2746 - Fix "Modify All" fatal error
2020-02-11 14:35:38 +01:00
Eric
863cb4cad6
N°2758 - Allow only one condition on ValueSetDef and restore cache
2020-02-11 11:54:00 +01:00
Pierre Goiffon
94b70fc473
N°2776 ObjectFormManager : change transaction scope
...
* move ApplyStimulus & triggers out of the transaction
* move \utils::RemoveTransaction to a finally block
2020-02-11 11:36:59 +01:00
Pierre Goiffon
4dc383cba8
N°2684 Fix setup broke when upgrading with a config file from another directory
...
In the moduleschoice screens we were using a wrong approot_url !
2020-02-11 09:41:48 +01:00
Pierre Goiffon
55d8a2316a
📝 GetAttributeFlags PHPDoc revised
2020-02-11 08:34:57 +01:00
Stephen Abello
fe8f274c14
N°2314 - Markup extensibility: Replace a hardcoded value by an overloadable variable
2020-02-10 15:33:47 +01:00
Stephen Abello
72fad49c4e
N°2314 - Markup extensibility: Add default color to body node
2020-02-10 15:33:47 +01:00
Eric
888d0775e6
N°2758 - Removed ValueSetDef cache
2020-02-10 14:29:28 +01:00
Molkobain
db19f71758
N°2771 - Fix "Unknown form type" when changing user language in portal
2020-02-10 14:20:11 +01:00
Molkobain
a259443735
N°2314 - Markup extensibility: Add attribute flags as metadata to object forms
2020-02-10 13:27:36 +01:00
Pierre Goiffon
58e8ca1f50
📝 GetAttributeFlags PHPDoc
2020-02-10 09:56:31 +01:00
Pierre Goiffon
ab79426508
N°2293 some PHPDoc update
2020-02-07 18:21:02 +01:00
bruno DA SILVA
7e61917521
N°524 - password validity message can be superseded with conf
2020-02-07 17:25:17 +01:00
Molkobain
e42aab30a5
Internal: Fix regression introduced in 3d2a844f ("Close" button always displayed in object forms in IE)
2020-02-07 17:22:41 +01:00
Molkobain
a79ef0bd51
Update (massively) translations before iTop 2.7 release
2020-02-07 16:51:21 +01:00
Eric
5d88391109
N°2758 - Reset ValueSetDef cache when modifying some parameters
2020-02-07 14:27:22 +01:00
Molkobain
c56c04d84d
N°2760 - Ease API interfaces implementation through abstract classes
2020-02-06 18:09:59 +01:00
Molkobain
f2b8f50a94
Internal: Add Anne to the sample data to welcome her! 👋
2020-02-06 18:07:51 +01:00
Molkobain
9de11a29fb
PHPDoc
2020-02-06 16:25:25 +01:00
Molkobain
6537e00453
Internal: Add Matthieu to the sample data to welcome him! 👋
2020-02-06 15:53:26 +01:00
Eric
dd5f4909da
Fix warning
2020-02-06 15:01:02 +01:00
Stephen Abello
ed67df734f
N°2755 - Security hardening
2020-02-06 14:50:27 +01:00
Stephen Abello
44894526f1
N°2742 - HTML files preview are now raw text only
2020-02-06 14:27:13 +01:00
xtophe38
de78963b30
Fix DataAdministration translation to be aligned with other menus
2020-02-06 14:25:52 +01:00
bruno DA SILVA
948fd6f0ce
N°2154 - improve robustness of submitted config validator
...
thanks to @molkobain 's awful provider's using PHP 4.4 within CLI
2020-02-06 14:07:39 +01:00
bruno DA SILVA
214dbeef5b
N°2154 - var into string patterns can now also be enabled using server vars
...
- usage: $_SERVER['ITOP_CONFIG_PLACEHOLDERS']
- plus removal of useless log Trace since this code is too early in iTop's init process for this feature
2020-02-06 14:05:08 +01:00
bruno DA SILVA
f2fbd8457d
N°2498 - Authorize map extension
...
so as `.js.map` is not forbidden by apache
2020-02-06 14:05:08 +01:00
Molkobain
6a432c6a25
N°2757 - Fix count in group by dashlets
2020-02-06 12:12:27 +01:00
Molkobain
e96a8387a0
N°2750 - Regression: Fix default user profile image not shown in portal due to N°2060
2020-02-06 10:06:18 +01:00
Pierre Goiffon
f3576cffb0
📝 README : remove 2.4.* version as this branch isn't supported anymore by Combodo
2020-02-05 14:51:46 +01:00
Molkobain
c5625e6a8d
Internal: Fix setup headers style due to 71708cf
2020-02-05 14:49:33 +01:00
Molkobain
3d2a844fef
N°2313 - Markup extensibility: Improve success message display during the workflow
2020-02-05 12:10:15 +01:00
Molkobain
110a030902
PHPDoc
2020-02-05 12:10:15 +01:00
Stephen Abello
5ccd885607
Remove DB Tools from excluded modules
2020-02-05 12:04:26 +01:00
Stephen Abello
e5c6efbe69
Merge branch 'master' into develop
...
# Conflicts:
# README.md
2020-02-05 11:24:44 +01:00
Stephen Abello
bd083d632f
Update readme for 2.6.3 release
2020-02-05 11:22:39 +01:00
Stephen Abello
65b8132914
N°2314 - Markup extensibility: Fix collapsible icons in "About iTop" modal
2020-02-05 09:47:27 +01:00
Eric
3c2130aa72
N°2321 - Fix SQL request generation for inherited magic attributes
2020-02-04 15:54:03 +01:00
Stephen Abello
e70a2f75d3
N°2748 - Fix regression introduced by 71f5d29c, CKEditor's paragraph spacing wasn't coherent with how it's displayed in iTop
2020-02-04 11:41:10 +01:00
Molkobain
fe8e6ba4b0
N°2314 - Markup extensibility: Fix UI elements not using main colors variables
2020-02-04 10:32:57 +01:00
Eric
008614fde6
N°2321 - Fix SQL request generation for inherited magic attributes
2020-02-04 10:28:35 +01:00
Molkobain
ac6e60f5a1
N°2595 - Reorganize admin. console menus: Change new menu groups IDs to avoid collision with existing extensions
2020-02-04 09:50:11 +01:00
Stephen Abello
bf18d623d6
N°2314 - Markup extensibility: Add 2 additional themes for the backoffice
...
Adds a colored top bar to easily identify different environments (tests, production, ...)
2020-02-03 16:17:46 +01:00
Stephen Abello
10d04756ee
N°2314 - Markup extensibility: Fall back on iTop's default theme when a non existing theme is selected
2020-02-03 15:12:59 +01:00
bruno DA SILVA
6e927114e0
N°2154 - 💚 fix tests
...
- the correct file is now versioned
2020-02-03 12:04:51 +01:00
Pierre Goiffon
682c24a873
N°2293 DBUpdate : save changed fields and corresponding previous values ( #111 )
...
* N°2293 DBUpdate : save changed fields and corresponding previous values for callbacks
* update PHPDoc
* remove m_aChanges and ListChangesUpdated() that were introduced in 2.7.0-beta
* add m_aPreviousValuesForUpdatedAttributes and ListPreviousValuesForUpdatedAttributes()
* :memo Woops forgot to change one PHPDoc
* 📝 Some more PHPDoc O:)
* 📝 Add more info in .doc README
* 📝 Well, again some PHPDoc O:)
* 📝 Replace inline @link by @see
@link are for URI, see https://docs.phpdoc.org/latest/references/phpdoc/inline-tags/link.html
2020-01-31 18:01:26 +01:00
bruno DA SILVA
d4b4ced649
🌐 update dictionaries
...
- set the translation as requested by Q&A
2020-01-31 17:29:38 +01:00
bruno DA SILVA
c2589492d9
📝 documentation generator dependencies handling improvement
...
- ignore /.doc/vendor
- uses a lock file (at /.doc/composer.lock)
2020-01-31 17:29:38 +01:00
bruno DA SILVA
15c9cf926e
2154 - preserve "var" in conf
...
- add possibility to inject var using string patterns (ie: `'%env(DB_HOST)?:localhost%`)
- on WriteToFile, preserve the non interpreted value when the interpreted value is kept the same
- added unit tests for both behaviours
- minor bugfix (default value in comment was wrong) and code readability improvements
2020-01-31 17:29:37 +01:00
Molkobain
78d4c8c7c7
Internal: Fix typo
2020-01-31 17:22:57 +01:00
Eric
d9e8eed084
💚 Fix CI on TagSet search (request have changed)
2020-01-31 16:13:59 +01:00
Eric
ebe86d09ee
N°985 - Add applicable contexts on Trigger (logs)
2020-01-30 16:18:49 +01:00
Eric
5e5d368299
N°2657 - MTP : Progress Bar has disappeared (Search exact match)
2020-01-30 16:02:16 +01:00
Molkobain
f990a83453
N°2060 - Migrate error page to the Symfony framework
2020-01-30 13:56:32 +01:00
Molkobain
c6325dce8e
Internal: Fix autoloader path for Symfony bin/console utility
2020-01-30 13:56:32 +01:00
Eric
bbca1625fb
N°2657 - MTP : Progress Bar has disappeared (Search exact match)
2020-01-30 12:31:22 +01:00
Pierre Goiffon
53975d1d8f
📝 Replace inline @link by @see
...
@link are for URI, see https://docs.phpdoc.org/latest/references/phpdoc/inline-tags/link.html
2020-01-30 09:35:25 +01:00
Pierre Goiffon
1358bf9b7f
📝 Well, again some PHPDoc O:)
2020-01-30 09:25:53 +01:00
Pierre Goiffon
7c17be4db6
📝 Add more info in .doc README
2020-01-30 09:22:38 +01:00
Pierre Goiffon
367a92b711
📝 Some more PHPDoc O:)
2020-01-30 08:39:18 +01:00
Pierre Goiffon
0a3201dd41
:memo Woops forgot to change one PHPDoc
2020-01-29 18:43:46 +01:00
Pierre Goiffon
d82690dd84
N°2293 DBUpdate : save changed fields and corresponding previous values for callbacks
...
* update PHPDoc
* remove m_aChanges and ListChangesUpdated() that were introduced in 2.7.0-beta
* add m_aPreviousValuesForUpdatedAttributes and ListPreviousValuesForUpdatedAttributes()
2020-01-29 18:36:46 +01:00
Eric
7f9e4385ac
N°2657 - MTP : Progress Bar has disappeared (support any code length)
2020-01-29 18:01:17 +01:00
Stephen Abello
aa3e284af3
Update README for 2.7.0-beta2
2020-01-29 16:59:16 +01:00
Stephen Abello
a941e5f752
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2020-01-29 11:49:38 +01:00
Stephen Abello
b1878f7265
Update version number for 2.7.0-beta2
2020-01-29 11:49:20 +01:00
Molkobain
b106a54c50
N°2314 - Markup extensibility: Add 2 additional themes for the backoffice
...
Basic color changes to identify different environments (tests, production, ...)
2020-01-29 11:04:20 +01:00
Molkobain
002da0b387
N°2314 - Markup extensibility: Rework some SCSS variables
2020-01-29 11:04:20 +01:00
acognet
6b9e723a45
Merge remote-tracking branch 'origin/develop' into develop
2020-01-29 09:55:44 +01:00
acognet
b54e457cbb
N°2038 - New dashlet Kanban
2020-01-29 09:54:56 +01:00
jbostoen
e750dd53d8
NL translations for iTop 2.7.0 ( #94 )
...
Made by @jbostoen & @Hipska in PR #94 . Many thanks to them !
2020-01-29 09:51:11 +01:00
Eric
da6a55504e
N°985 - AttributeEnumSet (portal support)
2020-01-28 17:37:17 +01:00
Eric
b58356c42e
N°985 - Add applicable contexts on Trigger (search)
2020-01-28 17:37:17 +01:00
Molkobain
524e43b8c4
N°2313 - Markup extensibility: Add metadata on session messages in the end-users portal
2020-01-28 17:27:32 +01:00
Eric
a80bd6f2b9
N°985 - Add applicable contexts on Trigger (display read-only)
2020-01-28 15:29:12 +01:00
Eric
08eb9ee630
🌐 update dictionaries for 2.7.0-beta2
2020-01-28 15:29:12 +01:00
Eric
05485b838e
N°985 - Add applicable contexts on Trigger (display read-only)
2020-01-28 15:29:12 +01:00
Eric
029fe6882d
N°985 - Add applicable contexts on Trigger (Fix regression)
2020-01-28 15:29:12 +01:00
Eric
b31eb6aab9
Comment
2020-01-28 15:29:12 +01:00
Molkobain
a96c194676
N°2313 - Markup extensibility: Add CSS classes on object details and lists in the end-users portal
2020-01-28 15:25:12 +01:00
bruno DA SILVA
0d85331bca
1627 - Ticket ref sometimes duplicate
...
🐛 INSERT/UPDATE do not require to free the results
2020-01-28 11:59:04 +01:00
Pierre Goiffon
e9dec8ae05
N°330 Attachments as table : fix table sorting on size and date
...
* portal : use data-order attribute for the DataTable plugin (https://datatables.net/manual/data/orthogonal-data )
* console : add textExtraction override for the attachments table (https://mottie.github.io/tablesorter/docs/example-option-text-extraction.html )
2020-01-28 10:11:29 +01:00
bruno DA SILVA
6a6a0ffa24
1627 - Ticket ref sometimes duplicate
...
🐛 fix ref. generation when inside a transaction (by opening a new connection).
note: the portal make uses of such a transaction.
2020-01-27 17:58:30 +01:00
Molkobain
87623fba3d
PHPDoc
2020-01-27 16:58:55 +01:00
Molkobain
a7619f2820
N°2313 - Markup extensibility: Add metadata on admin. console object lists
2020-01-27 16:58:55 +01:00
bruno DA SILVA
cff53d71ba
N°2154 & N°2720 & N°2684 - config integrity during setup
2020-01-27 15:21:50 +01:00
Molkobain
71708cfbc7
Internal: Fix setup headers size
2020-01-27 14:54:53 +01:00
acognet
e05b3a5fb9
N°2618 - Fix missing scroll bar in DataModel Viewer for class with large number of attributs
2020-01-27 10:47:19 +01:00
acognet
bfcb1fdb30
N°2618 - Fix missing scroll bar in DataModel Viewer for class with large number of attributs
2020-01-27 10:47:19 +01:00
Eric
cc4e1ea104
N°985 - Add applicable contexts on Trigger (Add portal contexts)
2020-01-24 17:43:59 +01:00
Molkobain
5485897bbb
N°2313 - Markup extensibility: Fix raw value and attribute label not always being escaped
2020-01-24 17:38:18 +01:00
Molkobain
27f343e543
N°330 - Attachments: Align table rendering to linkset tables rendering
2020-01-24 17:02:02 +01:00
Molkobain
cca79735fc
N°330 - Attachments: Fix empty "Delete" column displayed all the time
2020-01-24 17:02:02 +01:00
Molkobain
c48bbfd32a
N°2313 - Markup extensibility: Add metadata on attachments
2020-01-24 17:02:02 +01:00
Molkobain
3ae2058f6f
N°2314 - Markup extensibility: Refactor utils::GetCSSFromSASS() to enable SCSS compilation out of a file
2020-01-24 17:02:02 +01:00
Molkobain
0a63568715
PHPDoc
2020-01-24 17:02:02 +01:00
Molkobain
f878eea68d
N°330 - Attachments: Update MS Office and OpenOffice file icons with more modern versions
2020-01-24 17:02:02 +01:00
Eric
8ad2b8091c
N°2657 - MTP : Progress Bar has disappeared
2020-01-23 11:28:52 +01:00
bruno DA SILVA
d6ca08efb8
N°2730 - Cannot log callstack with callback into EventIssue
2020-01-22 17:37:44 +01:00
Molkobain
ba8a2c1b15
N°2710 - Fix setup crash due to PHP notices (regression introduced in 59678955)
2020-01-22 13:32:31 +01:00
Molkobain
bd9da07734
Merge branch 'support/2.5'
2020-01-22 09:55:50 +01:00
Molkobain
3dbbf296b8
Exclude combodo-db-tools module from packages by default
2020-01-22 09:10:54 +01:00
bruno DA SILVA
0ae0336e04
N°1627 - Ticket ref sometimes duplicate
...
🐛 Ticket creation no more crash if the current user have limited read access
2020-01-21 18:31:09 +01:00
Molkobain
8df0ef6af9
N°2723 - Fix double scrollbar in search criterion
2020-01-21 17:40:11 +01:00
Molkobain
d77c77c03b
PHPDoc
2020-01-21 17:20:12 +01:00
Molkobain
5967895561
N°2710 - Fix extremely slow page load for first user after setup (regression introduced in N°2314)
2020-01-21 17:19:16 +01:00
Molkobain
6e754d4fa5
Setup: Fix graphiz detection feedback message on Windows systems
2020-01-21 15:50:33 +01:00
Molkobain
165fd0e700
N°2314 - Setup: Improve UI of user message when CRON is running
2020-01-21 15:35:09 +01:00
Molkobain
d100ce8005
PHPDoc and code formatting
2020-01-21 15:35:09 +01:00
Eric
770f5a7b67
N°985 - Add applicable contexts on Trigger (order values in DB)
2020-01-21 14:55:03 +01:00
Molkobain
a993f6a80b
PHPDoc
2020-01-21 14:19:45 +01:00
Molkobain
c8bb710d21
N°2314 - Markup extensibility: Fix regression introduced in the previous commit (used a PHP 7.x function)
2020-01-21 14:17:44 +01:00
Molkobain
d963fbd8cf
N°2314 - Markup extensibility: Fix crash when no <theme> defined in datamodel
2020-01-21 12:20:59 +01:00
Eric
beda8e2810
N°985 - Add applicable contexts on Trigger (fix MTP warnings)
2020-01-21 12:01:42 +01:00
Pierre Goiffon
083f8d69c2
Revert "N°2618 DataModel viewer : fix no vertical scrollbar in MSIE"
...
Was introducing a regression in Chrome & Fx (cannot change tab anymore)
This reverts commit 8a666b09d6 .
2020-01-21 10:51:16 +01:00
Eric
1c16eeb5e4
N°2240 - Supportability - Maintenance mode (setup reset maintenance mode)
2020-01-21 10:27:47 +01:00
Stephen Abello
ecc0b57b31
Merge branch 'master' into develop
...
# Conflicts:
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/itop-attachments/module.attachments.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2020-01-20 16:42:42 +01:00
Stephen Abello
be9f6eff29
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2020-01-20 16:41:44 +01:00
Stephen Abello
50a8af4082
Update version number for 2.6.3
2020-01-20 16:30:51 +01:00
Stephen Abello
6a1125875b
Merge branch 'support/2.5'
...
# Conflicts:
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/itop-attachments/module.attachments.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2020-01-20 16:10:21 +01:00
Stephen Abello
878c23892d
Update version number for 2.5.4
2020-01-20 15:59:08 +01:00
Eric
900e8ac6d7
N°985 - Add applicable contexts on Trigger
2020-01-20 15:50:08 +01:00
Stephen Abello
248dab9289
N°2633 - Security hardening
2020-01-20 15:46:04 +01:00
Molkobain
2fcea4d02e
N°2313 - Markup extensibility: Add field label in its metadata
2020-01-20 14:43:40 +01:00
Stephen Abello
1927fc743a
N°2314 - Fix left padding for menu entries
2020-01-20 11:20:56 +01:00
Molkobain
6aff09eaf7
N°2708 - Internal: Fix regression introduced with N°2313 "Undefined index 'prefix'"
2020-01-20 11:16:07 +01:00
Molkobain
54e9830a3b
PHPDoc
2020-01-20 09:53:22 +01:00
Molkobain
a45819dbf0
N°2682 - Portal: Fix transaction ID not being removed
2020-01-17 17:40:37 +01:00
Molkobain
e8aaec5789
N°2060 - Regression: Fix missing PORTAL_ID constant
2020-01-17 17:33:52 +01:00
Molkobain
d16c0ffef9
N°2313 - Markup extensibility: Add metadata on admin. console object creation forms
2020-01-17 14:16:31 +01:00
Molkobain
24ad593dc8
N°2313 - Markup extensibility: Add password attributes to exclude list in metadata
2020-01-17 09:03:14 +01:00
Molkobain
0b67828ab9
Add comments in standard end-users portal XML
2020-01-17 09:03:14 +01:00
Eric
8a1a78444d
N°2249 - Supportability - Updater module (unified version name)
2020-01-16 18:13:58 +01:00
Eric
4552bc0778
N°2249 - Supportability - Updater module (changed version name in the priv_module_install table)
2020-01-16 17:42:02 +01:00
Eric
3a113e31fb
N°2249 - Supportability - Updater module (run setup when error occurs)
2020-01-16 17:25:28 +01:00
Pierre Goiffon
8a666b09d6
N°2618 DataModel viewer : fix no vertical scrollbar in MSIE
...
The scrollbar is present on the right side but after viewport limit so not visible !
Can't change div.ui-layout-pane.ui-layout-center width as it is calculated dynamically by JS Layout...
So added another container with a margin. The CSS rules are added to MSIE only using the media query tip :/
2020-01-16 16:40:36 +01:00
Pierre Goiffon
0d9dc34a08
Schema.php : replace <br/> to <br> (might break on MSIE)
2020-01-16 15:06:04 +01:00
Pierre Goiffon
c7ca1eeab5
🎨 Code formatting on pages/schema.php
2020-01-16 15:06:04 +01:00
Eric
02265135e3
N°2249 - Supportability - Updater module (run setup when error occurs)
2020-01-16 11:43:17 +01:00
Eric
2c1bf665c3
N°2249 - Supportability - Updater module (Add read-only warning)
2020-01-16 11:34:50 +01:00
Molkobain
60b6fcc783
N°2313 - Markup extensibility: Better display of success messages on form validation
2020-01-16 11:34:08 +01:00
Molkobain
53adb37f43
N°2060 - Fix session messages and SCSS compilation services being cached
2020-01-16 11:34:08 +01:00
Molkobain
a6fe564a95
Add comments in standard end-users portal XML
2020-01-16 11:34:08 +01:00
Pierre Goiffon
4945f25d49
N°2602 Portal : fix no more border around new caselog editor
...
With the new version of CKE N°2271, container is span.cke on MSIE instead of div.cke
2020-01-16 11:27:24 +01:00
Eric
e5f3daf88a
N°2249 - Supportability - Updater module (Add read-only warning)
2020-01-16 11:19:30 +01:00
Eric
cc3e6d64e1
N°2249 - Supportability - Updater module (Allow to run setup in case of failure)
2020-01-16 10:49:49 +01:00
Eric
8024aad43d
N°2249 - Supportability - Updater module (Add read-only warning)
2020-01-16 10:47:37 +01:00
Pierre Goiffon
757dbb8b25
N°2311 login page : add autofocus attribute to the id field
...
https://caniuse.com/#feat=autofocus
2020-01-16 10:38:08 +01:00
Eric
b370deaac9
N°2313 - Markup extensibility: Add support for both code AND title in admin. console tabs
2020-01-16 09:56:22 +01:00
Eric
026b7e1836
N°2249 - Supportability - Updater module (split ajax calls)
2020-01-15 17:09:31 +01:00
Eric
d03b924240
N°2249 - Supportability - Updater module (split ajax calls)
2020-01-15 16:58:36 +01:00
Eric
97a047e38f
N°2249 - Supportability - Updater module (split ajax calls)
2020-01-15 16:42:47 +01:00
Eric
5be800cfce
N°2249 - Supportability - Updater module (split ajax calls)
2020-01-15 15:48:54 +01:00
Molkobain
956b597e50
Fix how user data is retrieved for "Form Prefill" in the end-users portal
2020-01-15 15:16:50 +01:00
Molkobain
57100dee9f
N°2060 - WIP: Fix cached part of the portal (sync. commit)
2020-01-15 12:53:40 +01:00
Eric
c3cc1afec1
🙈 remove unnecessary info
2020-01-15 11:37:10 +01:00
Pierre Goiffon
7fe24f58f3
N°330 Display attachments as table : portal remove author column
2020-01-15 10:26:25 +01:00
Molkobain
e4160c7cf2
N°2702 - Portal: Fix origin modal not closing when switching to editing of an object
2020-01-15 10:15:36 +01:00
Molkobain
7d87768ec4
PHPDoc and warnings suppression
2020-01-15 10:15:36 +01:00
Molkobain
9946e6c41a
Fix typo
2020-01-15 10:15:36 +01:00
Stephen Abello
02b483e33e
Setup's cursor style on label wasn't present in .scss file and was lost since 7b6481e
2020-01-15 10:14:59 +01:00
Stephen Abello
7b6481efbd
N°2112: Setup alert message introduced by 83ba909 stopped working since 797893d ⌨ 🐒 🐒
2020-01-15 10:09:46 +01:00
Molkobain
efef582119
N°2306 - Security hardening (Fix regression introduced in f3b66a44, thanks to @bruno-ds !)
2020-01-15 08:42:35 +01:00
Molkobain
5056e561fe
PHPDoc
2020-01-15 08:42:35 +01:00
Molkobain
4400cfde62
N°2313 - Markup extensibility: Update usages of admin. console tabs to have codes and titles
2020-01-15 08:42:35 +01:00
Molkobain
5a39581c60
N°2313 - Markup extensibility: Add support for both code AND title in admin. console tabs
2020-01-15 08:42:35 +01:00
Pierre Goiffon
4eab0e6450
N°330 Display attachments as table : portal improvements
...
* display attachments count in section title, updated on each add/delete
* remove "no attchments message" on adding new attachment
2020-01-14 11:56:20 +01:00
Molkobain
f3b66a44ee
N°2306 - Security hardening
2020-01-14 11:50:50 +01:00
Molkobain
558f108520
N°2314 - Change breadcrumb icons color to black instead of Combodo's orange
2020-01-14 11:09:01 +01:00
Molkobain
07a93d12e2
Cleanup: Remove old/unused images/CSS files (Exhaustive list in migration notes)
2020-01-14 11:09:01 +01:00
Eric
ce127278bb
N°2434 - Track field Comment in core/delete - API REST
2020-01-14 10:46:21 +01:00
Molkobain
887946144c
N°2696 - Upgrade ArchiveTar to v1.4.9 (PHP 7.4 compatibility)
2020-01-14 10:35:53 +01:00
Molkobain
cc887c29fd
N°2696 - Upgrade SCSSPHP to v1.0.6 (PHP 7.4 compatibility)
2020-01-14 10:35:53 +01:00
Molkobain
460836852e
N°2696 - Upgrade SwiftMailer to v5.4.12 (Allow explicit tls1.0, tls1.1, tls1.2 for startTLS)
2020-01-14 10:35:53 +01:00
Eric
208d7ee7ba
N°2093 - ApplyStimulus return true when stimuli is not applicable
2020-01-14 10:27:55 +01:00
Eric
3d92b73ae5
:globe-with-meridian: changed filesystem into files for itop-core-update
2020-01-14 10:14:03 +01:00
Stephen Abello
deddb0824b
N°2315: Forgot password sent page needed stylization
2020-01-14 09:26:58 +01:00
Vladimir Kunin
3718899663
🌐 Update Russian translations for 2.7.0-beta
2020-01-13 17:52:15 +01:00
Pierre Goiffon
7f30d74f30
N°2269 Update Font Awesome to 5.12.0
2020-01-13 10:47:57 +01:00
Eric
21199fce34
N°2240 - Supportability - Maintenance mode exit on MTP or core update error
2020-01-10 15:32:29 +01:00
Pierre Goiffon
ad821e7d9c
N°2651 rollback gitignore for lib tests dirs
...
Too dangerous ! We'll work properly on this but for 2.8
2020-01-10 15:23:15 +01:00
Eric
881fc2a1de
N°2240 - Supportability - Maintenance mode exit on MTP or core update error
2020-01-10 14:14:20 +01:00
Vincent Dumas
44ee6baddb
N°2675: Fix AdminTools DataSynchro creation
...
User with a profile enabling write access on the group id="AdminTools" was not able to create a DataSynchro also it should have been.
2020-01-09 16:07:47 +01:00
Federico Lazcano
42d782740e
Paste error!
2020-01-09 10:05:22 +01:00
Federico Lazcano
cf16229948
🌐 Typos and new translations in ES CR
2020-01-09 10:05:22 +01:00
Federico Lazcano
a25427f4c6
Change from alias to real name
...
Sorry @Molkobain i changed my mind :-|
2020-01-09 10:01:03 +01:00
Federico Lazcano
04b2f7c836
🌐 Added ES CR translations
2020-01-09 09:28:36 +01:00
Molkobain
0f917af55a
👥 Add @lazki to our contributors list. Thanks! 👏
2020-01-09 09:12:27 +01:00
Federico Lazcano
daaed4696e
🌐 Typo in ES CR Translation
2020-01-09 09:08:34 +01:00
Pierre Goiffon
5f52c273d9
N°2329 PHP 7.4 compat : update setup requirements
...
This PHP version should be ok : we will give it a try during the beta program
2020-01-09 09:05:24 +01:00
Molkobain
b8d35e4783
👥 Add Guy Couronné (@GurneyHallack) to our contributors list!
2020-01-08 19:53:12 +01:00
Molkobain
149dff4b4d
N°2313 - Markup extensibility: Add markup hooks on BrowseBrick and ManageBrick tables
2020-01-08 19:48:45 +01:00
Molkobain
f235e0cd66
Update copyright
2020-01-08 19:48:45 +01:00
Pierre Goiffon
e47e02932a
N°2329 PHP 7.4 compat : fix warnings in TCPDF
...
Integrate last TCPDF fork version (6.3.2)
2020-01-08 17:50:51 +01:00
Eric
4544bba652
N°2240 - Supportability - Maintenance mode (setup CRON message)
2020-01-08 17:29:53 +01:00
Eric
9445e12254
MSIE 11 minimum
2020-01-08 17:23:36 +01:00
Eric
951945a607
N°2240 - Supportability - Maintenance mode (Better REST/Export message)
2020-01-08 17:17:34 +01:00
Eric
34f8fff01c
Fetch() ignore row when sub-class does not exist
2020-01-08 16:38:11 +01:00
Stephen Abello
8d45e48ce1
🥅 N°1192 Portal: Increase navigation rules checks robustness
2020-01-08 15:31:19 +01:00
Eric
ed26f1cecc
Fix menu creation flags
2020-01-08 15:10:10 +01:00
Molkobain
bc298afda3
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# datamodels/2.x/combodo-db-tools/cs.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/da.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/datamodel.combodo-db-tools.xml
# datamodels/2.x/combodo-db-tools/db_analyzer.class.inc.php
# datamodels/2.x/combodo-db-tools/dbtools.php
# datamodels/2.x/combodo-db-tools/de.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/default.css
# datamodels/2.x/combodo-db-tools/default.scss
# datamodels/2.x/combodo-db-tools/en.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/es_cr.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/fr.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/hu.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/it.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/ja.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/module.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/nl.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/pt_br.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/ru.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/tr.dict.combodo-db-tools.php
# datamodels/2.x/combodo-db-tools/zh_cn.dict.combodo-db-tools.php
2020-01-08 12:03:55 +01:00
Molkobain
4f0e3430c0
Merge remote-tracking branch 'origin/support/2.5'
2020-01-08 11:58:15 +01:00
Molkobain
3347f400b8
Internal: Revert files deleted by mistake 🙈
2020-01-08 11:57:29 +01:00
Molkobain
6082308e20
Add combodo-db-tools/1.0.7 module as a default module
2020-01-08 11:40:35 +01:00
odain
1fc290587c
N°2154: Fix security breach (scratch install usecase)
2020-01-08 10:10:49 +01:00
Molkobain
77fa02fcf9
PHPDoc and warnings suppression
2020-01-08 10:06:03 +01:00
Molkobain
d445551031
N°1986 - Fix regression introduced in b91183e9, creation form should never be read-only
2020-01-08 10:05:33 +01:00
Molkobain
ebfe9da464
N°2306 - Security hardening
2020-01-07 20:59:09 +01:00
odain
fdd79e91f0
N°2154: Fix security breach (scratch install usecase)
2020-01-07 17:44:39 +01:00
Molkobain
94a09493b0
N°2306 - Security hardening (BC break for some portal extensions, see migration notes)
2020-01-07 17:40:03 +01:00
Molkobain
56dbbb09dc
Fix dependencies between modules
2020-01-07 17:00:19 +01:00
Pierre Goiffon
f019e05af5
N°2042 deprecated chrono extensivity
2020-01-07 16:07:25 +01:00
bruno DA SILVA
838c4f123c
👌 peer review
...
mostly coding convention,
thanks @molkobain
2020-01-07 15:34:27 +01:00
bruno DA SILVA
2043010aad
N°2293 - API OnDBUpdate and AfterUpdate need modified fields and previous data
...
- add a getter for the protected property DBObject::$m_aChanges
2020-01-07 15:05:29 +01:00
bruno DA SILVA
cda18b950e
N°524 - Password policy
...
- removal of a forgotten console.debug
2020-01-07 14:28:20 +01:00
Molkobain
acf28ca4aa
N°2306 - Security hardening
2020-01-07 13:54:16 +01:00
Eric
864ded2102
Refactor Core Update (+8 squashed commit)
...
Squashed commit:
[b907bb759] Refactor Core Update
[5da2473aa] Refactor Core Update
[3fce45615] Refactor Core Update
[5f050a828] Refactor Core Update
[4b9b85174] Refactor Core Update
[f637ed358] Refactor Core Update
[56543edce] Refactor Core Update
[7f06900ef] Refactor Core Update
2020-01-07 10:00:14 +01:00
Eric
5cdc58846b
Allow browsing developed OQL class tree
2020-01-07 10:00:14 +01:00
Eric
45cd96eb0d
More informative message when class does not exist
2020-01-07 10:00:14 +01:00
Eric
c8335499fd
Allow browsing developed OQL class tree
2020-01-07 10:00:14 +01:00
Eric
7f3efe59ab
Refactor Core Update (+3 squashed commit)
...
Squashed commit:
[e1cbfe93f] Refactor Core Update
[41ec2adf7] Refactor Core Update
[ca6cefca3] Refactor Core Update
2020-01-07 10:00:13 +01:00
bruno DA SILVA
69551378c2
n°524 - password policy
...
- ajax message is now translated in the user's language
- prevent the form submission if the password policy is not respected
2020-01-06 18:33:47 +01:00
odain
f3fd4bde87
💚
2020-01-06 16:09:41 +01:00
bruno DA SILVA
c115f64cb5
N°2154 - Security breach
2020-01-06 15:31:31 +01:00
Stephen Abello
ee61c1e8fb
N°524: Fix style for inputs' feedback on "change password" page
2020-01-06 13:51:40 +01:00
bruno DA SILVA
e716fb118b
N°2574 - enable Password expiry
2020-01-06 12:14:34 +01:00
bruno DA SILVA
b0c76346a5
N° 524 - password policy
...
better colors for : "change pwd" page: add feedback during the password typing
2020-01-06 11:45:48 +01:00
Pierre Goiffon
56807fd941
Person sample file : fix Descartes email
...
Fix typo introduced in 906e309791
2020-01-06 11:17:57 +01:00
Molkobain
b56f248b79
👥 Add Pimkie to our contributors list (BR / IT translations)
2020-01-06 09:50:15 +01:00
bruno DA SILVA
7a85201a07
524 - password policy
...
"change pwd" page: add feedback during the password typing
2020-01-06 09:31:28 +01:00
Purple Grape
97ebffd5fb
improved chinese translations
...
1 improved chinese translations
2 fix some missing enries
3 correct line number against english language
2020-01-06 08:43:25 +01:00
Eric
46c239c211
typo
2020-01-03 16:40:49 +01:00
Vincent Dumas
906e309791
Replace Erri De Luca by René Descartes
2020-01-03 11:10:44 +01:00
bruno DA SILVA
4ad1ca0fc6
add option classmap-authoritative to composer.json
2020-01-02 14:19:00 +01:00
bruno DA SILVA
015955f396
N°2306 - Security hardening
2019-12-30 17:31:50 +01:00
Pierre Goiffon
9bee1905c8
N°2329 PHP 7.4 compat : remove get_magic_quotes_gpc/get_magic_quotes_runtime calls
...
Methods are now deprecated and since PHP 5.4 were always returning false
2019-12-24 17:30:12 +01:00
Pierre Goiffon
8ab157eae4
N°2329 PHP 7.4 compat, AttributeDefinition : fix visibilities of members called by AttributeDefinition::__construct
...
Not enough to get rid of child classes constructors though :/
2019-12-24 15:28:36 +01:00
Molkobain
17978b829b
Internal: Simplify classes FQN
2019-12-24 15:08:45 +01:00
Molkobain
4ddb23cd7c
N°2654 - Portal: Fix filter on external key when coming from filter brick
2019-12-24 15:08:45 +01:00
Pierre Goiffon
e27eb7419e
N°2329 PHP 7.4 compat, AttributeDefinition : add __construct() to child classes
...
Shouldn't be necessary but if not present PHP 7.4.0/7.4.1 is crashing when executing new Attribute...(...)
2019-12-24 12:22:49 +01:00
Pierre Goiffon
64ef572429
🎨 AttributeDefinition : some little inspections fixes, and fix misordered function modifiers
...
According to PSR, we should use public static and not static public
See https://www.itophub.io/wiki/page?id=latest%3Acustomization%3Acoding_standards
2019-12-24 12:22:49 +01:00
Pierre Goiffon
2f81e0fd6f
N°2329 PHP 7.4 compat : remove deprecated array with curly braces
2019-12-23 18:44:52 +01:00
odain
987f1f7dbf
N°2568 - Log_KPI viewer in the console - Fix broken links
2019-12-23 17:17:10 +01:00
Pierre Goiffon
b53c91f7f3
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# Jenkinsfile
# setup/setuputils.class.inc.php
2019-12-23 11:34:55 +01:00
Pierre Goiffon
5fce2a2c1c
Setup : fix MySQL TLS wiki URL
2019-12-23 11:27:56 +01:00
Pierre Goiffon
13d31ac211
utils::GetDefaultUrlAppRoot : make comparison case insentitive, add a test
2019-12-23 11:06:29 +01:00
Pierre Goiffon
57ae29cf2f
\SetupPage::error : remove "error" title as existing calls already add it
2019-12-23 09:54:07 +01:00
Pierre Goiffon
0b3895e39e
Core update : fix CanUpdateCore result never displayed on server with warning enabled
...
Was caused by a call to :
\Combodo\iTop\FilesInformation\Service\FilesInformationUtils::Scan
With path set to ''. Made from :
\Combodo\iTop\FilesInformation\Service\FilesInformation::CanUpdateCore
2019-12-20 18:37:51 +01:00
Pierre Goiffon
0d231d9b94
N°2651 Remove lib test files from index
2019-12-20 17:07:20 +01:00
Molkobain
27a6abeeb3
Internal: Add Benjamin to the sample data to welcome him!
2019-12-20 12:21:02 +01:00
Pierre Goiffon
c75e6960a7
N°2651 Remove lib test files from index
2019-12-20 11:57:18 +01:00
Pierre Goiffon
4766ca3fd0
N°2650 fix run_query error handling incompatible with PHP < 7.3.0
2019-12-20 09:21:00 +01:00
odain
523dd97eca
N°2570 Update iTop license list
2019-12-19 16:40:17 +01:00
bruno DA SILVA
c09bd2bfc6
2626 - log modularity: filterable logs using minimal log level per channel
...
🔊 Adding log level Trace, which is not logged by default (as for Debug)
2019-12-19 11:17:18 +01:00
Molkobain
bd662eaf19
Update README to add 2.7.0-beta section
2019-12-18 16:47:11 +01:00
Pierre Goiffon
ff75ecfe27
💄 Setup : add styling on prerequisites summary title
2019-12-18 11:12:21 +01:00
Pierre Goiffon
54f8b74383
📝 restore WizardStep documentation
...
Do not add documentation in a doc block containing @copyright O:)
2019-12-18 11:05:41 +01:00
Pierre Goiffon
18a506673f
💄 Setup : restore label{ cursor:pointer;}
2019-12-18 10:44:28 +01:00
Pierre Goiffon
a108be8517
N°330 Fix first column not centered when creating attachment on new ticket
2019-12-18 09:56:33 +01:00
Eric
3e57c3b1e9
N°2249 - Supportability - Updater module (application upgrade)
2019-12-18 09:45:34 +01:00
Stephen Abello
f18e27a183
N°2314 Setup progress bar is now cuter (following 01cb88a)
2019-12-18 09:40:48 +01:00
Pierre Goiffon
358efb0f2f
N°2518 Change log level for non existent legacy log file when trying to rename
2019-12-18 09:28:11 +01:00
bruno DA SILVA
723fc917f1
🐛 change back to an authoritative autoloader
2019-12-18 09:25:35 +01:00
Pierre Goiffon
01f34eea29
N°330 Attachments display as table : portal. Table is now responsive, attachment section is collapsable (collapsed by default)
2019-12-17 18:14:21 +01:00
bruno DA SILVA
705d941979
⬆️ Upgrading dependencies
2019-12-17 17:43:18 +01:00
Stephen Abello
691acb45e6
N°2314 2 css variables were not overridable
2019-12-17 15:23:02 +01:00
Pierre Goiffon
97e4ff30ff
N°330 attachments size column : right align (both on console and portal)
...
Allows easier comparison to see bigger files
2019-12-17 15:12:28 +01:00
Pierre Goiffon
34c76c735a
N°330 Attachments display as table : portal. Various improvements
...
* update CSS for table layout (vertical align, change text-align)
* tooltip : fix max size was not used anymore (tooltip was removing the style attributes)
* tooltip : fix tooltip always available
* delete button background color set to same as validate button
* remove "type" column
* reduce attachment line height
2019-12-17 15:08:22 +01:00
Pierre Goiffon
47d8e35639
N°330 Improve \ormDocument::GetFormattedSize
...
* Fix typo in method name (many thanks @jbostoen !)
* Use \utils::BytesToFriendlyFormat
2019-12-17 15:08:22 +01:00
odain
d4dc739b30
Finalize license update file
2019-12-17 14:56:13 +01:00
acognet
b84859b07e
optimizing the display of the label in FieldsExpression
2019-12-17 13:07:21 +01:00
bruno DA SILVA
3f154fa765
2626 - log modularity: filterable logs using minimal log level per channel
...
🐛 logs are no more written twice.
2019-12-17 12:33:34 +01:00
Eric
f31e32d7a9
N°2249 - Supportability - Updater module (disable submit when no file provided)
2019-12-17 11:53:29 +01:00
Molkobain
1589535a45
Internal: Add automatic refresh of the maintenance page every 30s to redirect user to iTop when done
2019-12-17 11:48:27 +01:00
odain
53353ec9e1
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2019-12-17 11:44:17 +01:00
odain
a601b1c59a
release: css part of community-licenses.xml
2019-12-17 11:44:13 +01:00
odain
e093abcb2b
release: lib part of community-licenses.xml
2019-12-17 11:28:05 +01:00
Molkobain
01cb88a661
N°2314 Regression: Add progress bar color change while on going to show user it's not stucked
2019-12-17 11:15:00 +01:00
Molkobain
5ef32b6b31
N°2314 Regression: fix invisible icons due to wrong FontAwesome calls
2019-12-17 11:09:10 +01:00
Stephen Abello
ba1c719568
N°2314 Regression: fix invisible icons due to wrong FontAwesome calls
2019-12-17 10:55:05 +01:00
Eric
0507e4f4a8
🔖 version 2.7.0-beta
2019-12-17 10:35:15 +01:00
Eric
60eb312e68
🔖 version 2.7.0-beta
2019-12-17 10:28:13 +01:00
Eric
044a8926b3
🔖 version 2.7.0-beta
2019-12-17 10:25:28 +01:00
odain
acf8c9d49e
release: js part of community-licenses.xml
2019-12-17 10:22:07 +01:00
Eric
d99e79eb3f
🔖 xml version 1.7
2019-12-17 10:22:03 +01:00
Eric
843c8ccd38
🔖 version 2.7.0
2019-12-17 10:18:15 +01:00
Eric
d45326606d
🌐 Update translations
2019-12-17 10:09:10 +01:00
Molkobain
5886d038e3
Regression: Fix iTop Hub connector not being installed (caused by dd5ac38dd4)
2019-12-17 09:50:27 +01:00
Pierre Goiffon
8fed7c7005
💄 Setup : TLS message style was hardcoded, get back to standard CSS classes to be aligned with the rest
2019-12-17 09:16:10 +01:00
Molkobain
604522aa61
N°2314 Regression: Work on Setup stylesheet
2019-12-16 18:07:59 +01:00
Molkobain
7af35c2d09
Internal: Improve how CSS and JS files are loaded in the DOM to optimize rendering and avoid glitches
2019-12-16 17:53:43 +01:00
Stephen Abello
87497eb491
N°2314 Regression: extracted setup's stylesheet in its own file and pimped it up
2019-12-16 17:05:36 +01:00
Pierre Goiffon
434ed0dd4e
N°330 Attachments display as table : portal
2019-12-16 15:51:56 +01:00
Pierre Goiffon
473a55bde6
🎨 bsfileuploader : code formatting
2019-12-16 15:25:32 +01:00
Pierre Goiffon
0b65b36e74
N°330 Attachments : add attributes in Attachment object
...
* creation date
* external key to creator User
2019-12-16 15:25:32 +01:00
Pierre Goiffon
4aeb78ccac
N°330 Attachments display as table : console
2019-12-16 15:25:31 +01:00
Pierre Goiffon
21d5de1756
Fix run_query throwing exception when inccorect query and no suggestions returned
2019-12-16 15:07:26 +01:00
Stephen Abello
797893d317
N°2314 Regression: fix crash on setup ⌨️ 🐒
2019-12-16 14:16:29 +01:00
Eric
dd5ac38dd4
N°2249 - Supportability - Updater module (application upgrade)
2019-12-13 17:28:35 +01:00
Eric
2741a446ea
Integrate database integrity module
2019-12-13 17:28:08 +01:00
Molkobain
da3d886bd7
N°2618 - Fix missing scroll bar in DataModel Viewer for class with large number of attributs
2019-12-12 16:41:09 +01:00
Stephen Abello
ad40e02fee
N°2314 Forgot to commit these changes with 611e82 🙈
2019-12-12 15:55:06 +01:00
Vincent Dumas
7cc63e21dd
Prevent trigger without friendlyname
...
Make 'description' mandatory as it is used as friendly name, and a blank value is not clickable in the UI
2019-12-12 15:47:39 +01:00
Stephen Abello
611e828d1a
N°2314 Introduce custom themes for iTop's console
2019-12-12 15:46:03 +01:00
odain
3abcd59b03
remove redundant test on log api
2019-12-12 14:41:26 +01:00
odain-cbd
48f4cd8943
Merge pull request #101 from Combodo/feature/faf_log_modularity
...
Feature/faf log modularity
2019-12-12 14:44:02 +01:00
odain
abd5e27c2e
fix and complete testcase
2019-12-12 14:22:49 +01:00
Eric
ccb3a21c68
N°2595 - Reorganize/rename admin. console menus (hide empty sub-menus)
2019-12-12 10:20:29 +01:00
Molkobain
aa060746d7
N°2009 - Fix non editable dashboard when wrong attribute code used in its definition
2019-12-12 09:50:13 +01:00
odain
6ec441e501
peer review: added tests but not passed yet
2019-12-12 08:43:01 +01:00
Molkobain
52d3d8cfe7
Internal: PHPDoc, warnings suppression and typos
2019-12-11 20:54:45 +01:00
Molkobain
081ba68af4
N°2634 - Fix non editable dashlets in dashboards
2019-12-11 20:54:45 +01:00
odain
38d5889979
log kpi: class name added to next page buttons in order to use them in itop-log-mgt
2019-12-11 17:58:49 +01:00
Molkobain
5b4808c378
Internal: PHPDoc
2019-12-11 15:58:47 +01:00
Molkobain
2af22d3387
N°2060 Fix regression introduced during migration (iPortalUIExtension extensions not working)
2019-12-11 15:54:01 +01:00
Eric
7c1a8c90da
N°2595 - Reorganize/rename admin. console menus
2019-12-11 13:59:31 +01:00
Molkobain
e7726a17db
N°2630 - Portal: Fix wrong "apply stimulus" form being used in a branch of classes
2019-12-10 21:51:28 +01:00
Molkobain
57da9a848d
Internal: Optimize regexp to remove warning
2019-12-10 21:51:28 +01:00
Molkobain
464ee46631
Internal: Refactor a small piece of code for better readability
2019-12-10 21:51:28 +01:00
Molkobain
46358b6e36
N°1982 - Fix resolution date not updated as expected when concurrent access from both portal and admin. console
2019-12-10 21:51:28 +01:00
Pierre Goiffon
46d6779562
🎨 utils : some code formatting + 1 @var
2019-12-10 17:57:55 +01:00
bruno DA SILVA
ea708e1e05
995 - Searching in OQL, URs with a particular request template field value
...
added AllowDelete in order to bypass the user's rights
2019-12-10 16:59:44 +01:00
Eric
374946505a
N°2381 - Not possible to create a ticket in "resolved" with lnk objects
2019-12-10 15:30:53 +01:00
Pierre Goiffon
18db31f138
Log : rename config parameter from 'min_log_level' to 'log_level_min'
2019-12-10 09:46:42 +01:00
Pierre Goiffon
332c6eb33c
log : factorize level & context
2019-12-10 09:39:46 +01:00
bruno DA SILVA
e5c49e3bd4
filterable logs using min_log_level optionnaly per channels
2019-12-10 09:03:14 +01:00
Molkobain
60769dc4b7
Internal: Add Dimitri to the sample data to welcome them!
2019-12-09 16:15:56 +01:00
Pierre Goiffon
9e652ef214
Update iPortalUIExtension param (not using Silex anymore but Symfony)
2019-12-09 16:11:29 +01:00
Pierre Goiffon
d2825c1b24
iTop Hub Connector : remove installation.xml
...
Was commited by mistake (duplicate of datamodels/2.x/installation.xml)
2019-12-09 16:02:39 +01:00
Eric
8482be7068
N°2623 - Fix setup request error
2019-12-09 14:56:42 +01:00
Eric
9dc56b727e
N°1987 - Fix search equals 0 for integer fails
2019-12-06 17:01:46 +01:00
Eric
c6759220b9
🎨 clean warnings and add KPI in ajax.render.php
2019-12-06 15:42:03 +01:00
Pierre Goiffon
470af54acb
Add some HTML in errors thrown by \MetaModel::DBCheckFormat
2019-12-05 17:56:42 +01:00
Eric
344f74f444
N°1213 - Allow NOT IN SELECT in OQL syntax - Fix UNION queries
2019-12-05 17:33:47 +01:00
Molkobain
0d1ca1bc0e
N°2611 - Make itop-portal-base module mandatory during setup
2019-12-05 17:30:30 +01:00
Molkobain
d9e3684d3d
Internal: Add Marie-Annette to the sample data to welcome them! 👋
2019-12-05 17:07:05 +01:00
Molkobain
e59db3f3d9
Internal: Add Alexandre, Anne-Catherine and Olivier to the sample data to welcome them! 👋
2019-12-05 15:47:46 +01:00
Molkobain
c883d618c3
N°1192 - Change default behavior for navigation rules
2019-12-05 15:02:36 +01:00
Eric
8911a9a3ed
N°2381 - Not possible to create a ticket in "resolved" with lnk objects
2019-12-05 13:06:23 +01:00
Molkobain
366d2754ef
N°2060 - Fix regression making url pointing to the portal not working in notification anymore
2019-12-05 12:39:28 +01:00
Molkobain
4db114f64d
N°2313 - Markup extensibility: Add meta information and hooks
...
Admin. console:
- Class and id on object form
- Class current and target state on object transition form
- Object form mode (view/edit/create/stimulus)
- Object attributes: Attribute code, attribute definition class and raw value
- Navigation menu: Their IDs on group and items
- Actions menu: Their IDs on items
Portal:
- Object attributes: Attribute code, attribute definition class and raw value
2019-12-05 12:27:02 +01:00
Pierre Goiffon
d36340a3cd
TagSet tests : use expectException method
2019-12-05 11:50:58 +01:00
Pierre Goiffon
7e6de5d8dd
🐛 \SetupUtils::builddir : avoid infinite loops
2019-12-05 10:27:22 +01:00
bruno DA SILVA
490eda4f4a
n°524 - password policy
...
bugfix : Enter Password phrase no more lack the userName and is properly displayed
2019-12-05 09:55:44 +01:00
Eric
b5b4d70c2d
N°1213 - Allow NOT IN SELECT in OQL syntax - Add unit tests
2019-12-05 09:02:11 +01:00
Eric
a74cff6902
N°1213 - Allow NOT IN SELECT in OQL syntax - Fix unit tests
2019-12-04 15:39:44 +01:00
Eric
1010274c48
N°1213 - Allow NOT IN SELECT in OQL syntax - Fix search init & code cleanup
2019-12-04 14:50:36 +01:00
Eric
c39ff13217
N°1213 - Allow NOT IN SELECT in OQL syntax - Fix search init
2019-12-04 14:40:53 +01:00
Eric
58da108e85
N°1213 - Allow NOT IN SELECT in OQL syntax
2019-12-04 14:27:02 +01:00
Eric
8b4fdb54ea
N°1213 - Allow NOT IN SELECT in OQL syntax - support of UNION queries
2019-12-04 11:17:51 +01:00
Pierre Goiffon
1877cb5e93
N°2614 Fix datasynchro error when running synchro_import.php
2019-12-04 11:08:18 +01:00
bruno DA SILVA
1530b3f2ca
🐛 apc_clear_cache & opcache_reset can both be called
...
especially since not calling apc_clear_cache may result in invalid apcu entries...
2019-12-04 10:39:30 +01:00
Eric
4c3c5228aa
N°1213 - Allow NOT IN SELECT in OQL syntax
2019-12-03 17:23:14 +01:00
Eric
3ae4ca89f4
N°1213 - Allow NOT IN SELECT in OQL syntax - support of UNION queries and "nested nested" queries
2019-12-03 17:14:53 +01:00
Eric
b415b1eeae
N°1213 - Allow NOT IN SELECT in OQL syntax - support of UNION requests
2019-12-03 12:11:00 +01:00
Eric
c0ae983faa
N°1213 - Allow NOT IN SELECT in OQL syntax
2019-12-03 12:11:00 +01:00
acognet
7845cbcc55
update tests
2019-12-03 12:11:00 +01:00
acognet
a33977251e
N°1213 - Allow NOT IN SELECT in OQL syntax
2019-12-03 12:11:00 +01:00
odain
b0d668b124
N°1213 - Allow NOT IN SELECT in OQL syntax - add unit tests
2019-12-03 12:11:00 +01:00
odain
b0856c1abf
fix HTMLDOMSanitizerTest due to merge
2019-12-03 12:10:26 +01:00
Pierre Goiffon
2bffa3cf17
N°2615 PHP versions setup requirements/warnings
2019-12-03 11:54:13 +01:00
odain
5ab05c6a6a
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2019-12-03 11:42:08 +01:00
odain
72af2b7cd6
comment OQL section in phpunit.dist.xml
2019-12-03 11:41:57 +01:00
Molkobain
143c0a5b07
N°2616 - Fix hyperlink placeholder not working in notifications for other portals
2019-12-03 11:39:14 +01:00
Molkobain
daf79f2324
N°2272 Fix calls to DBObjectSet::OptimizeColumnLoad()
2019-12-03 11:39:14 +01:00
odain
15d11c6c86
reomve echo that prevented phpunit execution
2019-12-03 11:26:35 +01:00
odain
b298a1fa82
fix invalid merge
2019-12-03 11:23:25 +01:00
odain
007b8147c7
fix phpunit step
2019-12-03 11:17:01 +01:00
odain
4013b76c9e
Merge branch 'speedup_jenkins' into develop
2019-12-03 11:09:30 +01:00
odain
ed81391aff
!y# This is a combination of 4 commits.
...
run OQL tests depending on jenkins param
try sth
try sth
try sth
try sth
try sth
fix parameter to run OQL tests or not
run OQL tests depending on jenkins param
try sth
try sth
try sth
try sth
try sth
fix parameter to run OQL tests or not
2019-12-03 11:02:15 +01:00
Pierre Goiffon
28818010d6
N°2558 Test for the HTMLDOMSanitizer white list
2019-12-03 10:58:21 +01:00
Eric
928c19f923
✅ move OQL2SQL tests to another folder
2019-12-03 10:58:21 +01:00
Eric
34aa240840
🎨 Fix bad parameter init
2019-12-03 10:58:21 +01:00
Eric
6872dbd180
🎨 Fix bad parameter init
2019-12-03 10:58:21 +01:00
Pierre Goiffon
c5bea30c64
N°2329 PHP 7.4 compat : remove deprecated get_magic_quotes_gpc() function call
2019-12-03 10:58:21 +01:00
Molkobain
071a254611
N°2311 Fix focus set to sumbit button when pressing "tab" key after filing inputs
2019-12-03 10:58:21 +01:00
Molkobain
d2d203df34
💄 Increase blur effect on portal modal backdrop
2019-12-03 10:58:21 +01:00
Molkobain
e1ffdea172
N°2272 Fix call to DBObjectSet::OptimizeColumnLoad() in the portal (doesn't support "id" attribute anymore)
2019-12-03 10:08:46 +01:00
Pierre Goiffon
9abcf40df7
N°2558 Test for the HTMLDOMSanitizer white list : remove new lines
...
the parser gives different results depending on the PHP version
Didn't manage to get it right :
- no php.ini difference
- playing with the parser preserveWhitespace/formatOutput parser options didn't help
So we're removing new lines on both sides :/
2019-12-03 09:47:45 +01:00
Pierre Goiffon
b67dc888fe
N°2558 Test for the HTMLDOMSanitizer white list
2019-12-03 08:42:25 +01:00
Eric
c7b101d169
✅ move OQL2SQL tests to another folder
2019-12-03 08:38:57 +01:00
Eric
df5a7440a4
🎨 Fix bad parameter init
2019-12-03 08:38:57 +01:00
Eric
a59a8c0ec5
🎨 Fix bad parameter init
2019-12-03 08:38:57 +01:00
Pierre Goiffon
bf9f43da8b
N°2329 PHP 7.4 compat : remove deprecated get_magic_quotes_gpc() function call
2019-12-02 13:47:44 +01:00
Molkobain
928b82a9c8
N°2311 Fix focus set to sumbit button when pressing "tab" key after filing inputs
2019-11-29 17:40:07 +01:00
Molkobain
b9008d2459
💄 Increase blur effect on portal modal backdrop
2019-11-29 17:38:20 +01:00
odain
50dddaaa9b
add debug mode as param + use params in phpunit.sh
2019-11-29 16:46:59 +01:00
odain
1b168501af
add a parameter to Jenkins pipeline
2019-11-29 16:37:01 +01:00
bruno DA SILVA
35a49bad60
n°524 - password policy
...
typos
(thanks @jbostoen)
2019-11-29 08:56:18 +01:00
Pierre Goiffon
97c1ff55e9
📝 Comment to explain why Uniqueness isn't protected by a lock
2019-11-28 17:16:01 +01:00
Molkobain
ffead92d5a
N°2613 - Portal: Fix crash in object form having empty AttributeBlob field
2019-11-28 17:05:05 +01:00
Molkobain
81ea2b1fe4
Internal: Add comment on suspected dead code
2019-11-28 17:05:05 +01:00
Molkobain
9cdfe0ecb4
Internal: PHPDoc and warning suppression
2019-11-28 17:05:05 +01:00
bruno DA SILVA
0473269132
n°1617 - iTop Fence
...
- iTop Fence now lock user fetch/creation per login to prevent duplicates
- iTop now provide a mean to create safe lock when used untrusted strings
- better log message & function names
- reduced cyclomatic complexity
(thanks @piRGoif)
2019-11-28 17:03:31 +01:00
Eric
4798bf2f79
N°2408 - Fix FromOQL() with NULL
2019-11-28 11:54:42 +01:00
bruno DA SILVA
c3c5c56dd8
n°524 - password policy
...
- changed translation key to be more conventional
2019-11-28 11:40:28 +01:00
bruno DA SILVA
4fb9bbb831
n°524 - password policy
...
- "change password" is now handled gracefully by the portal
2019-11-28 09:05:20 +01:00
bruno DA SILVA
267cdd2aee
n°524 - password policy
...
- "password reset" workflow now handle gracefully the policy enforcement.
2019-11-28 08:52:02 +01:00
bruno DA SILVA
fe0bd1a4b8
n°524 - password policy
...
- translations added
- fields are now visible in the detail view
- minor translation modification for the User object
2019-11-28 08:52:02 +01:00
Molkobain
9fa510d2a8
Internal: PHPDoc and warning suppression
2019-11-27 20:40:39 +01:00
Molkobain
fd29986354
N°2000 - Fix blank page when displaying a synchronized object
2019-11-27 20:07:17 +01:00
Molkobain
8ec6bb4758
N°1666 - Fix missing scroll bar missing in modal window "Create a new field" from Request Template
2019-11-27 19:35:19 +01:00
Molkobain
f3306f5fb4
N°1616 - Fix truncated caselog entry with large HTML table or word
2019-11-27 19:05:37 +01:00
Molkobain
20683fdf50
N°1192 Fix transition form always redirecting to object no matter the navigation rule
2019-11-27 17:21:01 +01:00
Molkobain
603ae8c0e1
N°2272 Fix calls to DBObjectSet::OptimizeColumnLoad() in the portal (now requires ClassAlias to always be specified)
2019-11-27 17:21:01 +01:00
Eric
f1d0418e48
🐛 Fix error when no cache is configured
2019-11-27 16:02:46 +01:00
Eric
9c8c306df3
🐛 Fix DBSearch::Intersect (de-duplicate aliases)
2019-11-27 15:39:33 +01:00
Eric
d2543e9c67
🐛 Fix bad calls to OptimizeColumnLoad
2019-11-27 15:38:30 +01:00
Pierre Goiffon
55a0d910fa
N°2490 MariaDB compat : changes after code review
...
* DEFAULT value unquoting is done with preg_replace now (clearer that we want to do a string replacement)
* DEFAULT value unquoting works even if DEFAULT is not the last keyword
* change test datasource for more readability (use double quotes when needed)
2019-11-27 11:51:47 +01:00
Pierre Goiffon
bd8144a67c
👷 Jenkins : config file is now picked by the unattended install
...
The problem was that we had an absolute path in the XML : changing it to the file name is sufficient ! The copy introduced in 443763de was unecessary.
2019-11-27 11:45:30 +01:00
Pierre Goiffon
004d1a7245
🎨 Rename constant
2019-11-27 10:15:24 +01:00
Pierre Goiffon
09fb99ed58
Rollback 2f431a0d : might not be a typo, we don't want to cause trouble close to a beta version O:)
2019-11-26 17:31:41 +01:00
Eric
ae8071f707
add unit tests for intersect
2019-11-26 17:24:23 +01:00
Eric
c1cf084e43
fix unit tests - Support Microsoft encoding of non breaking line in UTF-8
2019-11-26 16:32:19 +01:00
Eric
87c794b22e
fix unit tests - Support Microsoft encoding of non breaking line in UTF-8
2019-11-26 15:44:17 +01:00
Molkobain
a382d6ad35
N°1192 Change "close rule" behaviour to redirect to homepage if browser doesn't let us close the window
2019-11-26 14:57:35 +01:00
Eric
2d86599a19
N°2519 - ev_timeout from "New" to "Escalated TTO" doesn't work
2019-11-26 13:55:26 +01:00
Pierre Goiffon
914971b30d
💚 Jenkins : Fix default config database name
2019-11-26 12:15:02 +01:00
Pierre Goiffon
443763de48
💚 Jenkins : copy default config after unattended install
...
The generated config file had too many default values, and not the wanted ones
2019-11-26 12:09:03 +01:00
Stephen Abello
ff3c7ebe54
N°971 Portal: Fix Browse brick n:n level links in tree and mosaic display
2019-11-26 11:39:25 +01:00
Stephen Abello
c0f82f25a3
N°956 Portal: Increase robustness 💪
2019-11-26 11:39:25 +01:00
Eric
f90381d412
Support Microsoft encoding of non breaking line in UTF-8
2019-11-26 08:57:47 +01:00
bruno DA SILVA
d367d2e864
n°524 - password policy
...
💚 fix CI regression (data provider no longer include classes with side effect)
2019-11-25 18:02:25 +01:00
bruno DA SILVA
9d20eba2ad
2574 - enable Password expiry
...
- Extensibility: The UserLocal now provide the fields needed for an extension to be able to properly handle the expiration of the password
2019-11-25 17:37:34 +01:00
bruno DA SILVA
863746852f
n°524 - password policy
...
💚 fix CI : tests must be runned into a separate process in order to eliminate side effects of mocking the config
2019-11-25 16:53:04 +01:00
bruno DA SILVA
f416f994c9
n°2371 deprecate \MetaModel::EnumLinksClasses and \MetaModel::EnumLinkingClasses
...
- phpdoc: move title the to beginning of the block
2019-11-25 16:35:46 +01:00
bruno DA SILVA
70dfbbc15e
n°524 - password policy
...
- The code now uses the standard extension method (using interfaces)
- the metamodel can now filter on iModuleExtension in order to leverage extensions modularity (see MetaModel::EnumPlugins second param)
- during the setup, there is no pawsord policy control
- there is now a default policy
- new (more precie) translation reflecting the default policy
- fix CI?
2019-11-25 16:25:38 +01:00
Molkobain
85932eab98
N°1192 Fix crash with default parameters of the rule
2019-11-25 15:33:23 +01:00
Pierre Goiffon
0ee77d8c88
N°2163 DB*Tracked methods : modifications after review with Romain
...
Previous commit : 24eb82d1
Use \CMDBObject::SetTrackInfo
Move \CMDBObject::SetCurrentChange calls at the top most level of the stacks
Restore old behaviors that were removed in previous commit
2019-11-25 14:58:59 +01:00
Molkobain
2f2d9547b7
N°2603 - Portal: Fix crash when having comments in some parts of the XML
2019-11-25 12:38:34 +01:00
Molkobain
32b065708b
N°1192 Add some ready-to-use navigation rules to the standard portal (and comments)
2019-11-25 09:45:31 +01:00
Molkobain
18285df154
Internal: Fix typo
2019-11-22 18:44:27 +01:00
Molkobain
b1b6c9f426
N°1192 Introduce navigation_rules in the end-users portal
2019-11-22 18:44:27 +01:00
Molkobain
ff884533f9
Internal: Add utils::ToCamelCase($sInput) function
2019-11-22 18:44:27 +01:00
Molkobain
417e80fe8d
N°1192 Deprecate usage of <submit> and <cancel> tags in action rules
2019-11-22 18:44:27 +01:00
Pierre Goiffon
c203e6c7be
Fix utils::StartsWith when needle bigger that value
2019-11-22 14:43:33 +01:00
bruno DA SILVA
730a0d1c98
n°524 - password policy
...
💚 fix CI : tests must be runned into a separate process in order to eliminate side effects of mocking the config
2019-11-22 14:38:36 +01:00
bruno DA SILVA
d9b374f723
n°524 - password policy
...
💚 fix CI regression (previous tests are sometimes incompatible with the default password policy)
2019-11-22 14:14:44 +01:00
bruno DA SILVA
b9cb692504
n°524 - password policy
...
bugfix: no rule does work properly
2019-11-22 12:31:14 +01:00
bruno DA SILVA
23fc4bb4f7
n°524 - password policy
2019-11-22 12:23:00 +01:00
Pierre Goiffon
4ae035dd51
🔧 Modify visual vertical guides setting
2019-11-22 11:42:43 +01:00
Pierre Goiffon
3a791162c5
⚡ setup module browsing perf improvement
...
When a module descriptor file is found, do not dig anymore in subdirectories
2nd fix, should be better than previous one (4042a12d reverted with 5ebc290b )
2019-11-21 17:44:04 +01:00
Pierre Goiffon
06791b06c4
Fix utils::EndsWith when needle bigger that value
2019-11-21 11:57:24 +01:00
Eric
5ebc290b94
Revert Setup : only scan necessary dirs for extensions
2019-11-21 11:37:22 +01:00
Pierre Goiffon
675221a15e
N°2490 Setup/toolkit : no longer generates useless ALTER TABLE queries on MariaDB >= 10.2
...
* case insensitive SQL data type comparison
* some options have also case differences (example 'int(11) unsigned')
* DEFAULT 'NULL' added by MariaDB on all nullable fields
* default values are always surrounded with single quotes on MariaDB
This is a Combodo implementation of PR #91
2019-11-21 11:24:14 +01:00
Pierre Goiffon
2f431a0d14
🐛 Fix SynchroAttLinkSet.attribute_qualifier default value
...
Old typo (in a galaxy far, far away) : 1e688706
2019-11-21 10:44:54 +01:00
Molkobain
fd4e41950c
N°2092 Portal: Fix missing scrollbar in tall form modals
2019-11-20 15:41:11 +01:00
Molkobain
41d5ae704a
PHPDoc
2019-11-20 15:41:11 +01:00
Molkobain
83fc069bf4
Portal: Improve callback calls in CombodoPortalToolbox
2019-11-20 15:41:11 +01:00
Pierre Goiffon
32c5cd245b
N°2533 Check modules manual install dir on Setup for iTop products
2019-11-20 12:04:54 +01:00
Molkobain
a259be9033
N°2311 Fix focus set to the "login" input field when pressing "tab" key
2019-11-20 12:00:52 +01:00
Molkobain
fbbdee242a
Portal: Update code to use the CombodoPortalToolbox.OpenModal() helper
2019-11-20 11:38:42 +01:00
Molkobain
4a12635ea5
Portal: Introduce "CombodoPortalToolbox", helpers to ease JS manipulations especially through the iPopupMenuExtension.
...
- CombodoPortalToolbox.CloseAllModals() : Close all modal on the page
- CombodoPortalToolbox.OpenUrlInModal(sTargetUrl, bCloseOtherModals) : Open an URL in a modal, typically opening an object form
- CombodoPortalToolbox.OpenModal(oOptions) : Generic method to open modals in the portal with various options
2019-11-20 11:37:39 +01:00
Molkobain
db7278e9c1
🐛 Fix compiler crashing on setup due to coment in XML
2019-11-19 17:59:20 +01:00
Molkobain
10056aa4ca
✏️ Fix typos in comments
2019-11-19 17:33:07 +01:00
Pierre Goiffon
bb566df432
📝 WizardSteps documentation v2
...
With an ascii art schema
Thanks to http://asciiflow.com/
2019-11-19 16:31:26 +01:00
Pierre Goiffon
4042a12d39
Setup : only scan necessary dirs for extensions
...
We were browsing the whole hierarchy but only the root module dir was needed
This could be slow (especially when developing with a .git dir)
2019-11-19 15:27:06 +01:00
Pierre Goiffon
5ae4f9ade8
📝 WizardSteps documentation
2019-11-19 15:21:27 +01:00
Molkobain
1636f9839c
Updating Symfony lib and dependencies: forgot a few files + composer.lock
2019-11-18 18:08:40 +01:00
Molkobain
c76cccd2e7
Updating Symfony lib and dependencies:
...
Package operations: 2 installs, 23 updates, 0 removals
- Updating psr/log (1.1.0 => 1.1.2)
- Updating symfony/debug (v3.4.30 => v3.4.35)
- Updating symfony/console (v3.4.30 => v3.4.35)
- Updating symfony/dotenv (v3.4.30 => v3.4.35)
- Updating symfony/routing (v3.4.30 => v3.4.35)
- Updating symfony/finder (v3.4.30 => v3.4.35)
- Updating symfony/filesystem (v3.4.30 => v3.4.35)
- Installing symfony/polyfill-util (v1.12.0)
- Installing symfony/polyfill-php56 (v1.12.0)
- Updating symfony/http-foundation (v3.4.30 => v3.4.35)
- Updating symfony/event-dispatcher (v3.4.30 => v3.4.35)
- Updating symfony/http-kernel (v3.4.30 => v3.4.35)
- Updating symfony/config (v3.4.30 => v3.4.35)
- Updating symfony/dependency-injection (v3.4.30 => v3.4.35)
- Updating symfony/class-loader (v3.4.30 => v3.4.35)
- Updating symfony/cache (v3.4.30 => v3.4.35)
- Updating symfony/framework-bundle (v3.4.30 => v3.4.35)
- Updating twig/twig (v1.42.2 => v1.42.4)
- Updating symfony/twig-bridge (v3.4.30 => v3.4.35)
- Updating symfony/twig-bundle (v3.4.30 => v3.4.35)
- Updating symfony/yaml (v3.4.30 => v3.4.35)
- Updating symfony/stopwatch (v3.4.30 => v3.4.35)
- Updating symfony/var-dumper (v3.4.30 => v3.4.35)
- Updating symfony/web-profiler-bundle (v3.4.30 => v3.4.35)
- Updating symfony/css-selector (v3.4.30 => v3.4.35)
2019-11-18 18:04:32 +01:00
Eric
532eb466a1
N°1436 - Access control updated for grant_by_profile categories of classes -
...
Fix access to internal classes from the core engine
2019-11-18 15:36:42 +01:00
Pierre Goiffon
e8879a0455
🎨 Code formatting
2019-11-18 15:29:03 +01:00
Pierre Goiffon
ef5b4e212c
N°2371 deprecate \MetaModel::EnumLinksClasses and \MetaModel::EnumLinkingClasses
2019-11-18 10:20:18 +01:00
Pierre Goiffon
24eb82d140
N°2361 Deprecate DB*Tracked methods
...
* update methods PHPDoc
* DBInsertTracked update callers
* DBInsertTrackedNoReload update callers
* DBUpdateTracked update callers
* DBDeleteTracked update callers
2019-11-15 17:56:04 +01:00
Pierre Goiffon
cdc8edb56b
Fix backup regression "Undefined class constant 'DEFAULT_MODULE_SETTING_TIME'"
...
Was introduced in PR #89 , woops
2019-11-15 16:44:38 +01:00
Pierre Goiffon
7235c63445
Abstract implementation for iScheduledProcess ( #89 )
...
* 📝 little PHPDoc in BackupExec
* ♻️ Create a extendable implementation of iScheduledProcess
* create AbstractWeeklyScheduledProcess
* move schedule methods to the new abstract class
* create ProcessInvalidConfigException
* in cron.php skip abstract class
2019-11-15 14:41:00 +01:00
Pierre Goiffon
fd3b33b04b
N°2586 Test for iTopDesignFormat
2019-11-14 18:07:17 +01:00
Pierre Goiffon
e8815e5653
N°1283 Add migration script
2019-11-14 18:04:22 +01:00
Pierre Goiffon
551b9a3b76
\MFDocument::saveXML : $options were not passed to the callee
2019-11-14 18:04:22 +01:00
bruno DA SILVA
1c6b639992
n°1617 - iTop Fence
...
various improvement both in iTop and in the extension.
2019-11-14 17:02:52 +01:00
bruno DA SILVA
6fb7587d95
🔧 write the tooling methods enabling migration to/from iTop 2.7
2019-11-14 16:59:08 +01:00
Eric
3953e74cb4
🎨 refactor approot
2019-11-14 15:43:29 +01:00
Pierre Goiffon
a8f616bba7
N°2577 Setup : remove prefix for table prefix collapsible section
2019-11-14 14:46:58 +01:00
bruno DA SILVA
560eb5e071
🔧 write the tooling methods enabling migration to/from iTop 2.7
2019-11-14 12:15:30 +01:00
Eric
c665bb4761
💚 Fix unit tests
2019-11-14 09:37:39 +01:00
Denis Flaven
36584092e5
(Experimental) Export a DBSearch as an array/JSON structure.
2019-11-13 18:03:58 +01:00
Eric
30430bb7dc
N°2135 - Setup callbacks for MTP
2019-11-13 17:33:56 +01:00
Eric
fdf5cff12a
N°2135 - Setup callbacks for MTP
2019-11-13 15:45:33 +01:00
Eric
4816b2b0fe
N°2311 - Authentication extensibility in iTop (login on specific pages and traces)
2019-11-13 15:08:34 +01:00
Eric
9c808bf2ed
N°2240 - Supportability - Maintenance mode
2019-11-13 13:50:48 +01:00
Eric
7a12c2c615
N°2240 - Supportability - Maintenance mode
2019-11-13 12:00:50 +01:00
Eric
149bc9f4ef
fix typo
2019-11-13 11:41:40 +01:00
Stephen Abello
b91183e9ec
N°1986 Portal: Fix read-only forms from da5ccaa to work with auto-generated ones
2019-11-13 11:19:26 +01:00
Eric
b67639f9ec
N°2249 - Supportability - Updater module
2019-11-13 11:08:08 +01:00
Eric
cdbcc9ce8c
N°2249 - Supportability - Updater module
2019-11-13 10:42:30 +01:00
Pierre Goiffon
6c7d094921
N°2577 Setup : table prefix option is hidden also on iTop first install
...
Previous commit 3e785687 was hidding it only on iTop update
2019-11-12 08:54:29 +01:00
Stephen Abello
23466f6e00
📝 typo in PHPDoc
2019-11-08 17:13:15 +01:00
bruno DA SILVA
08c1f4f072
autoload rework
...
- bootstrap.inc.php is now included by approot.inc.php
- remove all unescessaries includes of bootstrap.inc.php
- in bootstrap.inc.php autoload can be bypassed using a feature flag because "why not"
2019-11-08 16:51:57 +01:00
Pierre Goiffon
1194c5c7fe
🎨 sla-computation : fix PHPDoc + format code
2019-11-08 15:30:47 +01:00
Eric
f63fb16233
N°2135 - Setup callbacks for MTP
2019-11-08 14:05:24 +01:00
Eric
a4143df36a
N°2240 - Supportability - Maintenance mode
2019-11-07 16:45:52 +01:00
Pierre Goiffon
3e78568755
N°2577 Setup : table prefix option is now hidden by default
...
Should be used only by a few portion of users
2019-11-07 16:34:25 +01:00
Eric
9b14cd7633
N°2240 - Supportability - Maintenance mode
2019-11-07 15:23:42 +01:00
Eric
2b2488f376
N°2240 - Supportability - Maintenance mode
2019-11-07 15:21:48 +01:00
Pierre Goiffon
fd77554cb7
N°2555 action_rule : fix add_to_list regression
...
Loop was removed in 5c483efd but we need it !
Sample rule that needs such a loop :
<action_rule id="N2555_multiple_results_addtolist" _delta="define">
<source_oql>SELECT Person WHERE id > 0</source_oql>
<presets>
<preset id="1">add_to_list(id, contacts_list)</preset>
</presets>
</action_rule>
2019-11-07 14:56:39 +01:00
Eric
2ee3d27ba8
N°2240 - Supportability - Maintenance mode (revert)
2019-11-07 14:15:34 +01:00
Eric
af24f46803
N°2249 - Supportability - Updater module
2019-11-07 13:24:48 +01:00
Eric
da1684a8b9
N°2249 - Supportability - Updater module
2019-11-07 13:14:20 +01:00
Eric
5e7ae930c5
N°2240 - Supportability - Maintenance mode
2019-11-07 12:36:35 +01:00
Stephen Abello
541226356c
📝 typo in PHPDoc
2019-11-07 11:38:08 +01:00
Eric
a30345c96c
N°2249 - Supportability - Updater module
2019-11-07 10:00:05 +01:00
Eric
d035130d00
N°2240 - Supportability - Maintenance mode
2019-11-07 09:16:06 +01:00
Pierre Goiffon
7d8181c44f
N°2576 Fix "invalid numeric value" when inserting/updating AttributeDecimal
...
Was happening on certain configurations with a non EN-US user locale
2019-11-06 18:15:40 +01:00
bruno DA SILVA
45536cf957
🐛 fix regression introduced by the PR n°98
...
the realpath removed the trailing / wich is required
2019-11-06 10:00:55 +01:00
Stephen Abello
da5ccaaa85
N°1986 Portal: Forms with only transition buttons are now read-only
2019-11-05 12:17:54 +01:00
jbostoen
7c773991e7
Version 20191104-1550
...
* fix setup crashing due to realpath() returning lowercase path on Windows
2019-11-05 08:55:41 +01:00
bruno DA SILVA
bf976e5b8f
typo (bis)
...
ahhh!
2019-11-04 15:07:47 +01:00
bruno DA SILVA
d9ad3f5e98
typo & unused variable removal
...
thank you @Hipska !
2019-11-04 15:02:19 +01:00
Eric
9054dcb9ff
N°2517 - Supportability : system report (user name)
2019-11-04 12:06:49 +01:00
bruno DA SILVA
57116ef054
1627 - Ticket ref sometimes duplicate
...
This code is a drop in replacement based on an abstract counter based on an abstract keyValue store.
The counter can be
- class based (in this case the counter is initialized on max(id) + 1
- key based (in this case the counter starts at 0)
Important: on both cases the counter is no more kept aligned with the primary key.
This lead to a MySQL8 compatible implementation.
2019-11-04 11:50:36 +01:00
bruno DA SILVA
c6f5b8b1f9
1627 - Ticket ref sometimes duplicate
...
This code is a drop in replacement based on an abstract counter based on an abstract keyValue store.
The counter can be
- class based (in this case the counter is initialized on max(id) + 1
- key based (in this case the counter starts at 0)
Important: on both cases the counter is no more kept aligned with the primary key.
This lead to a MySQL8 compatible implementation.
2019-11-04 11:50:36 +01:00
Pierre Goiffon
9e015ba59a
📝 UI better log on catch
2019-11-04 09:22:43 +01:00
Pierre Goiffon
6144cfad3d
📝 Link between Dict::Format and TemplateString
2019-10-31 10:35:48 +01:00
Stephen Abello
3844a18b86
N°971 Portal: Allow n:n links for Browse Brick's levels
2019-10-30 16:41:58 +01:00
Stephen Abello
e88c6e9583
📝 typo in PHPDoc
2019-10-30 16:41:58 +01:00
Pierre Goiffon
6793fb2a35
N°2293 update PHPDoc on callbacks
2019-10-30 16:26:30 +01:00
bruno DA SILVA
4834c326aa
2498 - restrict access to assets into env-*
...
- allow static html into extensions/ and datamodels/
- allow direct access to php into env-* for legacy code taht do not use exec.php
2019-10-30 15:46:33 +01:00
Pierre Goiffon
e6167adefd
N°2518 ACE Editor : SQL mode
2019-10-30 10:11:33 +01:00
Pierre Goiffon
a8c3756ba7
Rename licenses file
...
Fix typo in file name
2019-10-30 10:11:33 +01:00
Pierre Goiffon
34b47f0239
N°2518 update licenses to reflect ACE editor moved from itop-config to iTop core
2019-10-30 10:11:33 +01:00
bruno DA SILVA
0d13d9eabe
2498 - restrict access to assets into env-*
...
- allow static content within datamodels/ and extensions/ (reason: the setup make use of images within this directory)
- simplified .htaccess and web.content generation during the compilation
- it now also allow fonts
2019-10-30 09:44:28 +01:00
Pierre Goiffon
358adb2109
📝 Some PHPDoc complement
2019-10-28 16:19:30 +01:00
odain
92285b55b6
add few tests on OQL group by
2019-10-28 15:50:53 +01:00
Pierre Goiffon
dda91be6d1
N°2555 action_rules : an invalid rule won't prevent anymore others to execute
...
This blocking scenario was added in 5c483efd
2019-10-25 15:56:26 +02:00
Eric
bec4dbafd2
N°2315 - Login screen extensibility API refactor
2019-10-25 14:35:24 +02:00
Eric
dcb46990c2
N°1436 - Search retrieve users belonging to not allowed Org
2019-10-25 10:31:47 +02:00
Pierre Goiffon
fe03342b6f
🌐 Fix typo
...
SF#1812, many thanks Lars Scheibling !
2019-10-25 09:37:22 +02:00
Eric
ee037acd34
N°2315 - Login screen extensibility API refactor
2019-10-25 08:32:29 +02:00
Pierre Goiffon
d4a696cb6b
N°2555 Specific exception for invalid action_rules
2019-10-24 18:05:58 +02:00
Pierre Goiffon
5c483efd15
N°2555 action_rule performance
...
* do not execute scope_oql that have no conditions
* pick the first result only
2019-10-24 17:24:09 +02:00
Pierre Goiffon
9aeba1df9b
N°2555 New \DBSearch::GetFirstResult method
2019-10-24 17:24:09 +02:00
bruno DA SILVA
e98683ae1c
fix regression introduced in the carbon branch
2019-10-24 16:19:07 +02:00
Eric
c552e73d20
N°2315 - Login screen extensibility API refactor
2019-10-24 14:56:01 +02:00
Stephen Abello
1851163cee
N°1881 Portal: Show confirmation dialog when closing forms with unsaved data
2019-10-24 10:51:49 +02:00
Pierre Goiffon
3667f95b7c
N°2558 center is back in sanitizer white list
...
Reverts 4450d6af (2.5.0)
Was causing troubles when integrating emails
2019-10-24 10:20:47 +02:00
Eric
b6796d2742
N°679 - Database inconsistency during INSERT
...
N°2499
2019-10-24 09:00:56 +02:00
Eric
047983cb91
🎨 Login screen extensibility
2019-10-23 17:27:04 +02:00
Eric
8455abdfe9
N°2315 - Markup extensibility: interface refactor
2019-10-23 16:49:00 +02:00
Eric
b7c3fbb176
💚 Refactor unit tests
2019-10-23 16:41:28 +02:00
Eric
5642552f9a
N°1888 - Filter search with another search
2019-10-23 12:56:02 +02:00
Eric
6f6b654dba
N°1113 - Global search only searchable attributes
2019-10-23 10:24:37 +02:00
Pierre Goiffon
c8b791efd3
Merge remote-tracking branch 'origin/itop-carbon' into develop
...
# Conflicts:
# application/utils.inc.php
# setup/ajax.dataloader.php
2019-10-22 18:27:13 +02:00
Pierre Goiffon
52fd58cd93
Remove "s" JQueryUI resizable handle override
...
Better to override locally O:)
2019-10-22 16:45:25 +02:00
Pierre Goiffon
66d638e224
💄 N°2518 New JQueryUI "s" handler style
2019-10-22 16:06:32 +02:00
Pierre Goiffon
16c4f18a81
N°2518 fix log call is crashing when invalid log_filename_builder_impl value set in config
2019-10-22 15:15:40 +02:00
Pierre Goiffon
cd6104ddb3
N°2518 If switching to log file rotation, rename setup/error legacy files
2019-10-22 15:08:48 +02:00
Pierre Goiffon
4fe7cd5adc
🎨 Config file code formating
2019-10-22 15:08:48 +02:00
Eric
3f59141407
N°1114 - config-itop.php access rights enforcement
2019-10-22 15:02:51 +02:00
Pierre Goiffon
8b37f503c7
N°1455 change hidden obsolete data message
2019-10-22 11:16:32 +02:00
Eric
7c9353d299
N°1888 - Circumvention of the restriction of rights by organization
2019-10-22 10:49:22 +02:00
Eric
dfc901ffa4
1355 - [Security] Password Autocomplete in Browser
2019-10-22 10:31:57 +02:00
Eric
611bf3035f
N°1113 - AttributePassword content searchable in Global Search
...
The global search now avoid AttributePassword type of attributes
2019-10-22 09:56:09 +02:00
Eric
35bb2da6bd
N°1114 - config-itop.php access rights enforcement
2019-10-21 18:14:44 +02:00
Eric
53e034ce4f
💚 Fix unit tests
2019-10-21 16:37:56 +02:00
Eric
cd4db1db06
💚 Fix unit tests
2019-10-21 16:32:43 +02:00
Pierre Goiffon
b1dbddffb9
N°2518 Integrating ACE in iTop
2019-10-17 19:21:30 +02:00
Pierre Goiffon
221c10aa9b
itop-config : syntax highlighting for JS
2019-10-17 17:35:41 +02:00
bruno DA SILVA
15ecd7bccf
itop-portal-base: .env.local is no more versioned
2019-10-17 16:47:18 +02:00
Eric
0d8dd0dc17
N°2517 - Supportability - file System integrity
2019-10-17 16:00:14 +02:00
Eric
ec986e0fbc
N°2517 - Supportability - file System integrity
2019-10-17 15:55:33 +02:00
Eric
f0e0c73e9b
N°2517 - Supportability - file System integrity
2019-10-17 15:51:41 +02:00
bruno DA SILVA
d9a24d2e14
2498 - restrict access to assets into env-*
...
iis bugfix: the configuration is now valid
2019-10-17 15:08:30 +02:00
Eric
93618f974d
💚 Fix unit tests
2019-10-17 12:45:50 +02:00
Eric
4dfc217992
N°2517 - Supportability - OQL Explain
2019-10-17 12:21:12 +02:00
Eric
5a1a6cf6f0
💚 Fix unit tests
2019-10-17 12:19:23 +02:00
Eric
36b325f71d
N°2517 - Supportability - OQL Explain
2019-10-17 11:06:31 +02:00
bruno DA SILVA
74a3712116
n°2311 - prenvent cas logo to be fullscreen during the login page loading
2019-10-17 10:53:35 +02:00
Eric
1fe7eb6cf4
🎨 Fix Login CSS colors for ie
2019-10-17 10:46:47 +02:00
Pierre Goiffon
0d0f8e9ffc
💚 N°2538 Fix test
...
Was broken since ce207e5c
2019-10-17 10:45:12 +02:00
Stephen Abello
0a2063ce69
N°2060: Fix data-localizer and archive mode initialization for Symfony portal
2019-10-17 10:12:40 +02:00
Pierre Goiffon
ce207e5c56
Restore old APPROOT var init
...
Rollback change in 607d355c
2019-10-17 10:09:21 +02:00
bruno DA SILVA
f22eaae457
✏️ fix a typo
2019-10-17 10:00:35 +02:00
Eric
fbc5280add
💚 Fix unit tests
2019-10-17 09:23:32 +02:00
bruno DA SILVA
65512ca984
2498 - restrict access to module's assets
...
- into env-*
- into datamodels
- into extensions
2019-10-16 18:01:33 +02:00
Pierre Goiffon
385b4f8d4a
🎨 \utils::RealPath Move var init next to its use
2019-10-16 17:33:49 +02:00
Pierre Goiffon
f65f22f333
N°2538 check path validity little improvements
...
* ajax-backup : change code to be more readable
* does a realpath() call on basepath to avoid troubles when havin '/' on Windows
2019-10-16 11:37:50 +02:00
Pierre Goiffon
607d355c61
N°2538 enforce generic method to check path validity
...
Now uses realpath() and StartsWith
2019-10-16 11:13:19 +02:00
Pierre Goiffon
29c30c1f89
🎨 Code format
2019-10-16 11:13:19 +02:00
Stephen Abello
2ff771c16a
N°2311: Fix change password page, correctly display buttons with long string
2019-10-16 10:43:20 +02:00
Pierre Goiffon
5e641f2273
N°2538 generic method to check path validity
2019-10-15 18:41:07 +02:00
Eric
d52254bbf0
🎨 Make some room in the menu
2019-10-15 12:10:16 +02:00
bruno DA SILVA
a97c8be31a
2498 - restrict access to assets into env-*
...
this is done by adding a .htaccess file on a per module basis.
NB: if there is already a .htaccess file, it is kept as it, so you can see this commit as adding a "default" htaccess.
2019-10-15 11:46:18 +02:00
bruno DA SILVA
9c067e5645
💡 type an @return for better code completion
2019-10-15 11:46:18 +02:00
bruno DA SILVA
24d6857069
👌 comiled PHP files have no more spaces before the PHP open tag.
2019-10-15 11:46:18 +02:00
Eric
ed9259df9e
🐛 Fix access to change password page
...
🎨 Code cleanup
2019-10-15 11:43:47 +02:00
Eric
75794fb4d9
Fix count with Archive mode
2019-10-15 09:50:33 +02:00
Pierre Goiffon
4c386da7d2
📝 Fix typo (thanks @jbostoen !)
2019-10-15 08:44:47 +02:00
Denis Flaven
abbd2e64c9
Fixed the doc generation and some typos in the README
2019-10-14 16:44:43 +02:00
Pierre Goiffon
300a723fca
📝 Add some @var PHPDoc for iQueryModifier calls
2019-10-11 18:09:00 +02:00
Eric
ddf42d0358
Access right on display explain search
2019-10-11 17:08:35 +02:00
Eric
88be0d7638
N°2261 - Log KPI not available in lnk window
2019-10-11 16:27:01 +02:00
Stephen Abello
e26428a0eb
Fix visual glitch on portal's modal-backdrops
2019-10-11 16:08:19 +02:00
Eric
7b36852d7a
N°2261 - Log KPI not available in lnk window
2019-10-11 15:56:32 +02:00
bruno DA SILVA
d1eb674314
n°1617 - meets iTop fence requirements
2019-10-09 18:53:40 +02:00
Pierre Goiffon
4afed39b0e
N°2529 Fix charset sent by logout page
2019-10-09 18:07:08 +02:00
Stephen Abello
c1460cfdc7
N°2142 Portal: Fix list tabs and on charts click when a Manage brick has a chart as default display mode
2019-10-09 17:15:07 +02:00
Vincent Dumas
85a94ee1e7
Fix products setup icons hyperlinks
...
The 3 icons at the end of the Setup were pointing to broken url links
2019-10-09 15:36:25 +02:00
Eric
68895551b2
N°2517 - Supportability - system report (Added cron user)
2019-10-09 12:11:17 +02:00
Stephen Abello
eece09e5ed
N°2311: Avoid new SSO buttons to flicker on page loading
2019-10-09 10:21:38 +02:00
Eric
0dd1f26b39
N°2311 - Authentication extensibility in iTop
2019-10-08 15:23:24 +02:00
Eric
1b958a3c4d
N°2240 - Supportability - Maintenance mode
2019-10-08 15:07:34 +02:00
Eric
a1d23cddc5
N°2248 - Supportability - Integrity module
2019-10-08 09:29:49 +02:00
Pierre Goiffon
14c25e3d9b
🎨 SetupPage code formatting
2019-10-08 08:42:41 +02:00
Pierre Goiffon
c3915ee48e
N°2518 Implementation to rotate logs on a weekly basis
2019-10-08 08:42:41 +02:00
Pierre Goiffon
21ff03e28f
N°2518 Possibiliy to rotate log files based on days
...
See the 'log_filename_builder_impl' config parameter
2019-10-08 08:42:41 +02:00
Pierre Goiffon
2c8887398d
🎨 Log classes : PHPDoc & fix wrong self:: uses
2019-10-08 08:42:41 +02:00
Eric
f51cd65b1f
N°2249 - Supportability - Updater module
2019-10-07 17:44:17 +02:00
Stephen Abello
dbb5a5191b
N°1146 Portal: Correctly display external field targeting enum field
2019-10-07 12:04:14 +02:00
Pierre Goiffon
03b8ed5ce4
Merge branch 'support/2.6.2'
2019-10-07 09:41:08 +02:00
Pierre Goiffon
e9844aed45
Merge branch 'support/2.6.2' into develop
2019-10-07 09:37:03 +02:00
Eric
aaf6289953
N°2249 - Supportability - Updater module
2019-10-04 18:26:21 +02:00
Eric
b0d0223821
N°2249 - Supportability - Updater module
2019-10-04 18:03:27 +02:00
Pierre Goiffon
f271606e5e
N°729 Update DBObject::Prefill* methods PHPDoc
2019-10-04 11:09:16 +02:00
Eric
23a9bae391
N°2249 - Supportability - Updater module
2019-10-03 15:31:23 +02:00
Eric
b7c795c313
N°2240 - Supportability - Maintenance mode
2019-10-02 10:18:07 +02:00
Eric
46c553fbad
N°2249 - Supportability - Updater module
2019-10-02 08:39:32 +02:00
Pierre Goiffon
fc5bbfbed2
N°2269 fix obsolete icon color in lists
2019-10-01 18:10:45 +02:00
Eric
afe760a8bc
N°2240 - Supportability - Maintenance mode
2019-10-01 13:53:34 +02:00
Vincent Dumas
7e78c35d23
N°2479: fix typo in user message
2019-09-30 18:30:03 +02:00
Vincent Dumas
56f0e95a22
Fix typo in a comment
2019-09-30 17:05:43 +02:00
Eric
7f9024465f
N°2311 - Refactor Login FSM for errors
2019-09-30 15:10:29 +02:00
Eric
75dc11b882
N°2311 - Refactor Login FSM for errors
2019-09-30 13:45:50 +02:00
Eric
db0a5bd071
N°2240 - Supportability - Maintenance mode
2019-09-27 18:00:09 +02:00
Eric
64434f8065
🎨 remove warnings
2019-09-27 17:14:04 +02:00
Eric
044623309c
N°2240 - Supportability - Maintenance mode
2019-09-27 17:13:25 +02:00
Pierre Goiffon
a54695b2e0
🎨 Some InlineImage comment / formatting
2019-09-27 16:11:42 +02:00
Eric
7acb53a22f
N°2311 - Refactor Login FSM for errors
2019-09-27 13:12:00 +02:00
Vincent Dumas
a2d05e8119
Fix typo on French message when object not found ( #92 )
2019-09-27 11:25:48 +02:00
Pierre Goiffon
dfcebfcbea
🎨 Remove useless consecutive call
2019-09-27 09:24:20 +02:00
Eric
3f165c9803
N°2456 - Deadlock during concurrent updates
2019-09-26 18:18:52 +02:00
Eric
85971ea9f3
N°2272 - OQL performance (hierarchical keys)
2019-09-26 08:30:57 +02:00
Eric
ff3ec219ef
N°2272 - OQL performance (empty class alias)
2019-09-25 17:43:20 +02:00
Eric
e0374dd186
N°2272 - OQL performance (unit tests)
2019-09-25 14:39:12 +02:00
Eric
51ee3b31cb
N°2272 - OQL performance (SQL Generation)
2019-09-25 10:57:35 +02:00
Eric
496ea830c5
N°2272 - OQL performance (unit tests)
2019-09-24 13:20:55 +02:00
Eric
1e911b5094
N°2272 - OQL performance (SQL Generation)
2019-09-24 11:40:08 +02:00
Eric
6073be25de
N°2272 - OQL performance (OQL class tree optimizer)
2019-09-19 13:44:15 +02:00
Eric
93a736e42a
N°2272 - OQL performance (OQL class tree wip)
2019-09-19 13:44:15 +02:00
Eric
128afc8a56
N°2272 - OQL performance (comments)
2019-09-19 13:44:15 +02:00
Stephen Abello
a8d5630030
N°967 Portal: Browse brick actions are now correctly ordered even without a rank tag
2019-09-19 10:53:42 +02:00
Pierre Goiffon
d83a256b9d
N°2293 DBUpdate changes finalisation
...
* ListChanges are back where they were (extra precaution to prevent AfterUpdate callback impl regressions)
* aChanges reset is done after the reentrance test
2019-09-17 15:06:47 +02:00
Pierre Goiffon
5af33ffe0a
N°2293 Saves changes in DBObjet::DBUpdate, just before the AfterUpdate call
...
This will allow to get changes made in ComputeValues, OnUpdate, etc
2019-09-17 11:59:17 +02:00
Pierre Goiffon
ffd37d7802
🎨 cmdbAbstract : add missing visibility keywords for some function
2019-09-13 11:32:31 +02:00
Stephen Abello
31a34c247c
N°2482 Regression on mandatory external field with only 1 value
2019-09-13 10:42:55 +02:00
Eric
4ccd842bdf
N°2272 - OQL performance (unit tests)
2019-09-13 10:35:41 +02:00
Eric
f186c9e242
N°2272 - OQL performance (code refactor)
2019-09-13 08:39:50 +02:00
Pierre Goiffon
4e66c9fc23
N°2478 clearer comment
2019-09-12 15:52:13 +02:00
Pierre Goiffon
99e21652a0
🎨 clarify \Config::UpdateIncludes with $sModulesDir=null
2019-09-12 09:54:06 +02:00
Pierre Goiffon
24a0cc2f64
N°2478 Fix install not working anymore when having no env-*
2019-09-12 09:29:24 +02:00
Pierre Goiffon
e9dee86b7c
Remove unecessary require() calls in utils class
...
We still need manual require() for LoginForm and associated
2019-09-11 18:03:44 +02:00
Pierre Goiffon
42d7901828
🎨 some code formatting in utils class
2019-09-11 17:51:23 +02:00
Pierre Goiffon
7f156e961d
N°2478 Fix unattended install
...
* remove require() calls (now we have an autoloader \o/)
* change cache policy in utils::GetConfig
* set config in utils class from ApplicationInstaller
2019-09-11 16:41:50 +02:00
bruno DA SILVA
d71b3b1893
N°1455 - obsolescence: show hint in the search bar
2019-09-10 15:45:57 +02:00
Pierre Goiffon
cb1488c17f
👷 Jenkins : no composer install needed anymore
2019-09-10 14:28:35 +02:00
Pierre Goiffon
a625733885
👷 Jenkins : fix jenkinsfile filename case
2019-09-10 14:23:36 +02:00
Eric
e13bcba89a
N°2311 - Login Page extensibility (constant used for application name)
2019-09-10 13:42:37 +02:00
Eric
7d8e8df0c5
N°2272 - OQL performance (fix 2.5 regression)
2019-09-10 13:06:47 +02:00
Pierre Goiffon
0e5c0ff46d
👷 Jenkins : fix toolkit unzip
2019-09-10 12:06:28 +02:00
Pierre Goiffon
67bff3e19d
Jenlinks : change toolkit URL (http to https)
2019-09-10 11:46:55 +02:00
Eric
19d9c69fb8
N°2311 - Login Page extensibility (CSS reworked)
2019-09-10 08:40:28 +02:00
Eric
cb772a9527
N°2311 - Login Page extensibility (CAS button)
2019-09-06 17:54:02 +02:00
Eric
ee621c1b92
N°2311 - Login Page extensibility
2019-09-06 17:40:29 +02:00
Eric
20aa1bfdd6
cleanup warnings
2019-09-06 15:06:08 +02:00
Eric
9c52f6b949
N°2272 - OQL performance (add finalclass on all intermediate tables)
2019-09-06 14:56:37 +02:00
Eric
0f890ad228
N°2272 - OQL performance (Expression cache is configurable)
2019-09-06 14:30:42 +02:00
Eric
aac6ab0fc6
N°2272 - OQL performance (testability)
2019-09-06 14:30:42 +02:00
Eric
3fde778c0c
N°2311 - Login Page extensibility
2019-09-06 14:30:42 +02:00
bruno DA SILVA
348bdbdc0d
typo
2019-09-05 16:38:40 +02:00
Eric
3e9223a0bc
N°2311 - Preferences extensibility
2019-09-02 17:55:55 +02:00
Eric
a905a8a3c1
N°2311 - Dictionary
2019-09-02 11:39:06 +02:00
Eric
b2ab07aa69
N°2311 - Login Page extensibility
2019-08-30 15:07:51 +02:00
Eric
9bd1da95e0
N°2456 - Deadlock during concurrent updates
2019-08-27 09:34:50 +02:00
Eric
83c0df2157
N°2456 - Deadlock during concurrent updates
2019-08-26 15:50:40 +02:00
Eric
8d7c64be66
N°2455 - Wrong Request Template query validation
...
Avoid blocking a form if a RequestTemplate reference a bad attribute (e.g. :this->id)
2019-08-23 17:30:54 +02:00
Eric
0625a01a4f
Force MySQL port to int (for MySQL connector)
2019-08-23 15:13:29 +02:00
Pierre Goiffon
208a8723ff
🎨 Code formatting for iApplicationObjectExtension
2019-08-23 10:24:48 +02:00
Pierre Goiffon
f4c2a9ca7d
N°2293 Some PHPDoc (@since for changes availability)
2019-08-23 10:18:22 +02:00
Pierre Goiffon
c97fd63e6d
N°2293 Object update hooks now have access to object changes
...
* new \cmdbAbstractObject::$m_aChanges for \iApplicationObjectExtension::OnDBUpdate calls
* calling ListChanges() from within \DBObject::AfterUpdate will now give the right informations
* update PHPDoc in iApplicationObjectExtension
2019-08-23 10:13:44 +02:00
Eric
58402cdda8
N°2311 - User Provisioning API documentation
2019-08-22 14:38:07 +02:00
Eric
59fa3e10a3
N°2311 - User Provisioning API
2019-08-22 14:00:54 +02:00
Eric
0831a427cc
N°2311 - authent-cas compatibility with 2.6 configuration
2019-08-22 14:00:53 +02:00
Pierre Goiffon
08517f0c7e
📝 Some PHPDoc in ExternalKey field rendering
2019-08-22 11:01:59 +02:00
Eric
97e58c2d79
N°2311 - combodo-cas renamed authent-cas
2019-08-21 12:21:24 +02:00
Eric
6693ec48a0
N°2311 - Add combodo-cas
2019-08-21 10:46:58 +02:00
Eric
9a13d4ce04
N°2311 - Code cleanup
2019-08-20 18:04:44 +02:00
Pierre Goiffon
51bbe1f79d
Handle nested transactions ( #90 )
...
* starting a new transaction will send nothing in the DB (only one global transaction : merge nested transactions)
* same for COMMIT or ROLLBACK if more than 1 transaction is opened
* transactions are kept inside \DBObject::DBInsertNoReload, but they can be disabled using config flag db_core_transactions_enabled=false (true by default, hidden by default)
2019-08-20 10:47:29 +02:00
Eric
5dd92ab506
N°2311 - Add logs to logout
2019-08-20 10:26:43 +02:00
Eric
7120201469
N°2311 - Extend logout/error page
2019-08-20 09:53:11 +02:00
Stephen Abello
046eeb03f2
N°1671 Portal: Fix Aggregate Brick when user profile is not allowed to see one of the sub-brick
2019-08-19 11:28:53 +02:00
Eric
ce22dc9309
N°2311 - HybridAuth Extension
2019-08-16 18:42:04 +02:00
Eric
953c9e588e
N°2311 - CAS Extension
2019-08-16 17:39:48 +02:00
Eric
2ceb4068ad
N°2311 - Refactor Login FSM Extensions
2019-08-16 17:39:48 +02:00
Eric
11f62063a6
N°2311 - Debug login FSM
2019-08-16 17:39:47 +02:00
Eric
7885d712a6
N°2311 - Authentication extensibility in iTop
2019-08-16 17:39:47 +02:00
Molkobain
a6ca282ff4
Internal: Remove unused function in portal form handler
2019-08-16 17:05:37 +02:00
Molkobain
8ef67dee3b
N°1881.1 Portal: Add DOM attribute (and widget helper) on object form that fields have been touched
2019-08-16 17:02:40 +02:00
Molkobain
fb1b730bd5
N°2435.8 Manage TCPDF lib using composer
2019-08-16 10:38:30 +02:00
Stephen Abello
af9c45849e
N°1320: Add option to show/hide linkedsets out of user's scopes in portal
2019-08-16 10:05:45 +02:00
Pierre Goiffon
a711a67f4c
Fix throw inside transaction without rollback
2019-08-14 14:43:40 +02:00
Molkobain
b743b7e2fb
N°2435.7 Manage ArchiveTar lib using composer
2019-08-14 14:06:56 +02:00
Molkobain
3db92359e5
N°2435.6 Add .gitignore to remove non necessary folders from dependancies (eg. examples, tests, docs, ...)
2019-08-14 14:06:56 +02:00
Stephen Abello
088f08b315
N°967 Portal: Browse brick actions are now ordered following a rank tag
2019-08-14 12:39:32 +02:00
Molkobain
71cd61dfe4
Internal: Remove ClassLoader affectation from bootstrap.inc.php as we don't use it yet.
2019-08-14 10:30:43 +02:00
Molkobain
947e26d864
Internal: Change how the bootstrap.inc.php file is included in endpoints (This completes commit ec095896)
2019-08-13 17:38:51 +02:00
Molkobain
e3995a130f
PHPDoc
2019-08-13 17:25:04 +02:00
Molkobain
384641e274
N°895 Portal: Filter linkedsets on remote object scopes
2019-08-13 16:59:25 +02:00
Molkobain
0985415e11
N°2435.5 Manage SwiftMailer lib using composer
2019-08-13 14:09:16 +02:00
Molkobain
3e13c9e825
N°2435.4 Manage SwiftMailer lib using composer
2019-08-13 13:51:41 +02:00
Molkobain
ec09589646
N°2439 Add real autoloader for framework files (not modules)
2019-08-13 13:46:19 +02:00
Molkobain
83e3321a48
N°2435.3 Security hardening: Avoid direct access to lib directory
2019-08-13 10:52:15 +02:00
Molkobain
bb4c8ea52d
N°2435.2 Manage SCSSPHP lib using composer
2019-08-13 10:50:54 +02:00
Molkobain
5960dc6245
N°2435.1 Portal: Split portal composer.json in 2
...
- Autoloader for portal files in the itop-portal-base module
- Dependencies moved to root composer.json
- Add autoloader for /core and /application content
2019-08-13 10:34:22 +02:00
Molkobain
ca92316e7d
N°919 Portal: Make portal denial based on user profiles work again
2019-08-12 16:15:09 +02:00
Molkobain
b096472ccf
PHPDoc
2019-08-12 11:45:33 +02:00
Molkobain
261498d225
Internal: Move expression cache files in a dedicated directory
2019-08-12 11:45:33 +02:00
Stephen Abello
320a6b8a16
N°2238 Portal: Track in object's history attachments addition and deletion
2019-08-09 15:37:52 +02:00
Stephen Abello
b3cadaf314
PHP doc + typo
2019-08-09 10:49:55 +02:00
Stephen Abello
660852115e
Portal: Rename an endpoint with a typo
2019-08-09 10:49:55 +02:00
Stephen Abello
543e57ed7d
N°2432 Portal: Manage and Browse brick filters now apply on subclasses fields in lazy mode
2019-08-09 10:49:55 +02:00
Pierre Goiffon
4d78b7ca13
📝 add comment on prefill API call
2019-08-08 09:44:17 +02:00
Pierre Goiffon
a32bdf3f2f
📝 fix phpdoc (see call in UI.php operation=new)
2019-08-07 18:10:20 +02:00
Pierre Goiffon
5382d2006c
N°2429 change visibility of \DBObject::GetReferencingObjects internal method
...
In iTop, only called by \DBObject::MakeDeletionPlan which is private
Not called in our extensions
Not called/redefined in any client customization
2019-08-07 16:08:59 +02:00
Pierre Goiffon
ae1d60d11e
📝 little PHPDoc modification
2019-08-07 11:50:59 +02:00
Stephen Abello
e8c0bcfbb2
N°769 Portal: Add parameter to set default list length in ManageBrick and BrowseBrick
2019-08-07 10:28:25 +02:00
Molkobain
b8a04cb842
Create README.md
2019-08-07 10:12:46 +02:00
Pierre Goiffon
b4ffa8c045
📝 Fix wrong phpdoc
2019-08-06 15:27:32 +02:00
Pierre Goiffon
7e540f16f9
🎨 \DBObject::DBDeleteSingleObject : isolate exit condition at the top
2019-08-06 14:45:05 +02:00
Stephen Abello
e69275c6c5
N°956 Portal: Add an icon to copy object name and url next to the form title
...
* Add a generic utility to build iTop clipboard widget
* Can be used in portal, console and extensions
2019-08-06 12:29:18 +02:00
Stephen Abello
16c123df49
Trigger bootstrap modal loaded event in 66287757 refactor
2019-08-06 12:29:18 +02:00
Pierre Goiffon
446eee79fc
🎨 Unwrap useless else statement
2019-08-06 11:49:19 +02:00
Pierre Goiffon
cbc96d8a58
📝 Attachment : add some @var on object init
2019-08-05 11:04:26 +02:00
Stephen Abello
d2015b7d7b
N°1232 Portal: Harmonize right checks for external url in forms
2019-08-02 11:04:32 +02:00
Stephen Abello
305b236f41
N°2060: Add portal's ContextTag lost in Symfony migration
2019-08-02 10:58:52 +02:00
Pierre Goiffon
e172bd13df
N°2211 DataSynchro : remove DBUpdate() arguments for future 2.7.0
2019-08-01 17:04:01 +02:00
Stephen Abello
94cb4a2bb4
N°2060: Fix regression introduced in migration
2019-08-01 14:37:50 +02:00
Pierre Goiffon
7abbbf6b7b
📝 PHPDoc for BackgroundTask
2019-08-01 09:54:47 +02:00
Molkobain
66287757b3
Portal: Refactor creation of modal dialog through a common helper (CreatePortalModal(oOptions))
2019-07-31 15:51:25 +02:00
Molkobain
661ecc57c5
PHPDoc
2019-07-31 15:51:25 +02:00
Molkobain
15f9f79a24
Fix unit test to be used in the ITSM Designer (Shame shame shame 🔔 🙈 )
2019-07-31 15:51:25 +02:00
Molkobain
286374fe7c
N°1232 Portal: Allow external keys to be opened in object forms (only if user has permissions)
...
- Created new JS method to handle modals (bootstrap-portal-modal.js > CreatePortalModal)
- Moved from global modal hacks to the same file
2019-07-31 15:51:25 +02:00
Pierre Goiffon
ea288c2194
🌐 Fix english label
...
Many thanks @jbostoen who suggested the change in 60863c5fcf
2019-07-31 09:04:38 +02:00
Molkobain
927cd60ad2
N°1736.2 Fix sBrickSubtitle not being defined by default in most bricks
2019-07-30 17:41:09 +02:00
Molkobain
fb6e47e42a
N°1736 Portal: Add option to display ManageBrick's current tab description as the brick subtitle
...
Actually, every brick can now display a subtitle if they populate the sBrickSubtitle variable for the template.
2019-07-30 17:19:07 +02:00
Pierre Goiffon
34d4f6b1f9
N°2240 add /.maintenance in ignore
2019-07-30 08:59:52 +02:00
Stephen Abello
f7170953fb
N°2353: Typo in French dictionary
2019-07-29 15:33:48 +02:00
Pierre Goiffon
e80d52cc0f
N°2416 fix datepicker not opening anymore
...
This was brought by PR #40 integration in 06592d7d37
2019-07-29 12:12:34 +02:00
Pierre Goiffon
75da1ce7a7
🎨 iTopWebPage : some syntax highlighting in HEREDOC JS
2019-07-29 11:09:33 +02:00
Pierre Goiffon
7894c872dc
N°2414 Remove \DBObject::RegisterCallback
...
This was experimental and never used. The official way is to use iApplicationObjectExtension !
2019-07-26 16:24:06 +02:00
Pierre Goiffon
14b2d2ed4c
🔧 Update EditorConfig file with idea specific options
...
Available since PHPStorm 2019.2
@see https://blog.jetbrains.com/phpstorm/2019/07/phpstorm-2019-2-release/#editorconfig
2019-07-26 12:05:08 +02:00
Pierre Goiffon
a7b5077e0c
N°2010 \SetupUtils::MYSQL_NOT_VALIDATED_VERSION is now empty
2019-07-25 17:33:41 +02:00
Pierre Goiffon
de2b88b707
📝 PHPDoc for archiving remove @api
...
Public API is currently under review, we shouldn't change the review perimeter !
2019-07-25 17:33:41 +02:00
Stephen Abello
130734bec7
Merge branch 'master' into develop
...
# Conflicts:
# setup/backup.class.inc.php
2019-07-25 17:18:49 +02:00
Stephen Abello
d7fad4b646
Merge branch 'support/2.6.2'
2019-07-25 17:07:49 +02:00
Stephen Abello
db4c241cba
N°680 Fix 'G', 'd', 'j' DateTime format in regexp generation
2019-07-25 15:12:44 +02:00
Pierre Goiffon
be09909976
📝 PHPDoc for archiving : rephrase for clarity
...
Thanks @bruno-ds !!
2019-07-24 17:04:10 +02:00
Stephen Abello
f4d538ef6c
N°2410 Fix regression in mysqldump call introduced in 2.6.2
2019-07-24 16:02:20 +02:00
Molkobain
a6b1da393b
N°2269 Font Awesome v5: Fix files integration in portal
2019-07-23 18:10:00 +02:00
Pierre Goiffon
501c20a34d
📝 Some PHPDoc on object archiving
2019-07-23 18:05:05 +02:00
Molkobain
b858ba3786
N°1268 Add support for abstract classes creation in browse brick
...
* Refactored parts of the create brick into the object controller
2019-07-23 11:45:33 +02:00
Molkobain
60863c5fcf
🌐 Fix English dictionary entries
2019-07-23 11:45:33 +02:00
Pierre Goiffon
1ee3f4a984
Merge remote-tracking branch 'origin/master' into develop
2019-07-22 15:59:21 +02:00
Pierre Goiffon
aadb605dec
Merge remote-tracking branch 'origin/support/2.6.0'
2019-07-22 15:58:58 +02:00
Pierre Goiffon
f63f2bd445
N°1802 backup : remove old itop_root config parameter
...
Was renamed to itop_backup_incident in 2.6.0
2019-07-22 15:57:30 +02:00
Molkobain
0205f150a3
N°902.3 Portal: Extract column sorting helper to a specific service
2019-07-22 11:45:31 +02:00
Pierre Goiffon
cdbdf580c8
📝 CONTRIBUTING : small changes
...
* security wasn't in bold
* more explanations on branches, ask to base always on develop
2019-07-22 11:34:48 +02:00
Pierre Goiffon
e4ba2b0828
N°2366 Remove unused iTopArchive class
2019-07-22 09:02:45 +02:00
Pierre Goiffon
28d00cc7c9
N°2366 Remove zip from mandatory PHP ext
2019-07-22 09:02:44 +02:00
Pierre Goiffon
b897da8f6f
N°2404 remove charset/collation DB parameters
...
Are constants since N°1001 (iTop 2.5.0)
2019-07-19 16:58:25 +02:00
Pierre Goiffon
dc868b16ab
N°2366 remove DBBackup::CreateZip
...
* remove method and its dependencies
* create \utils::GetFileMimeType
* in \DBBackup::DownloadBackup mime type isn't hardcoded anymore
2019-07-19 15:51:05 +02:00
Pierre Goiffon
ee2e109769
N°2269 Font Awesome v5 : kept old CSS name for compat
2019-07-19 10:43:58 +02:00
Pierre Goiffon
2b955ddd53
N°2269 Font Awesome v5 : move back lib from /lib to /css
...
Thanks to the team, yeah you're right, this wasn't a good idea (did because there is a way to use Font Awesome in JS, but we'll see if we do so in the future, for now we don't :) )
2019-07-19 10:16:22 +02:00
Molkobain
33cb4fd42b
N°902.2 Portal: Add support for columns sorting in BrowseBrick's "lazy" mode
...
(And start refactoring in ManageBrick)
2019-07-18 12:11:09 +02:00
Pierre Goiffon
a03af7e9ef
🐛 N°2240 Fix startup.inc.php cannot be called alone anymore
2019-07-17 16:50:48 +02:00
Molkobain
90dbc35d41
N°902 Portal: Add support for columns sorting in ManageBrick's "lazy" mode
2019-07-17 15:40:44 +02:00
Molkobain
66e9fc2068
N°2396 Autocomplete: Harmonize accent handling
2019-07-17 15:40:43 +02:00
Molkobain
0a9b376684
N°2324 Remove legacy portal security check
2019-07-17 15:40:43 +02:00
Molkobain
83ba909c08
N°2112 Remove legacy end-user portal
...
- Accessing the /portal URL redirects to the new portal (/pages/exec.php?exec_module=itop-portal-base&...)
- Removed /itop_design/portals/portal[@id="legacy_portal"] from standard datamodel, adapt your XML accordingly
- Removed /itop_design/constants/constant[@id^="PORTAL_"] from standard datamodel, adapt your XML accordingly
- Removed PortalWebPage & TransactionException classes
- Added a warning in setup when no portal is selected
2019-07-17 15:40:43 +02:00
Pierre Goiffon
9ed33f16dd
N°2269 Font Awesome v5 : fix new lines breaking code :(
...
Those regressions were introduced in a4743901
Saw with a JS error in schema.php
2019-07-17 11:02:26 +02:00
Pierre Goiffon
e9fdb61bb5
N°2269 Font Awesome v5 : remove unused CSS
2019-07-17 10:24:07 +02:00
Pierre Goiffon
073b1cd303
N°2018 Backup : fix version check for MySQL8
...
Now uses \CMDBSource::GetDBVersion instead of mysqldump -V
2019-07-16 18:05:31 +02:00
Pierre Goiffon
e712791f43
Merge remote-tracking branch 'origin/master' into develop
2019-07-16 17:45:24 +02:00
Pierre Goiffon
fefd9aae95
N°2399 backup : throw exception and log error if cannot create archive
...
(before error was silently ignored)
2019-07-16 17:44:56 +02:00
Pierre Goiffon
a4743901a3
N°2269 Font Awesome : update iTop for new v5 icons
...
* remove useless css in light-grey (weren't used)
* change icons class names from v4 to v5
2019-07-16 12:20:59 +02:00
Pierre Goiffon
ced9489643
N°2269 Add Font-Awesome v5.9.0
...
Also add v4-shims for compatibility. Will be removed with N°2393
2019-07-16 09:57:51 +02:00
Pierre Goiffon
0c45a0ca49
N°2269 Remove Font-Awesome v4
2019-07-16 09:57:51 +02:00
Pierre Goiffon
f3572e82ec
N°2060 fix portal crash if css not yet compiled
...
Was using services.yaml parameters before they were defined
2019-07-16 09:57:30 +02:00
Pierre Goiffon
dd620022a8
📝 new iTop security policy ( #85 )
2019-07-16 08:47:30 +02:00
Molkobain
2237ec581c
N°2323.7 Fix images display in browse brick as a list
2019-07-15 13:41:36 +02:00
Eric
a0cd70ae71
N°2240 - Supportability - Maintenance mode (setup)
2019-07-12 16:13:13 +02:00
Eric
80fce579a0
N°2240 - Supportability - Maintenance mode (soap message removed)
2019-07-12 15:35:20 +02:00
Pierre Goiffon
1313484ebe
💄 setup : update progress bar if error occurs
2019-07-12 11:14:53 +02:00
Pierre Goiffon
95aa541293
N°2150 Archive_Tar update : fix warnings on overloaded methods
...
In Archive_Tar the methods signatures did change... But the overrides were useless (same code or direct call to parent)
2019-07-12 10:34:23 +02:00
Molkobain
c4702f6a87
Merge remote-tracking branch 'origin/develop' into develop
2019-07-12 10:25:17 +02:00
Molkobain
5c0fc0bec5
N°2323.6 Reintegrate fixes in the new Symfony portal
2019-07-12 10:17:58 +02:00
Stephen Abello
d8de7b19cb
N°2226: Add missing files for Scss v1.0.0
2019-07-12 10:13:00 +02:00
Molkobain
38640b01a8
Merge branch 'feature/b2060-migrate-silex-to-symfony' into develop
...
# Conflicts:
# core/dbsearch.class.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/userprofilebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/helpers/applicationhelper.class.inc.php
# datamodels/2.x/itop-portal/module.itop-portal.php
2019-07-12 09:57:16 +02:00
Eric
a11e783867
N°2240 - Supportability - Maintenance mode (soap message)
2019-07-12 09:04:10 +02:00
Molkobain
8ca2fffa78
N°2060 [WIP] Initialisation of the portal application: Remove Silex framework files from embedded libs
2019-07-11 17:50:36 +02:00
Molkobain
3f3cbd17ed
N°2060 [WIP] Initialisation of the portal application: Remove Silex portal files
2019-07-11 17:50:31 +02:00
Molkobain
5a18769336
N°2060 [WIP] Initialisation of the portal application: Make AggregatePageBrick work again
2019-07-11 17:45:43 +02:00
Molkobain
cd6fe171cd
N°2060 [WIP] Initialisation of the portal application: Refactor way brick controllers forward actions between each others
2019-07-11 17:45:21 +02:00
Molkobain
ee45e546a8
N°2060 [WIP] Initialisation of the portal application: Code cleanup
2019-07-11 16:44:22 +02:00
Molkobain
c8be217a1d
N°2060 [WIP] Initialisation of the portal application: Make CreateBrick work again
2019-07-11 16:04:06 +02:00
Molkobain
618df6de1d
N°2060 [WIP] Initialisation of the portal application: Fix class extended by ObjectController
2019-07-11 16:03:44 +02:00
Pierre Goiffon
e6e79df8db
N°2150 update Archive_Tar to 1.4.7
...
Now we don't have anymore some Combodo specific code inside the lib \o/
2019-07-11 14:30:30 +02:00
Eric
509ca47b36
N°2240 - Supportability - Maintenance mode
2019-07-11 12:04:11 +02:00
Eric
066353e1e7
N°2240 - Supportability - Maintenance mode
2019-07-11 12:00:15 +02:00
Eric
a6737afb2f
N°2240 - Supportability - Maintenance mode
2019-07-11 10:22:39 +02:00
Molkobain
d5b3a62df5
N°2060 [WIP] Initialisation of the portal application: Code cleanup
2019-07-10 11:55:47 +02:00
Eric
7f82faefe1
N°679 - DB inconsistency protection
2019-07-10 11:49:44 +02:00
Molkobain
08731857e5
N°2060 [WIP] Initialisation of the portal application: Code cleanup
2019-07-10 11:45:47 +02:00
Molkobain
90062acc35
N°2060 [WIP] Initialisation of the portal application: Fix typo
2019-07-10 11:38:22 +02:00
Molkobain
030d912820
Code cleanup
...
- Format code accordingly to coding conventions
- Add / update PHPDoc all over the place
- Suppress most of the warnings that did not have a big impact on code's logic
2019-07-09 19:10:16 +02:00
Molkobain
9e9187b169
N°2060 [WIP] Initialisation of the portal application: Huge code cleanup
...
- Rename variables and methods in iTop files to match coding conventions
- Format code accordingly to coding conventions
- Add / update PHPDoc all over the place
- Suppress most of the warnings that did not have a big impact on code's logic
2019-07-09 19:08:40 +02:00
Molkobain
c1258d0527
N°2060 [WIP] Initialisation of the portal application:
...
- Fix attachment download: Controller's action was still using the Silex\Application object to return a response.
- Push all cleanup modifications as well by mistake...
2019-07-09 17:54:37 +02:00
Molkobain
b7039c81ba
N°2060 [WIP] Initialisation of the portal application: Object's routes
...
- Fix autocomplete search route path was incorrect (missing parameters)
- Fix generic search route by removing the default controller as it didn't exist
- Remove regular search route as it was never used / implemented
2019-07-09 16:15:14 +02:00
Molkobain
7088b96c16
N°2060 [WIP] Initialisation of the portal application: Enable webprofiler for easier debug!
2019-07-08 16:59:46 +02:00
Molkobain
d31273dff5
N°2060 [WIP] Initialisation of the portal application: PHPDoc
2019-07-08 16:04:25 +02:00
Molkobain
85460ef6e2
N°2060 [WIP] Initialisation of the portal application:
...
- Remove old composer.json that was not necessary
- Add empty model.itop-portal-base.php file for future XML snippets to be loaded
- Increase module version number to 2.7.0
2019-07-08 15:49:07 +02:00
Molkobain
5ab059c404
N°2060 [WIP] Initialisation of the portal application:
...
- Simplify PortalUrlMaker to avoid necessity to copy most of the code. Drawback: BC break, check migration notes.
- Fix multiple portal instances (in the same running process)
- Refactor portal constants into env. vars
- Fix cache path for services (ScopeValidator & LifecycleValidator)
- Change evalution order of the portal id ($_ENV['PORTAL_ID'] > $_GET('portal_id'] > PORTAL_ID)
2019-07-08 15:44:39 +02:00
Molkobain
322ea1870d
N°2060 [WIP] Initialisation of the portal application:
...
- Refactor kernel bootstrapping:
- Make bin/console from SF work
- Make iTopPortalEditUrlMaker / iTopPortalViewUrlMaker work again
- Add classmap to /application in composer.json
2019-07-05 15:53:05 +02:00
Pierre Goiffon
878b87b68c
N°2349 fix GroupBy dashlet on classes with ExternalField to ExternalField
2019-07-05 12:10:04 +02:00
Molkobain
ab3024d98a
N°2060 [WIP] Initialisation of the portal application: Restore ApplicationHelper.php history
2019-07-05 11:42:39 +02:00
Molkobain
d447c96385
N°2060 [WIP] Initialisation of the portal application: Temporary delete ApplicationHelper.php in order to restore history
2019-07-05 11:36:02 +02:00
Molkobain
e3ac4d1039
N°2060 [WIP] Initialisation of the portal application:
...
- Make ManageBrick work again!
- Make ObjectController::CreateFromFactory() work again
- Refactor object form rendering from Twig string (in memory) in the "object_form_handler" service
- Fix ApplicationHelper::GetLoadedListFromClass()
2019-07-05 11:30:08 +02:00
Molkobain
8fc4aa7240
N°2060 [WIP] Initialisation of the portal application: Fix template paths in ObjectController
2019-07-04 17:12:53 +02:00
Molkobain
aff9d8cbca
N°2060 [WIP] Initialisation of the portal application:
...
- Fix object_brick.yaml actions path (Double slashes)
- Add declaration for "security_helper" service
- Refactor ObjectFormManager and ObjectFormHandlerHelper for SF
2019-07-04 17:06:58 +02:00
Molkobain
260c15c6b6
N°2060 [WIP] Initialisation of the portal application:
...
- Refactor of BrickCollection to store properties at the root level, hence having easier API
- Code cleanup (Coding conventions, PHPDoc)
- Extract ObjectController::HandleForm() into new "object_form_handler" service
- Migrate ObjectController and UserProfileBrickController to SF
- Remove route/action "Search hierarchy" from ObjectController as it was never implemented
2019-07-04 15:14:46 +02:00
Purple Grape
dab48146bf
Update zh_cn.dict.itop-config-mgmt.php
...
translation correction
2019-07-03 08:42:10 +02:00
Pierre Goiffon
14ae9f0809
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# css/css-variables.scss
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/itop-attachments/module.attachments.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2019-07-02 15:09:11 +02:00
Pierre Goiffon
b3369c8b0e
Update version number for 2.5.3 beta
2019-07-02 14:54:36 +02:00
Molkobain
1115cdd2ec
Portal: Fix sidebar menu entries being to narrow when only "Home" displayed
2019-07-01 22:33:15 +02:00
Molkobain
44673b9fd2
N°2060 [WIP] Initialisation of the portal application: Replace SF default UrlGenerator with our own
2019-07-01 17:50:25 +02:00
Molkobain
faf9b32176
N°2060 [WIP] Initialisation of the portal application
2019-07-01 17:47:45 +02:00
Molkobain
a93c1092fc
N°2060 [WIP] Initialisation of the portal application:
...
- Refactor SecurityHelper into SF service (DI)
- Make BrowseBrick work (again!)
- Extract methods from BrowseBrickController to a dedicated service (BrowseBrickHelper)
2019-07-01 17:41:12 +02:00
Pierre Goiffon
6c81163d20
Merge remote-tracking branch 'origin/master' into develop
2019-07-01 17:30:21 +02:00
Molkobain
f71edbf45b
N°2060 [WIP] Initialisation of the portal application: Refactor to make services 'combodo.current_user' and 'combodo.current_contact.photo_url' work
2019-06-28 17:26:30 +02:00
Molkobain
0d3e48475e
N°2060 [WIP] Initialisation of the portal application: Code cleanup
2019-06-28 17:26:30 +02:00
Molkobain
ae8451e837
N°2060 [WIP] Initialisation of the portal application:
...
- Default env. is now production.
- Debug mode through url param. is now available like in Silex version
2019-06-28 17:26:24 +02:00
Pierre Goiffon
33903f570b
N°2174 ExternalField to friendlyname : restore behavior without dict key
...
* displaying "class -> field" was breaking exports (columns labels for ext fields to friendlynames in default datamodel, for example UserRequest.agent_id_friendlyname)
* dict key is always searched first, so a custom label can always be set
2019-06-28 15:13:15 +02:00
Molkobain
123e734046
N°2060 [WIP] Initialisation of the portal application: Fix file format (tab used instead of spaces)
2019-06-28 15:09:06 +02:00
Molkobain
008261e918
N°2060 [WIP] Initialisation of the portal application: Part of the "brick_collection" service refactoring
2019-06-28 15:08:30 +02:00
Molkobain
d388086baa
N°2060 [WIP] Initialisation of the portal application: Fix composer.json file
...
- Reupgrade Symfony/* to v3.4.* instead of v3.4.12 thanks to symfony/polyfill-php70
- Remove "replace" key that was necessary for Flex
- Add "classmap" key to auload all classes from <itop>/core (eg. \ModuleDesign)
2019-06-28 15:07:12 +02:00
Stephen Abello
f7af705bb5
Fix scss and css errors
2019-06-28 14:25:25 +02:00
Stephen Abello
a827cb7546
N°2226: Upgrade ScssPHP to v1.0.0
2019-06-28 14:24:56 +02:00
Stephen Abello
c7fe6f388a
N°2270: Upgrade bootstrap to v3.4.1
2019-06-28 14:22:35 +02:00
Molkobain
a04080a93e
N°2060 [WIP] Initialisation of the portal application: Migrate routes to YAML format
2019-06-27 17:11:04 +02:00
Molkobain
04158f5589
N°2060 [WIP] Initialisation of the portal application: Fix of the composer.json file
...
- Temporary downgrade Symfony/* from v3.4.* to v3.4.12 because of a PHP7 dependency in Symfony/http-foundation
- Remove Flex as it was only compatible with PHP7
- Remove auto scripts relying on Flex (post update and post install)
- Rename rogue itop-portal-base/composer.json that should not be used (will be removed later)
2019-06-27 16:32:45 +02:00
bruno DA SILVA
127809a836
Merge remote-tracking branch 'origin/support/2.5'
2019-06-26 15:41:13 +02:00
bruno DA SILVA
6c948873ff
N°2323.6 Fix regression introduced in previous commit
2019-06-26 15:38:42 +02:00
Stephen Abello
a93be39aeb
N°2166: Fix regression introduced in b157fad
2019-06-26 14:15:04 +02:00
Stephen Abello
6de6c38834
N°2268: Upgrade jQuery to v3.4.1 and jQuery migrate to v3.1.0. Remove version number from both libraries filename
2019-06-26 10:36:40 +02:00
Pierre Goiffon
a5745ba72d
N°2345 privUITransactionFile : avoid create dir race condition
2019-06-26 10:17:47 +02:00
Eric
7c93d116ec
2.6.2 fix module version
2019-06-25 16:56:15 +02:00
Molkobain
0867d8a3c4
N°2060 [WIP] Initialisation of the portal application
2019-06-25 11:58:38 +02:00
Stephen Abello
71f5d29cba
N°2271: Upgrade CKEditor to v4.11.4
2019-06-24 15:52:26 +02:00
Stephen Abello
f948d6e026
N°2336: Set right parameter for --ssl-mode
2019-06-21 14:37:48 +02:00
Stephen Abello
a222ead43c
N°2336: Use --ssl-mode instead of --ssl with MySQL >= 5.7.0
2019-06-21 13:59:36 +02:00
Stephen Abello
d6bfbbcd30
N°1529: Allow parameter OpenSSLMcryptCompatibility to be used
2019-06-21 11:08:23 +02:00
Molkobain
17df9d0f9d
Merge remote-tracking branch 'origin/support/2.5'
2019-06-21 10:03:17 +02:00
Molkobain
93099ea3c7
N°2323.5 Fix regression introduced in previous commit
...
Could not upload images in HTML field anymore
2019-06-21 10:01:31 +02:00
Molkobain
2f9e050e2b
N°2323.4 Fix regression introduced in previous commit
...
Current user picture was no longer displayed in the portal
(cherry picked from commit 56b9eb6cf3 )
2019-06-20 17:52:26 +02:00
Eric
e68340273b
Merge branch 'master' into develop
...
# Conflicts:
# core/config.class.inc.php
# core/htmlsanitizer.class.inc.php
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/version.xml
# dictionaries/zh_cn.dictionary.itop.ui.php
# synchro/synchrodatasource.class.inc.php
2019-06-20 16:11:38 +02:00
Eric
5c341138e1
N°2129 - Fix lost dict. entries by toolkit updating script
2019-06-20 15:48:41 +02:00
Molkobain
56b9eb6cf3
N°2323.4 Fix regression introduced in previous commit
...
Current user picture was no longer displayed in the portal
2019-06-20 10:34:10 +02:00
Pierre Goiffon
db20244212
N°2174 External field label retrieval : fix default value
...
\AttributeDefinition::GetLabel with default null was returning att code !! Added PHPDoc and changed default value
2019-06-19 16:13:29 +02:00
Pierre Goiffon
6f9f74e72f
N°2230 BR translations
...
Many thanks to our client Pimkie !
2019-06-19 15:55:05 +02:00
Eric
8070d5b9b7
2.6.2-beta
2019-06-19 15:08:40 +02:00
Molkobain
6197ecbaf4
Update version number for 2.6.2 beta
2019-06-19 14:43:21 +02:00
Eric
ca585d3f42
N°2044 - Search Form Prefill not effective when searching objects to add to an AttributeLinkedSet (n:1)
2019-06-18 15:53:48 +02:00
Eric
02c78d4044
N°2278 - Object-copier: Fix n:n link attributes set to default on copy
...
(cherry picked from commit 6564d84a2f )
2019-06-18 14:57:45 +02:00
Pierre Goiffon
9e5d668c02
N°2328 TagSet : allow to create codes with 3 characters
...
(was wrongly 4 min before)
2019-06-18 14:36:47 +02:00
Pierre Goiffon
051656f295
N°2174 External field : change label retrieval
...
* Now the dict entry will be used even for friendly names
* If no dict keys exists, then the class path plus field name will be returned
2019-06-18 11:27:02 +02:00
Eric
9a51a44549
Merge remote-tracking branch 'origin/support/2.5'
2019-06-18 10:50:04 +02:00
Eric
5102b113ed
N°2323 - Fix calls to ajax endpoints
...
(cherry picked from commit c723d19e01 )
2019-06-18 10:45:50 +02:00
Eric
f1e4d94499
N°2323 - Fix calls to ajax endpoints for portal
2019-06-18 10:43:45 +02:00
Pierre Goiffon
d04102bab3
N°2243 IT translations : final versions
2019-06-18 08:56:06 +02:00
Eric
c723d19e01
N°2323 - Fix calls to ajax endpoints
2019-06-17 15:59:43 +02:00
Eric
b0414748cb
Typo
2019-06-13 11:55:10 +02:00
Eric
dac77e0606
Revert id in select
2019-06-13 10:24:01 +02:00
Eric
02b98543d9
Fix Bad db_key_field definition
2019-06-13 10:06:52 +02:00
Eric
519aaadd9a
N°2157 - Fix backup manual warning
2019-06-13 09:44:40 +02:00
bruno DA SILVA
fe27fef530
Merge remote-tracking branch 'origin/master'
2019-06-12 18:27:11 +02:00
bruno DA SILVA
72dbb6f937
N°1373 - supportability: log stack trace on DBObject::Reload error
2019-06-12 18:26:35 +02:00
Pierre Goiffon
ccb29d10ae
N°2243 IT translations : keys in parent classes
2019-06-12 18:09:41 +02:00
Pierre Goiffon
e479775833
N°2243 IT translations
...
Thanks to our client Pimkie !
2019-06-12 18:09:41 +02:00
Stephen Abello
86a7192f5a
N°2160: Correctly initialize fields depending on a select field with only 1 value
2019-06-12 14:39:29 +02:00
Pierre Goiffon
4a1be13904
N°2208 new IT translations
2019-06-12 11:02:49 +02:00
Pierre Goiffon
0f3347f64d
📝 Fix some PhpDoc
2019-06-12 10:39:30 +02:00
Eric
6564d84a2f
N°2278 - Object-copier: Fix n:n link attributes set to default on copy
2019-06-12 10:17:19 +02:00
Eric
f4747c5cef
PHPStorm
2019-06-12 09:46:21 +02:00
Eric
1e92c2f28a
Sanitize error message
2019-06-11 17:18:36 +02:00
Eric
e4b097b196
Add KPIs to search
2019-06-11 17:18:35 +02:00
Eric
85653c9ffc
Sanityzation:
...
- no use of cache to build queries when the flag is set
- Use class key instead of 'id' for default select column
2019-06-11 17:18:35 +02:00
Pierre Goiffon
b1761e04b2
🎨 DataSynchro : remove some warnings, code formating
...
(cherry picked with small modifications from commit 26dcaa0ded : it was reverted on master as this branch contains a fix only version, ok to commit it on develop though)
2019-06-11 17:01:08 +02:00
Stephen Abello
da5d8b20fa
N°2044: Enable Search form prefill when adding objects to 1:n
2019-06-11 16:59:27 +02:00
Molkobain
9a5a5f858f
N°2235.2 Fix emptied URLs on object modification when URL starts with a placeholder
2019-06-11 16:13:53 +02:00
Pierre Goiffon
d6b194b0aa
📝 Change back CONTRIBUTING file name to uppercase
2019-06-11 14:53:56 +02:00
Pierre Goiffon
50ed52bacc
Fix ticket ref uniqueness rule declaration (many thanks @jbostoen !)
2019-06-11 09:08:36 +02:00
Thomas Casteleyn
daa906a697
Only set Ticket ref if not yet present via import or synchro ( #82 )
...
New non blocking uniqueness rule on Ticket.ref to warn when having ref duplicates
2019-06-10 11:28:24 +02:00
Stephen Abello
a0cd281c42
⬆️ iTop >=2.6.1 supports PHP 7.3.x
2019-06-07 16:16:23 +02:00
Pierre Goiffon
ecd8f40c0f
🔧 Create a .editorconfig
...
See https://editorconfig.org/
2019-06-07 15:22:21 +02:00
Pierre Goiffon
616c1b9b73
🔧 Update PhpStorm formatter
2019-06-07 15:21:59 +02:00
Stephen Abello
6bb5606c00
N°2216: Set the mandatory icon inline with its field
2019-06-06 15:56:05 +02:00
Eric
a6ceb88fca
N°2216 - Request Template Mandatory fields are not marked as "Mandatory"
2019-06-06 15:14:31 +02:00
Eric
7bb7a94fbc
N°2291 - Fix blinking of warning image on mandatory HTML field
2019-06-06 15:14:31 +02:00
Pierre Goiffon
e4324cedb4
N°2235 Enable notification placeholders in hyperlinks
...
(cherry picked from commit bc55bfbee1 )
2019-06-06 10:59:44 +02:00
Eric
07781c7c9d
1023 - Email Outlook : Fix iTop page broken by tag <o:p>
2019-06-06 09:56:31 +02:00
Stephen Abello
ea58a807fc
N°2044: Forgot to add a variable in 7c1290f
2019-06-06 09:44:20 +02:00
Pierre Goiffon
fb6806a1c1
🎨 DataSynchro : some phpdoc and formatting
2019-06-05 17:26:00 +02:00
Pierre Goiffon
d24870e0ae
Merge remote-tracking branch 'origin/master' into develop
2019-06-04 16:23:58 +02:00
Pierre Goiffon
166451c4e9
N°532 autocomplete : fix regressions introduced in ebb541e4
...
* multiple separator
* XSS filter
* search field value reset
2019-06-04 11:32:08 +02:00
Stephen Abello
7c1290f684
N°2044: Enable Search form prefill when adding objects to 1:n
2019-06-04 11:18:30 +02:00
Stephen Abello
179c774ba8
N°2207: Copy the content from the right source file into production.delta.prev.xml
2019-06-03 12:36:05 +02:00
Guy Couronné
b57c224052
📈 Add KPI on API Rest ( #67 )
2019-06-03 09:07:25 +02:00
Stephen Abello
e886d80de6
N°2215: Set autocomplete minimum width (instead of its width) to its parent field width
2019-05-31 12:14:41 +02:00
Pierre Goiffon
3791b2dd24
📝 Change return type for \MetaModel::GetObject
2019-05-28 17:18:07 +02:00
Pierre Goiffon
12c916f4e5
📝 Add @var for iApplicationUIExtension loops
2019-05-28 17:16:02 +02:00
Pierre Goiffon
ba7e00e130
N°2211 DataSynchro : rollback oChange remove in DBUpdate() + added log
...
Be conservative : this is a fix only release... oChange will be done in the future, it's a work that should be done everywhere in iTop and not only DataSynchro
2019-05-28 17:16:02 +02:00
Molkobain
895abde39c
N°2060 [WIP] Renamed Silex portal dir before starting Symfony integration
2019-05-28 12:04:34 +02:00
Eric
bada955725
N°2211 - DataSynchro : fix delete rules
...
- code review bug fixes and comments
2019-05-28 10:40:00 +02:00
Molkobain
b6418d95e7
Add PHPDoc for type hinting as iTop replaces \DOMDocument with \MFDocument
2019-05-28 10:36:18 +02:00
Stephen Abello
f9e18675f3
N°2062: When a table displaying all rows is rebuilt (eg: by adding a column), reordering using columns now works
2019-05-24 16:20:31 +02:00
bruno DA SILVA
22416cc0be
:note: PhpDoc generation for the public API
...
- typo (tunning => tuning)
- rework of the README.md
2019-05-24 14:05:22 +02:00
Pierre Goiffon
ec086ad94a
📝 Fix /doc readme (thanks @jbostoen !)
2019-05-23 18:25:26 +02:00
Pierre Goiffon
17d4b570e8
N°2211 DataSynchro fix regression in DoJob2 method (create new iTop objects)
...
The \SynchroExecution::$m_oLastFullLoadStartDate is also used in DoJob2... So move back its instantiation in \SynchroExecution::PrepareProcessing, but with more variables and comment : the attribute is null until PrepareProcessing()
2019-05-23 18:15:50 +02:00
Pierre Goiffon
2dfad12553
Revert " 🎨 DataSynchro : remove some warnings, code formating"
...
This reverts commit 26dcaa0ded .
Such modifications does not belong to a fix only branch !!
2019-05-23 11:58:10 +02:00
Pierre Goiffon
b7dc55604e
🎨 DataSynchro : rename DoJob1/2/3 methods
2019-05-23 11:19:18 +02:00
Pierre Goiffon
991bc359cb
Merge remote-tracking branch 'origin/master' into develop
2019-05-23 10:52:34 +02:00
Pierre Goiffon
26dcaa0ded
🎨 DataSynchro : remove some warnings, code formating
2019-05-23 10:48:54 +02:00
Pierre Goiffon
b5d3ddb7e3
N°2211 DataSynchro : fix deletion rules regression when using synchro_exec.php
...
* fix regression : no update if exec phase only and full load interval <= 0
* fix regression : update if exec phase only and full load interval > 0
* some PHPDoc
* move back \SynchroExecution::$m_oLastFullLoadStartDate init to constructor
* add a boolean member to indicate if LastFullLoadStartDate was passed by caller
* factorize database current datetime retrieval
2019-05-23 10:48:54 +02:00
Pierre Goiffon
8b178914b3
Fix \DBObject::DBDelete PHPDoc
2019-05-22 14:46:53 +02:00
OИUЯd da silva
ce6fd4d775
bugfix: remove lower cased version of the README.md
2019-05-22 11:44:45 +02:00
Molkobain
bc55bfbee1
N°2235 Enable notification placeholders in hyperlinks
2019-05-21 17:38:28 +02:00
OИUЯd da silva
9c75cb4537
:note: PhpDoc generation for the public API ( #63 )
...
- generate phpdoc to a dokuwiki compatible format
- add/update the phpdoc of a selection of class methods
2019-05-21 12:05:52 +02:00
bruno DA SILVA
633fa343a5
N°775 - request template : fix mandatory field list with only one possible value
2019-05-20 17:47:15 +02:00
bruno DA SILVA
a1d01e252b
N°2191 - Stopwatch sub-items no more available as search criteria
2019-05-20 17:03:25 +02:00
Stephen Abello
e9119e95ac
N°1164, SF#1491: Add code snippets with syntax highlighting to CaseLog/HTML fields
2019-05-17 15:59:01 +02:00
Molkobain
af332a34d6
♻️ Make ticket reference generation working with new sub-classes ( #78 )
2019-05-17 11:21:24 +02:00
Molkobain
2d6251e5df
💄 Add warning message CSS class (like error message)
2019-05-15 17:53:48 +02:00
Stephen Abello
b157fad0b6
N°2166: Portal: fields in CKEditor modals are inactive
2019-05-15 15:41:38 +02:00
Stephen Abello
70d2bb163c
N°2179: Strengthen data/setup directory creation
2019-05-15 11:27:53 +02:00
Pierre Goiffon
d9bf3339d2
linkswidget : remove dead (unreachable) code
2019-05-13 09:57:24 +02:00
Pierre Goiffon
b4ee5cd59c
Merge branch 'master' into develop
2019-05-13 08:54:00 +02:00
Pierre Goiffon
fae6c89e9a
Merge remote-tracking branch 'origin/support/2.5'
2019-05-13 08:53:50 +02:00
Pierre Goiffon
89d310258b
N°2198 ReloadBlock call and parameter escaping improvements
...
Use an anonymous function instead of a string to get rid of a useless level of escaping
Use json_encode instead of addslashes
(many thanks for the tips @bruno-ds !!)
2019-05-09 10:37:34 +02:00
Pierre Goiffon
a58529f46c
N°2198 Fix "invalid filter" error when refreshing "Requests assigned to me"
2019-05-07 18:39:38 +02:00
Pierre Goiffon
12a2035791
N°2192 table-selectable-lines : add forgotten param
2019-05-07 11:53:39 +02:00
Pierre Goiffon
b1ff7f0e9b
N°2192 table-selectable-lines : replace another :has selector, and use existing constant
2019-05-07 11:44:41 +02:00
OИUЯd da silva
23cf2b91f4
make demo_mode effect more expressive
...
closes #71
2019-05-06 11:42:27 +02:00
Pierre Goiffon
3c4fe338b6
N°2192 fix freeze when lots of lines in a table with selectable lines
...
Many thanks to Jeffrey Bostoen (@jbostoen) for the bug report !
2019-05-03 17:43:36 +02:00
Pierre Goiffon
6159ab33b7
🔊 DBSearch ajax update : better handling of invalid queries
2019-05-02 17:33:41 +02:00
Molkobain
91f410a85c
💄 Fix images being too large in icon selector (dashboards and Designer)
...
Note: The widget still needs a more aggressive refactoring to render nicely...
2019-05-02 16:42:21 +02:00
Pierre Goiffon
58ffd37f9e
N°1283 Add option to open WebPageMenuNode in new window
2019-04-30 16:11:29 +02:00
Eric
0a48696cd8
Carbon: N°1855 - Fix: Cannot remove last 'dependencies' with UI
...
Note that multi-select value when no entry is selected is "" and not []
in order to be posted, so multi-select values are not always arrays.
2019-04-30 15:46:44 +02:00
Eric
2f71570390
Carbon: N°1855 - fix "depends on" displaying fields from children
2019-04-30 12:02:13 +02:00
Thomas Casteleyn
5c9d98d12c
Fix cron crash when MySQL connection lost ( #80 )
2019-04-30 11:02:02 +02:00
Pierre Goiffon
15362df69a
Merge branch 'master' into develop
2019-04-29 11:26:52 +02:00
Pierre Goiffon
77f757995e
Merge remote-tracking branch 'origin/support/2.5'
2019-04-29 11:26:37 +02:00
Thomas Casteleyn
2858d13fd5
🐛 Fix default usage of iTopMutex when TLS is enabled
...
See R-021467
2019-04-29 11:18:54 +02:00
Thomas Casteleyn
ab0c97621a
Add support to optionally mention username in password reset mail ( #76 )
...
Can now use login in reset password email dict keys
* UI:ResetPwd-EmailSubject
* UI:ResetPwd-EmailBody
2019-04-29 11:12:19 +02:00
Molkobain
78b6c03af7
💡 Add some PHPDoc
2019-04-25 12:46:57 +02:00
Molkobain
22342cdc05
🐛 N°2184 Fix validation issue when several label fiels in a dashlet/designer form
2019-04-25 12:42:16 +02:00
Stephen Abello
99f398a87e
N°1529: Correct wrong constant name for Mcrypt, handle iv generation fails to avoid data corruption
2019-04-24 11:44:43 +02:00
Molkobain
dccdd84c25
♻️ Fix unit tests for compatibility with CI
2019-04-17 14:52:58 +02:00
Guy Couronné
d4d16f43ac
✨ Add status.php for getting iTop's status ( #56 )
...
Allow for HAProxy and monitoring to get iTop's status
✅ Add tests for status
Signed-off-by: Guy Couronné <gcouronne:@sapiens.biz>
2019-04-17 09:21:45 +02:00
Molkobain
dcf4963e0c
N°2152 Fix bad XML generation when adding a dashboard attribute on a new class
2019-04-16 17:15:15 +02:00
Pierre Goiffon
a773a4957a
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# README.md
2019-04-10 16:26:37 +02:00
Pierre Goiffon
87ee731dbe
📝 Update readme for 2.6.1
2019-04-10 16:24:34 +02:00
Eric
9ec36a76f6
Carbon: N°1589 - Check migration
2019-04-10 12:12:31 +02:00
Pierre Goiffon
5dc8283229
💡 Some doc for Config::GetModule* methods
2019-04-10 11:27:11 +02:00
Eric
09b470e6c7
Better output
2019-04-09 10:43:39 +02:00
Molkobain
40151c7a43
N°2147 Fix non working impact relation when based on default value
2019-04-05 16:25:26 +02:00
Molkobain
34c030b501
N°2070 Extend ModelFactory implementations to optionally check meta classes (PHP) along with regular XML classes
2019-04-05 15:48:29 +02:00
Pierre Goiffon
e9a2528b13
📝 CONTRIBUTING : use emoji codes instead of characters
2019-04-03 15:33:15 +02:00
Pierre Goiffon
e9d72bd022
💡 Fix some PhpDoc for \utils::DoPostRequest
2019-04-03 15:29:06 +02:00
Pierre Goiffon
b166686a15
📝 CONTRIBUTING : add a note on datamodel modifications ( #68 )
...
* %memo% CONTRIBUTING : suggest use SF tickets for default datamodel modifications
2019-04-02 09:02:02 +02:00
Molkobain
c59d3cc624
Fix unreachable log message on exception
2019-04-01 16:52:22 +02:00
Pierre Goiffon
ca95060b05
idea update for 2019.1
2019-03-29 16:38:02 +01:00
Molkobain
f2380ae354
🌐 Add slovak dictionary files in all modules for future translation
2019-03-28 11:07:18 +01:00
Molkobain
2d039af278
🎨 Format dictionary entries
2019-03-28 11:05:15 +01:00
Molkobain
831879fe37
🐛 N°2122 Fix missing dictionary entries for "Service families" menu of "Service Mgmt Provider" module
2019-03-28 10:31:48 +01:00
Pierre Goiffon
0451ae07c8
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# dictionaries/sk.dictionary.itop.core.php
2019-03-27 16:33:43 +01:00
Molkobain
ea1dfd8933
👥 Add Martin Kincel to the contributors. Thanks for the slovak translations!
2019-03-27 11:43:35 +01:00
Molkobain
24519c69a4
🌐 Add new language for main features thanks to Martin Kincel!
2019-03-27 11:43:35 +01:00
Molkobain
3e55693bfa
👥 Add Martin Kincel to the contributors. Thanks for the slovak translations!
2019-03-27 11:34:32 +01:00
Molkobain
f5d0947b27
🌐 Add new language for main features thanks to Martin Kincel!
2019-03-27 11:33:08 +01:00
Vladimir Kunin
b5c4801beb
🌐 Russian translations for 2.6.1 ( #70 )
2019-03-25 16:29:05 +01:00
Molkobain
3eff8f62b1
Merge branch 'support/2.5'
2019-03-25 15:47:51 +01:00
Molkobain
16c8466841
N°2115 Fix regression introduced in N°1443: Left pane menu not showing due a JS error
2019-03-25 15:39:45 +01:00
Pierre Goiffon
2da181a399
Combodo PHPStorm settings : some accessibility inspections are now weak warns instead of warns
2019-03-22 18:00:54 +01:00
Thomas Casteleyn
6e8bcf7b69
Make setup backup location and name similar as other backups ( #61 )
2019-03-22 16:02:17 +01:00
Eric
b83e5e2b72
N°1618 - Fix custom date format: Fix issue with in-line creation
2019-03-22 15:42:11 +01:00
Pierre Goiffon
da6791d75f
💄 Setup wizard backup path : larger input widget
2019-03-22 15:38:18 +01:00
Eric
764b0f8e31
N°1846 - Fix Object Copier: Create Ticket from CI, duplicate links
...
(cherry picked from commit 44b7821015 )
2019-03-22 11:06:23 +01:00
Pierre Goiffon
2a0928b4be
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/version.xml
2019-03-21 17:46:30 +01:00
Pierre Goiffon
cac0da4e3d
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# application/utils.inc.php
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/itop-attachments/module.attachments.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2019-03-21 17:39:26 +01:00
Pierre Goiffon
7e064365eb
N°1968 Uniqueness : fix only root disabled class was removed from searches
...
Now all of the following hierarchy is excluded
2019-03-21 17:25:51 +01:00
Pierre Goiffon
7c7382f372
N°1835 add new 'transaction_id' sanitize filter
2019-03-21 14:28:24 +01:00
Pierre Goiffon
4918b9c83a
💡 Add phpdoc for N°1835 new Sanitize param
2019-03-21 12:04:31 +01:00
Thomas Casteleyn
9bb365e60d
Added example php location argument
2019-03-20 10:14:54 +01:00
Thomas Casteleyn
b3c80e6ecf
Added changes as requested
2019-03-20 10:14:54 +01:00
Thomas Casteleyn
e5c77f64aa
Update cron.cmd to have better defaults and remove references to old php version
2019-03-20 10:14:54 +01:00
Pierre Goiffon
ed95f4e05f
📦 Update CSS for 2.6.1
2019-03-19 11:58:48 +01:00
Pierre Goiffon
9f0e8dc49b
📦 Update CSS for 2.5.2
2019-03-19 11:47:29 +01:00
Pierre Goiffon
693fdfdc5b
📦 Update versions for 2.6.1, woops wrong version on previous commit
2019-03-19 11:39:11 +01:00
Pierre Goiffon
b8d5c01382
📦 Update versions for 2.5.2
2019-03-19 11:37:15 +01:00
Pierre Goiffon
01108ca83d
📦 Update versions for 2.6.1
2019-03-19 11:35:42 +01:00
Pierre Goiffon
3d5b7197f6
📦 Update modules versions for 2.6.1
2019-03-19 11:34:01 +01:00
Pierre Goiffon
d3db77c675
📦 Update modules versions for 2.5.2
2019-03-19 11:29:37 +01:00
Pierre Goiffon
c313ed2efc
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# composer.json
2019-03-19 11:18:18 +01:00
Pierre Goiffon
54c027823b
🌐 Fix dict automatic update
2019-03-19 11:14:39 +01:00
Pierre Goiffon
f63aceeabe
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# datamodels/2.x/authent-external/da.dict.authent-external.php
# datamodels/2.x/authent-external/de.dict.authent-external.php
# datamodels/2.x/authent-external/fr.dict.authent-external.php
# datamodels/2.x/authent-external/hu.dict.authent-external.php
# datamodels/2.x/authent-external/ja.dict.authent-external.php
# datamodels/2.x/authent-external/nl.dict.authent-external.php
# datamodels/2.x/authent-external/pt_br.dict.authent-external.php
# datamodels/2.x/authent-external/zh_cn.dict.authent-external.php
# datamodels/2.x/authent-ldap/cs.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/da.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/de.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/fr.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/hu.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/ja.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/nl.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/pt_br.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/ru.dict.authent-ldap.php
# datamodels/2.x/authent-ldap/zh_cn.dict.authent-ldap.php
# datamodels/2.x/authent-local/da.dict.authent-local.php
# datamodels/2.x/authent-local/de.dict.authent-local.php
# datamodels/2.x/authent-local/fr.dict.authent-local.php
# datamodels/2.x/authent-local/hu.dict.authent-local.php
# datamodels/2.x/authent-local/ja.dict.authent-local.php
# datamodels/2.x/authent-local/nl.dict.authent-local.php
# datamodels/2.x/authent-local/pt_br.dict.authent-local.php
# datamodels/2.x/authent-local/ru.dict.authent-local.php
# datamodels/2.x/authent-local/zh_cn.dict.authent-local.php
# datamodels/2.x/itop-attachments/cs.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/da.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/de.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/en.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/es_cr.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/fr.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/hu.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/it.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/ja.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/nl.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/pt_br.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/tr.dict.itop-attachments.php
# datamodels/2.x/itop-attachments/zh_cn.dict.itop-attachments.php
# datamodels/2.x/itop-backup/da.dict.itop-backup.php
# datamodels/2.x/itop-backup/de.dict.itop-backup.php
# datamodels/2.x/itop-backup/es_cr.dict.itop-backup.php
# datamodels/2.x/itop-backup/hu.dict.itop-backup.php
# datamodels/2.x/itop-backup/it.dict.itop-backup.php
# datamodels/2.x/itop-backup/ja.dict.itop-backup.php
# datamodels/2.x/itop-backup/nl.dict.itop-backup.php
# datamodels/2.x/itop-backup/tr.dict.itop-backup.php
# datamodels/2.x/itop-change-mgmt-itil/da.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/de.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/fr.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/hu.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/it.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/ja.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/nl.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/ru.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt-itil/zh_cn.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/da.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/de.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/fr.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/hu.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/it.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/ja.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/nl.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/pt_br.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/ru.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/tr.dict.itop-change-mgmt.php
# datamodels/2.x/itop-change-mgmt/zh_cn.dict.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/cs.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/da.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/de.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/es_cr.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/fr.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/hu.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/it.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/ja.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/nl.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/pt_br.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/ru.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/tr.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/zh_cn.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config/da.dict.itop-config.php
# datamodels/2.x/itop-config/de.dict.itop-config.php
# datamodels/2.x/itop-config/es_cr.dict.itop-config.php
# datamodels/2.x/itop-config/fr.dict.itop-config.php
# datamodels/2.x/itop-config/hu.dict.itop-config.php
# datamodels/2.x/itop-config/it.dict.itop-config.php
# datamodels/2.x/itop-config/ja.dict.itop-config.php
# datamodels/2.x/itop-config/nl.dict.itop-config.php
# datamodels/2.x/itop-config/pt_br.dict.itop-config.php
# datamodels/2.x/itop-config/tr.dict.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/cs.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/da.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/de.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/es_cr.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/fr.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/hu.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/it.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/ja.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/nl.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/pt_br.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/ru.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/tr.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-datacenter-mgmt/zh_cn.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/cs.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/da.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/de.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/es_cr.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/fr.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/hu.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/it.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/ja.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/nl.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/pt_br.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/ru.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/tr.dict.itop-endusers-devices.php
# datamodels/2.x/itop-endusers-devices/zh_cn.dict.itop-endusers-devices.php
# datamodels/2.x/itop-hub-connector/cs.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/da.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/de.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/es_cr.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/fr.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/hu.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/it.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/ja.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/nl.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/pt_br.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/ru.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/tr.dict.itop-hub-connector.php
# datamodels/2.x/itop-hub-connector/zh_cn.dict.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/cs.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/da.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/de.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/es_cr.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/hu.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/it.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/ja.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/nl.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/pt_br.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/ru.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/tr.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-incident-mgmt-itil/zh_cn.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/cs.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/da.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/de.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/hu.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/it.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/ja.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/nl.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/tr.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/zh_cn.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/da.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/de.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/hu.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/it.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/ja.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/nl.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/ru.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/tr.dict.itop-portal-base.php
# datamodels/2.x/itop-portal-base/zh_cn.dict.itop-portal-base.php
# datamodels/2.x/itop-problem-mgmt/da.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/de.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/fr.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/hu.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/it.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/ja.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/nl.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/ru.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/zh_cn.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-request-mgmt-itil/cs.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/da.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/de.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/en.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/es_cr.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/fr.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/hu.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/it.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/ja.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/pt_br.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/ru.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/tr.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/zh_cn.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/cs.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/da.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/de.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/fr.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/hu.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/it.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/ja.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/nl.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/ru.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/tr.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/zh_cn.dict.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/cs.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/da.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/de.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/en.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/fr.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/hu.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/it.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/ja.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/nl.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/pt_br.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/ru.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/tr.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt-provider/zh_cn.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/cs.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/da.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/de.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/en.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/fr.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/hu.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/it.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/ja.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/nl.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/pt_br.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/ru.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/tr.dict.itop-service-mgmt.php
# datamodels/2.x/itop-service-mgmt/zh_cn.dict.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/cs.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/da.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/de.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/es_cr.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/fr.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/hu.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/it.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/ja.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/nl.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/pt_br.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/ru.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/tr.dict.itop-sla-computation.php
# datamodels/2.x/itop-sla-computation/zh_cn.dict.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/cs.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/da.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/de.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/es_cr.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/fr.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/hu.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/it.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/ja.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/nl.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/pt_br.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/ru.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/tr.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-storage-mgmt/zh_cn.dict.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/cs.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/da.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/de.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/hu.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/it.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/ja.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/nl.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/ru.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/tr.dict.itop-tickets.php
# datamodels/2.x/itop-tickets/zh_cn.dict.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/cs.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/da.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/de.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/es_cr.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/fr.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/hu.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/it.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/ja.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/nl.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/pt_br.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/ru.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/tr.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-virtualization-mgmt/zh_cn.dict.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/cs.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/da.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/de.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/en.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/es_cr.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/fr.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/hu.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/it.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/ja.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/nl.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/pt_br.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/ru.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/tr.dict.itop-welcome-itil.php
# datamodels/2.x/itop-welcome-itil/zh_cn.dict.itop-welcome-itil.php
# dictionaries/cs.dictionary.itop.core.php
# dictionaries/cs.dictionary.itop.ui.php
# dictionaries/da.dictionary.itop.core.php
# dictionaries/da.dictionary.itop.ui.php
# dictionaries/de.dictionary.itop.core.php
# dictionaries/de.dictionary.itop.ui.php
# dictionaries/es_cr.dictionary.itop.core.php
# dictionaries/es_cr.dictionary.itop.ui.php
# dictionaries/fr.dictionary.itop.core.php
# dictionaries/fr.dictionary.itop.ui.php
# dictionaries/hu.dictionary.itop.core.php
# dictionaries/hu.dictionary.itop.ui.php
# dictionaries/it.dictionary.itop.core.php
# dictionaries/it.dictionary.itop.ui.php
# dictionaries/ja.dictionary.itop.core.php
# dictionaries/ja.dictionary.itop.ui.php
# dictionaries/nl.dictionary.itop.core.php
# dictionaries/nl.dictionary.itop.ui.php
# dictionaries/pt_br.dictionary.itop.core.php
# dictionaries/pt_br.dictionary.itop.ui.php
# dictionaries/ru.dictionary.itop.core.php
# dictionaries/ru.dictionary.itop.ui.php
# dictionaries/tr.dictionary.itop.core.php
# dictionaries/tr.dictionary.itop.ui.php
# dictionaries/zh_cn.dictionary.itop.core.php
# dictionaries/zh_cn.dictionary.itop.ui.php
2019-03-19 10:54:06 +01:00
Pierre Goiffon
533e65fcd1
🌐 Fix dict automatic update
2019-03-19 10:52:43 +01:00
Pierre Goiffon
3fb0c768e6
🌐 Update dictionnaries for iTop 2.5.2
2019-03-19 10:10:28 +01:00
Pierre Goiffon
243aab1030
N°1968 Uniqueness : do not allow invalid rule overrides definition
...
On overrides disabled key must has a value
2019-03-18 16:07:36 +01:00
bruno DA SILVA
22dba9ae07
🐛 composer.json dependencies correctness
2019-03-18 15:00:35 +01:00
Thomas Casteleyn
d8f75495fe
Don't display organization name in menu bar if it's the only one
2019-03-18 11:12:05 +01:00
Pierre Goiffon
2240743100
%memo% README : fix iTop Hub docs links (from 2.5.0 to latest)
2019-03-15 17:39:59 +01:00
Pierre Goiffon
a6a2410c50
Merge branch 'master' into develop
...
# Conflicts:
# datamodels/2.x/itop-attachments/nl.dict.itop-attachments.php
2019-03-15 17:23:04 +01:00
Pierre Goiffon
02857a86fd
Merge remote-tracking branch 'origin/support/2.5'
2019-03-15 17:22:04 +01:00
Stephen Abello
d663d01798
N°1966: Added missing strings to dict files
2019-03-15 17:02:24 +01:00
Stephen Abello
3602163b38
Revert N°1919 and its incorrect translations
2019-03-15 17:00:53 +01:00
Thomas Casteleyn
34751a52a8
Replaced first name by last name in default person list view
2019-03-15 16:16:59 +01:00
Lars Hippler
cb7c382b99
Secure the server: prevent the users from browsing/getting files from the conf directories.
...
With Apache, it is still a must to enable htaccess with the spec "AllowOverride All". The index.php files are here to prevent from browsing whatever the HTTP server config.
2019-03-15 14:32:43 +01:00
Molkobain
3322074ce7
🐛 N°1889 Portal: Wrong encoding of special chars like in dashlets (eg. "ö", "&", ...)
...
(cherry picked from commit 83bb3b6d72 )
2019-03-13 17:01:57 +01:00
Molkobain
83bb3b6d72
🐛 N°1889 Portal: Wrong encoding of special chars like in dashlets (eg. "ö", "&", ...)
2019-03-13 16:56:04 +01:00
Eric
229f800266
N° 1837 - Fix Synchro Obsolescence
...
(cherry picked from commit 75737b4ffe )
2019-03-13 14:19:25 +01:00
Eric
75737b4ffe
N° 1837 - Fix Synchro Obsolescence
2019-03-13 11:01:13 +01:00
Molkobain
a5340917a7
🐛 N°1956 Portal: Fix message content in user profile when password edition is disabled
2019-03-13 10:31:04 +01:00
Molkobain
914d19e7e4
🐛 N°2072 Fix missing/empty error message when uploading too large attachment
2019-03-13 09:51:49 +01:00
Pierre Goiffon
eb49dbbdc8
N°1968 uniqueness rules : fix search for classes hierarchy, disallow 'attributes' property overrides
2019-03-12 18:12:01 +01:00
Molkobain
912bab5a43
🐛 N°2091: Portal: Fix regression introduced in 2.5, better error message when user logged out
2019-03-12 17:08:12 +01:00
Pierre Goiffon
76c3f640db
Merge remote-tracking branch 'origin/master' into develop
2019-03-08 14:35:35 +01:00
Pierre Goiffon
94092f445f
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# application/applicationextension.inc.php
# webservices/rest.php
2019-03-08 14:35:02 +01:00
Eric
f5b56d9855
composer warnings
2019-03-08 09:10:35 +01:00
Pierre Goiffon
b25a8b4c9f
💡 add missing @var
2019-03-08 09:06:12 +01:00
Pierre Goiffon
7ad9b9dd08
🎨 Use finally instead of duplicating lines
...
see http://php.net/manual/fr/language.exceptions.php#language.exceptions.finally : finally was added in PHP 5.5
2019-03-07 16:03:51 +01:00
Eric
856c037bb0
N°2064 - Fix abstract class state list for notification triggers
2019-03-07 15:56:29 +01:00
Eric
388896b963
N°941 - Backup/Windows %, ! or " not allowed in password
2019-03-07 15:26:53 +01:00
Eric
1d8addf675
typo
2019-03-06 18:21:19 +01:00
Eric
c8c3d32b18
Error logs and corresponding eml stored by message and accessible from the console
2019-03-06 17:46:47 +01:00
Molkobain
75a0979eee
N°2045 Portal: Fix regression introduced with N°1980: New request with 2 Request Templates does not display fields
2019-03-06 14:46:01 +01:00
Pierre Goiffon
d6a0a279a5
N°1449 Update REST API version for new pagination params
2019-03-04 16:00:36 +01:00
Pierre Goiffon
44f5d71e1b
💡 PHPDoc for REST API
2019-03-04 16:00:35 +01:00
Pierre Goiffon
bc841dd239
N°1921 Process InlineImage from another iTop as external images
...
* Notifications : do not embed InlineImage with wrong secret
* HtmlSanitizer : remove data-img-* attributes if not the same iTop (using approot from Config)
* move \HTMLDOMSanitizer::ProcessImage to \InlineImage::ProcessImageTag
* data-img-* attributes name are now InlineImage class constants
(cherry picked from commit 0aab80917a )
2019-03-04 14:59:38 +01:00
Stephen Abello
9c71d32964
typo in last merge
2019-03-04 12:01:52 +01:00
Eric
d199d84b27
🌐 french typo fixed
2019-03-04 09:41:09 +01:00
Pierre Goiffon
065895aa73
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# datamodels/2.x/itop-portal-base/zh_cn.dict.itop-portal-base.php
# dictionaries/zh_cn.dictionary.itop.core.php
# dictionaries/zh_cn.dictionary.itop.ui.php
2019-03-04 09:21:14 +01:00
Pierre Goiffon
24aca83de4
Merge remote-tracking branch 'origin/support/2.5'
2019-03-04 09:16:53 +01:00
Pierre Goiffon
3de7aa1ada
🙈 Update ignore file
2019-03-04 09:15:38 +01:00
Stephen Abello
5a0edb5c39
Merge branch 'support/2.5'
...
# Conflicts:
# js/jquery.tablesorter.pager.js
2019-03-01 17:06:44 +01:00
Stephen Abello
d4fec14123
N°1443: Handle disabled selectable rows in datatables when "All checking/unchecking"
2019-03-01 12:18:07 +01:00
Eric
38951fab1a
N°1618 - Custom date format: Fix issue with in-line creation
2019-02-28 17:40:49 +01:00
Pierre Goiffon
e2c8237beb
Allow params "limit" and "page" in REST-API
...
PR #25 , code author Dennis Lassiter, many thanks !
Was commited to develop first but decided to retrofit this on support/2.5 (N°1449)
(cherry picked from commit fd55bdf9a8 )
(cherry picked from commit 49e31ddb3d )
2019-02-28 10:06:42 +01:00
Pierre Goiffon
1224570fa5
Merge remote-tracking branch 'origin/support/2.5'
2019-02-28 08:45:30 +01:00
Pierre Goiffon
afb99c0f4b
N°2054 fix search with sSearchValue GET param in BrowseBrick
2019-02-27 16:21:29 +01:00
Eric
733c908e34
N°2043 - Fix: CSV Import reconciliation using ExternalField broken in service management for provider
2019-02-27 16:00:47 +01:00
Pierre Goiffon
06592d7d37
🐛 Fix datepicker locale not set correctly for ZH CN and PT BR
...
Reused code made by @annProg in PR #40 , many thanks !
2019-02-27 12:53:37 +01:00
Eric
377b4b038c
N°2041 - Fix: Reset(LinkedSetIndirect) breaks data integrity
2019-02-27 09:57:01 +01:00
Pierre Goiffon
49e31ddb3d
🎨 REST service : change var names for new pagination params (thanks @jbostoen !)
2019-02-27 09:43:38 +01:00
Dennis Lassiter
fd55bdf9a8
Allow params "limit" and "page" in REST-API
...
PR #25 , code author Dennis Lassiter, many thanks !
2019-02-26 17:06:44 +01:00
Eric
3f7fd6f9f9
N°1954 - Recent change on impact analysis - old change appears on result
2019-02-26 15:36:56 +01:00
Eric
1cb36621a1
N°1963 - Dashlet GroupBy: allow ExternalField selection in UI
2019-02-26 15:31:31 +01:00
Eric
ddd9188eb7
Fix non-existing variable
2019-02-26 15:24:15 +01:00
Eric
02254eac67
N°1966 - Missing dictionaries entries (recover lost translation)
2019-02-25 17:40:08 +01:00
Eric
ebe026b2e9
N°1966 - Missing dictionaries entries (other languages)
2019-02-25 17:20:47 +01:00
Eric
efc7c5b0f4
N°1966 - Missing dictionaries entries
2019-02-25 16:44:51 +01:00
Pierre Goiffon
6eb3a243df
Merge remote-tracking branch 'origin/master' into develop
2019-02-25 12:11:15 +01:00
Pierre Goiffon
f68a77450d
Merge remote-tracking branch 'origin/support/2.5'
2019-02-25 12:10:30 +01:00
Stephen Abello
c5943c6c28
Internal: Fix a regression introduced by 6b5cc7c on dot path
2019-02-22 10:06:10 +01:00
Pierre Goiffon
bc3b50ad23
Fix wrong method call
2019-02-22 10:00:23 +01:00
Pierre Goiffon
b52e972a39
🐛 Fix login page in chinese instead of english
...
Introduced by PR #39 (commit 6ad27b43 )
2019-02-22 09:54:56 +01:00
Pierre Goiffon
2d344e0209
Fix merge error again.........
2019-02-21 17:38:47 +01:00
Pierre Goiffon
519252efd4
Fix merge error (wooops)
2019-02-21 17:29:53 +01:00
Pierre Goiffon
e59e62fb1b
Merge remote-tracking branch 'origin/master' into develop
...
# Conflicts:
# core/expressioncache.class.inc.php
2019-02-21 17:24:37 +01:00
Pierre Goiffon
1f7923beae
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# datamodels/2.x/itop-backup/module.itop-backup.php
# setup/setup.js
# setup/wizardsteps.class.inc.php
2019-02-21 17:18:29 +01:00
Pierre Goiffon
2f15bbdaf3
N°2033 backup : tar generation simplify buffer size computation
...
(cherry picked from commit 5b46644786 )
2019-02-21 17:12:18 +01:00
Pierre Goiffon
a35690d13c
📌 Identify & remove Combodo code from ArchiveTar lib
2019-02-21 17:07:31 +01:00
Pierre Goiffon
4857569813
🔧 PhpStorm settings : disallow php short open tags
2019-02-21 15:39:13 +01:00
Eric
a2d34d1779
N°1954 - Fix recent change on impact analysis
2019-02-21 09:41:36 +01:00
Pierre Goiffon
cdba1e0d36
N°2033 backup : fix corrupted archive for files which size is a multiple of 1024 bytes
...
(cherry picked from commit 3356856a5f )
2019-02-20 17:29:10 +01:00
Eric
48f15d7781
N°1974 - Fix: Stimuli can be applied through URL even if the access rights are set to deny
2019-02-20 16:11:49 +01:00
Eric
d0a766d424
N°1975 - Fix: Change Menu rights to "Admin only" leads in crash test
...
(cherry picked from commit a89bca4626 )
2019-02-20 15:06:57 +01:00
Eric
a89bca4626
N°1975 - Fix: Change Menu rights to "Admin only" leads in crash test
2019-02-20 14:57:39 +01:00
Pierre Goiffon
23ec21e494
N°2031 backup : now logs using IssueLog, and remove debug config property
2019-02-19 14:46:44 +01:00
Eric
63a36fd0f6
N°2030 - Fix function CopyAttribute for external fields
2019-02-19 14:09:14 +01:00
Pierre Goiffon
02617e8976
🔊 itop-backup : add some more logs
2019-02-19 12:21:53 +01:00
Eric
7cf7e55454
N°1823 - Fix tags not saved in case of error
2019-02-19 10:16:45 +01:00
Eric
5067c867b8
N°2014 - Fix Object modification refused when a n-n relation is locked by datasynchro
2019-02-18 15:41:06 +01:00
Stephen Abello
6b5cc7ca4b
N°1877 & N°2012: Fix regression backup link on setup, security hardening
2019-02-18 10:40:51 +01:00
Eric
acf80b4b92
Merge branch 'master' into develop
2019-02-15 17:44:59 +01:00
Eric
7bb49893ee
N°1884 - Admin Tools Manager no longer has access to 'Schedule Backup' and 'Configuration' menus
2019-02-15 17:34:38 +01:00
Eric
bf62b63173
N°1884 - Admin Tools Manager no longer has access to 'Schedule Backup' and 'Configuration' menus
2019-02-15 17:33:47 +01:00
Eric
b8fb1fa78a
N°1884 - Admin Tools Manager no longer has access to 'Schedule Backup' and 'Configuration' menus
...
(cherry picked from commit 818b4d08da )
2019-02-15 17:31:37 +01:00
Eric
818b4d08da
N°1884 - Admin Tools Manager no longer has access to 'Schedule Backup' and 'Configuration' menus
2019-02-15 17:28:55 +01:00
Eric
f438fbd06f
N°941 - fix regex
2019-02-15 17:06:50 +01:00
Eric
297a45d477
N°941 - Backup/Windows %, ! or " not allowed in password
2019-02-15 17:03:07 +01:00
Eric
17fe9dfd5f
N°1906 - Enhancement Request: Handling a lot of many to many relations in form element (edit mode)
2019-02-15 15:33:22 +01:00
Eric
084d12bb45
Merge branch 'master' into develop
2019-02-14 10:58:42 +01:00
Eric
9d0cbca497
N°941 - Check DB password in configuration when saving
2019-02-14 10:57:36 +01:00
Eric
1587218c6d
Merge tag 'N941-2' into develop
...
Tagging hotfix N941-2 N941-2
2019-02-14 09:48:50 +01:00
Eric
a613b4b101
Merge branch 'hotfix/N941-2'
2019-02-14 09:48:48 +01:00
Eric
c989e2eda5
N°941 - Check DB password also in configuration
2019-02-14 09:47:22 +01:00
Eric
12d3e36887
Merge tag 'N941' into develop
...
Tagging hotfix N941 N941
2019-02-13 17:45:46 +01:00
Eric
c6fd381b01
Merge branch 'hotfix/N941'
2019-02-13 17:45:44 +01:00
Eric
a784661025
N°941 - Backup/Windows % not allowed in password
2019-02-13 17:43:32 +01:00
Eric
1f9a638bc1
N°941 - Backup/Windows % not allowed in password
2019-02-13 17:39:04 +01:00
Stephen Abello
545504c0de
(retrofit from master) N°1443 : Add table_id used by tables paging
...
(cherry picked from commit 43b0747b83 )
2019-02-13 15:13:13 +01:00
Stephen Abello
32f1e97bcd
(retrofit from master) N°1148: Fix regression on export
...
(cherry picked from commit 90e128f951 )
2019-02-13 15:13:13 +01:00
Stephen Abello
456b51d7f8
Merge branch 'master' into develop
2019-02-13 15:03:50 +01:00
Stephen Abello
43b0747b83
N°1443 : Add table_id used by tables paging
2019-02-13 14:43:25 +01:00
Eric
9637e75f97
N°2011: Fix Issue with "ExecAsyncTask: async_task_retries"
2019-02-13 14:07:13 +01:00
Eric
6f0effcc66
Merge tag 'N2016' into develop
...
Tagging hotfix N2016 N2016
2019-02-13 14:04:27 +01:00
Eric
84767692b0
Merge branch 'hotfix/N2016'
2019-02-13 14:04:25 +01:00
Eric
d484614c0f
N°2016 - Fix Issue with "ExecAsyncTask: async_task_retries"
2019-02-13 14:03:22 +01:00
Eric
3dd8f214bf
Merge tag 'N2011' into develop
...
Tagging hotfix N2011 N2011
2019-02-13 12:49:27 +01:00
Eric
b403bace6c
Merge branch 'hotfix/N2011'
2019-02-13 12:49:25 +01:00
Eric
0b751a9dd6
N°2011 - Fix search auto-completion bug
2019-02-13 12:48:05 +01:00
Eric
d3700ac9f8
Merge tag 'N1963' into develop
...
Tagging hotfix N1963 N1963
2019-02-13 11:01:42 +01:00
Eric
8f434cad08
Merge branch 'hotfix/N1963'
2019-02-13 11:01:39 +01:00
Eric
f83292fccc
N°1953 - Dashlet GroupBy: allow ExternalField selection in UI
2019-02-13 10:59:40 +01:00
Stephen Abello
90e128f951
N°1148: Fix regression on export
2019-02-11 13:33:07 +01:00
Stephen Abello
8efc372a68
(retrofit from develop) N°1909: PHP 7.3 compatibility
2019-02-11 13:33:07 +01:00
Molkobain
257fb4d036
🐛 N°2019 Fix empty error message on object update
2019-02-08 15:39:01 +01:00
Stephen Abello
97261820f6
N°1919: Fix mistakes in Russian translation integration
2019-02-08 15:08:04 +01:00
Stephen Abello
2f83a2168c
N°1919: Update Russian translation
2019-02-07 16:41:53 +01:00
Pierre Goiffon
7aa5d84ff4
💡 Fix PHPDoc for \CMDBSource::GetSqlStringColumnDefinition
2019-02-07 15:06:57 +01:00
Molkobain
46e99bfb40
🐛 Fix notifications tab in objects no longer displaying items (regression introduced by a9bd5a8)
2019-02-07 14:06:06 +01:00
Molkobain
fb5f59e72e
🚨 Fix wrong method visiblity
2019-02-07 14:06:06 +01:00
Molkobain
8af1a53721
💡 PHPDoc
2019-02-07 14:06:06 +01:00
Pierre Goiffon
7034ffea39
N°2010 Fix case for information_schema column names
...
In MySQL 8, we need to use same case as column declaration, or use an alias
2019-02-07 11:17:19 +01:00
Stephen Abello
c0275eec21
N°1955: Fix typo in German translation (thanks to ITOMIG!)
2019-02-05 10:42:42 +01:00
Pierre Goiffon
94ed0354c2
Merge branch 'master' into develop
2019-01-31 18:43:31 +01:00
Pierre Goiffon
2bd7a7b5f8
Merge remote-tracking branch 'origin/support/2.5'
...
# Conflicts:
# application/utils.inc.php
2019-01-31 18:43:20 +01:00
Pierre Goiffon
0aab80917a
N°1921 Process InlineImage from another iTop as external images
...
* Notifications : do not embed InlineImage with wrong secret
* HtmlSanitizer : remove data-img-* attributes if not the same iTop (using approot from Config)
* move \HTMLDOMSanitizer::ProcessImage to \InlineImage::ProcessImageTag
* data-img-* attributes name are now InlineImage class constants
2019-01-30 11:32:47 +01:00
Pierre Goiffon
31a2b634cc
💡 Fix PHPDoc for \utils::GetAbsoluteUrlAppRoot
2019-01-30 11:16:29 +01:00
Molkobain
dc7bafa41c
🐛 N°1980 Portal: Fix form validation when request template displayed as read only
2019-01-29 17:39:02 +01:00
Pierre Goiffon
2cf3408023
💡 add PhpDoc to AttributeImage methods
2019-01-29 11:08:01 +01:00
Molkobain
3b16d33775
N°1990 Fix setup crash when class has an empty zlist tag (eg. <details />)
...
Compiler crashed due to PHP warning being output depending on the error reporting level.
2019-01-29 10:36:17 +01:00
Pierre Goiffon
3ff6374ace
Merge branch 'master' into develop
2019-01-28 16:04:44 +01:00
Pierre Goiffon
505aad1e89
Merge branch 'support/2.5'
...
# Conflicts:
# datamodels/2.x/itop-hub-connector/zh_cn.dict.itop-hub-connector.php
# lib/tcpdf/CHANGELOG.TXT
# lib/tcpdf/composer.json
# lib/tcpdf/include/tcpdf_fonts.php
# lib/tcpdf/include/tcpdf_images.php
# lib/tcpdf/include/tcpdf_static.php
# lib/tcpdf/tcpdf.php
2019-01-28 16:04:19 +01:00
Pierre Goiffon
0ea2fed481
💡 fix phpdoc on \utils::GetCurrentModuleDir
2019-01-28 15:58:59 +01:00
Pierre Goiffon
6bbc543ac1
🚸 Change AttributeImage methods visibility to allow overrides
2019-01-28 13:56:20 +01:00
Eric
1ca4f993b0
💚 Fix apc-emulation
2019-01-24 18:07:50 +01:00
Eric Espié
44f448fec4
faster directory creation
2019-01-24 17:22:49 +01:00
Eric
abf7e65816
Avoid unnecessary warnings
2019-01-24 17:22:49 +01:00
Molkobain
55bce63cea
Internal: Update compiled CSS file for administration console that seems to not have been committed correctly someday
...
Fixes:
* Browser dev. tools error about "data:0" on navigation menu
* Newsroom menu
2019-01-24 16:30:36 +01:00
Pierre Goiffon
710e5afe08
🔥 Remove iTopPDF::SetFontSize as there is TCPDF::SetFontSize
2019-01-23 17:36:05 +01:00
Pierre Goiffon
cbf37677cb
📝 README little improvements
2019-01-23 12:06:49 +01:00
Pierre Goiffon
efb98c6414
🔧 Fix invalid composer.json
2019-01-23 12:00:51 +01:00
Pierre Goiffon
01fbcb7044
🎨 replace TCPPDF:SetFont calls by iTopPDF::SetFontParams
...
This ensures that the same font is used in every caller
2019-01-23 11:46:52 +01:00
Pierre Goiffon
53d2f6320b
💡 Some comments on TCPPDF fonts
2019-01-23 11:44:23 +01:00
Pierre Goiffon
9d02da9d9c
🎨 PDF : new helper method to set only font size
2019-01-23 11:05:12 +01:00
Molkobain
4508b9d7d5
N°1758 Fix read only attributes on bulk apply stimulus
...
(cherry picked from commit 7e3fceb7dc )
2019-01-22 16:35:22 +01:00
Molkobain
a0841d76db
💄 Portal: Improve modal backdrop UX
2019-01-21 16:03:51 +01:00
Pierre Goiffon
e3c4d611c3
New InvalidConfigParamException
...
To be used for example in extensions like notify-on-expiration
2019-01-18 11:05:29 +01:00
Pierre Goiffon
79e8c48824
📝 README : update release section
2019-01-18 09:54:35 +01:00
Pierre Goiffon
9ef298608e
🎨 README : move links to corresponding sections
2019-01-18 09:54:35 +01:00
Stephen Abello
888aa5f958
update tcpdf to v6.2.26 (php 7.3 compatibility)
2019-01-17 10:34:07 +01:00
Stephen Abello
4051524b5c
N°1933: Security hardening
2019-01-16 15:07:43 +01:00
Stephen Abello
c8c4b072b1
N°1932: Security hardening
2019-01-16 14:50:19 +01:00
Stephen Abello
08543287e8
N°1931: Security hardening
2019-01-16 10:35:38 +01:00
Eric
3ee8d5125b
✅ Support for extensions unit tests (scans env-production/*/test)
2019-01-15 11:52:05 +01:00
Eric
59c490fcea
✅ Add test for search with 'NOT LIKE'
2019-01-15 11:51:03 +01:00
Eric
b8b468195c
PR#39 Fix support of expressions (friendlyname) in different languages context (use class name by language for the expression caches)
2019-01-15 11:24:48 +01:00
Pierre Goiffon
d873a5e68b
➖ Remove php ext from composer.json
...
Not really mandatory, can cause trouble when really using composer !
2019-01-15 09:18:58 +01:00
Stephen Abello
21e5eee31f
N°1930: Security hardening
2019-01-14 11:59:45 +01:00
Stephen Abello
ed3fd851f1
N°1933: Security hardening
2019-01-14 11:57:16 +01:00
Stephen Abello
dfe81f6272
N°1935: Security hardening
2019-01-14 11:54:46 +01:00
Eric
6ad27b43ab
PR#39 Fix support of expressions (friendlyname) in different language contexts
2019-01-14 11:30:01 +01:00
purplegrape
1df19f65c4
small translation improvement for chinese
...
1 symbols should not be translated
2 small improvement
2019-01-11 17:31:36 +01:00
Pierre Goiffon
00c59b7f2c
Finish readme_2.5.1
2019-01-10 10:29:18 +01:00
Pierre Goiffon
c22a20c1ef
Finish readme_2.5.1
2019-01-10 10:29:18 +01:00
Pierre Goiffon
dbcde14f5e
📝 README : was still pointing to 2.5.0 whereas 2.5.1 was published
2019-01-10 10:28:47 +01:00
Pierre Goiffon
a6f4adfed8
Finish 2.6.0
2019-01-09 17:27:17 +01:00
Pierre Goiffon
c140ab970e
Finish 2.6.0
...
# Conflicts:
# core/dbobject.class.php
# install.txt
2019-01-09 17:27:07 +01:00
Pierre Goiffon
effaba42d0
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2019-01-09 17:24:54 +01:00
Pierre Goiffon
340cacc691
Merge remote-tracking branch 'origin/release/2.6.0-community' into release/2.6
...
# Conflicts:
# install.txt
2019-01-09 17:23:43 +01:00
Stephen Abello
0bce9c78ea
N°1935: Security hardening
2019-01-09 14:23:15 +01:00
Stephen Abello
48c920f848
N°1934: Security hardening
2019-01-09 11:03:05 +01:00
Pierre Goiffon
a85bedd31c
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# install.txt
2019-01-09 10:51:11 +01:00
Pierre Goiffon
23269eab77
📝 Update install.txt for 2.6.x
2019-01-09 10:45:14 +01:00
Pierre Goiffon
05bcfbe4c3
📝 Update install.txt for 2.5.x
2019-01-09 10:44:21 +01:00
Pierre Goiffon
27ad2e2169
📝 Update README.md for 2.6.0 community
2019-01-09 10:01:40 +01:00
Pierre Goiffon
5d09841cd5
📝 Update install.txt for 2.6.0
2019-01-09 09:53:20 +01:00
Pierre Goiffon
5723e9a77e
🎨 PDF : new helper method to set only font weight and size
2019-01-09 09:25:40 +01:00
Pierre Goiffon
bdedd83368
🔧 New "export_pdf_font" config param
2019-01-09 09:25:40 +01:00
Pierre Goiffon
2f5f92ddca
➕ Adding DroidSansFallback font to TCPDF
...
Modification proposed by @purplegrape with PR #49 , many thanks !
2019-01-09 09:24:07 +01:00
Eric
11ec46c18b
N°1408 - Fix overview attribute when not already defined in Organization class
2019-01-08 15:19:52 +01:00
Denis Flaven
87a98fe382
🐛 N°1946 - newsroom cache shared between users
...
The cache should be per user, even if two users share the same
machine/browser.
2019-01-08 15:16:50 +01:00
Stephen Abello
da76fc70bb
N°1933: Security hardening
2019-01-07 16:46:29 +01:00
Denis Flaven
2b563d4fc8
Remove debug traces when updating objects
...
A very verbose debug trace in the error log was happening each time a
CmdbAbstractObject gets created non-interactively.
2019-01-07 16:24:31 +01:00
Stephen Abello
8894ff0fda
N°1909: PHP 7.3 compatibility
2019-01-07 13:56:42 +01:00
Eric
488d2ed886
Debug OQL for search is accessible directly for the administrators
2019-01-07 09:43:44 +01:00
Molkobain
48f190447c
🐛 N°1939 REST/JSON: Fix must_exists flag for remote object of indirect linkedset
2019-01-04 17:36:26 +01:00
Molkobain
2773a8bf2f
N°1917 Setup: Fix warnings when upgrading an extension with an extension.xml file
...
(cherry picked from commit 4eb416d407 )
2019-01-04 14:13:33 +01:00
Duarte Sotto-Mayor Ribeirinho
63184d0bf5
Update link to always reflect latest version
...
This way there is no need for further updates of version number on link
2019-01-04 11:36:34 +01:00
Eric
ad36011fc8
N°1716 - "Group by" Dashlet is no more clickable in edition
2019-01-03 17:47:27 +01:00
Eric
b82b095f58
1814 - Search with criteria : always add default criteria
2019-01-03 09:58:54 +01:00
Eric
a9bd5a8bb0
⚡ Avoid scalar values in OQL, replace them with variables
2019-01-02 17:41:56 +01:00
Eric
6c9850b8f6
1814 - Search with criteria : always add default criteria
2019-01-02 14:19:48 +01:00
Eric
e89b4e070c
Security update
2019-01-02 10:11:03 +01:00
Pierre Goiffon
2f5c810276
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-12-31 17:21:52 +01:00
Pierre Goiffon
d90e094d4d
📝 CONTRIBUTING : add a link to the translation wiki page
2018-12-31 16:55:51 +01:00
Molkobain
4eb416d407
N°1917 Setup: Fix warnings when upgrading an extension with an extension.xml file
2018-12-31 14:55:22 +01:00
Pierre Goiffon
636a3940cd
N°1915 import : fix cannot create object with value for field that is readonly in modification
...
Last fix (523e19528e ) was not a correct solution
2018-12-31 12:13:45 +01:00
Pierre Goiffon
352f8cee10
💡 Config : add ref to loading methods
2018-12-31 11:38:57 +01:00
Pierre Goiffon
523e19528e
N°1915 import : fix cannot create object with value for field that is readonly in modification
...
GetAttributeFlags method returns OPT_ATT_READONLY for this field, but not GetInitialStateAttributeFlags method
2018-12-28 18:16:32 +01:00
Pierre Goiffon
9f3332b2f2
💡 PHPDoc for AttributeFlags methods
2018-12-28 16:37:03 +01:00
Pierre Goiffon
2b71621628
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-12-28 11:42:11 +01:00
Pierre Goiffon
5349fc6f4b
📝 CONTRIBUTING : fix some typos, more info in gitflow
2018-12-28 11:15:46 +01:00
Pierre Goiffon
1665b12b86
💡 PHPDoc for \DBObject::DBInsert methods hierarchy (and some more, too O:) )
2018-12-27 15:07:49 +01:00
purplegrape
1bbed99636
chinsese translation improvement for relase 2.6
...
chinsese translation improvement for relase 2.6
2018-12-27 10:40:53 +01:00
Denis Flaven
778db225a8
N°1912: 🐛 text written in white in the PDF export of the impact analysis.
2018-12-26 15:41:00 +01:00
bruno DA SILVA
ca48e8ff92
🐛 method call correction
...
- do no longer provide a parameter absent from the signature
2018-12-26 15:25:04 +01:00
Pierre Goiffon
75d5630164
➖ N°1885 move back php-gd from mandatory extension to optional
...
(cherry picked from commit 672bc471be )
2018-12-26 11:10:24 +01:00
Pierre Goiffon
911d84d513
➕ N°1885 add php-gd as a mandatory extension
...
(was made on release/2.6 branch but then rollbacked as this is an infrastructure change that needs to be in the release notes)
2018-12-26 11:05:25 +01:00
Pierre Goiffon
bb6bd61c37
👥 Remove duplicate jbostoen (my mistake... see 5338325a73)
2018-12-26 09:53:26 +01:00
Pierre Goiffon
1a3f836a5a
Merge remote-tracking branch 'origin/release/2.6' into develop
...
# Conflicts:
# application/itopwebpage.class.inc.php
# core/config.class.inc.php
# css/css-variables.scss
# css/light-grey.css
# datamodels/2.x/itop-attachments/nl.dict.itop-attachments.php
# datamodels/2.x/itop-incident-mgmt-itil/nl.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/version.xml
2018-12-21 10:26:17 +01:00
Pierre Goiffon
b51b5582a0
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-12-21 10:23:29 +01:00
Eric
bc5643707e
N°1898 - Fix pagination issue for search with accent
2018-12-21 10:04:04 +01:00
Eric
27b1b1f8a8
N°1903 - Fix initial value of a MetaEnum attribute is always its default value
2018-12-21 09:59:19 +01:00
Eric
a45e543eac
N°1898 - Fix pagination issue for search with accent
2018-12-21 09:36:28 +01:00
Pierre Goiffon
50235bbb04
🌐 Fix typos in EN translations
...
Report PR #38 modifications, many thanks @jbostoen !
2018-12-20 17:19:32 +01:00
Eric
a2ddb30f78
N°1420 - Autocomplete fix keyboard behavior (compatibility fix)
2018-12-19 17:39:35 +01:00
Eric
d31a4047f6
Fix Setup hardening
2018-12-19 17:13:49 +01:00
Eric
75fbb831c9
Fix Setup hardening
2018-12-19 17:10:02 +01:00
Molkobain
3219957eed
Internal: Fix regression introduced during XSS protection on tag sets
2018-12-19 11:43:50 +01:00
Eric
44671a5085
Fix typos in configuration description
2018-12-19 09:02:49 +01:00
Purple Grape
bc4873dfe5
🌐 update 2.6 chinese translation and corresponding licences ( #45 )
...
* Update zh_cn.dict.authent-external.php
* Update zh_cn.dict.authent-ldap.php
* Update zh_cn.dict.authent-local.php
* Update zh_cn.dict.itop-attachments.php
* Update zh_cn.dict.itop-backup.php
* Update zh_cn.dict.itop-change-mgmt-itil.php
* Update zh_cn.dict.itop-change-mgmt.php
* Update zh_cn.dict.itop-config-mgmt.php
* Update zh_cn.dict.itop-config.php
* Update zh_cn.dict.itop-datacenter-mgmt.php
* Update zh.dict.itop-endusers-devices.php
* Update zh_cn.dict.itop-hub-connector.php
* Update zh_cn.dict.itop-incident-mgmt-itil.php
* Update zh_cn.dict.itop-knownerror-mgmt.php
* Update zh_cn.dict.itop-portal-base.php
* Update zh_cn.dict.itop-portal-base.php
* Update zh_cn.dict.itop-problem-mgmt.php
* Update zh_cn.dict.itop-request-mgmt-itil.php
* Update zh_cn.dict.itop-request-mgmt.php
* Update zh_cn.dict.itop-welcome-itil.php
* Update zh_cn.dict.itop-tickets.php
* Update zh_cn.dict.itop-service-mgmt-provider.php
* Update zh_cn.dict.itop-service-mgmt.php
* Update zh_cn.dictionary.itop.core.php
* Update zh_cn.dictionary.itop.ui.php
2018-12-18 18:11:20 +01:00
Eric
92657951c7
N°1408 - Dashboard Attribute (removed from "Properties" tab in edition)
2018-12-18 16:32:46 +01:00
Eric
8b2c18ab8c
N°1420 - Autocomplete fix keyboard behavior
2018-12-18 16:00:29 +01:00
Pierre Goiffon
18999f29c5
🐛 Fix PHP syntax error in itop-chg-mgmt NL dict file
2018-12-18 15:30:23 +01:00
Pierre Goiffon
e8075bf5fd
🌐 Remove useless dict keys (see PR #38 )
2018-12-18 15:24:17 +01:00
Pierre Goiffon
5338325a73
👥 Add contributor : jboesten / Jeffrey
2018-12-18 15:12:32 +01:00
Pierre Goiffon
4d3810a10d
🌐 New Dutch translations
...
Integrated directly from PR #38 as rebase and squash seems very difficult
Many thanks @jbostoen and @Hipska !
2018-12-18 15:10:38 +01:00
Pierre Goiffon
672bc471be
➖ N°1885 move back php-gd from mandatory extension to optional
2018-12-18 11:15:56 +01:00
Pierre Goiffon
3089cbc2bc
💡 Add some PhpDoc
2018-12-18 11:15:55 +01:00
Molkobain
ce9416d887
N°1878 Request Template: Fix history updated even if template not updated
...
When editing the object, the hidden input is not initialized correctly with the values from the form. This is due to a timing issue among async processes. To fix that, we made sure the WizardHelper updates the input value before submit. The real fix would be to better handle the subform building process.
2018-12-18 11:08:54 +01:00
Pierre Goiffon
473d1fb756
Fix 2.5 merge error
2018-12-17 17:12:30 +01:00
Pierre Goiffon
b880ca05a5
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# composer.json
# setup/setuputils.class.inc.php
2018-12-17 17:04:39 +01:00
Molkobain
cbc9784d21
N°1882 Internal: Fix regression on organization autocomplete (left menu) that could not be emptied
2018-12-17 16:46:39 +01:00
Pierre Goiffon
faba67b292
➕ N°1885 add php-gd as a mandatory extension
2018-12-17 15:52:06 +01:00
Molkobain
16cb1bbbbf
N°1843 Portal: Fix inline images being displayed too large sometimes in forms
2018-12-17 15:27:15 +01:00
Molkobain
a1c2b809ba
🌐 N°1839 Update translations for TriggerOnThresholdReached
2018-12-17 15:27:15 +01:00
Stephen Abello
c9691457b8
Prepare datamodels' versions for 2.6.0 release
2018-12-17 15:10:37 +01:00
“purplegrape”
9828b905b2
rename chinese translation file from zh.dict*php to zh_cn.dict*php .
...
in case guys from HongKong ,TaiWan or Singapore wana have their own translations.
2018-12-17 11:16:25 +01:00
Molkobain
9ef6c78395
N°1637 Portal: Add form mode (create/edit/view) to information passed to iPopupMenuExtension on object details
2018-12-17 09:53:13 +01:00
Molkobain
81f70c4c58
N°1637 Portal: Add CSS/JS hook on object forms (form mode: create/edit/view)
2018-12-17 09:51:47 +01:00
Molkobain
869f590bf4
N°657 Portal: Fix modal not closing when pressing "esc" key
2018-12-14 19:06:14 +01:00
Molkobain
3b6aa7eaf5
N°1879 Additional fix for default print format of dashboards
2018-12-14 17:31:43 +01:00
Molkobain
53ef2b0b5d
N°1171 Portal: Add CSS/JS hooks in navigation menu to identify bricks
2018-12-14 17:26:55 +01:00
Molkobain
4dfe6fc817
N°1220 Portal: Fix logo displayed not wide enough when it has a small height
2018-12-14 17:06:37 +01:00
Molkobain
260143050e
N°1880 Fix logo url not pointing to the portal home page instead of the 'app_icon_url' parameter's value
2018-12-14 17:01:22 +01:00
Molkobain
6adde38399
N°1880 Fix logo url not pointing to the portal home page instead of the 'app_icon_url' parameter's value
2018-12-14 16:54:51 +01:00
Molkobain
76a40b2f45
N°1879 Change default print format for dashboards to "A4 Landscape"
2018-12-14 16:03:56 +01:00
Denis Flaven
77c2537df7
Zoom-in cursor on zoomable images
...
(for browsers supporting the zoom-in cursor: i.e. not IE)
2018-12-14 15:12:52 +01:00
Molkobain
6a88f622ad
N°1839 Update TriggerOnThresholdReached to select attribute from a set of valid attributes instead of typing it manually
2018-12-14 11:51:14 +01:00
Molkobain
9b5d8b8a01
N°931 Fix bug when max allowed items set to 1
2018-12-14 11:11:59 +01:00
Molkobain
b4448c5bb9
Code cleanup
2018-12-14 10:00:29 +01:00
Denis Flaven
7faf3258f7
Setup hardening.
2018-12-13 18:12:58 +01:00
Denis Flaven
cb3440c85d
Setup hardening.
2018-12-13 18:12:03 +01:00
Denis Flaven
7c0d03ea3b
Cosmetics on setup (Licenses prompt)
...
Limit the height of the list of licences (displaying a scrollbar if
needed) so that the page fits on screen.
2018-12-13 12:12:28 +01:00
Denis Flaven
d1837377a4
Merge branch 'release/2.6' of https://github.com/Combodo/iTop.git into release/2.6
2018-12-13 11:47:41 +01:00
Denis Flaven
1c3a503a82
N°1872 Regression when editing query phrasebook entries. Fixed.
2018-12-13 11:46:39 +01:00
Molkobain
daafa9123c
N°1852 Fix loss of inline images and attachments when user has been logged off
2018-12-13 11:35:00 +01:00
Molkobain
5a1b6e43c9
N°1835 Internal: Fix regression introduced by commit 36d47c2
2018-12-13 11:18:25 +01:00
Molkobain
81d502cae8
N°1835 Internal: Fix regression introduced by commit 36d47c2
2018-12-12 20:56:07 +01:00
Molkobain
4a99ed2ad8
N°1835 Internal: Fix regression introduced by commit 36d47c2
2018-12-12 19:51:06 +01:00
Vladimir Kunin
7016724abc
Show resolution_date in resolved problem details.
2018-12-12 11:38:07 +01:00
Molkobain
0a8e3f099e
N°1864 Portal: Add notification placeholders for portal links in edit or view mode
2018-12-12 10:04:00 +01:00
Pierre Goiffon
45910dc115
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# datamodels/2.x/itop-config-mgmt/zh.dict.itop-config-mgmt.php
# dictionaries/zh.dictionary.itop.ui.php
2018-12-11 17:23:34 +01:00
Pierre Goiffon
afd6428411
💡 @var on iApplicationObjectExtension calls
2018-12-11 17:19:52 +01:00
Eric
7eb419507b
⚡ N°1420 - Perf autocomplete (remove almost duplicated requests)
2018-12-11 16:39:57 +01:00
Eric
8400eb910f
⚡ N°1420 - Perf autocomplete (remove almost duplicated requests)
2018-12-11 16:35:31 +01:00
Eric
b38d33d7a6
⚡ N°1420 - Perf autocomplete (remove almost duplicated requests)
2018-12-11 16:23:08 +01:00
Pierre Goiffon
b4a6d378ab
N°1827 fix freeze on object creation when changing dependant field, if object has hidden TagSet field
2018-12-11 15:54:33 +01:00
Eric
44b7821015
N°1846 - Fix Object Copier: Create Ticket from CI, duplicate links
2018-12-11 15:26:24 +01:00
Pierre Goiffon
52ac819c1f
N°1835 wooops fix previous commit
2018-12-11 10:25:48 +01:00
Pierre Goiffon
c4ba1d55ac
🔊 N°1835 log error when transaction_id invalid in UI.php
2018-12-11 10:09:50 +01:00
Molkobain
85acac60c7
💪 Fix execution notice
2018-12-11 09:54:09 +01:00
Purple Grape
23ee8d6a14
Update zh.dict.itop-config-mgmt.php
...
add two empty lines against english ,small translation improvement
2018-12-11 09:16:38 +01:00
Pierre Goiffon
2154916848
ZH translation : remove unecessary '~~'
2018-12-11 09:08:40 +01:00
Purple Grape
d3fd81545a
Update zh.dictionary.itop.ui.php
...
fix one line missing and small translation improvement
2018-12-11 09:06:22 +01:00
Molkobain
f54da5f9a6
Internal: Debug trace when InlineImage::FinalizeInlineImages() fails to retrieve transaction ID
2018-12-10 17:44:49 +01:00
Pierre Goiffon
36d47c2274
N°1835 fix transaction_id lost with session
...
* transaction_id are now stored by default in file instead of session ("transaction_storage" config parameter : default value was 'Session', it is now 'File')
* session_regenerate_id() call can be disabled using "regenerate_session_id_enabled" config parameter
* new 'transaction_id' parameter type to allow dots (with a file storage, transaction_id equals the temp file name and on Windows we're getting *.tmp)
2018-12-10 17:39:07 +01:00
Eric
bd082c0a6e
N°917 - Rolled back fields to AttributeText until AttributeQueryAttCodeSet can manage fields order correctly
2018-12-10 15:25:22 +01:00
Stephen Abello
fb028710e0
Datamodel viewer: Fix an issue where OQL Filters were truncated
2018-12-10 15:10:58 +01:00
Stephen Abello
29dd196193
N°1848: Fix timeout regression on impact analysis' tooltip
2018-12-10 10:01:48 +01:00
Pierre Goiffon
80a8f7a888
Update translation files
2018-12-10 08:46:02 +01:00
Pierre Goiffon
7f497fe3be
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# datamodels/2.x/itop-attachments/zh.dict.itop-attachments.php
# datamodels/2.x/itop-backup/zh.dict.itop-backup.php
# datamodels/2.x/itop-change-mgmt-itil/zh.dict.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/zh.dict.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/es_cr.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config-mgmt/zh.dict.itop-config-mgmt.php
# datamodels/2.x/itop-config/zh.dict.itop-config.php
# datamodels/2.x/itop-datacenter-mgmt/zh.dict.itop-datacenter-mgmt.php
# datamodels/2.x/itop-hub-connector/zh.dict.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/zh.dict.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/zh.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/zh.dict.itop-portal-base.php
# datamodels/2.x/itop-problem-mgmt/es_cr.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-problem-mgmt/zh.dict.itop-problem-mgmt.php
# datamodels/2.x/itop-request-mgmt-itil/es_cr.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt-itil/zh.dict.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/es_cr.dict.itop-request-mgmt.php
# datamodels/2.x/itop-request-mgmt/zh.dict.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/zh.dict.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/zh.dict.itop-service-mgmt.php
# datamodels/2.x/itop-tickets/zh.dict.itop-tickets.php
# datamodels/2.x/itop-welcome-itil/zh.dict.itop-welcome-itil.php
# dictionaries/zh.dictionary.itop.core.php
# dictionaries/zh.dictionary.itop.ui.php
2018-12-10 08:38:19 +01:00
Molkobain
59570f3a21
Update spanish translations (thanks to Miguel Turrubiates)
2018-12-07 19:32:27 +01:00
Eric
53fe826f9f
Autocomplete: Prevent the RETURN key to submit form if no value is set
2018-12-07 16:06:52 +01:00
Molkobain
56b4ecb4ce
🌐 Update spanish translations (thanks to Miguel Turrubiates! ✌)
2018-12-07 14:25:17 +01:00
Pierre Goiffon
d17717e4b5
👥 Add @purplegrape to the contributor's list (PR #24 , thank you !)
2018-12-07 11:23:55 +01:00
Molkobain
68da3a4aad
Change default attachments (and inline images) lifetime to 1 day instead of 1 hour
2018-12-07 11:16:41 +01:00
Molkobain
855480fd7b
PHPDoc
2018-12-07 11:16:41 +01:00
Pierre Goiffon
79200e8f96
🙈 Update gitignore to handle toolkit symlinks
2018-12-07 11:13:51 +01:00
Purple Grape
7d43ae40b8
Support/2.5 ( #24 )
...
* Update zh.dict.authent-ldap.php
* Update zh.dict.authent-local.php
* Create zh.dict.itop-attachments.php
* Create zh.dict.itop-backup.php
* Update zh.dict.itop-change-mgmt-itil.php
* Create zh.dict.itop-change-mgmt.php
* Update zh.dict.itop-config-mgmt.php
* Create zh.dict.itop-config.php
* Create zh.dict.itop-datacenter-mgmt.php
* Create zh.dict.itop-hub-connector.php
* Create zh.dict.itop-incident-mgmt-itil.php
* Update zh.dict.itop-knownerror-mgmt.php
* Create zh.dict.itop-portal-base.php
* Update zh.dict.itop-problem-mgmt.php
* Create zh.dict.itop-request-mgmt-itil.php
* Create zh.dict.itop-request-mgmt.php
* Create zh.dict.itop-service-mgmt-provider.php
* Update zh.dict.itop-service-mgmt.php
* Update zh.dict.itop-tickets.php
* Update zh.dict.itop-welcome-itil.php
* Update zh.dictionary.itop.ui.php
* Update zh.dictionary.itop.core.php
2018-12-07 10:38:50 +01:00
Denis Flaven
540bc3a54b
Newsroom finalization & integration tests.
2018-12-06 15:38:29 +01:00
Stephen Abello
35752a8041
N°1837: Internal: fix regression on data synchronized attributes display
2018-12-06 15:05:13 +01:00
Molkobain
2baa95ff6d
N°1841 Portal: Service catalog items not collapsed / expended as expected
2018-12-06 10:43:25 +01:00
Lars Hippler
86dce21849
Some small typo fixes in German translations
...
Fix typo in German dashlet translations (Group by sum)
Fix typo in German translation (config-saved)
2018-12-06 08:51:42 +01:00
Pierre Goiffon
fca5a625d2
🐛 N°1834 Query Phrasebook : fix fields dictionary key
2018-12-05 16:58:34 +01:00
Eric
2766fad61a
Autocomplete: select automatically the first entry with the RETURN key
2018-12-05 12:01:32 +01:00
Pierre Goiffon
c6da1db72b
🔒 N°1802 add auth to check-backup.php
2018-12-05 11:37:42 +01:00
Pierre Goiffon
843c06b007
🚸 improves backup/check-backup
...
* backup.php now handles calls from datamodels (approot)
* fix check-backup sample cli
* better error on check-backup invalid check_ticket_itop cli parameter
2018-12-05 11:37:42 +01:00
Pierre Goiffon
7cf7628b8f
🔧 N°1802 update backup.params.distrib
2018-12-05 11:18:49 +01:00
Pierre Goiffon
41b096ba76
🔧 N°1802 rename itop_root config file parameter to itop_backup_incident
2018-12-05 10:45:14 +01:00
Eric
2a4bd4b0dc
💚 N°1825 - Fix ormset control when no limit
2018-12-05 10:10:45 +01:00
Eric
f4f5281769
💚 N°1825 - Fix tagset control when no limit
2018-12-05 10:08:40 +01:00
Eric
a4a09cd8c7
N°1825 - Fix TagSet code numeric generate a Fatal Error
2018-12-05 09:39:41 +01:00
Eric
831b18b4d2
Force the number of Tags in ormTagSet
2018-12-05 09:04:30 +01:00
Eric
e4e5f627c4
Display error log if UpdateObjectFromPostedForm fails when modifying an object in console
2018-12-05 09:04:30 +01:00
Denis Flaven
53e532cbaf
🐛 N°1822 fix for the autocomplete on IE.
...
Support of some accents (western languages) on IE, complete support of
all unicode accents on browsers supporting String.normalize.
2018-12-04 15:07:46 +01:00
Eric
3fa0cbf0fe
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-12-04 14:57:56 +01:00
Eric
6450d2339f
N°1826 - Fix Error in PDF export with php 7.1
2018-12-04 14:55:57 +01:00
Eric
af8b06dda6
💚 Display error log instead of fatal error in case of Exception when modifying an object in console
2018-12-04 11:33:32 +01:00
Stephen Abello
72e2473444
N°1811: Fix regression in impact analysis: misplaced tooltips on Chrome
2018-12-04 10:58:49 +01:00
Eric
6e31a040b2
Display error log instead of fatal error in case of Exception when modifying an object in console
2018-12-04 10:49:30 +01:00
Molkobain
0c8dd6fd1b
N°562 Notifications: Add support for placeholders in HTML hyperlinks (regular href, mailto, ...)
2018-12-04 10:22:31 +01:00
Pierre Goiffon
6c07688c34
N°1815 TagSet widget : change filter callback to an anonymous function, fix String obj conversion bug
2018-12-04 09:53:45 +01:00
Pierre Goiffon
598c22a285
🏁 N°1815 fix tagset widget parse error in MSIE all versions
2018-12-03 17:31:57 +01:00
Denis Flaven
d392b9c0f6
Adaptation of the Hub URLs for the newsroom.
2018-12-03 17:26:22 +01:00
Eric
387c166985
Fix Remote User synchro
2018-12-03 11:33:15 +01:00
Stephen Abello
9115bc118d
🌐 N°1809: Refactor Triggers' help section and add new triggers description
2018-12-03 11:26:23 +01:00
Eric
aca11ac966
Fix AttributeSet wrong error on number of tags in creation
2018-12-03 11:01:54 +01:00
Eric
c15d626095
Fix AttributeSet history database field size (was too short)
2018-12-03 09:27:56 +01:00
Molkobain
79d00b9fe6
Add CONTRIBUTING.md
2018-12-03 08:31:59 +01:00
Pierre Goiffon
a92e2fd882
📦 Update datamodels versions from 2.5.0 to 2.6.0
2018-11-30 18:25:20 +01:00
Eric
7ed51984c7
N°944 - Fix bad xml when attributes name has been changed and redefinition of label is required and cache is regenerated
2018-11-30 14:28:26 +01:00
Pierre Goiffon
cdf11a3485
GitFlow autoconfig file
2018-11-30 11:39:20 +01:00
Eric
bbefd22950
Version 2.6.0
2018-11-29 09:19:55 +01:00
Eric
e08369122d
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# core/config.class.inc.php
# css/css-variables.scss
# css/light-grey.css
2018-11-29 09:10:34 +01:00
Eric
0ce0572c40
N°1783 - Search : fix error when searching for a quote in a text field
2018-11-28 14:52:51 +01:00
Molkobain
9d19556419
Internal: Remove wrongly added default search criterion on FAQ (Introduced in commit 5f7e8c9)
2018-11-28 14:52:51 +01:00
Molkobain
67c0e0eb1c
Fix iTop version that stayed to "2.5.0-beta" for the release
2018-11-28 14:52:50 +01:00
Pierre Goiffon
c5d0dd05b9
🔒 N°1802 itop-backup : move iTop root to config file
2018-11-28 14:49:49 +01:00
Molkobain
4e1f877ab4
Internal: Add new Person in the sample data to welcome Alexia a.k.a "Simone de Beauvoir"! 👋
2018-11-28 14:41:58 +01:00
Eric
0e0d254188
✅ N°1783 - fix unit tests
2018-11-28 14:41:08 +01:00
Eric
992421292c
N°1783 - Search : fix error when searching for a quote in a text field
2018-11-28 14:26:13 +01:00
Eric
47cb4feeeb
N°1783 - Search : fix error when searching for a quote in a text field
2018-11-28 14:16:03 +01:00
Molkobain
76acd8fe9e
Internal: Remove wrongly added default search criterion on FAQ (Introduced in commit 5f7e8c9)
2018-11-28 10:07:05 +01:00
Molkobain
961b1570e8
Fix iTop version that stayed to "2.5.0-beta" for the release
2018-11-27 17:57:15 +01:00
Molkobain
88dea990e1
(Cherry pick from revision 19d4de4) N°1737 Fix tags sanitization in search criteria
2018-11-27 17:57:15 +01:00
Molkobain
19d4de482d
N°1737 Fix tags sanitization in search criteria
2018-11-27 17:43:21 +01:00
Pierre Goiffon
bb0e797cee
Remove Config deprecated methods in v2.7
2018-11-27 15:48:47 +01:00
Pierre Goiffon
d2505d15fe
🔒 N°1802 itop-backup : move iTop root to config file
2018-11-27 11:09:14 +01:00
Eric
122c3a9542
N°1779 - Fix Excel Export from a search result when object contains AttributeDashboard
2018-11-27 10:11:01 +01:00
Eric
15d9ba9906
N°917 - Add AttributeSubItem to the exclusion list of the trigger attributes
2018-11-27 09:36:50 +01:00
Eric
95a22a1a7e
N°1799 - Fix TTO and TTR not recomputed when change on priority
2018-11-27 09:36:50 +01:00
Pierre Goiffon
5309aa225a
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# application/utils.inc.php
# js/dashboard.js
# pages/ajax.render.php
2018-11-26 18:28:42 +01:00
Eric
c0cd450c5f
Add the user_id to the log_kpi instead of *
2018-11-26 15:26:25 +01:00
Eric
d831549c7b
Add User Id on KPI
2018-11-26 15:24:38 +01:00
Pierre Goiffon
0f20f9ca5d
🔒 N°1795 prevent CSRF on dashboard import
2018-11-26 15:17:53 +01:00
Pierre Goiffon
d5568afc68
🔒 N°1795 prevent XSS on some fields
2018-11-23 18:00:26 +01:00
Pierre Goiffon
44d7abac6e
🎨 check-backup : improve code readability
...
move exit conditions on top to avoid if/else nightmare
2018-11-23 17:58:21 +01:00
Denis
1b4b71cb35
Prevent a catchable fatal error when using memcache(d) as the session handler (regression introduced when fixing n°1778).
2018-11-23 16:56:07 +01:00
Pierre Goiffon
f37f3c4c22
➕ iconv was missing (used in export)
2018-11-23 16:35:46 +01:00
Pierre Goiffon
83b3fb80d5
🎨 N°659 uniqueness constraint : more possibilities to customize check
...
* 2 methods called per rule instead of only one
* now we're getting the rule id as parameter
2018-11-23 16:35:46 +01:00
Pierre Goiffon
c242f90440
N°659 uniqueness constraint : fix class used in the dict key for the error message
...
It has to be the rule root class, not the current class
2018-11-23 09:44:42 +01:00
Pierre Goiffon
e4912ee175
🎨 PhpDoc
...
(cherry picked from commit d3aeb807d433e656df22f166387230b431656f58)
2018-11-22 17:40:37 +01:00
Molkobain
83e1f35f9c
N°1792 Fix error message in browser console "Failed to load resource: ERR_INVALID_URL"
2018-11-22 16:59:08 +01:00
Denis Flaven
c42333d085
N°1718 Make attribute image zoomable
2018-11-22 16:06:23 +01:00
Eric
c4c0b0f630
💄 rework of the slider button
2018-11-22 15:24:30 +01:00
Eric
aec3c34eea
N°1787 - Fix execution warning
2018-11-22 14:17:45 +01:00
Molkobain
c4ff20b9fb
N°1789 Internal: Fix regression introduced in 6a6c069
2018-11-22 10:49:02 +01:00
Molkobain
c7ce35a877
Merge branch 'release/2.6' of https://github.com/Combodo/iTop into release/2.6
2018-11-22 10:36:27 +01:00
Denis Flaven
5ccfa24b27
iTop Newsroom implementation - painfully merged manually...
2018-11-21 19:36:51 +01:00
Molkobain
1c6a6edf5a
Merge branch 'release/2.6' of https://github.com/Combodo/iTop into release/2.6
2018-11-21 18:50:29 +01:00
Pierre Goiffon
a659de9c9b
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# datamodels/2.x/itop-portal-base/portal/src/controllers/browsebrickcontroller.class.inc.php
2018-11-21 18:14:13 +01:00
Molkobain
8530db347b
N°1788 Portal: Fix regression, icons not displayed in service catalog (introduced in ab1715ed)
2018-11-21 17:35:33 +01:00
Molkobain
29e28dedf1
Internal: Fix SASS to CSS convert for urls with query string (parameters after the "?")
2018-11-21 17:16:57 +01:00
Molkobain
3aed65c921
(cherry picked from 854bb81) N°1779 Fix none draggable columns in exports (Excel, CSV, ...)
...
- Fix AjaxWebPage load of linked stylesheets
- Remove unnecessary imports of JS/CSS files
2018-11-21 16:13:11 +01:00
Molkobain
0acc0b4a74
PHPDoc
2018-11-21 16:09:16 +01:00
Molkobain
c300e46480
N°1779 Fix none draggable columns in exports (Excel, CSV, ...)
...
- Fix AjaxWebPage load of linked stylesheets
- Remove unnecessary imports of JS/CSS files
2018-11-21 15:55:45 +01:00
Eric
0a3f076335
1784 - Fix Toolkit error on decimals
2018-11-21 15:11:19 +01:00
Eric
12d9551845
N°1706 - Fix error display when object cannot be saved
2018-11-21 14:26:50 +01:00
Vladimir Kunin
0d6c799f9c
RU: name_brand iqueness rule and type phone in Model; person is mandatory error in User; all core attributes.
2018-11-21 14:22:46 +01:00
Eric
a395f5b63c
N°1583 - No filter applied if only one org defined
2018-11-21 11:25:24 +01:00
Eric
cf0ad59ec5
N°1754 - Linkset and CheckToWrite: Loss of links on error during creation
2018-11-21 10:34:06 +01:00
Eric
2e46fa50b3
🌐 Update dictionaries with new missing entries
2018-11-21 10:25:58 +01:00
Molkobain
5a30a3dcb3
N°1750 Portal: Fix broken attachment preview and link on object creation (worked on object edition)
2018-11-21 10:08:27 +01:00
Eric
f9bb2e7a14
💚 N°1583 - user_manager User cannot create a User without Contact (fixed CI)
2018-11-20 18:03:08 +01:00
Eric
57e8b9faaf
N°1583 - user_manager User cannot create a User without Contact
2018-11-20 15:43:05 +01:00
chifu1234
c737b83eb5
Update metamodel.class.php (Cherry picked from branch develop 91f1598)
2018-11-20 15:22:59 +01:00
Pierre Goiffon
5c91a1a612
🌐 RU for itop-config-mgmt : put back 2 missing keys for name_brand uniqueness rule in Model class
2018-11-20 11:53:13 +01:00
Pierre Goiffon
0c49641094
N°659 Uniqueness rules : description and error message are now picked in dictionaries entries with the $sClassName/UniquenessRule:$sUniquenessRuleId convention
2018-11-20 11:42:25 +01:00
Molkobain
99e909dae4
N°1702 Change "description" & "error_message" properties from hardcoded string to dictionary entries
...
New convention is:
- Class:<class>/UniquenessRule:<rule_code> for the error message
- Class:<class>/UniquenessRule:<rule_code>+ for the description of the rule itself
2018-11-19 18:18:35 +01:00
Molkobain
ecf34b47cb
Code cleanup
2018-11-19 12:17:35 +01:00
Molkobain
949b4495fc
Revert "Code cleanup" from commit ac89b2d
2018-11-19 12:16:22 +01:00
Eric
bd7e0174f3
🎨 Code refactor proposed by jbostoen
2018-11-19 11:31:57 +01:00
Molkobain
ac89b2dc44
Code cleanup
2018-11-19 11:28:38 +01:00
Molkobain
7e3fceb7dc
N°1758 Fix read only attributes on bulk apply stimulus
2018-11-16 17:42:21 +01:00
Eric
b28ed08a85
🐎 N°1668 - Perf: avoid object update parse hidden LinkedSet attribute
2018-11-16 17:27:42 +01:00
Stephen Abello
a488c42dca
N°721: ResolveFrom now only set attributes mandatory in resolved & closed states that aren't already set
2018-11-16 17:20:11 +01:00
Pierre Goiffon
62bc6714e0
N°1746 add another log in CK image upload : when mime type is not an image
2018-11-16 15:24:15 +01:00
Eric
9c9ebeeceb
N°1763 - Fix autocomplete and accents
2018-11-16 15:17:49 +01:00
Molkobain
fb233709e0
Search: Fix search submit after closing an empty criterion
2018-11-16 11:37:48 +01:00
Eric
9169cced20
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-11-16 11:33:33 +01:00
Eric
9ceb8e9f0b
N°1765 - Fix Organization filter and UNION filter in ExternalKey search
2018-11-16 11:31:36 +01:00
Eric
1db9708624
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
2018-11-16 10:36:24 +01:00
Eric
5cedcb2389
N°1620: Fix 'forgot your password?' error when resetting password
2018-11-16 10:34:12 +01:00
Molkobain
52b42d0210
PHPDoc
2018-11-16 09:31:24 +01:00
Kamil Konečný
67f5f09530
Title field XSS vulnerability solution.
2018-11-16 08:59:50 +01:00
Eric
b9e0747825
N°1074 - ExternalField default label is now "key_name->label"
2018-11-15 17:33:42 +01:00
Eric
e44ed248ef
N°1659 - Don't use anymore the current organization in the external key search (and n-n)
2018-11-15 17:07:31 +01:00
Stephen Abello
b0c120d7fd
N°1728: Display error on setup for unsupported MySQL 8+ versions (MariaDB & Percona not affected)
2018-11-15 15:04:44 +01:00
Molkobain
177b6d1757
N°1750 Portal: Fix broken attachment preview and link on object creation (worked on object edition)
2018-11-15 14:29:52 +01:00
Eric
ff39b7bc51
N°1759 - Fix setup error on abstract class not existing
2018-11-15 10:59:28 +01:00
Eric
7401e88844
N°1408 - Dashboard Attribute (tab order)
2018-11-14 17:56:02 +01:00
Eric
b1e1e29254
N°244 - Object Copier: copy attachments
2018-11-14 17:20:40 +01:00
Eric
ffac3250af
N°1408 - Dashboard Attribute (removed from "Properties" tab)
2018-11-14 17:20:40 +01:00
Eric
e9fb885d34
N°1408 - Dashboard Attribute (dictionary)
2018-11-14 17:20:40 +01:00
Eric
b87037d187
code cleanup
2018-11-14 17:20:40 +01:00
Pierre Goiffon
a97680fb04
N°931 fix TagSet regression (not displayed correctly in the console)
...
introduced in f9b2fda092
2018-11-14 15:37:08 +01:00
Stephen Abello
798e526010
N°1758: Fix regression on bulk transition due to filter format changes
2018-11-14 15:25:27 +01:00
Stephen Abello
d344478b48
N°1408: Fix AttributeDashboard for portal
2018-11-14 12:11:42 +01:00
Stephen Abello
b898a09c4c
N°1728: Display error on setup for unsupported MySQL 8+ versions (MariaDB & Percona not affected)
2018-11-14 10:13:08 +01:00
Pierre Goiffon
17589e060a
Merge branch 'support/2.5' into release/2.6
2018-11-14 10:04:29 +01:00
Pierre Goiffon
7e4f235c59
N°1761 fix MetaModel class not found when calling utils method
2018-11-14 10:04:15 +01:00
Molkobain
7867cc1dca
N° 688 Portal: Fix enum attributes sort order in ManageBrick (eg. Ongoing requests). Now sorted by code like in the admin. console
2018-11-13 19:31:46 +01:00
Molkobain
114b18d7c8
Portal: Add HTML hooks in object forms to know object's class and ID (useful for CSS /JS hacks)
2018-11-13 16:01:19 +01:00
Eric
5baff6257b
N°1754 - Linkset and CheckToWrite: Loss of links on error during creation
2018-11-13 15:37:10 +01:00
Pierre Goiffon
8264d21520
Add Nould to contributors list (PR #20 )
2018-11-13 14:48:14 +01:00
Kamil Konečný
8bd10a2d11
Session id regeneration on login.
2018-11-13 14:28:08 +01:00
Molkobain
05d866f0f7
Add chifu1324 to the contributors list! Thanks ✌
2018-11-13 13:46:29 +01:00
jbostoen
cce88f09b0
Versoin 20181113-1219
...
* additional strings
2018-11-13 13:40:57 +01:00
Lars Hippler
26475ad10f
Add missing German translations related to 4072ed0
2018-11-13 13:40:01 +01:00
Molkobain
c1a81e4f0d
N°944 Fix wrong XML generated when attribute name has been changed and redefinition of label is required
2018-11-13 11:48:27 +01:00
Vladimir Kunin
4a5cb23730
Add Russian translations for TagSetFieldData fields
2018-11-13 11:26:39 +01:00
Eric
f0e5128fb5
N°1740 - Class Query invalid Datamodel - Attention: Setup mandatory when applying this (core datamodel migration)
2018-11-13 11:18:10 +01:00
Eric
63b08b0e70
Merge remote-tracking branch 'origin/support/2.5' into release/2.6
...
# Conflicts:
# sources/application/search/searchform.class.inc.php
2018-11-13 11:11:15 +01:00
Pierre Goiffon
4072ed09ac
N°931 TagSet : add missing translations for TagSetFieldData fields
2018-11-13 10:55:46 +01:00
Eric
c722d64850
N°1706 - Fix problem with user_manager profile
2018-11-13 08:50:49 +01:00
Molkobain
70137808f0
PHPDoc
2018-11-12 21:36:03 +01:00
Stephen Abello
36ade3b15c
N°1727: Fix non disappearing tooltip for mandatory HTML field
2018-11-12 17:42:56 +01:00
Vladimir Kunin
6b5f32611d
Russian lang for 2.6-beta
2018-11-12 11:36:43 +01:00
Pierre Goiffon
43bfe06882
Merge branch 'support/2.5' into release/2.6
2018-11-09 17:39:17 +01:00
Pierre Goiffon
6f79c16ba0
N°1746 add a log when CK image upload fails
2018-11-09 17:39:03 +01:00
Denis Flaven
e7fbb2273d
N°1718 Make attribute image zoomable
2018-11-09 16:56:26 +01:00
Eric
29df8f8f92
N°1737 - Tags HTML sanitization for display of labels
2018-11-09 10:09:42 +01:00
Eric
216d965d76
N°1724 - Fix external key search error when an UNION is used as a filter in the datamodel
2018-11-09 09:13:59 +01:00
Eric
95fce0eefb
Fix audit bug (DBUnionSearch::AddConditionForInOperatorUsingParam() does not exist) when category is a UNION and rule flag 'Valid objects?' is 'true' and there are invalid entries in the result of the audit.
2018-11-09 09:13:18 +01:00
Eric
841127c131
N°828 - GetSelectFilter issue with DBUnionSearch
2018-11-09 09:11:25 +01:00
Eric
405b1b8e6f
N°917 - Trigger on object update: limit the fields proposed to the ones that can be updated
2018-11-08 14:36:15 +01:00
Eric
b050210737
N°1374 - Fix TTR deadline wrong value when re-assigning overdue tickets outside open hours
2018-11-08 08:55:48 +01:00
Eric
ed02e3522e
code cleanup
2018-11-08 08:55:48 +01:00
Eric
a327b5fb5e
Allow an alternative SQL generation from OQL (same as 2.3.0)
2018-11-08 08:55:48 +01:00
Pierre Goiffon
f9b2fda092
N°931 fix link for TagSet in portal lists
...
- they were linking to a console search
- now will filter the list using the label
2018-11-07 18:06:59 +01:00
Molkobain
0d082bf378
N°1487 Search: Removing an empty criterion doesn't refresh the results anymore
2018-11-07 14:44:37 +01:00
steffunky
d8cef95d56
N°1639: Add white-space style to CKEditor whitelist
2018-11-07 12:15:10 +01:00
steffunky
2258e8c652
N°1650: Add vertical-align style to CKEditor whitelist
2018-11-07 12:14:47 +01:00
Molkobain
5e19d338b9
N°1537 Fix "Demandeur" not updated on Change objects in french version only.
...
caller_id and requestor_id had the same labels which was misleading in transitions.
2018-11-07 11:36:11 +01:00
Molkobain
14ecfc4ce8
Add Jeffrey Bostoen, larhip & chifu1234 to the contributors list! Many thanks to them 🙌
2018-11-07 11:10:59 +01:00
chifu1234
91f159841b
Update metamodel.class.php
...
Update metamodel.class.php
2018-11-07 11:05:53 +01:00
steffunky
170d84d635
N°1061: Remove bold on "auto_select" lines in setup "ready to install" step
2018-11-07 10:08:55 +01:00
Lars Hippler
a962f6535e
Add German translations regarding release 2.6
...
especially AttributeTag, AttributeOverview and uniqueness rules translations
2018-11-07 09:30:20 +01:00
Pierre Goiffon
a4055c4a74
Change comments to use same tickets ref syntax
2018-11-06 17:36:14 +01:00
Molkobain
9ed550ee7f
N°562 Notifications: Add support for placeholders in HTML hyperlinks (regular href, mailto, ...)
2018-11-06 17:35:17 +01:00
steffunky
00bd7583f7
N°1053: Set the first day of the week on date/time picker to a language based setting
...
* Update moment.js
* Add locales to moment.js
* Align console & portal on the same moment.js library
2018-11-06 11:06:07 +01:00
Eric
e4619fbc0f
N°1724 - Fix external key search error when an UNION is used as a filter in the datamodel
2018-11-06 10:01:36 +01:00
Eric
518d94f5f3
Fix audit bug (DBUnionSearch::AddConditionForInOperatorUsingParam() does not exist) when category is a UNION and rule flag 'Valid objects?' is 'true' and there are invalid entries in the result of the audit.
2018-11-06 08:49:35 +01:00
Eric
389a1791d7
N°828 - GetSelectFilter issue with DBUnionSearch
2018-11-06 08:49:35 +01:00
Pierre Goiffon
905dba67c3
Some PhpDoc to document api (just a start !)
2018-11-05 17:15:44 +01:00
Thomas Casteleyn
54eb41b66f
Fix typo Incident Impact (report PR#10)
...
(cherry picked from commit 676b83519a )
2018-11-05 17:00:20 +01:00
Pierre Goiffon
ede2673ba5
Fix uniqueness PHPUnit tests - 2nd commit (forgot to change annotation)
2018-11-05 16:02:15 +01:00
Pierre Goiffon
dd50c99ec4
Fix uniqueness PHPUnit tests
2018-11-05 15:52:35 +01:00
Pierre Goiffon
357555e507
AttributeImage : add css classes to be able to style
2018-11-05 11:54:35 +01:00
Pierre Goiffon
1f6a51b31f
Some refactoring in AttributeImage URL generation
2018-11-05 11:54:35 +01:00
Molkobain
6d4cf71197
N°567 Enhance WikiText URLs synthax (usage of IDs and labels supported)
...
[[<objClass>:<objName|objId>|<label>]]
<label> is optional
Examples:
- [[Server:db1.tnut.com]]
- [[Server:123]]
- [[Server:db1.tnut.com|Production server]]
- [[Server:123|Production server]]
2018-11-05 11:29:06 +01:00
steffunky
87f898d29d
Fix a typo in Dutch translations
2018-11-05 11:23:38 +01:00
jbostoen
d5576522ae
Version 20181102-1455
...
* quick first translation
2018-11-05 11:03:52 +01:00
Thomas Casteleyn
676b83519a
Fix typo Incident Impact
2018-11-05 09:43:32 +01:00
Molkobain
6addd9acec
Update dictionaries for all languages to iTop 2.6
2018-11-02 11:52:33 +01:00
Molkobain
9b5942bf4e
Remove duplicate entries in english dictionaries
2018-11-02 11:40:05 +01:00
Molkobain
9faa4e4cbd
Update english dictionaries' file comment
2018-11-02 11:02:34 +01:00
Molkobain
8b80bd71e7
N°1714 Tags: Add default search criteria
2018-11-02 09:42:54 +01:00
Molkobain
8989206461
(Cherry pick 5f7e8c9 from branch support/2.5) N°1715 Search: Add default criteria for FAQ, FAQCategory & KnownError classes.
2018-11-02 09:04:02 +01:00
Molkobain
5f7e8c9229
N°1715 Search: Add default criteria for FAQ, FAQCategory & KnownError classes.
2018-11-02 08:50:56 +01:00
Molkobain
89a21c8e44
Code cleanup
...
Remove ending "?>" from dictionary files before updating all languages.
2018-11-01 15:35:49 +01:00
Molkobain
a7ec6e5ca0
Internal: Remove unused dictionary file.
2018-11-01 15:35:49 +01:00
steffunky
a08675352a
N°1687: Fix typos in German translation (thanks to ITOMIG)
2018-10-31 12:04:13 +01:00
steffunky
7158b1f787
N°1504: Add a translation for the top left "Page" string on PDF export
2018-10-31 10:21:43 +01:00
Eric
3925ad252f
Fixed execution warning in search (not visible in production)
2018-10-31 09:00:15 +01:00
Pierre Goiffon
f3fd47a792
N°659 PHPUnit to test uniqueness rule validity check... and debug tested method (woops ! unit test will save the world ;) )
2018-10-30 18:01:35 +01:00
steffunky
af92f58265
N°1704: Upgrade portal datetime picker widget & moment.js for jQuery 3 compatibility
2018-10-30 15:51:19 +01:00
Pierre Goiffon
81b5f18579
N°1707 fix mandatory TagSet were not highlighted in the console
2018-10-30 15:06:47 +01:00
Molkobain
184c0cb84b
Fix visual glitch in icon select widget
2018-10-30 10:53:50 +01:00
Eric
c892862822
N°1202 - Fix History on Decimal. No diff when modify only trailing 0s.
2018-10-30 09:13:52 +01:00
Pierre Goiffon
b61d1feec4
Update README after 2.6.0-beta release
2018-10-29 16:49:22 +01:00
Molkobain
a73ff16642
Merge pull request #7 from Super-Visions/feature/dutch-dict
...
Another update for Dutch dictionary
(cherry picked from commit 0e2c8ff220 )
2018-10-29 12:11:32 +01:00
Molkobain
0e2c8ff220
Merge pull request #7 from Super-Visions/feature/dutch-dict
...
Another update for Dutch dictionary
2018-10-29 12:08:15 +01:00
Eric
e39a6b96bd
Fixed execution warning in search (not visible in production)
2018-10-26 10:59:21 +02:00
Pierre Goiffon
7763983ef4
N°1408 fix Organization.overview EN and FR dict keys
2018-10-24 14:58:24 +02:00
Pierre Goiffon
35f7fe98ae
update versions
2018-10-24 10:35:11 +02:00
Pierre Goiffon
da1268fc05
update versions
2018-10-24 10:35:01 +02:00
Pierre Goiffon
533acbde8d
Update README
2018-10-24 10:35:00 +02:00
Pierre Goiffon
d72da422de
PHPDoc
2018-10-24 10:35:00 +02:00
Pierre Goiffon
891608f812
N°1408 Organization.overview dashboard is now editable
2018-10-24 10:00:52 +02:00
Pierre Goiffon
e66da81a20
N°1408 new AttributeDashboard : Organization.overview
2018-10-23 18:37:39 +02:00
Eric
cae0cd00c2
DBSearch: Fix serialization rework (missing internal parameters)
2018-10-23 17:23:43 +02:00
Eric
32fc87023c
AttributeDashboard support Dashlet Badge in XML files (fix the <class> collision)
2018-10-23 16:14:30 +02:00
Molkobain
0021482c1b
Internal jQuery 3 migration fix
2018-10-23 15:43:31 +02:00
Molkobain
276427e3df
PHPDoc
2018-10-23 15:43:31 +02:00
Eric
7b49bde3ad
Dashlet "Header with statistics" query parameter changed to a text area
2018-10-23 15:15:35 +02:00
Eric
a94d940bd3
DBSearch: Fix serialization rework in bulk modify
2018-10-23 15:08:40 +02:00
Eric
313c3c6fc3
Code cleanup
2018-10-23 15:08:40 +02:00
Eric
de86f71c90
Fix error on Tag Admin screen when no TagSet attribute is defined
2018-10-23 15:08:40 +02:00
Eric
098b0531d8
Remove the generation of an additional class TagFieldData for AttributeDashboard
2018-10-23 15:08:40 +02:00
Pierre Goiffon
34552214bf
N°1703 The dates are no longer reset when inserting a Ticket
...
Could cause problems when importing using REST API or using form prefill
2018-10-23 14:17:03 +02:00
Eric
d61a8ba160
DBSearch: Fix serialization rework
2018-10-22 18:59:38 +02:00
Pierre Goiffon
84ebca58ac
N°931 TagSet : FAQ.domains is now displayes in the portal (FAQ list and details form)
2018-10-22 18:39:31 +02:00
Molkobain
fb07d19a64
Merge branch 'develop' into feature/dutch-dict
2018-10-22 17:28:55 +02:00
Pierre Goiffon
def4c54d26
N°659 Console & Portal now we have same object save error messages and sessionmessages
...
* create new CoreCannotSaveException
* throw this exception in DBInsertNoReload/DBUpdate if CheckToWrite fails
* console : change UI.php code to catch this exception instead of calling CheckToWrite itself (was called twice :(( )
* portal : specific catch for the new exception
* portal : get and displays session messages
2018-10-22 17:11:08 +02:00
Pierre Goiffon
027b0fcff7
N°659 use header message to display uniqueness errors on object creation / modification
2018-10-22 17:11:08 +02:00
Pierre Goiffon
fc0cb44a84
Reformat iTopWebPage
2018-10-22 17:11:08 +02:00
Pierre Goiffon
574d72b0e7
N°659 Add uniqueness checks
...
* modify compiler to save the new rules
* add check on object save (\DBObject::DoCheckUniqueness)
* default model : add uniqueness rules on Brand, Model, Person
2018-10-22 17:11:07 +02:00
Pierre Goiffon
cd5e1afb2b
DBSearch: Fix serialization rework, use htmlentities
2018-10-22 15:51:28 +02:00
Eric
0298d6bc19
DBSearch: Fix serialization rework
2018-10-22 15:37:32 +02:00
Eric
60d2fd4f7e
N°1408 - Fix specific dashboard display without context
2018-10-22 12:26:56 +02:00
Thomas Casteleyn
487e0c8769
Improved error message translation
2018-10-22 10:39:16 +02:00
Thomas Casteleyn
5faa0ffe08
Update Dutch dictionary for attachments ( #6 )
...
(Thanks to @Hipska !)
2018-10-20 00:20:31 +02:00
Eric
705ce02580
Setup steps duration
2018-10-19 17:18:39 +02:00
Eric
78c674a989
DBSearch serialization rework
2018-10-19 16:02:07 +02:00
Eric
84d9be3293
Strengthen the SQL creation from OQL
2018-10-19 15:58:50 +02:00
Thomas Casteleyn
30c622052e
Fix integer validation in dashlet forms
...
Mandatory integer fields were valid even when empty. (Thanks @Hipska for the fix!)
2018-10-19 15:06:56 +02:00
Eric
ada56da63e
Fix multiple TagSet creation in the same object
2018-10-19 11:16:34 +02:00
Thomas Casteleyn
5ee125c593
Actually, kilo should be lowercase
2018-10-18 17:27:14 +02:00
Thomas Casteleyn
4876ae7c22
The use of Bytes instead of octets is more common in Dutch
2018-10-18 17:09:55 +02:00
Pierre Goiffon
78b626bbd2
JenkinsFile : add fixed notification
2018-10-18 15:44:35 +02:00
Pierre Goiffon
823311dc86
Update jenkins conf
2018-10-18 15:12:59 +02:00
Pierre Goiffon
21c5638e1e
Merge branch 'support/2.5' into develop
...
# Conflicts:
# application/applicationextension.inc.php
# application/dashlet.class.inc.php
# application/itopwebpage.class.inc.php
# application/loginwebpage.class.inc.php
# application/menunode.class.inc.php
# application/nicewebpage.class.inc.php
# application/query.class.inc.php
# application/utils.inc.php
# application/webpage.class.inc.php
# application/wizardhelper.class.inc.php
# core/action.class.inc.php
# core/attributedef.class.inc.php
# core/cmdbchangeop.class.inc.php
# core/cmdbobject.class.inc.php
# core/cmdbsource.class.inc.php
# core/config.class.inc.php
# core/dbobject.class.php
# core/dbobjectsearch.class.php
# core/dbobjectset.class.php
# core/kpi.class.inc.php
# core/modelreflection.class.inc.php
# core/modulehandler.class.inc.php
# core/oql/expression.class.inc.php
# core/oql/oql-lexer.plex
# core/oql/oql-parser.y
# core/oql/oqlquery.class.inc.php
# core/ormpassword.class.inc.php
# core/sqlobjectquery.class.inc.php
# core/sqlquery.class.inc.php
# core/sqlunionquery.class.inc.php
# core/trigger.class.inc.php
# core/userrights.class.inc.php
# css/light-grey.scss
# datamodels/2.x/itop-backup/status.php
# datamodels/2.x/itop-config/config.php
# datamodels/2.x/itop-full-itil/datamodel.itop-full-itil.xml
# datamodels/2.x/itop-knownerror-mgmt/en.dict.itop-knownerror-mgmt.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/abstractcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/brickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/browsebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/createbrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/defaultcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/managebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/objectcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/controllers/userprofilebrickcontroller.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/abstractrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/browsebrickrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/createbrickrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/defaultrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/managebrickrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/objectrouter.class.inc.php
# datamodels/2.x/itop-portal-base/portal/src/routers/userprofilebrickrouter.class.inc.php
# datamodels/2.x/itop-portal/datamodel.itop-portal.xml
# datamodels/2.x/itop-tickets/en.dict.itop-tickets.php
# dictionaries/da.dictionary.itop.core.php
# dictionaries/da.dictionary.itop.ui.php
# dictionaries/en.dictionary.itop.core.php
# dictionaries/en.dictionary.itop.ui.php
# dictionaries/fr.dictionary.itop.core.php
# dictionaries/hu.dictionary.itop.core.php
# dictionaries/it.dictionary.itop.core.php
# dictionaries/nl.dictionary.itop.core.php
# dictionaries/pt_br.dictionary.itop.core.php
# dictionaries/tr.dictionary.itop.core.php
# dictionaries/zh.dictionary.itop.core.php
# js/forms-json-utils.js
# js/jquery-migrate-1.4.1.min.js
# js/jquery.layout.js
# js/jquery.layout.min.js
# js/jquery.tablesorter.pager.js
# js/linkswidget.js
# js/searchformforeignkeys.js
# js/utils.js
# js/wizardhelper.js
# pages/schema.php
# readme.txt
# setup/ajax.dataloader.php
# setup/xmldataloader.class.inc.php
# sources/renderer/bootstrap/fieldrenderer/bssubformfieldrenderer.class.inc.php
# sources/renderer/console/consoleformrenderer.class.inc.php
# sources/renderer/console/fieldrenderer/consoleselectobjectfieldrenderer.class.inc.php
# sources/renderer/console/fieldrenderer/consolesimplefieldrenderer.class.inc.php
# sources/renderer/console/fieldrenderer/consolesubformfieldrenderer.class.inc.php
# test/ItopDataTestCase.php
# test/core/ormLinkSetTest.php
# webservices/backoffice.dataloader.php
# webservices/rest.php
2018-10-18 14:34:22 +02:00
Pierre Goiffon
588899db63
Convert all files from CrLf to Lf (preparing merge to develop)
2018-10-18 14:20:40 +02:00
Molkobain
a37698a9de
Fix regression introduced in commit 10b7fa6 (Web queries have issue with line breaks in cell value)
2018-10-17 13:04:57 +02:00
bruno DA SILVA
02da84b4cf
jenkins conf in .jenkins
...
- clearer dead ends
2018-10-16 10:57:17 +02:00
Eric
ebb5ede613
N°1408 - Asynchronous load of dashboard tab
2018-10-15 16:37:19 +02:00
Eric
db4b8b2f43
N°1408 - Dashboard selector
2018-10-15 16:37:18 +02:00
Eric
c17f7caa29
N°1408 - Dashboard selector
2018-10-15 16:37:18 +02:00
Eric
d7df975971
cleanup code
2018-10-15 16:37:18 +02:00
Eric
f3f70d6296
N°1408 - Dashboard Printer friendly page + user edit rights
2018-10-15 16:37:18 +02:00
Eric
256d4e2cb3
N°1408 - Revert dashboard field in datamodel
2018-10-15 16:37:18 +02:00
Eric
fb31c9006a
N°1408 - Fix import dashboard
2018-10-15 16:37:18 +02:00
Eric
bf000e6a89
N°1408 - DBSearch Serialize refactor (json format)
2018-10-15 16:37:17 +02:00
Eric
94b4f10277
N°1408 - Fix Object print page for attributes dashboard
2018-10-15 16:37:17 +02:00
Eric
15671f6dd4
N°1408 - Use dashboards only in read-only mode
2018-10-15 16:37:17 +02:00
Eric
2460d2112f
N°1408 - Auto-refresh dashboards
2018-10-15 16:37:17 +02:00
Eric
709badd0f7
N°1408 - Support contextual parameters in attributes dashboard
2018-10-15 16:37:17 +02:00
Eric
99153d02ee
N°1408 - Support contextual parameters in attributes dashboard
2018-10-15 16:37:17 +02:00
Eric
4347b2c5ff
N°1408 - Support contextual parameters in attributes dashboard
2018-10-15 16:37:17 +02:00
Eric
c13b6ea13a
N°1408 - AttributeDashboard first implementation
2018-10-15 16:37:17 +02:00
Eric
6e5d4834f1
N°1408 - Move of the dashboard menu into the dashboard
2018-10-15 16:37:16 +02:00
Eric
9f489d8a59
cleanup code
2018-10-15 16:37:16 +02:00
Eric
c9be1a8e71
cleanup code
2018-10-15 16:37:16 +02:00
Pierre Goiffon
c1e2f35c96
N°931 TagSet : fix remove/add of a partial value in bulk edit
2018-10-15 11:45:29 +02:00
Pierre Goiffon
462148a12f
N°931 TagSet POC : fix markup for preview
2018-10-15 11:35:59 +02:00
Pierre Goiffon
7e4edc6e3a
Forms mandatory check : switch to first tab with error
...
(cherry picked from commit 80e6801db3e7770997e705d087e57b682e8df092)
2018-10-15 09:45:08 +02:00
bruno DA SILVA
452e7cce01
jenkins: default iTop isntance conf
2018-10-12 17:18:49 +02:00
bruno DA SILVA
cb7b5dfffb
jenkins: default iTop isntance conf
2018-10-12 17:11:27 +02:00
steffunky
0a34fb7a7a
N°1590: Advanced search: fixed a bug when selecting foreign keys would not add items (selectionMode is mandatory)
2018-10-12 11:06:31 +02:00
steffunky
11ba459d1b
N°1590: Advanced search: fixed a bug when selecting foreign keys would not add items (selectionMode is mandatory)
2018-10-12 10:48:32 +02:00
Pierre Goiffon
460337954b
CSS : remove duplicate declaration
...
(cherry picked from commit 7f99322da8896fa5120077381dc1a7fc9ff1f828)
2018-10-12 10:47:59 +02:00
Molkobain
215786d740
Update readme.txt for iTop 2.5.1
2018-10-10 14:40:08 +02:00
Molkobain
fe9ca2b9cc
Update readme.txt for iTop 2.5.1
2018-10-10 14:38:18 +02:00
steffunky
41a479b48d
N°1555: fixed a case where AttributeExternal field was pointing anything else than an ExternalKey and its label wouldn't show up on search criteria
2018-10-09 18:30:12 +02:00
steffunky
74a8c3f5bd
N°1555: fixed a case where AttributeExternal field was pointing anything else than an ExternalKey and its label wouldn't show up on search criteria, remove duplicate catch
2018-10-09 18:27:36 +02:00
steffunky
3347d32f2a
N°1555: fixed a case where AttributeExternal field was pointing anything else than an ExternalKey and its label wouldn't show up on search criteria
2018-10-09 18:25:48 +02:00
Pierre Goiffon
eb630efdf5
N°1658 update advanced search german translation (UI:Search:NoAutoSubmit:ExplainText)
2018-10-09 18:12:37 +02:00
Pierre Goiffon
91b7130671
N°1556 Advanced Search : fix removing only criteria in first row (was generating "AND 1")
2018-10-09 18:01:31 +02:00
Pierre Goiffon
80be4b4371
idea files improvements
...
- use Combodo preset
- JS code style (use tab for indentation, newlines in if/else statements)
2018-10-09 18:01:31 +02:00
Denis Flaven
21d7de7d8d
Use a longer timeout to let the IFRAME load itself and inform iTop Hub
...
of the updated configuration. (Bug N°1672)
2018-10-09 17:36:30 +02:00
Pierre Goiffon
4c2be6b2c5
N°931 AttributeTagSet widget js wrapper : partial values can now be added with just a click
2018-10-09 09:04:21 +02:00
Pierre Goiffon
860bb6d615
N°931 AttributeTagSet widget js wrapper : fix remaining console.debug call, and fix indentations
2018-10-08 17:56:34 +02:00
Molkobain
4a431be0a9
(Cherry picked from commit 5099060) N°1203 : Correctly use 'from' field for test email notifications
2018-10-08 17:43:55 +02:00
Pierre Goiffon
950ffcde2b
N°931 remove remaining references to Ticket.tagfield
...
(it was the old AttributeTagSet test, now we have FAQ.domains)
2018-10-08 15:45:50 +02:00
Molkobain
b84ac80aaa
(Cherry pick from develop ab1715e) N°1576 Portal: Security hardening (missed one file in previous commit).
2018-10-08 13:05:45 +02:00
Pierre Goiffon
0580c71749
N°931 fix requirements for AttributeTagSet PhpUnit tests
...
* itop-kown-error-mgmt module
* creates a FAQCategory if needed
2018-10-08 11:58:45 +02:00
Pierre Goiffon
c66b0bea41
N°931 fix PhpUnit tests for TagSets (default datamodel doesn't have anymore Ticket.tagfield, but FAQ.domains)
2018-10-05 17:55:40 +02:00
Pierre Goiffon
7281bd4a1a
N°931 default datamodel : remove Ticket.tagfield and add AttributeTagSet FAQ.domains
2018-10-05 17:37:23 +02:00
Pierre Goiffon
c9d73fc0c8
N°931 fix TagSet not saved on object creation
2018-10-05 17:12:58 +02:00
Pierre Goiffon
8720ac2b08
N°931 Fix import TagSet failing with multiple code values (using CLI with no_localize=1)
2018-10-05 09:18:23 +02:00
Pierre Goiffon
33e8b6a64c
Switch back files from CrLf to Lf
2018-10-04 17:43:03 +02:00
Pierre Goiffon
d7cf339ab5
N°931 TagSet : adding widget JQuery plugin (Selectize.js) to the licences
2018-10-04 15:30:01 +02:00
Pierre Goiffon
714fada9f0
N°931 Fix TagSet export : with format=spreadsheet codes where always returned (now uses codes or labels according to what was set)
2018-10-04 15:00:33 +02:00
Pierre Goiffon
d36fd6a47d
N°931 export localize option label : change FR value
2018-10-04 14:57:12 +02:00
Eric
b6d0843e55
Fix dashboard edition when a bad OQL is present in dashlet 'Group By'
2018-10-04 14:33:29 +02:00
Stephen
c0d83e96d8
Retrofit 2.5.1 fixes into develop ( 11308dc7, 1e0d654, 7fddd6ac, 12e9e453, cbe749af, 10b7fa60, c5f3598f, 396fc2cd)
2018-10-04 11:12:16 +02:00
Pierre Goiffon
3da6251cc7
N°931 change export localize option label
...
as attcodes, enum and tagset are concerned then the label don't contains anymore the field types impacted
also, we rephrased it to remove the negation and be clearer about the effect
2018-10-04 09:31:49 +02:00
Molkobain
396fc2cdcd
N°1658 Fix hard-coded translation in search page when the form has not been automatically submitted.
2018-10-03 17:43:06 +02:00
Molkobain
11308dc76a
N°1059 Fix new empty caselog entry on bulk modification.
2018-10-03 17:24:08 +02:00
Molkobain
7fddd6acdc
N°1624 Fix bulk transition integrity exception when "org_id" was not checked.
2018-10-03 15:08:54 +02:00
Pierre Goiffon
1bf39aa092
N°931 fix XML export (node was always empty)
2018-10-03 10:53:34 +02:00
Molkobain
10b7fa6014
N°1647 Fix Excel web queries import. (JS script error popups)
2018-10-03 10:16:15 +02:00
Pierre Goiffon
3387d8fdd2
Fix XLSX export failing on PHP 7.1 on systems without "/tmp" path
...
Since PHP 7.1 tempnam() throws a notice if the dir parameter can't be used : bug #69489 in http://php.net/ChangeLog-7.php#7.1.0
2018-10-02 17:20:12 +02:00
Molkobain
cbe749af13
N°1645 Fix reset password dictionary entries (hyperlink had wrongly escaped characters)
2018-10-02 16:48:58 +02:00
Molkobain
c5f3598f4e
N°1652 Fix broken search form when user has no read right on objects.
2018-10-02 16:40:26 +02:00
Pierre Goiffon
9f926fccd8
N°931 TagSet admin updates :
...
* when modifying tag, code field is read only if tag is used by at least one object
* "tag usage" tab : show only parent class
2018-10-02 16:36:49 +02:00
Pierre Goiffon
e9a77c798e
Fix Contact data sample (reordering and remove duplicate id)
2018-10-02 15:01:30 +02:00
Molkobain
12e9e453d8
N°1644 Fix PHP 7.2 compatibility issue (count() on none array)
2018-10-02 14:57:51 +02:00
Stephen Abello
6e50a1c4be
(Retrofit from develop 7d37b065) Form prefill: add possibility to change attributes flag on the fly
2018-10-02 11:11:46 +02:00
Guillaume Lajarige
e3e416b467
(Retrofit from deveop ab1715ed) N°1576 Portal: Security hardening.
2018-10-02 11:08:49 +02:00
Guillaume Lajarige
fcb6a4069a
(Retrofit from develop 526d4c4d) N°1575 Portal: Security hardening.
2018-10-02 11:06:27 +02:00
Stephen Abello
02f83c4f52
(Retrofit from develop 9db47428) N°1559: Fixed external attributes selection on export form
2018-10-02 10:57:49 +02:00
Guillaume Lajarige
452c6c3df6
(Retrofit from develop 3d1ccf20) N°1566 Fix security message in the browser console ("Unsafe attempt to load URL data:image/svg+xml;utf8")
2018-10-02 10:56:19 +02:00
Guillaume Lajarige
2966efcfde
(Retrofit from develop af43e22f) N°1578 Fix "Run Query" page hotkeys behavior in some configurations due to a wrong url.
2018-10-02 10:55:04 +02:00
Guillaume Lajarige
1cf36a5d01
(Retrofit from develop 5e1452f9) N°1580 Portal: Default image of image attributes not correctly displayed in object forms.
2018-10-02 10:52:22 +02:00
Molkobain
1973f7526e
Update .gitignore to match the one from develop
2018-10-02 10:48:32 +02:00
Guillaume Lajarige
866dfe4531
(Retrofit from develop 07056613) N°1611 Fix "UTF-8 Characters Malformed" error due to wrong file encoding.
2018-10-02 10:38:27 +02:00
Molkobain
f617cb556b
Merge branch 'support/2.5' of https://github.com/Combodo/iTop into support/2.5
2018-10-02 10:21:13 +02:00
Pierre Goiffon
29691a09fe
.idea : use Combodo presets for code style and inspections
2018-10-02 09:11:56 +02:00
Eric
cb73c2a3f9
N°931: Unit tests for mysql stop words
2018-10-02 08:56:13 +02:00
Pierre Goiffon
713a41909b
N°931 TagSet history : CSS and scss were out of sync
2018-10-01 19:02:39 +02:00
Steffunky
9972e253d5
enable jQuery migrate warning only in dev. environment
2018-10-01 16:17:41 +02:00
Eric
55309be9a1
N°917: AttributeQueryAttCodeSet support in XML definition
2018-10-01 15:52:36 +02:00
Eric
fd75f3af28
cleanup (fix error)
2018-10-01 15:36:47 +02:00
Eric
af7e5eb03e
N°917: Display attcodes instead of labels in triggers and allow search on AttributeSet
2018-10-01 15:23:29 +02:00
Eric
b97ce7a25f
N°917: Fix Ajax calls on objects containing AttributeSet
2018-10-01 15:22:31 +02:00
Molkobain
89d617c152
N°931 Better tooltips.
2018-10-01 12:30:16 +02:00
Molkobain
4595c565cc
N°931 Portal: Start working on UI.
2018-10-01 09:27:07 +02:00
Eric
8f55d4054a
N°917: Fix Search criterion when TagSet = 'tag1 tag2...'
2018-09-28 17:33:05 +02:00
Pierre Goiffon
2e255b10a7
Finish b931
2018-09-28 16:42:49 +02:00
Molkobain
cf9c1b52ed
N°931 Portal integration due to AttributeSet refactoring. UI still to be done.
2018-09-28 16:34:52 +02:00
Eric
d3b3c44cbd
N°917: Fix unit tests
2018-09-28 16:32:15 +02:00
Molkobain
edb25b6dca
N°931 Internal: Move AttributeTagSet class.
2018-09-28 15:49:00 +02:00
Molkobain
4bf748641d
N°931 UI: Display a regular tooltip instead of a qtip when item has no description.
2018-09-28 15:47:22 +02:00
Eric
16a6b70708
N°917: Fix unit tests
2018-09-28 15:36:13 +02:00
Eric
40355cb2d0
N°917: Fix refresh edit screen, avoid storing bad values in db
2018-09-28 12:08:35 +02:00
Eric
b52aaaadf2
N°917: Remove AttributeSet search
2018-09-28 12:08:34 +02:00
Pierre Goiffon
f55c0aa1c9
N°917: Fix TagSet search
2018-09-28 12:08:34 +02:00
Molkobain
333c51b0f9
N°931 Fix XSS in console.
2018-09-28 12:08:14 +02:00
Molkobain
46dee2919e
Taxons: Fix item's remove box position.
2018-09-28 11:17:20 +02:00
Pierre Goiffon
799618dee7
N°931 AttributeSet widget : add charset parameter to htmlentities
2018-09-28 10:33:17 +02:00
Pierre Goiffon
96aaa0d8e1
N°931 TagSet in history : display "added" in bold and "removed" as striked
2018-09-28 10:33:17 +02:00
Molkobain
5556e3efec
Taxons: Refactor of CSS for the console.
2018-09-28 09:40:46 +02:00
Pierre Goiffon
d8b2d4435a
N°931 AttributeSet widget : keep initial removed values
2018-09-28 09:26:23 +02:00
Pierre Goiffon
a4315b4789
N°931 AttributeSet widget : better fix for crash when having a ' in the label
...
use htmlentities for input hidden value instead of a textarea display:none
2018-09-28 09:02:35 +02:00
Pierre Goiffon
3e8dd61607
N°931 AttributeSet widget : fix crash when having a ' in the label
2018-09-27 18:31:58 +02:00
Pierre Goiffon
1d28a67d21
N°931 TagSet widget enabling / disabling in bulk edit
...
- rename ToogleField -> ToggleField
- for the set input, use the same ID as other fields (used by ToggleField method)
- disable the set widget if needed on opening
- binds the update event to enable / disable at will
2018-09-27 17:29:36 +02:00
Eric
3a551e9cec
N°917: Restrict "Attribute...AttCodeSet" to existing attributes on database write
2018-09-27 17:14:26 +02:00
Eric
cf6693a534
N°931: Fix tag css class
2018-09-27 16:47:14 +02:00
Eric
8c5c275952
N°931: Fix compiler (AttributeSet is abstract)
2018-09-27 16:47:14 +02:00
Molkobain
5fa4b4cb88
Taxons: Rework of CSS & markup in the console (portal still to come).
2018-09-27 16:45:04 +02:00
Eric
58525f247e
N°917: AttributeDef CSS class
2018-09-27 15:57:08 +02:00
Eric
d78f19525e
N°917: AttributeDef CSS class
2018-09-27 15:40:00 +02:00
Eric
5559c8205f
Merge branch 'feature/AttributeSet' into feature/b931
...
# Conflicts:
# core/attributedef.class.inc.php
2018-09-27 15:29:27 +02:00
Eric
2a6a97526d
N°917: AttributeDef CSS class
2018-09-27 15:25:51 +02:00
bruno DA SILVA
1adea8f014
jenkins: slack notif on build fixed
2018-09-27 14:40:17 +02:00
Eric
29177ec86b
N°917: New AttributeQueryAttCodeSet and enhanced Query phrase book
2018-09-27 14:37:50 +02:00
Pierre Goiffon
741e88e1f0
N°931 AttributeSet widget : little naming fixes
2018-09-27 12:05:45 +02:00
Pierre Goiffon
66bddc5730
N°931 AttributeSet CSS : fix remove box disappearing with long tag labels
2018-09-27 12:05:17 +02:00
Pierre Goiffon
6eaa7c0530
N°931 AttributeSet more generic CSS classes :
...
* more generic names
* use same classes in both view and edit
* in the scss file, 3 sections : attribute-set edition (with other field types styles), generic Selectize overridings, and styles for attribute-set items visualisation
2018-09-27 11:47:28 +02:00
Eric
b257fae03e
N°917: Fix Unit tests
2018-09-27 11:44:28 +02:00
Eric
2d24324dea
N°917: Fix AttributeClassState
2018-09-27 11:36:41 +02:00
Eric
ec597f697a
N°917: Adapt to generic widget for set
2018-09-27 11:04:20 +02:00
Pierre Goiffon
3bed62a473
N°931 AttributeSet POC : now testing both widget for edition and CSS for viewing
2018-09-27 10:50:12 +02:00
Eric
b5f7227ecd
N°917: Fix AttributeClassState
2018-09-27 10:49:33 +02:00
Eric
615adf8281
N°917: Trigger on delete
2018-09-27 10:49:32 +02:00
Eric
cb7bb3242a
N°917: New AttributeClassState for triggers on state (entering or leaving a state)
2018-09-27 10:49:30 +02:00
Eric
4b08eea998
N°931: Fix Label protection for tags
2018-09-27 10:49:29 +02:00
Eric
01551942b3
N°917: Fix Bulk modify for AttCodeSet
2018-09-27 09:11:03 +02:00
Eric
720d334053
N°917: AttributeClassAttCodeSet created
2018-09-27 09:11:02 +02:00
Molkobain
9397d1ac2e
Taxons: Add support in the portal (UI still to be done).
2018-09-26 17:13:55 +02:00
Pierre Goiffon
1530bb89fe
N°931 TagSet widget and its POC are now more generic (to be used in all AttributeSet hierarchy)
2018-09-26 14:26:26 +02:00
Thomas Casteleyn
e9b04b923e
Merge develop into feature/dutch-dict
2018-09-26 11:22:07 +02:00
bruno DA SILVA
a7000b2582
[WIP] jenkinsfile integration
...
cherry picked from commits :
79157c465a
e473c46dc3
148309245b
5dc39fe068
47c7a3c5e3
85b7e86e58
3fca465f1d
7955dd86f4
bef4ac83a4
bde83fc705
2018-09-26 09:00:25 +02:00
Thomas Casteleyn
f09683949d
Add Dutch dictionary for incident management ( #3 )
...
Thanks to @Hipska!
2018-09-25 17:29:05 +02:00
Pierre Goiffon
e1f96974bb
Merge branch 'develop' into feature/b931
2018-09-25 14:52:59 +02:00
Pierre Goiffon
1fc261937f
Add toolkit to gitignore
2018-09-25 14:52:38 +02:00
Eric
a94211d3d3
Merge remote-tracking branch 'origin/develop' into feature/b931
...
# Conflicts:
# .idea/inspectionProfiles/Combodo.xml
# application/cmdbabstract.class.inc.php
# core/attributedef.class.inc.php
# css/light-grey.css
# css/light-grey.scss
2018-09-25 12:03:44 +02:00
Eric
534f6b6a54
Merge branch 'feature/b917' into develop
2018-09-25 11:55:11 +02:00
Eric
901764bf70
N°917 - Add new trigger on object update
2018-09-25 11:29:15 +02:00
Eric
e67d6e8a80
N°917 - Add new trigger on object update
2018-09-25 10:38:01 +02:00
Molkobain
16476f736a
Taxons: Add specific CSS class to tags so they can be easily stylized.
2018-09-24 16:38:11 +02:00
Eric
e9ecd89cda
Code cleanup
2018-09-24 13:57:45 +02:00
Eric
55036511ab
longer lines for PHP code format
2018-09-24 11:48:15 +02:00
Molkobain
3cf5d31f5d
Start working on tags integration in the end-users portal.
2018-09-21 17:25:45 +02:00
Molkobain
84ae36cf1a
Merge branch 'feature/b931' of https://github.com/Combodo/iTop into feature/b931
2018-09-21 17:24:56 +02:00
Molkobain
00515ac14a
Refactor GetJSONForWidget helper (moved from cmdbAbstract to AttributeTagSet)
2018-09-21 17:24:34 +02:00
Eric
245612d0eb
N°931: Tags dictionary and validation pattern
2018-09-21 16:56:53 +02:00
Eric
ae6e3b4f17
N°931: Tags Template format
2018-09-21 16:00:18 +02:00
Eric
12a3f1c36c
N°931: Fix integrity controls (reserved word)
2018-09-21 15:59:54 +02:00
Eric
1af1e92b60
N°931: Fix error reporting for data synchro
2018-09-20 17:22:46 +02:00
Thomas Casteleyn
5d8b9fd4db
Added Dutch dictionary for incident management
2018-09-20 16:39:37 +02:00
Eric
a1ad7a5def
N°931: Fix Search when screen is refreshed (number of selected criteria for tags)
2018-09-20 15:57:37 +02:00
Eric
398d1aa820
N°931: Limit the number of tags in the widget
2018-09-20 15:15:25 +02:00
Molkobain
38278f3432
Taxons: UI WIP.
2018-09-20 14:41:56 +02:00
Molkobain
baf4662ed8
Taxons: UI WIP.
2018-09-20 10:53:07 +02:00
Eric
cf07c9f1a2
N°931: Fix search when referencing a non existing tag
2018-09-20 10:31:02 +02:00
Eric
446bd0ad1f
N°931: Rename Tag columns in database
2018-09-20 09:58:35 +02:00
Eric
3d5e46faac
N°931: Fix Search when screen is refreshed
2018-09-19 17:21:05 +02:00
bruno DA SILVA
b8fba8997a
Merge branch 'feature/jenkinsfile' into develop
2018-09-19 16:33:05 +02:00
Eric
a07c81d0d9
N°931: TagSetData table name
2018-09-19 16:18:09 +02:00
Eric
0252d091ca
N°931: TagSetData table name
2018-09-19 16:07:10 +02:00
Molkobain
18d9ada58d
N°1636 Fix concurrent lock not released on failed transition (in the console)
2018-09-19 15:56:50 +02:00
Molkobain
055d2cc62c
Taxons: UI WIP.
2018-09-19 11:00:33 +02:00
Eric
e15c5c58d8
N°931: HTML
2018-09-19 10:19:16 +02:00
Eric
b734aca4d0
N°931: Fix History
2018-09-19 09:52:06 +02:00
Eric
e495b36dfb
N°931: Add link to read-only HTML representation of tags
2018-09-18 17:34:03 +02:00
Eric
cdcfe03d67
N°931: Tag max number and max length per class and field (defined in xml)
2018-09-18 15:33:00 +02:00
Eric
2c6dc20046
N°931: "Empty" message added to the tag usage tab
2018-09-18 14:57:56 +02:00
Eric
a8c3b7ac2e
N°931: Reformat
2018-09-18 14:16:30 +02:00
Eric
98572c6efb
N°931: Tags admin menu (typo)
2018-09-18 13:57:46 +02:00
Eric
70840c53aa
N°931: TagSetFieldData Fix bad name extract
2018-09-18 12:17:27 +02:00
Eric
9fbd27f3a8
N°931: Import/Export separator defined in configuration
2018-09-18 12:04:08 +02:00
Eric
c3c1897258
N°931: Tags data class display name
2018-09-18 11:38:34 +02:00
Eric
5403219746
N°931: Tags admin menu
2018-09-18 10:28:39 +02:00
Molkobain
fb08903a8a
UI: Improve selected rows background color in tables.
2018-09-17 17:09:12 +02:00
Molkobain
416005654e
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2018-09-17 17:07:52 +02:00
Eric
1debf77ab4
N°931: DBSearch AddCondition updated for tags
2018-09-17 12:46:46 +02:00
Eric
f1a8bb08da
N°931: Fix integrity controls (tag code length)
2018-09-17 12:03:17 +02:00
Eric
7edff12bbf
Merge remote-tracking branch 'origin/support/2.5' into develop
...
# Conflicts:
# application/startup.inc.php
2018-09-17 11:47:47 +02:00
Eric
27332931d0
N°1626 - Error 500 when returning from a move to test
2018-09-17 11:42:32 +02:00
Molkobain
34d601f49c
UI: Make caselog entries' header font a bit more tinier in enhanced portal.
2018-09-16 21:39:09 +02:00
Pierre Goiffon
ec38473d88
N°931 TagSet widget : disable/enable methods for mass edit (need to be plugged, but where ?!??)
2018-09-14 17:57:45 +02:00
Pierre Goiffon
875c77ae65
N°931 TagSet widget : fix empty widget on creation form
...
Now displays a placeholder
The + icon can't be used as is cause it's inserted with ::after, and without tags it can't be right aligned
2018-09-14 17:43:38 +02:00
Eric
75e24f9f79
Changed table selection background color
2018-09-14 17:26:06 +02:00
Eric
16a4662129
warnings reworked
2018-09-14 17:08:25 +02:00
Eric
1eda1eb9de
N°931: cleanup code
2018-09-14 17:08:05 +02:00
Eric
d981fd35ef
N°931: TagSet Fix CSV import
2018-09-14 14:55:41 +02:00
Pierre Goiffon
6f1dc44932
N°931 TagSet widget : fix added / removed not updating correctly
...
* move integrity checks from refresh method to add/remove callbacks
* use onInitialize callback for partial values instead of render
2018-09-14 14:50:24 +02:00
Pierre Goiffon
95b929dd27
N°931 TagSet widget POC HTML page
2018-09-13 18:15:58 +02:00
Eric
0c75b98f48
N°931: TagSet Fix Bulk update
2018-09-13 17:49:25 +02:00
Eric
ecc5a0bf8a
N°931: TagSet Fix 'New...' object form
2018-09-13 17:06:58 +02:00
Pierre Goiffon
d9315bec84
N°931 integrate TagSet widget
2018-09-13 15:57:32 +02:00
Eric
d1ee7f4353
N°931: TagSet search (manage undefined values) unit tests
2018-09-12 18:17:17 +02:00
Eric
979095337b
code cleanup
2018-09-12 15:35:18 +02:00
Eric
34b528b1f4
N°931: TagSet search unit tests
2018-09-12 15:34:37 +02:00
Eric
5ea056a3fc
code cleanup
2018-09-12 15:14:27 +02:00
Eric
2ba31244c2
N°931: TagSet search form integration
2018-09-12 15:03:35 +02:00
Molkobain
3ea16694b4
Fix dictionary entry on linkedset tab that was adding a 's' on object class. (eg. "Add IP Addresss..." now becomes "Add IP Address objects...")
2018-09-12 11:02:02 +02:00
Molkobain
35e872310d
Update dictionaries for ActionEmail class. (Missing uppercase on first letters)
2018-09-12 09:58:04 +02:00
Pierre Goiffon
b86b24d444
N°931 JS/CSS files for TagSet widget
2018-09-12 09:03:04 +02:00
Molkobain
45e1a6ffd6
PHP Documentation
2018-09-11 21:45:19 +02:00
Pierre Goiffon
c87f001956
Little modifications on PHPStorm code style & inspections
2018-09-11 18:44:44 +02:00
Eric
1fc3b3a4ed
N°931: Integrity controls + unit tests
2018-09-11 17:27:27 +02:00
Eric
c706a2d77c
N°931: Integrity controls
2018-09-11 12:40:46 +02:00
Eric
8577fc6701
N°931: Integrity controls
2018-09-11 12:22:50 +02:00
Eric
ead3067d49
Merge remote-tracking branch 'origin/support/2.5' into develop
2018-09-11 09:59:47 +02:00
Eric
4772b8c5bb
PHPStorm config
2018-09-11 09:54:56 +02:00
Eric
36e32b23e2
N°1585: Fix request uri too long (search form)
2018-09-11 09:36:10 +02:00
Eric
6817cfbeea
N°931: Integrity controls
2018-09-07 17:50:40 +02:00
bruno DA SILVA
f851238eab
Merge branch 'develop' into feature/jenkinsfile
2018-09-07 15:11:14 +02:00
bruno DA SILVA
79157c465a
[WIP] jenkinsfile integration
2018-09-07 14:52:22 +02:00
Pierre Goiffon
64438f6b6d
idea : change XML indent
2018-09-06 18:35:51 +02:00
Pierre Goiffon
f2b914a4c5
N°931 change CSS for displaying TagSet datas
2018-09-06 18:34:23 +02:00
Pierre Goiffon
da71004898
N°931 update TagSet DataModel declaration parameters
2018-09-06 17:10:40 +02:00
Eric
e9019b294a
Merge branch 'develop' into feature/jenkinsfile
2018-09-06 15:51:31 +02:00
Eric
e2c3ea22e4
N°931: Start bulk modify implementation
2018-09-06 15:42:10 +02:00
Eric
c7f3f20229
New Unit tests
2018-09-06 14:42:00 +02:00
bruno DA SILVA
46dc024335
Merge branch 'develop' into feature/jenkinsfile
2018-09-06 14:31:59 +02:00
Eric
34c68cfef0
Fix regression introduced in bugfix 1554 and detected by unit tests
2018-09-06 14:20:42 +02:00
Molkobain
d6a564a38b
Add Thomas Casteleyn to the contributors list! :)
...
(I forgot him on the initial commit)
2018-09-06 11:32:38 +02:00
Pierre Goiffon
31c69088ca
New contributor : Dennis Lanister (PR #1 )
2018-09-06 10:14:24 +02:00
Dennis Lassiter
49bb8fd515
Fixed bug that caused memory_limit=-1 to lead to 'not enough memory' … ( #1 )
...
* Fixed bug that caused memory_limit=-1 to lead to 'not enough memory' error
* Added Unit Test to Memory Limit Check
2018-09-06 10:04:28 +02:00
Eric
b8f8a0d455
N°1585: Fix ajax request uri too long on auto-complete
2018-09-05 15:10:11 +02:00
Molkobain
374e34a8b8
Merge branch 'develop' of https://github.com/Combodo/iTop into develop
2018-09-05 15:07:34 +02:00
Molkobain
7ef1d72314
Add a "Contributors" in the READMME.md to thank all the contributors! :)
2018-09-05 15:06:56 +02:00
Eric
b9708c8d37
N°1585: Fix ajax request uri too long on auto-complete
2018-09-05 14:47:20 +02:00
bruno DA SILVA
5666a3d74c
Merge branch 'develop' into feature/jenkinsfile
2018-09-05 10:12:13 +02:00
bruno DA SILVA
8004b411da
gitignore
...
- add the test's vendor dir
2018-09-05 10:11:09 +02:00
bruno DA SILVA
e473c46dc3
[WIP] jenkinsfile integration
2018-09-05 08:08:19 +02:00
bruno DA SILVA
148309245b
[WIP] jenkinsfile integration
2018-09-05 08:00:07 +02:00
bruno DA SILVA
5dc39fe068
[WIP] jenkinsfile integration
2018-09-04 18:10:39 +02:00
bruno DA SILVA
47c7a3c5e3
[WIP] jenkinsfile integration
2018-09-04 18:05:19 +02:00
bruno DA SILVA
85b7e86e58
[WIP] jenkinsfile integration
2018-09-04 18:03:56 +02:00
Pierre Goiffon
f871581997
Merge branch 'develop' into feature/b931
...
# Conflicts:
# application/applicationextension.inc.php
# core/attributedef.class.inc.php
# core/cmdbchangeop.class.inc.php
# core/cmdbobject.class.inc.php
# core/dbobjectsearch.class.php
# core/oql/expression.class.inc.php
# core/oql/oql-lexer.plex
# core/oql/oql-parser.y
# core/oql/oqlquery.class.inc.php
# css/light-grey.scss
# datamodels/2.x/itop-full-itil/datamodel.itop-full-itil.xml
# datamodels/2.x/itop-portal/datamodel.itop-portal.xml
# datamodels/2.x/itop-tickets/en.dict.itop-tickets.php
# dictionaries/en.dictionary.itop.core.php
# dictionaries/fr.dictionary.itop.core.php
# setup/xmldataloader.class.inc.php
# test/ItopDataTestCase.php
2018-09-04 18:02:51 +02:00
bruno DA SILVA
3fca465f1d
[WIP] jenkinsfile integration
2018-09-04 18:02:12 +02:00
bruno DA SILVA
7955dd86f4
[WIP] jenkinsfile integration
2018-09-04 18:00:34 +02:00
Pierre Goiffon
40a4e6d7b0
Fix files using CrLf, convert them to Lf to have the whole repo using Lf
...
Warn your git config (core.autocrlf = input or true)
2018-09-04 17:59:51 +02:00
bruno DA SILVA
bef4ac83a4
[WIP] jenkinsfile integration
2018-09-04 17:58:20 +02:00
bruno DA SILVA
bde83fc705
[WIP] jenkinsfile integration
2018-09-04 17:53:18 +02:00
Pierre Goiffon
cad18bee73
SetupUtils : update comments to match current branch version
2018-09-04 12:02:16 +02:00
Eric
98e5eaa4e0
N°931: Add Delta management in ormTagSet (with unit tests)
2018-09-04 11:06:53 +02:00
Pierre Goiffon
3129e94363
Merge branch 'N°1620' into develop
...
# Conflicts:
# sources/application/search/searchform.class.inc.php
2018-09-04 09:54:12 +02:00
bruno DA SILVA
7ac0e50bd9
phpstorm's line separator in edited files
2018-09-03 17:36:37 +02:00
Eric
10683d943f
N°1620: Fix 'forgot your password?' link
2018-09-03 16:50:30 +02:00
Molkobain
9ad8c6a96d
Add .idea project files
2018-09-03 15:53:00 +02:00
Molkobain
c74d9bbafb
Add .gitignore
2018-09-03 15:51:43 +02:00
Eric
7d502fae23
N°931: TagSet : OQL Parse/Normalize unit tests
2018-09-03 15:18:19 +02:00
Pierre Goiffon
894eeef140
ignore : add extensions
2018-09-03 15:10:51 +02:00
bruno DA SILVA
7991069282
.gitignore completion
...
- cache
- logs
- composer's vendor dir
2018-09-03 12:13:57 +02:00
Eric
39f3972a24
N°931: TagSet : OQL Parsing unit tests
2018-08-31 18:02:22 +02:00
Pierre Goiffon
fc0e5ecd3b
Ignore : add other shared files in index
2018-08-31 17:46:12 +02:00
Pierre Goiffon
8897d9f82b
ignore : add other shared idea files in index
2018-08-31 17:36:52 +02:00
Eric
1329b5f684
N°931: TagSet : Set automatically the class and attcode from tag class name
2018-08-31 16:59:02 +02:00
Eric
e58bc738d0
N°931: TagSet : Parsing OQL
2018-08-31 15:58:55 +02:00
Denis Flaven
af63579f31
Rework of the readme...
2018-08-30 16:35:56 +02:00
Denis Flaven
55fad3a9ec
Added .project files to ignore.
2018-08-30 15:32:41 +02:00
Eric
3250e0a1e6
N°931: TagSet - Support for removed tags in history
2018-08-30 12:42:56 +02:00
bruno DA SILVA
8df287f45e
updated readme
2018-08-30 12:25:20 +02:00
Eric Espié
f458a77449
N°962: TagSet - Attribute definition (continued)
...
SVN:b931[6032]
2018-08-30 11:08:47 +02:00
Eric Espié
1953c05b33
N°962: TagSet - add label support
...
SVN:b931[6031]
2018-08-30 11:08:47 +02:00
Eric Espié
a03c553000
N°962: TagSet attribute definition dev (continued)
...
SVN:b931[6030]
2018-08-30 11:08:47 +02:00
Eric Espié
ecdc4076d9
N°962: TagSet Edition in string mode
...
SVN:b931[6029]
2018-08-30 11:08:47 +02:00
Eric Espié
cd2ea3793e
N°962: TagSet Fix Attribute definition
...
SVN:b931[6028]
2018-08-30 11:08:47 +02:00
Pierre Goiffon
d40ffd944f
Revert "@@@@ OQL parsing"
...
This reverts commit 0beafc1e9a7c4a629a458aec669aa5e11b27db49.
SVN:b931[6027]
2018-08-30 11:08:47 +02:00
Pierre Goiffon
0ee4b52baa
N°931 rights on TagSetFieldData on ConfigurationManager profile
...
SVN:b931[6026]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
5e7db7a27e
@@@@ OQL parsing
...
SVN:b931[6025]
2018-08-30 11:08:46 +02:00
Eric Espié
9631021f84
N°962: TagSet Attribute definition and values (with unit tests on values)
...
SVN:b931[6024]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
157193c831
N°931 Change default XML version and remove done TODOs
...
SVN:b931[6022]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
1415f12506
composer.json : add missing ext-dom (iTopDesignFormat)
...
SVN:b931[6021]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
4df497a768
N°931 Increment iTop XML version (1.5 -> 1.6)
...
SVN:b931[6020]
2018-08-30 11:08:46 +02:00
Eric Espié
9a13eb0f90
warnings cleanup, search mode switched to BOOLEAN
...
SVN:b931[6019]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
eaa49bce05
N°931 woops forgot to rename TagSetFielData file name
...
SVN:b931[6018]
2018-08-30 11:08:46 +02:00
Pierre Goiffon
96334d859a
Add shared idea file
2018-08-30 11:05:27 +02:00
Pierre Goiffon
13855b1501
Add .gitignore and README
2018-08-30 11:04:23 +02:00
Eric Espié
22df5d09fb
Retrofit from trunk
...
N°1595 - Setup : Blocking error on backup failure [from revision 6010]
SVN:2.5[6023]
2018-08-28 12:14:56 +00:00
Eric Espié
277b24e2f0
warnings cleanup, search mode switched to BOOLEAN
...
SVN:trunk[6019]
2018-08-24 12:09:55 +00:00
Pierre Goiffon
abb2a2a6e2
N°931 new MatchExpression, allow to query the DB
...
SVN:trunk[6016]
2018-08-23 15:06:41 +00:00
Pierre Goiffon
961f5fd387
N°931 new TagField iTop class generated for each AttributeTag field
...
SVN:trunk[6015]
2018-08-23 15:06:17 +00:00
Pierre Goiffon
bdb62de81c
N°931 new AttributeTag, handle field creation & update
...
SVN:trunk[6014]
2018-08-23 15:05:36 +00:00
Pierre Goiffon
422a850792
AttributeDefinition : fix lots of warnings
...
SVN:trunk[6013]
2018-08-23 14:55:33 +00:00
Eric Espié
1dfcc77098
N°1554: Search form - hide unknown external keys from the search criteria.
...
SVN:trunk[6012]
2018-08-23 12:32:37 +00:00
Eric Espié
13097d7e0e
Fix excel export when reconciliation key list is containing empty keys.
...
Fix the compiler to avoid generating a reconciliation array not empty when
the tag is present in the xml definition of the class but no key is defined.
SVN:trunk[6011]
2018-08-23 08:22:44 +00:00
Eric Espié
ea9b7eddde
N°1595 - Setup : Blocking error on backup failure
...
SVN:trunk[6010]
2018-08-22 10:16:35 +00:00
Guillaume Lajarige
07056613e5
N°1611 Fix "UTF-8 Characters Malformed" error due to wrong file encoding.
...
SVN:trunk[6009]
2018-08-21 10:29:46 +00:00
Pierre Goiffon
4d45793ec7
PHPDoc (schema)
...
SVN:trunk[6008]
2018-08-17 12:04:57 +00:00
Pierre Goiffon
931593a59e
(Retrofit from trunk) N°1572 Add composer.json for PHP language level (r5967)
...
SVN:2.5[6007]
2018-08-17 08:42:41 +00:00
Pierre Goiffon
4718133ab6
PHPDoc
...
SVN:trunk[6006]
2018-08-16 13:17:56 +00:00
Pierre Goiffon
ba518fa975
PHPDoc
...
SVN:trunk[6005]
2018-08-16 12:36:24 +00:00
Pierre Goiffon
0311e78690
KPI : fix PHP notice var might be undefined
...
SVN:trunk[6004]
2018-08-16 12:36:11 +00:00
Stephen Abello
9db47428db
N°1559: Fixed external attributes selection on export form
...
SVN:trunk[6003]
2018-08-14 13:19:36 +00:00
Stephen Abello
7092dc6f86
(Retrofit from trunk) German Translation: typos (UserRequest #18704 )
...
SVN:2.5[6002]
2018-08-08 10:12:43 +00:00
Vincent Dumas
84dc3c2093
German Translation: typos (UserRequest #18704 )
...
SVN:trunk[6001]
2018-08-08 09:18:25 +00:00
Stephen Abello
7d37b06555
Form prefill: add possibility to change attributes flag on the fly
...
SVN:trunk[6000]
2018-08-06 14:33:47 +00:00
Pierre Goiffon
6e6a89fb8c
Selectable lines in tables : add an exclusion rule for click on padding/margin/border
...
SVN:trunk[5999]
2018-08-06 10:12:48 +00:00
Stephen Abello
135d9c5e55
Support any php default password hash algorithm change
...
SVN:trunk[5998]
2018-08-03 14:52:05 +00:00
Stephen Abello
dd46048ea6
Use a better algorithm to hash new passwords
...
SVN:trunk[5997]
2018-08-03 12:49:20 +00:00
Stephen Abello
8fe38b03f6
Added replacement for mcrypt removal in PHP 7.2, added stronger encryption options
...
SVN:trunk[5996]
2018-08-03 08:43:36 +00:00
Pierre Goiffon
0adadeb280
Remove old code that was here for old PHP version compatibility
...
SVN:trunk[5995]
2018-08-03 07:39:50 +00:00
Pierre Goiffon
775a5122c9
Selectable lines in tables can now be checked clicking anywhere in the line (previously this could only be done clicking on the checkbox)
...
SVN:trunk[5994]
2018-08-02 14:36:15 +00:00
Stephen Abello
5099060be2
N°1203 : Correctly use 'from' field for test email notifications
...
SVN:trunk[5993]
2018-08-02 08:34:58 +00:00
Pierre Goiffon
c3f80a5876
(Retrofit from trunk) N°1582 Fix audit when a current organization is set and there is an audit rule with valid=true
...
Was generating an OQL missing query argument error (r5991)
SVN:2.5[5992]
2018-08-01 09:13:15 +00:00
Pierre Goiffon
201c93e20a
N°1582 Fix audit when a current organization is set and there is an audit rule with valid=true
...
Was generating an OQL missing query argument error
SVN:trunk[5991]
2018-08-01 09:12:00 +00:00
Stephen Abello
c852d91a72
Updated tcpdf to v6.2.17 for better compatibility with different PHP versions
...
SVN:trunk[5990]
2018-07-31 13:29:18 +00:00
Pierre Goiffon
821eb4df8c
(Retrofit from trunk) PHP 7.2 compatibility: fix another count(null) (r5988)
...
SVN:2.5[5989]
2018-07-30 10:31:22 +00:00
Pierre Goiffon
a3c6e62bd5
PHP 7.2 compatibility: fix another count(null)
...
SVN:trunk[5988]
2018-07-30 10:30:16 +00:00
Pierre Goiffon
8cd18fe190
Setup : log in log/setup.log on PHP error (register_shutdown_function callback)
...
SVN:trunk[5987]
2018-07-26 14:54:45 +00:00
Guillaume Lajarige
5e1452f9b9
N°1580 Portal: Default image of image attributes not correctly displayed in object forms.
...
SVN:trunk[5986]
2018-07-26 14:22:15 +00:00
Guillaume Lajarige
b76de65886
Internal: Fix CSS typo.
...
SVN:trunk[5985]
2018-07-25 15:11:21 +00:00
Guillaume Lajarige
48b3bd8bf3
N°1579 Portal: Fix wrong pictogram placement on email & tel attributes in the ManageBrick.
...
SVN:trunk[5984]
2018-07-25 15:02:29 +00:00
Guillaume Lajarige
ab1715edec
N°1576 Portal: Security hardening.
...
SVN:trunk[5983]
2018-07-25 14:48:11 +00:00
Guillaume Lajarige
3589783ee1
PHPDoc.
...
SVN:trunk[5982]
2018-07-25 13:09:35 +00:00
Guillaume Lajarige
af43e22f03
N°1578 Fix "Run Query" page hotkeys behavior in some configurations due to a wrong url.
...
SVN:trunk[5981]
2018-07-25 13:06:38 +00:00
Eric Espié
956f6403b8
Display error message for end users instead of blank screen
...
SVN:trunk[5980]
2018-07-25 08:02:28 +00:00
Pierre Goiffon
e276587fdc
N°931 change iTop 2.6 MySQL requirements from 5.5.3 to 5.6 (to have fulltext on InnoDB)
...
SVN:2.5[5978]
2018-07-25 07:57:31 +00:00
Guillaume Lajarige
82ed1853fa
Code cleanup.
...
SVN:trunk[5977]
2018-07-25 07:57:07 +00:00
Guillaume Lajarige
eb0403945b
PHPDoc
...
SVN:trunk[5976]
2018-07-25 07:55:39 +00:00
Pierre Goiffon
3126af94ac
N°931 change MySQL dependency from 5.5.3 to 5.6 (to have fulltext on InnoDB)
...
SVN:trunk[5974]
2018-07-25 07:51:47 +00:00
Guillaume Lajarige
e71ad536a9
Code cleanup
...
SVN:trunk[5973]
2018-07-25 07:23:52 +00:00
Guillaume Lajarige
d0322b471d
PHPDoc
...
SVN:trunk[5972]
2018-07-24 16:03:15 +00:00
Guillaume Lajarige
a6af11e644
Code cleanup and PHPDoc.
...
SVN:trunk[5971]
2018-07-24 15:50:52 +00:00
Guillaume Lajarige
1809180d41
Internal: Portal: Fix router API that was never returning the right route.
...
SVN:trunk[5970]
2018-07-24 15:46:23 +00:00
Pierre Goiffon
9612b1b9e9
Fix non existing parameter passed to function
...
SVN:trunk[5969]
2018-07-24 15:36:26 +00:00
Guillaume Lajarige
526d4c4d15
N°1575 Portal: Security hardening.
...
SVN:trunk[5968]
2018-07-24 14:26:51 +00:00
Pierre Goiffon
3f4c824fd5
N°1572 composer.json : add PHP ext dependencies
...
SVN:trunk[5967]
2018-07-24 12:30:07 +00:00
Pierre Goiffon
9c25feb67c
N°1572 Add composer.json for PHP language level
...
SVN:trunk[5965]
2018-07-24 12:17:05 +00:00
Stephen Abello
e31faf81a9
jQuery 3: patched layout library
...
SVN:trunk[5964]
2018-07-23 09:47:53 +00:00
Pierre Goiffon
6eb13c24aa
JQuery 3 : oops use the REAL min file this time
...
SVN:trunk[5963]
2018-07-23 09:12:50 +00:00
Pierre Goiffon
dd20017b0a
JQuery 3 : change JQuery min file
...
SVN:trunk[5962]
2018-07-23 09:09:49 +00:00
Stephen Abello
6630051ef3
Updated jQuery to v3.3.1
...
SVN:trunk[5961]
2018-07-23 06:58:30 +00:00
Vincent Dumas
a66d91c507
Fix duplicated label in French: Ticket.caller_id = Change.requestor_id by renaming the second
...
SVN:trunk[5960]
2018-07-20 13:08:30 +00:00
Vincent Dumas
2f34f0458b
Fix XML bug: Duplicate id=team_id in state new.
...
SVN:trunk[5959]
2018-07-20 12:49:23 +00:00
Guillaume Lajarige
076abc8ae7
N°1568 Portal: Fix async error messages catching when submitting a form was redirecting to a modal that crashed (eg. Transition on object that failed to load)
...
SVN:trunk[5958]
2018-07-19 16:54:11 +00:00
Eric Espié
5134e57109
Search: better translation of search criteria in "natural language" for ISNULL function
...
SVN:trunk[5957]
2018-07-19 08:45:39 +00:00
Eric Espié
a454a43111
Retrofit from trunk
...
N°1556 - Search: Fix removing last criterion on a 'or' line resulted in 'OR 1'.
The empty OR condition is now removed completely from the screen and the criterion list.
[from revision 5951]
SVN:2.5[5956]
2018-07-19 08:17:46 +00:00
Eric Espié
045f58144e
Retrofit from trunk
...
N°1553 - Search: Fix operator on indexed attributes.
It was previously always forced to '=', now it's only defaulted to '='
[from revision 5950]
SVN:2.5[5955]
2018-07-19 08:14:26 +00:00
Eric Espié
8ffea22f0e
Retrofit from trunk
...
N°1561 - Fix auto-complete error when the friendlyname depends on other classes
[from revision 5948]
SVN:2.5[5954]
2018-07-19 08:10:32 +00:00
Eric Espié
c630676792
Retrofit from trunk
...
N°1555 - Search: ExternalField label not displayed.
The search is not restricted for external fields anymore.
[from revision 5945]
SVN:2.5[5953]
2018-07-19 08:06:39 +00:00
Guillaume Lajarige
3d1ccf2028
N°1566 Fix security message in the browser console ("Unsafe attempt to load URL data:image/svg+xml;utf8")
...
SVN:trunk[5952]
2018-07-18 14:40:12 +00:00
Eric Espié
60b980fbff
N°1556 - Search: Fix removing last criterion on a 'or' line resulted in 'OR 1'.
...
The empty OR condition is now removed completely from the screen and the criterion list.
SVN:trunk[5951]
2018-07-18 14:08:56 +00:00
Eric Espié
df20f1b5ab
N°1553 - Search: Fix operator on indexed attributes. It was previously always forced to '=', now it's only defaulted to '='
...
SVN:trunk[5950]
2018-07-18 13:13:02 +00:00
Eric Espié
27144f07b1
N°1561 - Fix auto-complete error when the friendlyname depends on other classes
...
SVN:trunk[5948]
2018-07-18 12:30:40 +00:00
Guillaume Lajarige
8135fdb9d2
Update spanish translations (Thanks to Miguel Turrubiates!)
...
SVN:trunk[5947]
2018-07-18 07:51:17 +00:00
Pierre Goiffon
985ad18048
REST service PHPDoc & code cleanup
...
SVN:trunk[5946]
2018-07-18 07:40:10 +00:00
Eric Espié
768ed2666d
N°1555 - Search: ExternalField label not displayed.
...
The search is not restricted for external fields anymore.
SVN:trunk[5945]
2018-07-17 13:17:22 +00:00
Eric Espié
0bbb586094
Retrofit from trunk
...
Advanced search: Fix an error when using search form from an union.
[from revision 5940]
SVN:2.5[5944]
2018-07-17 12:23:27 +00:00
Eric Espié
efa1f4ee43
Retrofit from trunk
...
N°1551 - Search: selected org & default criteria
Display the default search criteria also when an org is selected.
The org restriction criterion is read only.
[from revision 5939]
SVN:2.5[5943]
2018-07-17 12:22:09 +00:00
Eric Espié
e184eb6aae
Retrofit from trunk
...
DBObject->GetOriginal() hardening (now support attributes not set: for example sla_tto_passed for UserRequest until it is closed)
[from revision 5932]
SVN:2.5[5942]
2018-07-17 12:19:26 +00:00
Eric Espié
c289a53ed3
Advanced search: Fix an error when using search form from an union.
...
SVN:trunk[5940]
2018-07-17 12:04:53 +00:00
Eric Espié
5c206718c8
N°1551 - Search: selected org & default criteria
...
Display the default search criteria also when an org is selected.
The org restriction criterion is read only.
SVN:trunk[5939]
2018-07-17 12:01:29 +00:00
Eric Espié
d7f18e879a
Automatic Tests: new ormLinkSet test
...
SVN:trunk[5938]
2018-07-13 12:34:45 +00:00
Eric Espié
4881a2c274
Better KPI navigation
...
SVN:trunk[5937]
2018-07-13 09:42:52 +00:00
Eric Espié
5eb5fa05bc
cleanup code
...
SVN:trunk[5936]
2018-07-13 08:34:47 +00:00
Eric Espié
c7e0f36d7c
N°1546 - Ticket JSON Export PHP Notice for pre-2.0 tickets
...
SVN:trunk[5935]
2018-07-13 07:47:13 +00:00
Pierre Goiffon
6e9fcb81f0
(Retrofit from trunk) Fix setup for PHP 5.5 (cannot use expression as default field value) (r5933)
...
SVN:2.5[5934]
2018-07-12 07:46:36 +00:00
Pierre Goiffon
54d54ca78e
Fix setup for PHP 5.5 (cannot use expression as default field value)
...
SVN:trunk[5933]
2018-07-12 07:45:13 +00:00
Eric Espié
4cd591f81c
DBObject->GetOriginal() hardening (now support attributes not set: for example sla_tto_passed for UserRequest until it is closed)
...
SVN:trunk[5932]
2018-07-11 13:40:38 +00:00
Denis Flaven
774ecb4003
(retrofit from trunk) Do not check if the organizations are allowed if there is no user logged in (use case: automatic synchro of users at connection time)
...
SVN:2.5[5931]
2018-07-05 13:02:10 +00:00
Denis Flaven
d21d732545
Do not check if the organizations are allowed if there is no user logged in (use case: automatic synchro of users at connection time)
...
SVN:trunk[5930]
2018-07-05 12:54:58 +00:00
Pierre Goiffon
ea4854d239
fix comment typo
...
SVN:trunk[5929]
2018-07-02 07:48:28 +00:00
Guillaume Lajarige
7ca95b9413
Code cleanup: Warning suppression & PHPDoc.
...
SVN:trunk[5928]
2018-06-29 17:14:13 +00:00
Guillaume Lajarige
00d0d383f8
Code cleanup: Warning suppression & PHPDoc.
...
SVN:trunk[5927]
2018-06-29 16:05:11 +00:00
Bruno Da Silva
401a8cdd77
Lab "performance"
...
- move some heavy introspection into cached part of MetaModel aka iterate over get_declared_classes() in order to check is_subclass_of($sPHPClass, 'ModuleHandlerAPI')
- make use of an interface in order to rely on existing code
SVN:trunk[5926]
2018-06-29 13:00:18 +00:00
Guillaume Lajarige
b2384855fd
Code cleanup: Warning suppression.
...
SVN:trunk[5925]
2018-06-28 15:33:29 +00:00
Guillaume Lajarige
602c087c29
N°1528 Portal: Add support for SCSS files through the PortalUIExtension API (only CSS were supported)
...
SVN:trunk[5924]
2018-06-28 14:51:31 +00:00
Guillaume Lajarige
0d96ed5436
Starting dev on iTop 2.6!
...
SVN:trunk[5923]
2018-06-28 08:27:15 +00:00
Guillaume Lajarige
c555d1274b
Creating SVN branch for iTop 2.5
...
SVN:2.5[5920]
2018-06-28 08:22:50 +00:00
Pierre Goiffon
97fa3ac3b3
Fix portal DE translation (thanks again Lars Hippler / Itomig !)
...
SVN:trunk[5919]
2018-06-28 07:15:39 +00:00
Eric Espié
261bc83811
N°1479 : Fixed a bug where impact analysis zoom would affect other tabs' size #jfb :)
...
SVN:trunk[5918]
2018-06-27 15:42:32 +00:00
Vincent Dumas
2dbaf4dfa1
german translation for Graphique in Portal
...
SVN:trunk[5917]
2018-06-27 15:38:45 +00:00
Pierre Goiffon
5df9f38391
German translations update (many thanks Lars Hippler / Itomig !)
...
SVN:trunk[5916]
2018-06-27 15:14:19 +00:00
Eric Espié
93763c5932
N°1401 - External dashlet edition in the designer #jfb :)
...
SVN:trunk[5915]
2018-06-27 14:42:28 +00:00
Eric Espié
242caff990
N°1401 - External dashlet edition in the designer
...
SVN:trunk[5914]
2018-06-27 13:58:36 +00:00
Romain Quetiez
e97e9907c7
Releasing 2.5.0
...
SVN:trunk[5913]
2018-06-27 12:47:15 +00:00
Guillaume Lajarige
ac330b6665
Fix dashlet container CSS class for better positioning
...
SVN:trunk[5912]
2018-06-27 08:23:59 +00:00
Guillaume Lajarige
a4a70a1287
German translation placeholders for iTop 2.5
...
SVN:trunk[5911]
2018-06-26 15:36:55 +00:00
Vincent Dumas
dda8651ba2
Add default search criterion on SynchroDataSource
...
SVN:trunk[5910]
2018-06-25 15:57:06 +00:00
Guillaume Lajarige
83e2d48f4d
N°1401 Fix none draggable third-party dashlets in a dashboard.
...
SVN:trunk[5909]
2018-06-25 14:17:41 +00:00
Vincent Dumas
a903711a7a
Add default search criterion on Action and Profile classes
...
SVN:trunk[5908]
2018-06-25 13:23:35 +00:00
Vincent Dumas
9e17a611d2
Add 'name' and 'description' as default search criteria on QueryPhrase, Audit Category and Profile. Enable search bar on Profile and Audit Category menus.
...
SVN:trunk[5907]
2018-06-25 11:06:52 +00:00
Eric Espié
1e11ed3041
N°1381 - Search on string with index -> operator = (Fixed for derived classes)
...
SVN:trunk[5906]
2018-06-25 10:51:15 +00:00
Vincent Dumas
0449470cdf
Add 'name' as default search criteria on QueryPhrase
...
SVN:trunk[5905]
2018-06-25 10:11:39 +00:00
Eric Espié
21a5a2d4ef
N°1522 - Dashlet group by on stopwatch
...
SVN:trunk[5904]
2018-06-25 09:59:36 +00:00
Eric Espié
a848cb28f1
N°1436 - Access control updated for grant_by_profile categories of classes -
...
Fix access to internal classes form the core engine
SVN:trunk[5903]
2018-06-22 16:07:35 +00:00
Denis Flaven
b7ae6b143e
Impact analysis performance enhancement: much better (and faster) processing of graphs containing loops.
...
SVN:trunk[5902]
2018-06-22 15:56:17 +00:00
Stephen Abello
ba0c18eec1
N°1479 : Fixed a bug where impact analysis zoom would affect other tabs' size
...
SVN:trunk[5901]
2018-06-22 13:51:21 +00:00
Guillaume Lajarige
61366b347d
Code cleanup
...
SVN:trunk[5900]
2018-06-22 12:46:30 +00:00
Guillaume Lajarige
edab6643f6
Portal: Add default width and decoration class to FilterBrick.
...
SVN:trunk[5899]
2018-06-22 12:34:02 +00:00
Stephen Abello
ce36ef3aad
N°1479 : Fixed a bug where impact analysis zoom would reduce div size
...
SVN:trunk[5898]
2018-06-22 07:58:48 +00:00
Stephen Abello
fdb439f054
N°1520 : URP_Profiles now has a default search criteria
...
SVN:trunk[5897]
2018-06-21 13:22:01 +00:00
Stephen Abello
2229f3f015
N°1395 : New Portuguese BR translations (thanks to Anderson Cardoso!)
...
SVN:trunk[5896]
2018-06-21 08:22:23 +00:00
Pierre Goiffon
18a5df1ce7
modify all in views : fix header checkbox not checked after check_all event fired
...
SVN:trunk[5895]
2018-06-19 10:05:57 +00:00
Eric Espié
f5cb29fadd
N°1513 - Datamodel menu access control
...
SVN:trunk[5894]
2018-06-19 08:49:06 +00:00
Eric Espié
d929732fb6
N°1495 - Regression: Search on hierarchical key
...
SVN:trunk[5893]
2018-06-19 08:42:58 +00:00
Eric Espié
6c36f3bc7c
N°1495 - Regression: Search on hierarchical key
...
SVN:trunk[5892]
2018-06-19 08:32:54 +00:00
Vincent Dumas
c6a59a5309
Suppression of obsolesence condition on Ticket (was creating performance issue)
...
SVN:trunk[5891]
2018-06-18 16:26:03 +00:00
Pierre Goiffon
b02c30a525
Translation keys available client side (Dict.S()) : format + JS/PHPDoc
...
SVN:trunk[5890]
2018-06-18 15:55:10 +00:00
Guillaume Lajarige
46a647ae66
N°1514 Add missing translations for advanced search.
...
SVN:trunk[5889]
2018-06-18 14:11:04 +00:00
Denis Flaven
8943a67f85
Officially support PHP 7.2.0.
...
SVN:trunk[5888]
2018-06-15 16:37:11 +00:00
Guillaume Lajarige
f132d751f5
N°1303 Portal: ManageBrick lists are now ordered regarding the datamodel definition (//class/properties/order).
...
SVN:trunk[5887]
2018-06-15 14:00:28 +00:00
Guillaume Lajarige
4ba8c9ff9e
Fix default classes order by on DBObjectSet.
...
SVN:trunk[5886]
2018-06-15 13:42:00 +00:00
Guillaume Lajarige
955ae6c392
Portal: Remove unused folder.
...
SVN:trunk[5885]
2018-06-15 12:46:39 +00:00
Guillaume Lajarige
ed33b327fb
Portal: Add XML comments to standard portal configuration.
...
SVN:trunk[5884]
2018-06-15 12:46:06 +00:00
Guillaume Lajarige
f8f7486be2
N°1244 Authorize "colspan" & "rowspan" attributes on "th" / "td" / "tr" tags in HTML fields.
...
SVN:trunk[5883]
2018-06-15 10:09:35 +00:00
Bruno Da Silva
3215875e5f
N°462 : Added an information about file max size on portal forms
...
SVN:trunk[5882]
2018-06-15 09:57:02 +00:00
Guillaume Lajarige
62da90418a
Portal: Default object forms are now more like in the administration console instead of just having their fields one after another. (BETA!)
...
SVN:trunk[5881]
2018-06-15 09:16:36 +00:00
Bruno Da Silva
7c620fae78
N°607 : Fixed an issue where a file on a transition form wouldn't be uploaded
...
SVN:trunk[5880]
2018-06-15 09:02:22 +00:00
Bruno Da Silva
daef0c3a8f
N°1430 Fixed an issue on n-n Date attributes
...
SVN:trunk[5879]
2018-06-15 08:25:55 +00:00
Guillaume Lajarige
52b6d399a0
Portal: Remove copyright from page footer.
...
SVN:trunk[5878]
2018-06-15 08:10:11 +00:00
Guillaume Lajarige
f210f63ec4
Portal: Change ManageBrick XML definition for tile & page display modes.
...
SVN:trunk[5877]
2018-06-15 08:09:12 +00:00
Bruno Da Silva
41694050ea
N°1498 Fixed an issue on Advanced search external key autocomplete where homonyms weren't displayed
...
SVN:trunk[5876]
2018-06-15 07:34:11 +00:00
Pierre Goiffon
3f612cfc90
some PHPDoc
...
SVN:trunk[5875]
2018-06-14 15:19:30 +00:00
Guillaume Lajarige
272acdd8d3
Portal: Fix OQL exception in ManageBrick when grouping tabs on an attribute (instead of sub OQLs).
...
SVN:trunk[5874]
2018-06-14 15:10:14 +00:00
Eric Espié
5a4375cb71
N°1485 - Search: "Undefined" on hierarchical key not working
...
SVN:trunk[5873]
2018-06-14 14:56:42 +00:00
Guillaume Lajarige
5b3d7e2354
Portal: Fix missing parameter in new ScopeValidatorHelper::AddScopeToQuery() method. "Read" scope was always applied!
...
SVN:trunk[5872]
2018-06-14 14:38:48 +00:00
Guillaume Lajarige
189cefac1b
Portal: Forgot to commit generated CSS file.
...
SVN:trunk[5871]
2018-06-14 13:51:58 +00:00
Guillaume Lajarige
87d36914c4
Portal: Enhancements on ManageBrick badges UI.
...
SVN:trunk[5870]
2018-06-14 12:32:58 +00:00
Guillaume Lajarige
72e14805b1
Portal: Fix HTML tooltips in ManageBrick tiles.
...
SVN:trunk[5869]
2018-06-14 10:29:34 +00:00
Guillaume Lajarige
87e2f76793
Portal: Improvements on ManageBrick badge tiles UI.
...
SVN:trunk[5868]
2018-06-14 10:28:06 +00:00
Bruno Da Silva
8fbd53d72d
N°1500 Advanced search on external keys performance
...
- bugfix: do not run both queries if nb result is >= 150
SVN:trunk[5864]
2018-06-14 08:14:53 +00:00
Guillaume Lajarige
586cc1f003
Portal: Fix regression introduced in r5862.
...
SVN:trunk[5863]
2018-06-14 07:12:38 +00:00
Guillaume Lajarige
a77753cfef
Portal: Rework on ManageBrick to put D3/C3 in the portal core instead of using an external API.
...
SVN:trunk[5862]
2018-06-13 16:03:59 +00:00
Eric Espié
5e464ef3a2
N°1484 - Advanced search: empty/not empty not working
...
SVN:trunk[5861]
2018-06-13 15:22:43 +00:00
Guillaume Lajarige
0727c9774b
Portal: Fixes on ManageBrick routes and display modes.
...
SVN:trunk[5860]
2018-06-13 15:21:45 +00:00
Bruno Da Silva
ee43a365dc
N°1500 Advanced search on external keys performance
...
- first search using "equals" or "start with"
- then using "contains"
- search is triggered at two first chars
SVN:trunk[5859]
2018-06-13 13:36:31 +00:00
Eric Espié
d5ba0d9ed5
N°1401 - External dashlet edition in the designer
...
SVN:trunk[5858]
2018-06-13 11:46:37 +00:00
Stephen Abello
7031a52a43
N°1499 : Edge case where picking a datetime and pressing enter would not close the criterion
...
SVN:trunk[5857]
2018-06-13 09:49:49 +00:00
Stephen Abello
12af164dcc
N°1482 : Retrocompatibility hack for non "standard" extensions' search form
...
SVN:trunk[5856]
2018-06-12 14:01:35 +00:00
Eric Espié
362cd72e87
N°1325 Dashboards: Unknown dashlets: keep the original type of the unknown dashlet
...
SVN:trunk[5855]
2018-06-12 08:56:41 +00:00
Guillaume Lajarige
cb19520b6b
N°1453 Portal: Fix regression introduced by previous change.
...
SVN:trunk[5854]
2018-06-11 15:22:12 +00:00
Eric Espié
c74972488d
Don't automatically launch the search results when coming from an object detail
...
SVN:trunk[5853]
2018-06-11 15:01:39 +00:00
Eric Espié
b78e40153f
N°858 - Archive mode: WRITE write access menus disappear in archive mode
...
SVN:trunk[5852]
2018-06-11 14:32:17 +00:00
Eric Espié
f7212662b9
N°1420 - Performances enhancement (consider search auto-submit parameter)
...
SVN:trunk[5851]
2018-06-11 13:17:15 +00:00
Eric Espié
97c8e1f7a9
N° 1436 - Allowed orgs on Users not managed
...
SVN:trunk[5850]
2018-06-11 10:02:20 +00:00
Guillaume Lajarige
2afc6d1c62
N°1453 Portal: Fix ajax filter on ManageBrick that was looking on "standard_search" zlist attributes instead of the brick fields.
...
SVN:trunk[5849]
2018-06-11 07:55:40 +00:00
Guillaume Lajarige
708858da39
Portal: Fix regression in FilterBrick that crashes when pointing on a ManageBrick.
...
SVN:trunk[5848]
2018-06-08 16:33:55 +00:00
Stephen Abello
41dccb468e
N°1236 : Added "approved" state to the tto active states
...
SVN:trunk[5847]
2018-06-08 14:17:44 +00:00
Eric Espié
36cfe9e5c2
N°1445 - Regression: User cannot change language
...
SVN:trunk[5846]
2018-06-08 13:18:06 +00:00
Eric Espié
1c7fd57f2e
N°1431 - Dashlet: Tri sur le champ ou la fonction (Fix error on Pie chart)
...
SVN:trunk[5845]
2018-06-08 13:15:39 +00:00
Eric Espié
f920851420
N°1420 - Performances enhancement (enhance counts)
...
SVN:trunk[5844]
2018-06-08 13:13:33 +00:00
Stephen Abello
04b8fe3326
N°1496 : Fixed datamodel viewer for IE11 : IE doesn't support backtick character in JS
...
SVN:trunk[5843]
2018-06-08 13:02:19 +00:00
Eric Espié
9fb4374efa
N°1420 - Performances enhancement (fix indexes generation)
...
SVN:trunk[5841]
2018-06-08 12:58:29 +00:00
Stephen Abello
885cabd6ef
N°1479 : Fixed a regression where on impact analysis display, every tabs would be resized to 15px. Added css for advanced search for impact analysis & normal search
...
SVN:trunk[5840]
2018-06-08 10:17:58 +00:00
Eric Espié
e00f9c2a83
N°1420 - Performances enhancement (fix regression on yesterday commit)
...
SVN:trunk[5836]
2018-06-08 09:15:19 +00:00
Guillaume Lajarige
fe24eda4b4
N°1494 Portal: Fix images size on mosaic view. They could be too height sometimes.
...
SVN:trunk[5835]
2018-06-08 08:42:38 +00:00
Eric Espié
483d80b576
N°1420 - Performances enhancement (fix indexes generation)
...
SVN:trunk[5834]
2018-06-08 08:18:57 +00:00
Eric Espié
70a0a3c52e
N°1420 - Performances enhancement
...
SVN:trunk[5833]
2018-06-07 15:06:38 +00:00
Denis Flaven
5b2f32c08a
Enhancement of the data collection for iTop Hub: better detection of the web server version.
...
SVN:trunk[5831]
2018-06-07 11:46:45 +00:00
Stephen Abello
5bad1e1c88
N°1476 : Fixed a regression introduced in 2.5 where on changing final class on a n-n object selection form, checkboxes were lost.
...
SVN:trunk[5830]
2018-06-07 07:41:49 +00:00
Eric Espié
2706ebf638
Merged from 2.4
...
N°1488 - restore failed on production-modules [from revision 5827]
SVN:trunk[5828]
2018-06-05 14:14:37 +00:00
Denis Flaven
9fe3261424
Linked JS scripts can now be used in ajax pages. This is useful for IPopupMenu extensions which depend on a JS script and are loaded asynchronously when a list of objects changes (for example when changing the target class for a search)
...
SVN:trunk[5826]
2018-06-05 13:04:50 +00:00
Denis Flaven
9df087984f
(Internal) declare the member variables with the correct names: declare what is actually used !!
...
SVN:trunk[5825]
2018-06-05 13:02:33 +00:00
Denis Flaven
cbb9bcd93d
Proper use of the "304" (Not modified) HTTP header for InlineImages. Seems that FastCGI is more sensitive to incorrect HTTP headers than MPM...
...
SVN:trunk[5824]
2018-06-05 12:59:17 +00:00
Bruno Da Silva
ad8f7576e0
N°1381 Advanced search did not correctly compute indexes for "other" list of fields
...
SVN:trunk[5823]
2018-05-31 07:41:03 +00:00
Pierre Goiffon
e205d85728
Portal : new helper method to add scope to a DbSearch (moved from existing one in ManageBrick)
...
SVN:trunk[5822]
2018-05-30 16:44:23 +00:00
Guillaume Lajarige
a01d5c2760
Fix regression introduced in r5806. Making the ITSM Designer unstable when adding a new attribute to a class.
...
SVN:trunk[5821]
2018-05-30 16:03:33 +00:00
Stephen Abello
b57423386c
N°1477 : fixed an issue where datamodel viewer couldn't load attributes' filters with backspaces in it
...
SVN:trunk[5818]
2018-05-30 07:46:27 +00:00
Vincent Dumas
22e525452a
Rename the id of the Portal contact scope for administrator, as there was two scopes with id="all"
...
SVN:trunk[5817]
2018-05-29 16:12:08 +00:00
Vincent Dumas
6c84074b02
Enable CSV export of on-going and closed tickets from the User Portal
...
SVN:trunk[5816]
2018-05-28 15:57:20 +00:00
Denis Flaven
6cc4a6e1be
PHP 7.2 compatibility: count(null) now generates a PHP warning !!
...
SVN:trunk[5815]
2018-05-28 14:08:31 +00:00
Eric Espié
04e41ab676
N°1431 - Sort on attribute or aggregation function
...
SVN:trunk[5814]
2018-05-25 15:38:36 +00:00
Guillaume Lajarige
3ad64d9823
N°1472 Portal: OQL optimization in ManageBrick when several UNIONs are used.
...
SVN:trunk[5812]
2018-05-23 15:00:41 +00:00
Eric Espié
8de7ff5470
Fix broken menus on search from dashlet header statistics
...
SVN:trunk[5811]
2018-05-23 14:50:17 +00:00
Stephen Abello
0a44f34c2c
N°1444 : fixed regression introduced in [r5724] & [r5773]
...
SVN:trunk[5809]
2018-05-23 10:11:23 +00:00
Bruno Da Silva
4f900e36c1
Advanced search:
...
- deduplicate pre-existing criterion N°1454
- search's 'breadcrumb' and 'history.replaceState' now preserve the org_id parameter
SVN:trunk[5808]
2018-05-22 16:03:38 +00:00
Eric Espié
571d90618e
cleanup code
...
SVN:trunk[5807]
2018-05-22 15:26:08 +00:00
Eric Espié
fe8436f2ad
cleanup code
...
SVN:trunk[5806]
2018-05-22 15:14:51 +00:00
Eric Espié
a4459901e8
N°1429: Dashlet header statistics fix corresponding search criteria
...
SVN:trunk[5805]
2018-05-22 14:57:05 +00:00
Bruno Da Silva
bef8fd566f
Advanced search: fix a side effect of the new behaviour "validate the draft" when the criteria is closed by a click outside of it's box
...
- when a criteria is being edited and the user click on search/refresh button, the search handler now update the criteria BEFORE making the ajax call
SVN:trunk[5804]
2018-05-22 13:20:07 +00:00
Bruno Da Silva
0f9994ac74
Advanced search: several improvements
...
- remove a side effect on script listening to the body (by removing an overly agressive top propagation on body listener)
- Submit on click outside of the criteria N°1381
- Do not auto submit when values do not changes N°1381
- Open criteria on click on the bold part of the title was broken
SVN:trunk[5803]
2018-05-22 08:06:45 +00:00
Bruno Da Silva
8691ccc013
test: reduce the verbosity of test cases
...
SVN:trunk[5802]
2018-05-18 14:57:41 +00:00
Eric Espié
bac7b50090
N°1429 - Fix regression due to "Display results wrt obsolescence display choices"
...
SVN:trunk[5801]
2018-05-18 12:20:22 +00:00
Stephen Abello
39ff1e318c
N°1319 & N°1203: Refactored [r5750]
...
SVN:trunk[5800]
2018-05-17 14:43:46 +00:00
Stephen Abello
1f8110573c
N°1226 : When global searching with needles smaller than 'full_text_needle_min', exclude these needles from the search instead of stopping it
...
SVN:trunk[5799]
2018-05-17 14:16:18 +00:00
Eric Espié
7c128e0f6e
DBSearch: test with only functions (no group by)
...
SVN:trunk[5798]
2018-05-17 12:00:28 +00:00
Romain Quetiez
11b50b4917
#815 Cosmetics on the documentation shown upon setup completion (Completing the iTop installation for workflow management): the file cron.params has been renamed into cron.distrib
...
SVN:trunk[5797]
2018-05-17 10:01:56 +00:00
Bruno Da Silva
9d771be8b2
N°955: fix the bugfix [r5766]
...
- handling of forbidden char code in the error message (happen for example on host error using a french windows), in this case a less verbose message is written in the table, and a issue log is written into the fs
- apply for both synchronous and asynchronous
SVN:trunk[5796]
2018-05-17 09:55:58 +00:00
Bruno Da Silva
02315b8aa1
N°880: fix the bugfix [r5737]
...
- previous bugfix altered the cron frequency, this is not the desired behaviour, now the conf alter the lifetime of drafts's attachments
- apply for both inline images and attachments
SVN:trunk[5795]
2018-05-16 13:03:15 +00:00
Denis Flaven
7fb3d133e3
Typo in the CSS class name !!
...
SVN:trunk[5794]
2018-05-16 09:44:58 +00:00
Bruno Da Silva
65fb29a1d4
N°1226: code refactoring of the previously coded bugfix.
...
SVN:trunk[5793]
2018-05-16 08:07:00 +00:00
Bruno Da Silva
703a432f7b
N°1173: code refactoring of the previously coded bugfix.
...
SVN:trunk[5792]
2018-05-16 08:01:59 +00:00
Eric Espié
4d37942717
cleanup
...
SVN:trunk[5791]
2018-05-15 15:53:59 +00:00
Eric Espié
137067ea43
cleanup and fix Group by queries
...
SVN:trunk[5790]
2018-05-15 15:12:57 +00:00
Stephen Abello
67e12dcc74
Type in revision nb
...
SVN:trunk[5789]
2018-05-15 14:48:05 +00:00
Eric Espié
911c0d2c1b
N°1429 - Display results wrt obsolescence display choices
...
SVN:trunk[5788]
2018-05-15 13:39:22 +00:00
Eric Espié
4b9648affa
N°1429 - fix value list display when editing a dynamic header dashlet in french
...
SVN:trunk[5787]
2018-05-15 13:20:42 +00:00
Eric Espié
804afa65f2
DBSearch: test with only functions (no group by)
...
SVN:trunk[5786]
2018-05-15 12:35:44 +00:00
Eric Espié
c56dc6cade
code cleanup
...
SVN:trunk[5785]
2018-05-15 12:30:52 +00:00
Eric Espié
c4f7055e1a
N°1330 - Fix broken sql requests due to the use of class instead of alias
...
SVN:trunk[5784]
2018-05-15 12:17:00 +00:00
Eric Espié
44b6dfab1d
DBSearch: add test with only functions (no group by)
...
SVN:trunk[5782]
2018-05-15 08:59:49 +00:00
Eric Espié
50e79b8c97
Advanced search: fix date time i18n and 1 second/day add/remove on > and <
...
SVN:trunk[5781]
2018-05-15 08:33:54 +00:00
Bruno Da Silva
185825f83c
advanced search: dates i18n tests
...
SVN:trunk[5780]
2018-05-15 08:17:02 +00:00
Eric Espié
c6be331f14
Code cleanup
...
SVN:trunk[5779]
2018-05-14 07:41:51 +00:00
Eric Espié
c0dd418992
N°478 - Access rights on admin menus and support for some classes not in XML (in OQL, dashlets and groups)
...
SVN:trunk[5778]
2018-05-11 13:58:27 +00:00
Pierre Goiffon
c03d5167f6
N°1418 audit : fix regression, error with union queries in AuditRule
...
SVN:trunk[5777]
2018-05-09 16:47:54 +00:00
Bruno Da Silva
56d625b7b9
PHPunit is now integrated through composer (inside the directory /test)
...
SVN:trunk[5776]
2018-05-04 16:13:26 +00:00
Bruno Da Silva
e74b23f305
PHPunit is now integrated through composer (inside the directory /test)
...
SVN:trunk[5775]
2018-05-04 15:59:34 +00:00
Pierre Goiffon
6e7d2abc9a
N°1418 fix audit with valid_flag=true that were always failing
...
SVN:trunk[5773]
2018-05-04 15:10:25 +00:00
Pierre Goiffon
3bebb9bf0f
convert inline comment to PHPDoc
...
SVN:trunk[5772]
2018-05-04 15:08:48 +00:00
Bruno Da Silva
1063697e85
N°865: exports (csv, xslx, pdf) LocalizeOutput option lost
...
- it happens when the export has more thant one chunk, stating the 2d chunk.
- this option is now persisted and restored on each chunk
SVN:trunk[5771]
2018-05-04 12:49:27 +00:00
Bruno Da Silva
7bdad90564
bugfix: sanitization filter "parameter" => Since the filter parameter is now url-encoded, it now may contains %3D, %2B and %2F (respectively =, + and /).
...
a migration note was written : https://wiki.combodo.com/doku.php?id=latest:install:240_to_250_migration_notes#param_filter
SVN:trunk[5770]
2018-05-04 10:13:29 +00:00
Stephen Abello
1dccc54814
N°1385 : Bare relation tabs on FunctionCI now correctly display item count according to user obsolescence preferences.
...
SVN:trunk[5769]
2018-05-04 09:52:47 +00:00
Stephen Abello
1c255213e1
N°974 : MySQL strict mode compatibility (null replaced 0000-00-00 00:00:00 for DateTime).
...
SVN:trunk[5768]
2018-05-04 08:29:32 +00:00
Stephen Abello
cb2c172483
N°1173 : mysqldump now correctly use 'mysql_bindir' parameter on setup & move to prod's backups
...
SVN:trunk[5767]
2018-05-03 15:00:13 +00:00
Stephen Abello
b43063a6d2
N°995 : Update notification status when its async task fail
...
SVN:trunk[5766]
2018-05-02 14:40:22 +00:00
Stephen Abello
3974406f1b
N°1175 : Fixed missing params error occurring when resetting password from a notification linking to portal.
...
SVN:trunk[5763]
2018-05-02 08:19:27 +00:00
Eric Espié
21aed2d2e1
Advanced Search: Fix missing query internal params
...
SVN:trunk[5762]
2018-05-02 08:11:28 +00:00
Pierre Goiffon
820c257e96
N°1427 New method to fix timezone where datamodel is not yet loaded
...
SVN:trunk[5761]
2018-05-02 06:36:57 +00:00
Pierre Goiffon
56e5616080
N°1370 Portal badge : improve tile on low resolutions 2 (wooops pushed to soon)
...
SVN:trunk[5759]
2018-04-27 15:59:24 +00:00
Pierre Goiffon
6f7351ecc3
@@N°1370 Portal badge : improve tile on low resolutions
...
SVN:trunk[5758]
2018-04-27 15:53:34 +00:00
Eric Espié
8f56032d49
Fix Bug delete when the serialized filter contains %
...
SVN:trunk[5757]
2018-04-27 15:53:08 +00:00
Guillaume Lajarige
1b6ca2ed14
N°1425 Fix regression introduced in 2.4. Creation of an object in a specific state could result in a fatal error due to bad ormlinkSet initialization.
...
SVN:trunk[5755]
2018-04-27 14:17:55 +00:00
Stephen Abello
d956682b9f
N°1285 & N°1278: Updated swiftmailer to v5.4.9
...
SVN:trunk[5754]
2018-04-27 14:06:51 +00:00
Stephen Abello
76759f1847
N°1424 : Sharing base compatibility fix
...
SVN:trunk[5751]
2018-04-27 12:14:39 +00:00
Stephen Abello
d441595ee6
N°1319 & N°1203: Added a conf params 'email_default_sender_address' and 'email_default_sender_label' that will be used if a mail has no sender set. (forgot password, test mail, test notification mail, data source fail notification)
...
SVN:trunk[5750]
2018-04-27 08:29:48 +00:00
Pierre Goiffon
2be0250aee
N°1370 Portal badge : wooops forgot the .css as always :/
...
SVN:trunk[5744]
2018-04-26 13:08:43 +00:00
Pierre Goiffon
b2a3b10065
N°1370 Portal badge : tooltips for descriptions
...
SVN:trunk[5743]
2018-04-26 12:57:29 +00:00
Pierre Goiffon
22b181a8f7
N°1370 Portal badge : change some aligns + handle description correctly
...
SVN:trunk[5742]
2018-04-26 12:56:54 +00:00
Pierre Goiffon
71d07be646
N°1370 portal badges : number on top of the description and wider
...
SVN:trunk[5741]
2018-04-26 09:18:12 +00:00
Guillaume Lajarige
95e56e7148
Portal: Fix regression introduced in revision 5698.
...
SVN:trunk[5739]
2018-04-25 09:07:28 +00:00
Vincent Dumas
ec471520f2
Datamodel: Person phones now supports click to call.
...
SVN:trunk[5738]
2018-04-24 12:48:12 +00:00
Stephen Abello
65b516d761
N°880 : Added a conf param (inline_image_garbage_collector_interval)
...
SVN:trunk[5737]
2018-04-24 12:36:03 +00:00
Denis Flaven
7d45d5e0ce
Cosmetics on the TLS option in the setup (prevent flashing of the hidden content)
...
SVN:trunk[5736]
2018-04-24 12:35:13 +00:00
Guillaume Lajarige
d8e3966825
Portal: Small CSS enhancements on ManageBrick.
...
SVN:trunk[5735]
2018-04-24 12:25:54 +00:00
Denis Flaven
65409373eb
Enhancement: automatic re-ordering of the background tasks at each execution of cron.php so that one single task cannot use all the CPU time.
...
SVN:trunk[5734]
2018-04-24 12:12:36 +00:00
Denis Flaven
50a1449a2a
Bug fix: background tasks should not echo anything, but unless return the string to output.
...
SVN:trunk[5733]
2018-04-24 12:08:36 +00:00
Stephen Abello
8150faaa40
N°1226 : On globalsearching, the searched text is now placed as input value instead of placeholder value
...
SVN:trunk[5732]
2018-04-24 12:06:04 +00:00
Eric Espié
019542ff10
iTop 2.5.0 beta
...
SVN:trunk[5731]
2018-04-24 11:58:50 +00:00
Bruno Da Silva
20def0de02
bugfix: advanced search
...
- dates has to handle two format : the user's current and the system storage yyy-mm-dd. the system is now only handled on load ans=d converted to the user's one.
- if the date is not parsable, the fallback is now the current date.
- removal of a no more needed date setter (leaved in the comments since it may be nescessary to re-add this if the UI changes again and if the less panel has to display the dates without time
- factorisatoin of the date/time formating into a function
SVN:trunk[5730]
2018-04-24 07:25:26 +00:00
Eric Espié
4a30a875f0
iTop 2.5.0 beta
...
SVN:trunk[5729]
2018-04-23 15:48:24 +00:00
Eric Espié
61905f111b
iTop 2.5.0 beta
...
SVN:trunk[5728]
2018-04-23 15:27:10 +00:00
Eric Espié
1832d72e51
Version 1.5 of XML datamodel
...
SVN:trunk[5727]
2018-04-23 15:14:11 +00:00
Eric Espié
4d63b9e463
Fix initial setup error (Notice: Undefined index: CharMaxLength)
...
SVN:trunk[5726]
2018-04-23 14:59:31 +00:00
Pierre Goiffon
7b54f51d75
N°1418 Audits Perf optimization for AuditRule with valid_flag=true and lots of negative records
...
Use a new helper method that don't parse values anymore on SELECT IN / NOT IN queries
SVN:trunk[5724]
2018-04-23 14:48:40 +00:00
Pierre Goiffon
eaf94bc10a
Audit : some more PHPDoc
...
SVN:trunk[5723]
2018-04-23 14:46:37 +00:00
Stephen Abello
9d6b5d347c
Datamodel viewer: autocomplete validation goes to selected class, autofocus on autocomplete field, delete input text button, add_init_script for itopwebpage class, fixed cases where default value and default null value were array instead of strings, visual tweaks
...
SVN:trunk[5722]
2018-04-23 14:25:28 +00:00
Bruno Da Silva
e82a16146e
typo
...
SVN:trunk[5721]
2018-04-23 13:09:44 +00:00
Bruno Da Silva
9797021511
bugfix: advanced search
...
- dates has to handle two format : the user's current and the system storage yyy-mm-dd. the system is now only handled on load ans=d converted to the user's one.
- if the date is not parsable, the fallback is now the current date.
- removal of a no more needed date setter (leaved in the comments since it may be nescessary to re-add this if the UI changes again and if the less panel has to display the dates without time
- factorisatoin of the date/time formating into a function
SVN:trunk[5720]
2018-04-23 12:20:48 +00:00
Vincent Dumas
c27a9e8193
Fix email typo in English dictionnary
...
SVN:trunk[5719]
2018-04-23 10:09:52 +00:00
Eric Espié
c5506dab5d
Internal version => 2.5.0 (beta)
...
SVN:trunk[5718]
2018-04-23 07:37:25 +00:00
Eric Espié
d120109a78
Setup: Display the XML errors on the screen (cleanup deprecated functions)
...
SVN:trunk[5717]
2018-04-20 16:02:41 +00:00
Eric Espié
b529f3d4cc
Setup: Display the XML errors on the screen
...
SVN:trunk[5716]
2018-04-20 15:56:53 +00:00
Vincent Dumas
ea11b76461
Fix typo in dictionnary
...
SVN:trunk[5715]
2018-04-20 15:12:42 +00:00
Vincent Dumas
09c54d4fed
Fix DataSynchro Group to allow management of DataSynchros through WebServices for non admin users
...
SVN:trunk[5714]
2018-04-20 15:10:33 +00:00
Bruno Da Silva
c5f00c5363
bugfix: advanced search
...
- dates "<=" operator handling
SVN:trunk[5713]
2018-04-20 15:06:28 +00:00
Eric Espié
256808c473
Advanced Search: Date transform from < and > to <= and >= for the search
...
SVN:trunk[5712]
2018-04-20 14:54:32 +00:00
Bruno Da Silva
487d89d970
bugfix: advanced search
...
- datepicker not displayed in dialogs : because the datepicker had a lower z-index. It is now forced using the `beforeShow` datepicker's option so we do not force it globaly has if we had done this using the css
SVN:trunk[5711]
2018-04-20 14:50:48 +00:00
Bruno Da Silva
ed3665b8c5
bugfix: advanced search
...
- date i18n : non standard date formating was totally wrong, full rewrite of date parsing (in getter and setter) relying on datepicker and datetimepicker parsers (they are awfull)
- date "now" button do no more close the criteria
- ie9 compat. : use history.replaceState only if available in order to prevent bugs with ie9
SVN:trunk[5710]
2018-04-20 14:32:32 +00:00
Bruno Da Silva
ef7a9ff02e
bugfix: query serialization edge case
...
it did break when a "+" was present in the url, a rawurlencode was added, it is backward compatible because for pre-existing string, there is no % present so the unserialization's rawurldecode is without BC effect.
SVN:trunk[5709]
2018-04-20 13:54:53 +00:00
Eric Espié
aa4416ac4e
Advanced Search: Display links also when the object is not visible
...
SVN:trunk[5708]
2018-04-20 13:45:02 +00:00
Stephen Abello
c734eec9e1
N°729 Form prefill : Minor fix in variables naming
...
SVN:trunk[5707]
2018-04-20 13:42:12 +00:00
Eric Espié
e1caf61a18
N°1248 - Fix API access (back to the same behavior as 2.4.1)
...
SVN:trunk[5706]
2018-04-20 12:32:01 +00:00
Eric Espié
f7879256c1
N°1248 - Fix API access (back to the same behavior as 2.4.1)
...
SVN:trunk[5705]
2018-04-20 12:30:20 +00:00
Eric Espié
1c86eba9d9
N° 1001 - utf8-mb4 removed innodb_large_prefix requirement
...
SVN:trunk[5704]
2018-04-20 12:14:32 +00:00
Stephen Abello
6a089aa1b7
N°729 Form prefill : Included Contract case in the datamodel.
...
SVN:trunk[5703]
2018-04-20 10:07:43 +00:00
Guillaume Lajarige
9a3749c1ed
Advanced search: Fix IE9 bug when trying to add a criteria.
...
SVN:trunk[5702]
2018-04-20 09:50:13 +00:00
Eric Espié
d82b755557
N° 1001 - Database index size changed to support utf8-mb4
...
SVN:trunk[5701]
2018-04-20 09:44:12 +00:00
Eric Espié
5b83f2a554
Fix setup (support for distrib > 9.x.x)
...
SVN:trunk[5700]
2018-04-20 09:40:27 +00:00
Guillaume Lajarige
1f2b01937b
Advanced search: Code cleanup.
...
SVN:trunk[5699]
2018-04-20 09:01:48 +00:00
Guillaume Lajarige
18bd0ae096
N°1405 Add support of AttributePhoneNumber which allows launch of phone application on click.
...
SVN:trunk[5698]
2018-04-19 15:56:11 +00:00
Denis Flaven
512f368cbf
(regression) Do not block the execution of the page (based on the access rights on the menu) since the page is used for all exports. The export will be blocked anyway if the user does not have the BULK_READ rights on the target class.
...
SVN:trunk[5697]
2018-04-19 13:43:53 +00:00
Guillaume Lajarige
853d9ee87f
Advanced search: Update french translations.
...
SVN:trunk[5696]
2018-04-19 07:43:28 +00:00
Guillaume Lajarige
e9440d0d4c
Advanced search: Fix criteria closed after search modal.
...
SVN:trunk[5695]
2018-04-19 07:37:11 +00:00
Bruno Da Silva
381a988f43
bugfix: iTop Hub compatibility repaired
...
the new abstract classes used by admin menu management broke iTop hub installer
SVN:trunk[5694]
2018-04-18 15:27:22 +00:00
Pierre Goiffon
5d6ec4ce56
N°1370 ManageBrick charts tile : integrate CSS in portal.scss
...
SVN:trunk[5693]
2018-04-18 15:16:04 +00:00
Eric Espié
182e644a33
Fix setup
...
SVN:trunk[5692]
2018-04-18 14:30:33 +00:00
Denis Flaven
c719fbf7fc
Bug fix (regression): use a different endpoint (ajax.document.render.php) for the output of the JS dictionary since we use the JS dictionary also when there is no user logged in (like in the login page).
...
SVN:trunk[5691]
2018-04-18 13:54:24 +00:00
Denis Flaven
9c3b053727
(Enhancement for developers) Use a timestamp defined at compile time to workaround client-side caching problems during development.
...
SVN:trunk[5690]
2018-04-18 13:45:08 +00:00
Eric Espié
d32db977eb
Fix unnecessary warning about not empty directory
...
SVN:trunk[5689]
2018-04-18 13:44:45 +00:00
Denis Flaven
1eca74180c
Let us install using a non-secure connexion !
...
SVN:trunk[5688]
2018-04-18 13:01:19 +00:00
Guillaume Lajarige
0210e090f2
Advanced search: Client side handles hierarchical keys correctly.
...
SVN:trunk[5687]
2018-04-18 08:34:45 +00:00
Stephen Abello
baf413ee55
N°729 Form prefill : switched argument type for Designer to reference
...
SVN:trunk[5686]
2018-04-18 07:43:04 +00:00
Eric Espié
8e6c001bf3
Advanced Search: External keys hierarchical type
...
SVN:trunk[5685]
2018-04-18 07:42:30 +00:00
Guillaume Lajarige
127e940ed4
Advanced search: Fix auto-submit option ignored when removing a criteria.
...
SVN:trunk[5684]
2018-04-18 07:29:12 +00:00
Pierre Goiffon
aa8072118d
N°1260 remove db_tls.verify_server_cert : the server cert verification is now based on the TLS CA parameter value
...
SVN:trunk[5683]
2018-04-18 07:26:11 +00:00
Pierre Goiffon
f07bbfa174
N°1260 MySQL TLS connection : change parameters to only enable checkbox + CA (remove client key, client cert, cappath, cipher)
...
SVN:trunk[5682]
2018-04-18 06:57:38 +00:00
Eric Espié
e3a2c5b05b
Advanced Search: External keys default criteria are read-only and organizations are not hierarchical
...
SVN:trunk[5681]
2018-04-17 14:15:38 +00:00
Stephen Abello
3ba5e30a96
datamodel viewer : update compiled scss
...
SVN:trunk[5680]
2018-04-17 14:05:26 +00:00
Eric Espié
7bf49011a3
Advanced Search: n:n links default criteria are not read-only and organizations are hierarchical
...
SVN:trunk[5679]
2018-04-17 13:38:59 +00:00
Stephen Abello
bd84dd9f2c
datamodel viewer : fixed related class display, displaying linkset on related class graph, open/close all items on lifecycle and visual fixes
...
SVN:trunk[5678]
2018-04-17 12:13:39 +00:00
Eric Espié
c3fbdc907c
N°1248 - User Management: Check organization related to the current user
...
SVN:trunk[5677]
2018-04-17 10:22:12 +00:00
Pierre Goiffon
f7817714a8
N°1001 change constant with concatenation to attribute (to avoid crash in setup for older PHP versions)
...
SVN:trunk[5676]
2018-04-17 08:14:45 +00:00
Eric Espié
c485286114
Advanced Search: External keys to hierarchical class selects sub-classes as in previous version
...
SVN:trunk[5675]
2018-04-16 16:35:20 +00:00
Guillaume Lajarige
bd8e44f835
Advanced search: Fixes for autocomplete on external keys.
...
SVN:trunk[5674]
2018-04-16 15:44:39 +00:00
Guillaume Lajarige
eddf4226b7
Advanced search: Fixs for autocomplete on external keys.
...
SVN:trunk[5673]
2018-04-16 10:07:19 +00:00
Pierre Goiffon
804578e38d
N°1370 fix ManageBrick details export
...
SVN:trunk[5672]
2018-04-16 07:05:34 +00:00
Bruno Da Silva
d464fe5d67
bugfix: when canceling a modification of an object, the JS displayed two alerts.
...
SVN:trunk[5671]
2018-04-13 16:05:42 +00:00
Pierre Goiffon
885428627f
N°1370 fix Portal ManageBrick regression : can search again in table details view
...
SVN:trunk[5670]
2018-04-13 16:02:00 +00:00
Bruno Da Silva
4c90a90131
advanced search: bugfix
...
- adapt the js to IE needs (do not reduce the search bar when the user click on a select's option)
SVN:trunk[5669]
2018-04-13 15:56:08 +00:00
Eric Espié
ec2aadb7cf
Advanced Search: Fix ExternalFields allowed values
...
SVN:trunk[5668]
2018-04-13 15:27:00 +00:00
Pierre Goiffon
9d5ab75dbd
Backup/restore : apply COmbodo formatting
...
SVN:trunk[5667]
2018-04-13 14:49:27 +00:00
Eric Espié
d5b145e052
Advanced Search: Fix ExternalFields allowed values
...
SVN:trunk[5666]
2018-04-13 14:43:11 +00:00
Stephen Abello
163f5dba8a
N°729 Form prefill : Minor fix for prefillSeachForm
...
SVN:trunk[5665]
2018-04-13 14:17:03 +00:00
Eric Espié
e026ecf92f
N°1161 - Fix Dashlet Group By edition of multiple dashlets
...
SVN:trunk[5664]
2018-04-13 13:58:12 +00:00
Bruno Da Silva
dcda5084d0
advanced search: bugfix
...
- adapt the css to IE needs
- a translation key had been renamed without renaming all the usages in the code
SVN:trunk[5663]
2018-04-13 13:42:19 +00:00
Guillaume Lajarige
496441cae6
Advanced search: Search button icon switch between "refresh" and "search" depending on the auto-submit state.
...
SVN:trunk[5662]
2018-04-13 12:27:32 +00:00
Guillaume Lajarige
cf75937b1d
Advanced search: Fix multiple undefined values bug on enum criteria.
...
SVN:trunk[5661]
2018-04-13 12:26:43 +00:00
Pierre Goiffon
d7fc003216
backup.php : some little PHPDoc
...
SVN:trunk[5660]
2018-04-13 10:09:31 +00:00
Pierre Goiffon
de54575e04
N°1260 fix DB restore regression
...
* add comments to explain use of the token file
* only pass current env to the ajax call (it is enough to load the corresponding config file and get everything we need !)
* DBRestore : initialize user & pwd as needed
* DBRestore : do not throw Exception anymore but only BackupException
SVN:trunk[5659]
2018-04-13 09:43:03 +00:00
Bruno Da Silva
12093c311c
advanced search: bugfix
...
- the modal window did update the history which resulted in several border effect like having request string too long and crashing on several pages
SVN:trunk[5658]
2018-04-13 08:58:32 +00:00
Eric Espié
5b9ca03fa6
Advanced Search: Fix missing OQL for FunctionExpression
...
SVN:trunk[5657]
2018-04-13 08:57:57 +00:00
Bruno Da Silva
bb820ab388
advanced search: bugfix
...
- the modal window did update the history which resulted in several border effect like having request string too long and crashing on several pages
SVN:trunk[5656]
2018-04-13 08:57:36 +00:00
Eric Espié
c68f56ecd4
Advanced Search: Enhance Date conversion
...
SVN:trunk[5655]
2018-04-13 08:47:29 +00:00
Eric Espié
910bae64e9
Advanced Search: Code cleanup
...
SVN:trunk[5654]
2018-04-13 08:11:21 +00:00
Bruno Da Silva
40258fb02a
advanced search: bugfix
...
- the modal window did update the history wich resulted in several border effect like having request string too long and crashing on several pages
SVN:trunk[5653]
2018-04-13 08:11:03 +00:00
Guillaume Lajarige
011ed65ea1
Advanced search: WIP auto submit.
...
SVN:trunk[5652]
2018-04-13 07:39:27 +00:00
Bruno Da Silva
411d934e6a
advanced search: if the field has an index and the equals operator is available : force the default to the equals operator
...
SVN:trunk[5651]
2018-04-12 15:49:15 +00:00
Vincent Dumas
582de40960
Display the search criterion when displaying the content of a shortcut.
...
SVN:trunk[5650]
2018-04-12 15:40:46 +00:00
Vincent Dumas
79d7ac7c8e
Typos in German dictionaries
...
SVN:trunk[5649]
2018-04-12 15:39:45 +00:00
Vincent Dumas
6d86bd516b
Set default search criteria for objects + index on ticket's ref.
...
SVN:trunk[5648]
2018-04-12 15:38:18 +00:00
Bruno Da Silva
f71bf1416c
advanced search: add the refresh button on objects list menu
...
SVN:trunk[5647]
2018-04-12 15:29:42 +00:00
Guillaume Lajarige
8a1a27ee19
Advanced search: Fix title highlighting on enum widget.
...
SVN:trunk[5646]
2018-04-12 15:22:46 +00:00
Guillaume Lajarige
dc30cb2e4a
Advanced search: Merge due to recent sourceforge crash.
...
SVN:trunk[5645]
2018-04-12 14:54:11 +00:00
Pierre Goiffon
24e669c65b
N°1370 Portal AggregatePageBrick : integrate dashboard brick extension
...
SVN:trunk[5644]
2018-04-12 14:28:41 +00:00
Pierre Goiffon
80e6ba2d96
N°1370 Portal ManageBrick : add "display_modes" XML node to set the display modes in brick tile and details views
...
SVN:trunk[5643]
2018-04-12 14:13:28 +00:00
Pierre Goiffon
beef4b2738
add .idea in gitignore
...
SVN:trunk[5642]
2018-04-12 14:12:52 +00:00
Eric Espié
56f1369000
Advanced Search: Fix Date conversion
...
SVN:trunk[5641]
2018-04-12 13:19:11 +00:00
Eric Espié
7bcde47081
N°1161 - Fix Dashlet Group By edition
...
SVN:trunk[5640]
2018-04-12 13:07:00 +00:00
Eric Espié
35663281fa
Advanced Search: Fix Date conversion
...
SVN:trunk[5639]
2018-04-12 12:32:09 +00:00
Bruno Da Silva
0b8f75f799
advanced search - merged commit (since sourceforge has lost our commit, this is a manual merge all all losts)
...
SVN:trunk[5638]
2018-04-12 12:29:32 +00:00
Bruno Da Silva
7309c046ae
remove .idea dir
...
SVN:trunk[5637]
2018-04-12 10:38:13 +00:00
Eric Espié
6dfd44b731
Advanced Search: Small bug fixes and enhancements
...
SVN:trunk[5636]
2018-04-12 09:51:32 +00:00
Pierre Goiffon
d6e7309c34
N°1370 portal : add charts capacity to the ManageBrick (restore 2018-04-10 revisions : r5646)
...
SVN:trunk[5635]
2018-04-12 08:55:16 +00:00
Pierre Goiffon
e15bad7d3b
Advanced search improvements (restore 2018-04-10 revisions : r5643..r5645)
...
* Support for empty dates
* UNION OQLs don't crash the search
* Better support for 'not empty' searches
SVN:trunk[5634]
2018-04-12 08:54:36 +00:00
Pierre Goiffon
4450d6af2f
HTMLSanitizer : add wiki ref to white lists and split declarations one per line (to ease SCM annotation) (restore 2018-04-10 revisions : r5642)
...
SVN:trunk[5633]
2018-04-12 08:54:21 +00:00
Pierre Goiffon
efa7a4ee55
Advanced search improvements (restore 2018-04-10 revisions : r5635..r5641)
...
* Add 'search_manual_submit' config parameter to manage auto-submit
* bugfixes
** date i18n is now handled (using two new options `datepicker.dateFormat` and `datepicker.timeFormat` computed from `AttributeDateTime::GetFormat()->ToDatePicker()`
** handling of `empty` `not empty` operator titles
*** it led to tohers bugfixes and a redesign of the `_computeTitle` (from overwriting to extension using ie `_computeBetweenDaysOperatorTitle`
*** some bug still remain, because autocomplete needs to been finished before checking on them
* Promote 'friendlyname' in the 'most popular' list
* bugfixes
** filters (criterions, enum and FK without autocomplete) now ignore accent on matching with user input
** this is done by using a pre-existing tool used only by the portal, so it was moved to the core (latinize.min.js)
* Integration with manual submit parameter on client side.
* bugfixes : history/breadcrumb had several c[menu] appended (one for each refresh)
* Fix various sanity bugs
SVN:trunk[5632]
2018-04-12 08:54:05 +00:00
Pierre Goiffon
757130847f
Fix: disable the connection to iTopHub when running in demo mode (restore 2018-04-10 revisions : r5634)
...
SVN:trunk[5631]
2018-04-12 08:53:20 +00:00
Pierre Goiffon
c562098ef7
N°993: restrict the access to the REST/JSON web services to users having the profile "REST Services User" (restore 2018-04-10 revisions : r5632..r5633)
...
SVN:trunk[5630]
2018-04-12 08:53:02 +00:00
Pierre Goiffon
42606873af
Advanced search improvements (restore 2018-04-10 revisions : r5629..r5631)
...
* Add support for default search criteria
* replace friendlyname by the class name for consistency
* WIP Client
SVN:trunk[5629]
2018-04-12 08:52:33 +00:00
Bruno Da Silva
df8b73999f
advanced search: update history and breadcrumb on search
...
SVN:trunk[5628]
2018-04-09 14:25:41 +00:00
Eric Espié
234b0e6825
Advanced search: Sort Id with the other fields in "more criteria"
...
SVN:trunk[5627]
2018-04-09 11:51:29 +00:00
Bruno Da Silva
6ca9f8ad31
advanced search: removal of legacy_search_drawer_open
...
associated to this change, those wiki pages are altered :
- latest:admin:itop_configuration_file (`legacy_search_drawer_open` removal)
- latest:customization:xml_reference (`search_form_open` default value changed)
SVN:trunk[5626]
2018-04-06 12:06:20 +00:00
Guillaume Lajarige
dbc0971b99
Advanced search: Widget refactoring to use _computeTitle method.
...
SVN:trunk[5625]
2018-04-06 10:06:03 +00:00
Eric Espié
26127c8218
N°1161 - Dashlet Group By traduction
...
SVN:trunk[5624]
2018-04-06 09:00:15 +00:00
Eric Espié
f4b8b4cae3
N°1161 - Dashlet Group By supports sum, average, min and max.
...
SVN:trunk[5623]
2018-04-06 08:53:30 +00:00
Stephen Abello
d641ff3ab7
N°729 Form prefill : XML additions for Designer purpose
...
SVN:trunk[5622]
2018-04-06 08:29:53 +00:00
Bruno Da Silva
a08904a936
advanced search: Tooltip on values
...
in case they are larger than input, it leverage the possibility to read their value rapidly
SVN:trunk[5621]
2018-04-05 15:43:40 +00:00
Guillaume Lajarige
c13158cdb5
Advanced search: Enum/ExtKey criterion now supports min_autocomplete_chars conf parameter in autocomplete.
...
SVN:trunk[5620]
2018-04-05 13:32:27 +00:00
Bruno Da Silva
70a8c50d47
advanced search: handle auto opening of the form + open "add criteria" if no result list.
...
SVN:trunk[5619]
2018-04-05 13:15:28 +00:00
Guillaume Lajarige
991c87530f
Advanced search: Fixes on enum criteria.
...
SVN:trunk[5618]
2018-04-05 10:18:18 +00:00
Bruno Da Silva
9d5156e0e0
advanced search: bugfix on search criterion titles
...
SVN:trunk[5617]
2018-04-05 10:02:52 +00:00
Bruno Da Silva
ec3ac05a1f
advanced search: enum title optimisation
...
if the title is too long, display a count of checked itemps
SVN:trunk[5616]
2018-04-05 10:01:23 +00:00
Bruno Da Silva
a20fe37e98
advanced search: bugfix on search criterion titles
...
SVN:trunk[5615]
2018-04-05 10:00:08 +00:00
Bruno Da Silva
ee76eaedd6
advanced search: numeric between UI (displayed using 1 line instead of 2)
...
SVN:trunk[5614]
2018-04-05 09:58:29 +00:00
Bruno Da Silva
b90b200cd1
advanced search: numeric between UI (displayed using 1 line instead of 2)
...
SVN:trunk[5613]
2018-04-05 09:42:55 +00:00
Bruno Da Silva
873af8865c
advanced search: numeric between UI (displayed using 1 line instead of 2)
...
SVN:trunk[5612]
2018-04-05 09:35:25 +00:00
Guillaume Lajarige
906ac14fa9
Advanced search: Fix copied values through criterion on initialization.
...
SVN:trunk[5611]
2018-04-05 09:17:23 +00:00
Bruno Da Silva
fcffe9d188
advanced search: bugfix
...
FK search with negative selection was failling if the exclusion list was empty ("not in" cannot be apployed on an empty array)
SVN:trunk[5610]
2018-04-05 08:35:03 +00:00
Stephen Abello
a84748a544
N°729 Form prefill : Allow to overload new methods in order to prefill search forms, creation forms and transition forms
...
SVN:trunk[5609]
2018-04-05 08:17:19 +00:00
Guillaume Lajarige
320c7646f0
Advanced search: Alpha version.
...
SVN:trunk[5608]
2018-04-05 07:05:58 +00:00
Guillaume Lajarige
f4f3c3bd37
Portal: Update table's filter hotkeys.
...
SVN:trunk[5607]
2018-04-04 15:01:36 +00:00
Guillaume Lajarige
2bb6acfa22
Advanced search: UI/UX, WIP.
...
SVN:b1162[5606]
2018-04-04 13:32:20 +00:00
Guillaume Lajarige
da5a8b0fd1
Advanced search: UI/UX, WIP.
...
SVN:b1162[5605]
2018-04-04 12:54:18 +00:00
Denis Flaven
aa22956f87
Added two new glyphs (binoculars and binoculars-alt) to the Combodo font.
...
SVN:b1162[5604]
2018-04-04 08:36:41 +00:00
Eric Espié
8b300358e9
Advanced Search: Fix direct links search
...
SVN:b1162[5603]
2018-04-04 08:16:48 +00:00
Eric Espié
54c5edc5da
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5600]
2018-04-04 07:02:02 +00:00
Bruno Da Silva
5f08d98f66
search widget : widget numeric bugfix for between
...
when a date was empty the datetime plugin added the hours as a suffix
SVN:b1162[5599]
2018-04-03 16:27:28 +00:00
Pierre Goiffon
4d45f8d012
N°1328 Fix CSV import : check if user has rights on imported class
...
SVN:trunk[5597]
2018-04-03 13:36:27 +00:00
Eric Espié
b1c48929e4
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5596]
2018-04-03 13:29:10 +00:00
Eric Espié
612479b632
Advanced Search: Support of regexp for strings
...
SVN:b1162[5595]
2018-04-03 13:16:04 +00:00
Eric Espié
013dcdf93e
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5594]
2018-04-03 13:12:49 +00:00
Eric Espié
d22d3945ee
Advanced Search: Auto-complete search on foreign keys + refactoring of table_id2
...
SVN:b1162[5593]
2018-04-03 07:37:04 +00:00
Eric Espié
d4960080ea
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5592]
2018-03-30 15:23:41 +00:00
Bruno Da Silva
4bc3d0ce2d
add AGPL licence to the file
...
SVN:b1162[5591]
2018-03-30 14:24:54 +00:00
Bruno Da Silva
e1243532ba
search widget : SearchFormForeignKeys (modal with search for foreign keys)
...
SVN:b1162[5590]
2018-03-30 14:24:33 +00:00
Guillaume Lajarige
f41a80a309
Portal: Fix table filter trigger on "tab" key hit.
...
SVN:b1162[5589]
2018-03-30 13:12:02 +00:00
Eric Espié
b447418f07
Advanced Search: debug mode
...
SVN:b1162[5588]
2018-03-30 12:31:13 +00:00
Guillaume Lajarige
95b523c2fa
Advanced search: UI/UX, WIP.
...
SVN:b1162[5587]
2018-03-30 12:24:55 +00:00
Eric Espié
7dadd6e410
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5586]
2018-03-30 12:07:58 +00:00
Eric Espié
8ec75b9d45
Advanced Search: Auto-complete search on foreign keys
...
SVN:b1162[5585]
2018-03-30 10:30:08 +00:00
Guillaume Lajarige
e4b3086429
Advanced search: UI/UX, WIP.
...
SVN:b1162[5584]
2018-03-30 09:50:22 +00:00
Eric Espié
c56bda2f60
Advanced Search: Support of external fields (as strings)
...
SVN:b1162[5583]
2018-03-30 08:44:14 +00:00
Eric Espié
56566d83fd
Advanced Search: Fix PHP syntax
...
SVN:b1162[5582]
2018-03-30 08:02:53 +00:00
Guillaume Lajarige
0e4dc43171
Advanced search: UI/UX, form submit throttling.
...
SVN:b1162[5581]
2018-03-29 16:07:11 +00:00
Guillaume Lajarige
7154aa05a6
Advanced search: UI/UX, disable hierarchical search on ext. key for now.
...
SVN:b1162[5580]
2018-03-29 15:52:01 +00:00
Guillaume Lajarige
1e80d76383
Advanced search: UI/UX, minor dict. updates.
...
SVN:b1162[5579]
2018-03-29 15:50:48 +00:00
Guillaume Lajarige
0ca2e33e7c
Advanced search: UI/UX, ext. key autocomplete no UI.
...
SVN:b1162[5578]
2018-03-29 15:50:18 +00:00
Pierre Goiffon
38b10b6c10
N°1330 Header with statistics dashlet perf improvements
...
Now uses one count + group by query instead of one count query per grouping value
SVN:trunk[5576]
2018-03-29 15:47:42 +00:00
Guillaume Lajarige
e9444d3055
Advanced search: UI/UX, remove [not_]empty operators on fields that can't be null.
...
SVN:b1162[5575]
2018-03-29 15:15:43 +00:00
Bruno Da Silva
7e884dc69f
search widget : bugfix
...
if the selected operator is not the default one, open in "advanced" mode in order to be able to see the operator
SVN:b1162[5574]
2018-03-29 12:27:30 +00:00
Bruno Da Silva
24c7ff4cfa
search widget : numeric => between has a little margin on top and bottom
...
SVN:b1162[5573]
2018-03-29 10:14:33 +00:00
Bruno Da Silva
456f8be6e5
search widget : numeric => between after the basic operators
...
SVN:b1162[5572]
2018-03-29 10:13:07 +00:00
Bruno Da Silva
dfab460478
search widget : bugfix
...
if the selected operator is not the default one, open in "advanced" mode in order to be able to see the operator
SVN:b1162[5571]
2018-03-29 10:12:20 +00:00
Eric Espié
04154fa40c
Advanced Search: add target_class for the external keys
...
SVN:b1162[5570]
2018-03-29 09:21:43 +00:00
Eric Espié
6e9fab849c
Advanced Search: add target_class for the external keys
...
SVN:b1162[5569]
2018-03-29 09:18:40 +00:00
Pierre Goiffon
06555eb03e
Run query : add shortcut in submit title
...
SVN:trunk[5568]
2018-03-29 09:17:44 +00:00
Pierre Goiffon
6b8d1b4b76
N°1041 add shortcut in submit button title
...
SVN:trunk[5567]
2018-03-29 09:17:12 +00:00
Bruno Da Silva
73d9ea42f0
search widget : widget numeric => default operator is now equals
...
because of the id field who will be almost the only numeric field, searching by id is the most common use case
SVN:b1162[5566]
2018-03-29 09:14:28 +00:00
Eric Espié
06f648b714
Advanced Search: back to max_combo_length for the external keys
...
SVN:b1162[5565]
2018-03-29 08:54:03 +00:00
Eric Espié
155034092f
Advanced Search: remove the conversion IN <=> NOT IN for external keys
...
SVN:b1162[5564]
2018-03-29 08:45:46 +00:00
Eric Espié
11af11b3be
Advanced Search: add class alias in criterion
...
SVN:b1162[5563]
2018-03-29 08:06:16 +00:00
Bruno Da Silva
3246c36984
search widget : widget search history
...
SVN:b1162[5562]
2018-03-29 08:03:47 +00:00
Eric Espié
c12a5cc98b
Advanced Search: Fix missing label
...
SVN:b1162[5561]
2018-03-29 07:12:31 +00:00
Eric Espié
18ee7b194d
Advanced Search: Display of raw titles enhanced
...
SVN:b1162[5560]
2018-03-29 07:02:03 +00:00
Guillaume Lajarige
14c0733949
Advanced search: UI/UX WIP.
...
SVN:b1162[5559]
2018-03-28 19:38:08 +00:00
Eric Espié
f3a2a24ee4
Advanced Search: read-only selection criteria to add an object
...
SVN:b1162[5558]
2018-03-28 15:03:53 +00:00
Eric Espié
26ec1269a5
Advanced Search: read-only selection criteria to add an object
...
SVN:b1162[5557]
2018-03-28 14:57:54 +00:00
Eric Espié
2811eb66c5
Advanced Search: Removed external fields from the attribute list
...
SVN:b1162[5556]
2018-03-28 13:38:21 +00:00
Eric Espié
9b0ccb8943
Advanced Search: Unit tests and some fixes
...
SVN:b1162[5555]
2018-03-28 12:53:46 +00:00
Bruno Da Silva
e33bdab4e9
search widget : widget search history handling
...
new parameter "class_name"
SVN:b1162[5554]
2018-03-28 11:57:10 +00:00
Denis Flaven
573b5fc879
Fallback to the default language, for missing entries in the current language, in the dictionary passed client-side.
...
SVN:b1162[5553]
2018-03-28 11:29:18 +00:00
Eric Espié
678821d54d
Advanced Search: generic title for raw filters on joined classes
...
SVN:b1162[5552]
2018-03-28 07:47:20 +00:00
Eric Espié
5772042dd3
Advanced Search: generic title for raw filters on joined classes
...
SVN:b1162[5551]
2018-03-28 07:46:47 +00:00
Bruno Da Silva
7868a38137
search widget : widget search history draft
...
SVN:b1162[5550]
2018-03-27 16:09:21 +00:00
Bruno Da Silva
7bccfef3bd
search widget : widget search history draft
...
SVN:b1162[5549]
2018-03-27 16:02:58 +00:00
Bruno Da Silva
736838474a
search widget : widget date/datetime => i18n
...
SVN:b1162[5548]
2018-03-27 13:57:33 +00:00
Eric Espié
d553fad58d
Advanced Search: Fix hidden filter on direct links
...
SVN:b1162[5547]
2018-03-27 13:43:22 +00:00
Bruno Da Silva
9e66ef5460
search widget : widget datetime and numeric => fine tuning the UI
...
SVN:b1162[5546]
2018-03-27 13:19:30 +00:00
Eric Espié
9550ec6efd
Advanced Search: unit tests
...
SVN:b1162[5545]
2018-03-27 12:33:01 +00:00
Eric Espié
bc9e1b1d94
Advanced Search: code hardening and unit tests
...
SVN:b1162[5544]
2018-03-27 10:14:27 +00:00
Guillaume Lajarige
7672858d6b
Advanced search: UI/UX WIP, integration with endpoint.
...
SVN:b1162[5543]
2018-03-27 09:36:21 +00:00
Eric Espié
2a2a9ab8b7
Advanced Search: translations
...
SVN:b1162[5542]
2018-03-27 08:27:49 +00:00
Denis Flaven
d8354c6666
IE compatibility: polyfill implementation of Array.from().
...
SVN:b1162[5541]
2018-03-27 08:19:14 +00:00
Guillaume Lajarige
ba04725ee3
Advanced search: UI/UX WIP.
...
SVN:b1162[5540]
2018-03-27 08:18:42 +00:00
Eric Espié
7664633f18
Advanced Search: Hierarchical keys & unit tests
...
SVN:b1162[5539]
2018-03-27 08:13:48 +00:00
Guillaume Lajarige
edcc211988
Advanced search: UI/UX WIP.
...
SVN:b1162[5538]
2018-03-26 17:58:06 +00:00
Bruno Da Silva
389e8f2de6
search widget : widget datetime the "advanced" (datetime) mode and the "less" (date only) modes are now less linked over each other
...
if you choose a date, you loose the time. Previously, the time was keeped hiddenly.
SVN:b1162[5537]
2018-03-26 15:59:44 +00:00
Guillaume Lajarige
070ac49d1b
Advanced search: UI/UX, improve "Add criteria" cinematic.
...
SVN:b1162[5536]
2018-03-26 15:58:03 +00:00
Bruno Da Silva
40dbb2ce17
search widget : widget numeric various modifications
...
- bugfix: when the value is given by the backen and is typed as an integer some strin operations failed, a switch has to be broken in several sub cases to handle this
- enhancement: the input is now typed as numeric so the browser prevent some miss-typing (like space and alpha)
SVN:b1162[5535]
2018-03-26 15:28:33 +00:00
Bruno Da Silva
cd5dd04352
search widget : widget date bugfix when enter key is used to submit
...
SVN:b1162[5534]
2018-03-26 15:24:22 +00:00
Bruno Da Silva
592792dd7a
search widget : widget datetime : open in advanced mode by default if a time is given
...
SVN:b1162[5533]
2018-03-26 15:23:49 +00:00
Guillaume Lajarige
cfe892d35e
Advanced search: UI/UX, moving "Add criteria" to the left and separating criterion with "and"s for a better understanding.
...
SVN:b1162[5532]
2018-03-26 15:23:34 +00:00
Eric Espié
e01f48303b
Advanced Search: Fix labels for starts with and contains
...
SVN:b1162[5531]
2018-03-26 15:13:19 +00:00
Eric Espié
f0c8b348c6
Unit tests
...
SVN:b1162[5530]
2018-03-26 15:02:24 +00:00
Eric Espié
ac5d24a848
Advanced Search: reorder criterion by label ('raw' in front)
...
Fix non-string labels
SVN:b1162[5529]
2018-03-26 14:33:31 +00:00
Bruno Da Silva
e8a37ff0af
search widget : widget numeric bugfix for between
...
SVN:b1162[5528]
2018-03-26 11:55:10 +00:00
Bruno Da Silva
a60a8c0c4f
search widget : I was cleaning my keyboard ...
...
SVN:b1162[5527]
2018-03-26 09:12:48 +00:00
Bruno Da Silva
e78f8c803e
search widget : between operator bugfixes
...
SVN:b1162[5526]
2018-03-26 09:10:33 +00:00
Guillaume Lajarige
6ea0ba52d1
Advanced search: UI/UX WIP.
...
SVN:b1162[5525]
2018-03-26 06:52:43 +00:00
Guillaume Lajarige
8b0d9670f9
Advanced search: UI/UX WIP.
...
SVN:b1162[5524]
2018-03-25 12:21:26 +00:00
Eric Espié
440dd90316
Advanced Search: Merge enums and external keys
...
SVN:b1162[5523]
2018-03-23 16:57:10 +00:00
Eric Espié
5f86a60954
Advanced Search: Undefined for enums
...
SVN:b1162[5518]
2018-03-23 16:32:23 +00:00
Eric Espié
50e0ea5ec5
Advanced Search: Undefined for enums and unit tests
...
SVN:b1162[5517]
2018-03-23 16:22:10 +00:00
Eric Espié
b566bead31
Advanced Search: Undefined for enums and unit tests
...
SVN:b1162[5516]
2018-03-23 16:05:37 +00:00
Guillaume Lajarige
52731d7b0a
Advanced search: Integration with endpoint.
...
SVN:b1162[5515]
2018-03-23 15:39:34 +00:00
Eric Espié
465532014b
Advanced Search: Undefined and Id first
...
SVN:b1162[5514]
2018-03-23 15:02:23 +00:00
Bruno Da Silva
7153ae9614
search widget : date and datetime widget
...
remove = operator
SVN:b1162[5513]
2018-03-23 14:58:37 +00:00
Bruno Da Silva
0feb0fe972
search widget : date and datetime widget
...
SVN:b1162[5512]
2018-03-23 14:56:16 +00:00
Bruno Da Silva
b3cdbfc71b
search widget : date and datetime widget
...
SVN:b1162[5511]
2018-03-23 14:44:13 +00:00
Guillaume Lajarige
3a32bd62ef
Advanced search: More criteria UX WIP.
...
SVN:b1162[5510]
2018-03-23 14:23:32 +00:00
Eric Espié
c1adf880a4
Advanced Search: Dates between
...
SVN:b1162[5509]
2018-03-23 14:03:58 +00:00
Eric Espié
b0332b6ef5
Advanced Search: Dates between
...
SVN:b1162[5508]
2018-03-23 13:55:44 +00:00
Eric Espié
965e7b48df
Advanced Search: Dates between
...
SVN:b1162[5507]
2018-03-23 13:33:09 +00:00
Bruno Da Silva
27f41baa9a
search widget : date and datetime widget
...
SVN:b1162[5506]
2018-03-23 10:44:04 +00:00
Eric Espié
43615450ad
Advanced Search: Dates between
...
SVN:b1162[5505]
2018-03-23 10:41:37 +00:00
Bruno Da Silva
956b8958fb
search widget : date and datetime widget
...
SVN:b1162[5504]
2018-03-23 09:53:49 +00:00
Eric Espié
024459408a
Advanced Search: open/closed search form
...
SVN:b1162[5503]
2018-03-23 09:41:49 +00:00
Eric Espié
78ccc44014
Advanced Search: open/closed search form
...
SVN:b1162[5502]
2018-03-23 09:40:41 +00:00
Eric Espié
85397c4e28
Advanced Search: Dates between
...
SVN:b1162[5501]
2018-03-23 09:34:21 +00:00
Eric Espié
0253f7d069
Advanced Search: Dates between
...
SVN:b1162[5500]
2018-03-23 09:28:47 +00:00
Eric Espié
ddcb709fd1
Advanced Search: Dates between
...
SVN:b1162[5499]
2018-03-23 09:21:44 +00:00
Eric Espié
a7d11c6670
Advanced Search: Dates between
...
SVN:b1162[5498]
2018-03-23 09:00:57 +00:00
Guillaume Lajarige
bbb4959f22
Advanced search: UX on enum widget.
...
SVN:b1162[5497]
2018-03-22 18:15:56 +00:00
Guillaume Lajarige
254b3fe9aa
Advanced search: UX on enum widget.
...
SVN:b1162[5496]
2018-03-22 17:56:19 +00:00
Eric Espié
35c016482b
Advanced Search: Support of undefined values for enum and external keys
...
SVN:b1162[5495]
2018-03-22 17:36:29 +00:00
Eric Espié
62895eedb7
Advanced Search: Add Id in search forms
...
SVN:b1162[5494]
2018-03-22 16:59:42 +00:00
Guillaume Lajarige
32809ae7d4
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5493]
2018-03-22 16:52:35 +00:00
Eric Espié
73e1e3422d
Advanced Search: Numeric fields and dates
...
SVN:b1162[5492]
2018-03-22 16:28:54 +00:00
Guillaume Lajarige
2d9041c045
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5491]
2018-03-22 08:07:50 +00:00
Bruno Da Silva
60d6bb79b3
search widget : date widget UI tests
...
SVN:b1162[5490]
2018-03-21 16:38:30 +00:00
Guillaume Lajarige
6afb3a06ac
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5489]
2018-03-21 15:34:00 +00:00
Eric Espié
3cdf22e9b2
Advanced Search: resolve variables for the search screen
...
SVN:b1162[5488]
2018-03-21 13:45:37 +00:00
Eric Espié
b05b41c7cc
Advanced Search: 'between' for numeric criteria
...
SVN:b1162[5487]
2018-03-21 13:12:13 +00:00
Guillaume Lajarige
114a340527
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5486]
2018-03-21 13:10:48 +00:00
Bruno Da Silva
cfa5163590
search widget : todo added
...
SVN:b1162[5485]
2018-03-21 12:37:59 +00:00
Bruno Da Silva
53535dd82d
search widget : console.debug removal (woops)
...
SVN:b1162[5484]
2018-03-21 10:02:52 +00:00
Bruno Da Silva
34f17074ca
search widget : numeric widget
...
SVN:b1162[5483]
2018-03-21 09:51:36 +00:00
Bruno Da Silva
157d404019
search widget : reload interval moved from oDisplayBlock->Display() to oDisplayBlock->Render()
...
SVN:b1162[5482]
2018-03-21 08:31:56 +00:00
Bruno Da Silva
d1ef987dca
search widget : numeric widget between operator
...
SVN:b1162[5481]
2018-03-20 16:10:53 +00:00
Eric Espié
fd8c7c99bd
Advanced Search: IN with all values => 'true'
...
SVN:b1162[5480]
2018-03-20 15:35:01 +00:00
Guillaume Lajarige
4295437b3e
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5479]
2018-03-20 15:34:27 +00:00
Guillaume Lajarige
92a08a1865
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5478]
2018-03-20 15:12:36 +00:00
Eric Espié
fbd7abf4e2
Advanced Search: Fix 'undefined index error' in 'empty' operator
...
SVN:b1162[5477]
2018-03-20 15:07:19 +00:00
Eric Espié
306ec09118
Advanced Search: Support '=', '!=', 'IN' and 'NOT IN' for enums and external keys (with empty/not empty and IN)
...
SVN:b1162[5476]
2018-03-20 15:04:33 +00:00
Eric Espié
a5e41b224f
Advanced Search: Support '=' for external keys
...
SVN:b1162[5475]
2018-03-20 14:44:43 +00:00
Eric Espié
4abcf75b34
Advanced Search: Revert Sort on allowed values (done by JavaScript)
...
SVN:b1162[5474]
2018-03-20 14:36:52 +00:00
Eric Espié
7131a505be
Advanced Search: Sort allowed values
...
SVN:b1162[5473]
2018-03-20 14:28:40 +00:00
Eric Espié
9b42af0149
Advanced Search: Sort allowed values
...
SVN:b1162[5472]
2018-03-20 14:20:07 +00:00
Guillaume Lajarige
27b9748f86
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5471]
2018-03-20 14:17:08 +00:00
Eric Espié
1301aa5c35
Advanced Search: Fix shortcut menu with sub-classes
...
SVN:b1162[5470]
2018-03-20 14:12:16 +00:00
Bruno Da Silva
1b80789288
search widget : numeric widget
...
SVN:b1162[5469]
2018-03-20 13:58:33 +00:00
Guillaume Lajarige
ca0232ae7b
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5468]
2018-03-20 13:44:10 +00:00
Bruno Da Silva
2fb0ecc446
search widget : default width for operator name
...
SVN:b1162[5467]
2018-03-20 13:03:44 +00:00
Bruno Da Silva
0c41db76e2
search widget : numeric widget
...
SVN:b1162[5466]
2018-03-20 13:02:51 +00:00
Eric Espié
e120b149dc
Advanced Search: Fix shortcut menu with sub-classes
...
SVN:b1162[5465]
2018-03-20 12:50:30 +00:00
Eric Espié
e33596960a
Advanced Search: Better support of dates in expressions
...
SVN:b1162[5464]
2018-03-20 10:38:52 +00:00
Bruno Da Silva
d04fb645ec
search widget : delete the "oql" parameter once the widget is modified
...
SVN:b1162[5463]
2018-03-20 10:04:33 +00:00
Guillaume Lajarige
87c5ee67c0
Advanced search: I would like to dedicate this commit to my beloved colleague, eespie <3
...
SVN:b1162[5462]
2018-03-20 09:27:42 +00:00
Guillaume Lajarige
a53a046351
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5461]
2018-03-20 08:19:33 +00:00
Eric Espié
afda182b4e
Advanced Search: typo
...
SVN:b1162[5460]
2018-03-19 15:51:42 +00:00
Eric Espié
d883e3e661
Advanced Search: Dictionary compatible with the setup
...
SVN:b1162[5459]
2018-03-19 15:44:23 +00:00
Eric Espié
c9526130b7
Advanced Search: Cleaner Dictionary entries
...
SVN:b1162[5458]
2018-03-19 14:32:43 +00:00
Eric Espié
d6e3c7d1b7
Advanced Search: more info on fields and criterion
...
SVN:b1162[5457]
2018-03-19 14:24:41 +00:00
Eric Espié
0fdf6bfbb2
Advanced Search: Hidden criterion
...
SVN:b1162[5456]
2018-03-19 10:45:34 +00:00
Eric Espié
e628c68f09
Advanced Search: Search on Details pages
...
SVN:b1162[5455]
2018-03-19 09:58:46 +00:00
Eric Espié
8f858c2ddf
Advanced Search: Labels on raw expressions
...
SVN:b1162[5454]
2018-03-19 09:57:31 +00:00
Denis Flaven
f8f6e201b9
Advanced Search WIP: new mechanism for passing the dictionary to the client side. Hopefully faster than before thanks to the browser's cache.
...
SVN:b1162[5453]
2018-03-16 17:44:55 +00:00
Guillaume Lajarige
52f56e1bb0
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5452]
2018-03-16 15:12:25 +00:00
Eric Espié
187f7e591e
Advanced Search: Links n:n
...
SVN:b1162[5451]
2018-03-16 14:35:25 +00:00
Eric Espié
272e8eac4f
Advanced Search: Links n:1
...
SVN:b1162[5450]
2018-03-16 14:21:40 +00:00
Eric Espié
d423d741b2
Advanced Search: Links n:n
...
SVN:b1162[5449]
2018-03-16 13:21:11 +00:00
Eric Espié
102b2d76f4
Advanced Search: Links n:n
...
SVN:b1162[5448]
2018-03-16 13:13:54 +00:00
Eric Espié
bb31cedcba
Advanced Search: Links n:n
...
SVN:b1162[5447]
2018-03-16 11:24:58 +00:00
Eric Espié
bf02e04ae5
Advanced Search: Links n:n
...
SVN:b1162[5446]
2018-03-16 10:59:33 +00:00
Pierre Goiffon
c66884be0a
N°1001 setup : log all modifications done on the DB in a SQL file (/log/setup-queries-YYYY-MM-DD_HH-mm.sql)
...
SVN:trunk[5445]
2018-03-16 10:00:04 +00:00
Pierre Goiffon
e7b94d3132
N°1001 setup : database/tables/columns charset and collation conversion
...
* check DB charset/collation and do conversion if needed
* same for existing tables
* add both info in fields signatures, so that conversions will be trigerred if needed
SVN:trunk[5444]
2018-03-16 09:59:25 +00:00
Pierre Goiffon
b219161011
N°1001 switch DB charset from utf8 to utf8mb4 to allow characters outside of the BMP
...
* use centralized constants instead of literal values in code
* remove config parameters 'db_character_set' and 'db_collation'
* always fix charset when creating/altering column
* backup : use utf8mb4 only for mysqldump >= 5.5.33 (was introduced in 5.5.3 but only available in 5.5.33 for programs)
SVN:trunk[5443]
2018-03-16 09:59:16 +00:00
Pierre Goiffon
fd7d30333f
N°1001 setup add check for new MySQL requirement innodb_large_prefix
...
if disabled indexes will be limited to 767 bytes, that means 191 car in the new iTop charset utf8mb4 although the varchar iTop use are 255 car long. So we NEED this parameter to be set to true (its default value is true only since MySQL 5.7.7, see https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_large_prefix )
SVN:trunk[5442]
2018-03-16 09:58:44 +00:00
Guillaume Lajarige
d734cdaf48
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5441]
2018-03-16 09:44:34 +00:00
Guillaume Lajarige
f60d0b10e0
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5440]
2018-03-16 08:59:29 +00:00
Guillaume Lajarige
a1c6e32e28
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5439]
2018-03-16 08:08:24 +00:00
Eric Espié
156cb03069
Advanced Search: Links n:n
...
SVN:b1162[5438]
2018-03-15 17:34:17 +00:00
Denis Flaven
cdb75729cb
Enhancement: make the deletion of a Synchro Data Source a bit more resistant, in case of a missing or already deleted data table.
...
SVN:trunk[5437]
2018-03-15 16:49:58 +00:00
Guillaume Lajarige
d1a812f04c
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5436]
2018-03-15 14:38:10 +00:00
Bruno Da Silva
b190ba1268
search widget
...
temps traces
SVN:b1162[5435]
2018-03-15 14:01:04 +00:00
Guillaume Lajarige
87ed90a825
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5434]
2018-03-15 13:58:42 +00:00
Eric Espié
a03a4af1e6
Advanced Search: warnings and default div removed
...
SVN:b1162[5433]
2018-03-15 13:48:38 +00:00
Eric Espié
e48e4e7139
Advanced Search: Dates between
...
SVN:b1162[5432]
2018-03-15 13:35:35 +00:00
Eric Espié
6ef31b7983
Fix code typos
...
SVN:b1162[5431]
2018-03-15 13:33:16 +00:00
Guillaume Lajarige
d378658a62
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5430]
2018-03-15 08:36:45 +00:00
Bruno Da Silva
ed02758940
search widget
...
- displayBlock "list" aExtraParams exposition in js
SVN:b1162[5429]
2018-03-14 16:35:35 +00:00
Denis Flaven
b28c45c84c
N°1354: use only hashed server side information as the local storage identifier.
...
SVN:trunk[5428]
2018-03-14 16:25:00 +00:00
Eric Espié
42af530c63
Advanced Search: widget types
...
SVN:b1162[5427]
2018-03-14 16:06:34 +00:00
Eric Espié
7c3de1e976
Advanced Search: widget types
...
SVN:b1162[5426]
2018-03-14 15:46:30 +00:00
Guillaume Lajarige
afdd43c5e3
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5425]
2018-03-14 13:00:08 +00:00
Bruno Da Silva
5bc756716e
search widget
...
- ajax endpoint parameter reading refactoring
- displayBlock "list" aExtraParams exposition in js
SVN:b1162[5424]
2018-03-14 11:14:45 +00:00
Guillaume Lajarige
6a6c069896
Advanced search: WIP POC, integration with endpoint.
...
SVN:b1162[5423]
2018-03-14 11:03:32 +00:00
Eric Espié
9499799f80
Advanced Search: IN/NOT IN
...
SVN:b1162[5422]
2018-03-14 08:50:54 +00:00
Guillaume Lajarige
5632f9786c
Advanced search: WIP POC, UI/UX.
...
SVN:b1162[5421]
2018-03-14 08:33:17 +00:00
Eric Espié
6f79e07e90
Advanced Search: NOT IN
...
SVN:b1162[5420]
2018-03-13 16:16:33 +00:00
Guillaume Lajarige
601f18bbab
Advanced search: WIP POC, integration with endpoint.
...
SVN:b1162[5419]
2018-03-13 16:10:17 +00:00
Eric Espié
6f750cf584
Advanced Search: Unit tests
...
SVN:b1162[5418]
2018-03-13 16:06:15 +00:00
Eric Espié
3b7c92d022
Advanced Search: Field List
...
SVN:b1162[5417]
2018-03-13 16:04:11 +00:00
Eric Espié
af12b47c90
Advanced Search: Field List
...
SVN:b1162[5416]
2018-03-13 13:50:04 +00:00
Bruno Da Silva
2d9140e56c
Search form
...
Result list now expose their extra params using jQuery().data() function
SVN:b1162[5415]
2018-03-13 13:03:14 +00:00
Bruno Da Silva
0351ff30b4
Search form
...
Result list now expose their extra params using jQuery().data() function
SVN:b1162[5414]
2018-03-13 13:00:14 +00:00
Eric Espié
6d13dac2c3
Advanced Search: Smart conversion
...
SVN:b1162[5413]
2018-03-13 11:15:29 +00:00
Guillaume Lajarige
e2174b9ad4
Advanced search: WIP POC, integration with endpoint.
...
SVN:b1162[5412]
2018-03-13 10:47:54 +00:00
Eric Espié
2038785b09
SVN:b1162[5411]
2018-03-13 10:27:08 +00:00
Bruno Da Silva
0c8650d2e5
Search form
...
jquery expect html responses to begin with a <
SVN:b1162[5410]
2018-03-13 10:22:48 +00:00
Eric Espié
3e7edea7be
SVN:b1162[5409]
2018-03-13 09:56:34 +00:00
Eric Espié
b3d625b9fc
Advanced Search
...
SVN:b1162[5408]
2018-03-13 08:11:01 +00:00
Eric Espié
d02fb69ca7
Advanced Search
...
SVN:b1162[5407]
2018-03-09 17:07:15 +00:00
Guillaume Lajarige
8cf4bc58a7
Advanced search: WIP POC, better criteria widget instanciation.
...
SVN:b1162[5406]
2018-03-09 16:38:30 +00:00
Guillaume Lajarige
b8aed0f004
Advanced search: WIP POC, integration with endpoint, add "list_params" parameter.
...
SVN:b1162[5405]
2018-03-09 16:28:46 +00:00
Guillaume Lajarige
03a6473bd4
Update portal portugues (brazilian) translations thanks to Pedro Beck!
...
SVN:trunk[5404]
2018-03-09 13:51:14 +00:00
Eric Espié
7d95c02b57
Advanced Search
...
SVN:b1162[5403]
2018-03-09 13:42:19 +00:00
Guillaume Lajarige
767507d195
Advanced search: WIP POC, integration with endpoint.
...
SVN:b1162[5402]
2018-03-09 13:34:04 +00:00
Guillaume Lajarige
1d96cbeb07
Advanced search: WIP POC, client widgets.
...
SVN:b1162[5401]
2018-03-09 13:18:56 +00:00
Guillaume Lajarige
0bf33ec7e9
Advanced search: WIP POC, integration with endpoint.
...
SVN:b1162[5400]
2018-03-09 11:10:03 +00:00
Eric Espié
37196b42ed
Advanced Search
...
SVN:b1162[5399]
2018-03-09 09:36:58 +00:00
Eric Espié
5f7453d031
Advanced Search
...
SVN:b1162[5398]
2018-03-09 09:23:36 +00:00
Eric Espié
88b7ef5345
Advanced Search
...
Conversion to search form
SVN:b1162[5397]
2018-03-09 09:16:00 +00:00
Eric Espié
213d591eb0
Advanced Search
...
SVN:b1162[5396]
2018-03-09 08:43:28 +00:00
Eric Espié
c04f73e86b
Advanced Search
...
Convert from raw OQL to search form widget operator
SVN:b1162[5395]
2018-03-08 17:01:17 +00:00
Guillaume Lajarige
2033c171f0
Advanced search: Integration with endpoint POC & WIP.
...
SVN:b1162[5394]
2018-03-08 16:50:10 +00:00
Eric Espié
8ce708dade
Advanced Search
...
generate id on div "result list outer" and use this id on search widget initialisation
SVN:b1162[5393]
2018-03-08 14:53:57 +00:00
Eric Espié
fa60322ff1
Advanced Search
...
SVN:b1162[5392]
2018-03-08 13:49:00 +00:00
Eric Espié
e9bcd170c0
Advanced Search
...
SVN:b1162[5391]
2018-03-07 17:07:40 +00:00
Guillaume Lajarige
118b5c8a7d
Advanced search: Initializing javascript widgets.
...
SVN:b1162[5390]
2018-03-07 16:43:20 +00:00
Guillaume Lajarige
b5bcfa8d90
Advanced search: WIP...
...
SVN:b1162[5389]
2018-03-07 16:21:44 +00:00
Eric Espié
e496ab06b2
Advanced Search
...
SVN:b1162[5388]
2018-03-07 16:10:09 +00:00
Vincent Dumas
d7c960e150
Enabling search and access control by organization on User class. Reworking fields displayed in Details and List as well.
...
SVN:trunk[5387]
2018-03-07 14:00:10 +00:00
Eric Espié
9de7b4ba35
Advanced Search
...
SVN:b1162[5386]
2018-03-06 16:18:12 +00:00
Guillaume Lajarige
bb1a18f187
SVN:b1162[5385]
2018-03-06 14:47:09 +00:00
Guillaume Lajarige
68cdd6b8a9
N°1325 Dashboards: Unknown dashlets (eg. from an uninstalled extension) no longer raise an exception, a fallback is displayed and the XML configuration is still available in editor.
...
SVN:trunk[5384]
2018-03-06 14:07:33 +00:00
Guillaume Lajarige
34dab0c498
Update licences copyright
...
SVN:trunk[5383]
2018-03-06 14:06:19 +00:00
Pierre Goiffon
f9511aba17
N°1030 Collapsible Sections :
...
* stop event propagation (was causing tab switching in notifications)
* save section state in localStorage
SVN:trunk[5382]
2018-03-05 15:50:38 +00:00
Pierre Goiffon
d96015f2c1
N°1260 new db_tls.verify_server_cert option to force server certificates check
...
SVN:trunk[5381]
2018-03-05 15:50:18 +00:00
Eric Espié
e66d577f21
N°478 - Customizable access to the 'Admin Tools'
...
SVN:trunk[5380]
2018-03-05 08:09:10 +00:00
Pierre Goiffon
47653eeba7
N°1260 PHPUnit for the Mysql CLI TLS options generation
...
SVN:trunk[5379]
2018-02-28 16:47:00 +00:00
Pierre Goiffon
a0463c85a1
N°1260 MySQL TLS connection : use less rectrictive flag (no server cert check)
...
SVN:trunk[5376]
2018-02-28 15:13:11 +00:00
Pierre Goiffon
519093dceb
N°1260 fix backup classes to correctly uses DB parameters including TLS
...
* backup : add missing PHPDoc
* backup : use a config object instead of each parameter attribute
* CMDBSource::InitServerAndPort : remove static attribute dependency, change visibility
* setup : generate a config instance to use in backup
* backup : add TLS params if needed to the mysqldump call
SVN:trunk[5375]
2018-02-28 15:12:57 +00:00
Pierre Goiffon
08c5d0e4c1
N°1342 cron : fix iScheduledProcess implementations that were rescheduled on every cron start and so never processed :( (was introduced in r5371)
...
SVN:trunk[5374]
2018-02-27 16:38:38 +00:00
Eric Espié
cae4526b3b
Performance enhancement. Avoid multiple count requests.
...
SVN:trunk[5373]
2018-02-27 15:54:30 +00:00
Pierre Goiffon
79381d7fd2
N°1342 cron : previous commit was to handle BackgroundTask pointing to non existing class (can happen after an extension removal)
...
add comment reflecting the class_exists() test purpose
SVN:trunk[5372]
2018-02-27 15:49:03 +00:00
Pierre Goiffon
d8c141b1c9
N°1342 cron task validity checks :
...
* checks are now made one by one
* new class_exists() test
SVN:trunk[5371]
2018-02-27 15:20:55 +00:00
Pierre Goiffon
3b3f4044cb
N°1260 Mutex : fix merge error in mutex name init
...
SVN:trunk[5369]
2018-02-26 15:16:33 +00:00
Pierre Goiffon
c0256428f9
setup : keep code compatibility with old PHP version
...
Whatever are the iTop requirements, we will be able to show warnings/errors on the setup first screen
SVN:trunk[5368]
2018-02-26 14:27:47 +00:00
Eric Espié
85a5ddb980
N°478 - Customizable access to the 'Admin Tools'
...
- Display additional rights (grant_by_profile) in the grant matrix
SVN:trunk[5367]
2018-02-26 10:38:09 +00:00
Stephen Abello
06bc58f383
datamodel viewer : display children in search tree, search configured to "contains", viewed class is now added to the search input by default and more information about attribute null values/default values
...
SVN:trunk[5366]
2018-02-23 15:37:00 +00:00
Pierre Goiffon
b739c00414
N°1260 wrong function name called to check TLS connection
...
SVN:trunk[5365]
2018-02-23 14:19:32 +00:00
Eric Espié
d65bd97956
N°478 - Customizable access to the 'Admin Tools'
...
SVN:trunk[5364]
2018-02-23 11:13:07 +00:00
Pierre Goiffon
b952f9da4a
N°942 allow to have no new PHP/MySQL requirements for next release
...
SVN:trunk[5363]
2018-02-22 14:28:52 +00:00
Stephen Abello
388b3257fc
jQuery modernization : visual fix for the top left pin
...
SVN:trunk[5362]
2018-02-22 12:53:06 +00:00
Stephen Abello
6318077278
jQuery modernization : removed unused minified jquery-ui css & unused non-minified jquery-migrate 1.2.1 library
...
SVN:trunk[5361]
2018-02-22 10:14:26 +00:00
Stephen Abello
9fee51bafb
jQuery modernization : included console's jquery/jquery-ui files in portal instead of its own files
...
SVN:trunk[5360]
2018-02-22 09:44:42 +00:00
Stephen Abello
397ec9587b
jQuery modernization : updated jquery to 1.12.4, jquery-ui to 1.11.4 and jquery-migrate to 1.4.1
...
SVN:trunk[5359]
2018-02-22 09:28:08 +00:00
Stephen Abello
862d08f57d
jQuery modernization : removed and replaced calls to deprecated methods in jquery 1.12.4
...
SVN:trunk[5358]
2018-02-22 09:24:42 +00:00
Stephen Abello
ebb541e4f5
jQuery modernization : updated libraries to a version compatible with jquery 1.12.4
...
SVN:trunk[5357]
2018-02-22 09:21:05 +00:00
Stephen Abello
e05d780bec
jQuery modernization : removed unused javascript libraries and jquery-ui stylesheets
...
SVN:trunk[5356]
2018-02-22 09:18:42 +00:00
Guillaume Lajarige
84b383154d
Update spanish translations (thanks to Miguel Turrubiates!)
...
SVN:trunk[5353]
2018-02-21 16:39:44 +00:00
Guillaume Lajarige
f458826643
Internal: Rename core english dictionary files to match standard convention.
...
SVN:trunk[5352]
2018-02-21 16:36:08 +00:00
Pierre Goiffon
5d808992e6
N°942 use expression in SetupUtils constant as this is allowed since PHP 5.6.0 and it is the new required version for iTop 2.5 (see http://php.net/manual/en/language.oop5.constants.php )
...
SVN:trunk[5351]
2018-02-21 16:35:19 +00:00
Eric Espié
03f9a9fcac
N°1161 - Add functions, order by and limits to DBSearch::MakeGroupByQuery()
...
SVN:trunk[5350]
2018-02-16 12:59:35 +00:00
Eric Espié
7ea9b5b2f3
Unit tests with debug()
...
SVN:trunk[5349]
2018-02-16 08:16:36 +00:00
Eric Espié
b8fc24f093
Unit tests with debug()
...
SVN:trunk[5348]
2018-02-16 08:14:29 +00:00
Denis Flaven
bddba15403
Cleanup target build directory before building into it...
...
SVN:trunk[5345]
2018-02-13 11:01:11 +00:00
Eric Espié
894f1c4f28
Magic trick for windows. Sometimes the folder is empty but rmdir fails
...
SVN:trunk[5344]
2018-02-13 10:59:56 +00:00
Eric Espié
19665d4ad9
Computations are not allowed in defining constants
...
SVN:trunk[5343]
2018-02-12 16:15:46 +00:00
Denis Flaven
18a8e86b2a
Bug fixes:
...
- support an upgrade of a givne component (same directory in data/production-modules)
- deployment no longer blocked after a failed attempt (cleanup of the data/production-build-modules directory)
- load of the "structural data" of newly added extensions
Enhancements:
- All traces go to log/setup.log, and traces have been added to clearly identify the different phases of the deployment.
SVN:trunk[5341]
2018-02-12 12:31:20 +00:00
Guillaume Lajarige
3af724a941
Fix application being wrongly set to Archive Mode when it fails to retrieve an object from the database.
...
SVN:trunk[5340]
2018-02-12 12:28:10 +00:00
Eric Espié
5b378ee9dd
N°1322 - Display of links now support both DBObjectSet and ormLinkSet
...
SVN:trunk[5339]
2018-02-09 15:32:15 +00:00
Denis Flaven
d5889a90d4
The Hub is alive ! Let's use the production URL.
...
SVN:trunk[5337]
2018-02-09 14:13:46 +00:00
Denis Flaven
81c8eb2830
N°1323: Bug fix for a crash with the error message: class 'cmdbAbstractObject' not found, in the last screen of the setup under very specific circumstances.
...
SVN:trunk[5336]
2018-02-09 14:04:52 +00:00
Denis Flaven
507a073203
N°1323: Bug fix for a crash with the error message: class 'cmdbAbstractObject' not found, in the last screen of the setup under very specific circumstances.
...
SVN:trunk[5333]
2018-02-09 13:44:48 +00:00
Denis Flaven
abe67d9e4e
Added an extra safety check to detect inconsistencies between the added extensions and the choices made during the initial installation.
...
SVN:trunk[5318]
2018-02-09 08:43:42 +00:00
Vincent Dumas
741f44e8b7
dictionnary error 'criticity' replaced by 'criticality'
...
SVN:trunk[5317]
2018-02-08 15:57:57 +00:00
Pierre Goiffon
c715b9488a
N°1260 MySQL connection : allow to use p: host prefix (persistent connection, see http://php.net/manual/en/mysqli.persistconns.php )
...
SVN:trunk[5316]
2018-02-08 14:22:27 +00:00
Pierre Goiffon
5107ef5119
N°1260 MySQL TLS connection : finalize setup warning message
...
SVN:trunk[5315]
2018-02-08 14:22:20 +00:00
Pierre Goiffon
ca28eeb596
N°1260 rename db_ssl* vars to db_tls (cause SSL is an old protocol and MySQL uses TLS)
...
Keep options label with SSL, to keep them aligned with the labels used in MySQL products and documentation
SVN:trunk[5314]
2018-02-08 14:22:14 +00:00
Pierre Goiffon
f51eb96c69
N°1260 MySQL TLS connection : do not use persistent connection in Mutex
...
SVN:trunk[5313]
2018-02-08 14:22:05 +00:00
Pierre Goiffon
b032299b05
N°1260 MySQL TLS connection : exception if the opened connection is not in TLS whereas TLS parameters were used to open it
...
SVN:trunk[5312]
2018-02-08 14:21:58 +00:00
Pierre Goiffon
5a2576bc29
N°1260 MySQL TLS connection : add options in setup
...
SVN:trunk[5311]
2018-02-08 14:21:51 +00:00
Pierre Goiffon
3375629d06
N°1260 MySQL TLS connection : add capath config for mysqli::ssl_set argument
...
SVN:trunk[5310]
2018-02-08 14:21:40 +00:00
Pierre Goiffon
37232bc222
N°1260 every classes creating a mysqli instance now use a dedicated method in CMDBSource
...
SVN:trunk[5309]
2018-02-08 14:21:33 +00:00
Pierre Goiffon
d2f0deec9c
N°1260 Config : migrate DB* variables to the Get() model, create CMDBSource::InitFromConfig
...
SVN:trunk[5308]
2018-02-08 14:21:25 +00:00
Pierre Goiffon
5a25e44177
N°1260 MySQL TLS patch improvements :
...
* mysql connexion opening : simplify code
* rename DB_SSL_* variables to DB_SSL.*
* fix warnings when new param are not set
* persistent connection (host "p:" prefix) is used for every TLS connection
* add some missing @var
SVN:trunk[5307]
2018-02-08 14:21:06 +00:00
Pierre Goiffon
08d9d58894
N°1260 MySQL TLS connection : apply Hardis patch (many thanks !)
...
SVN:trunk[5306]
2018-02-08 14:20:58 +00:00
Guillaume Lajarige
0254a75c95
N°1280 Upgrade Silex library to 2.2 (Which is possible as iTop 2.5 requirements are now PHP 5.6+!)
...
SVN:trunk[5305]
2018-01-31 13:37:51 +00:00
Guillaume Lajarige
a7cfcefee2
Internal: PHPDoc update
...
SVN:trunk[5304]
2018-01-31 12:35:01 +00:00
Guillaume Lajarige
f78c057b45
Portal: Fix user profile edition due to recent user rights changes.
...
SVN:trunk[5303]
2018-01-31 12:31:45 +00:00
Guillaume Lajarige
4bd3084403
Fix regression introduced in r5298: Portal user could not change its preferences.
...
Removed the 'grant_by_profile' category check in UserRights::GetSelectFilter().
SVN:trunk[5302]
2018-01-31 12:29:20 +00:00
Pierre Goiffon
9d817f0c77
N°942 new requirements for iTop 2.5
...
SVN:trunk[5301]
2018-01-31 10:44:17 +00:00
Pierre Goiffon
68b8cc1d20
MetaModel : reduce code warnings and improve type hinting
...
SVN:trunk[5300]
2018-01-31 10:31:28 +00:00
Pierre Goiffon
fb8b0f4f65
PHPDoc for methods called by MetaModel
...
SVN:trunk[5299]
2018-01-31 10:31:23 +00:00
Eric Espié
94d45fc77f
N°1248 - User Management Portal
...
* Added a new grant_by_profile category that allows to manage certain classes in addition to bizmodel with user profiles.
* The following classes have the new grant_by_profile category:
User, UserInternal, UserLocal, UserLDAP, UserExternal, URP_UserProfile, URP_UserOrg
* For these classes, it is possible to manage access rights with user profiles for non-administrators.
* For these classes, the default behavior of SELECT requests changes from allowed to forbidden.
* For user profiles, the default behavior '*' is limited to the bizmodel category to keep the previous behavior of profiles, i. e. for classes in the grant_by_profile category, rights (including READ) must be given explicitly.
* New constraints have been added, so only an administrator can manage (attach or detach) the 'Administrator' profile.
SVN:trunk[5298]
2018-01-30 15:17:51 +00:00
Eric Espié
5144f62da9
UserRights Unit tests
...
SVN:trunk[5297]
2018-01-26 08:06:41 +00:00
Romain Quetiez
a58ba7fcc5
N°1287 Update the installation instructions (pointing to the wiki page), and fix the readme to point to the correct wiki pages
...
SVN:trunk[5295]
2018-01-25 11:05:12 +00:00
Romain Quetiez
17bec06c98
Cleanup - remove this index page not used anymore (and having broken links)
...
SVN:trunk[5294]
2018-01-25 10:50:50 +00:00
Guillaume Lajarige
d531ec846f
Portal: CSS Fixes (lack of consistency with border-radius)
...
SVN:trunk[5293]
2018-01-24 14:21:36 +00:00
Guillaume Lajarige
07849922b8
Code cleanup
...
SVN:trunk[5292]
2018-01-23 14:53:14 +00:00
Denis Flaven
63ba267da0
Bug fixes:
...
- properly detect missing dependencies when deploying extensions from the Hub (and not only when deploying a 2nd time an extension, cf bug n°1284).
- setup hangs when upgrading to 2.4.1 with some "old" extensions in the "extensions" folder.
SVN:trunk[5290]
2018-01-23 10:37:50 +00:00
Pierre Goiffon
93526c8a44
N°942 PHP version not yet validated was incorrectly set to 7.1.9, fix it back to 7.2.0
...
SVN:trunk[5288]
2018-01-18 11:11:53 +00:00
Denis Flaven
c7c2f4a482
Bug fix: do not (try to) launch the backup if the backup detection told us that the backup is not possible!
...
SVN:trunk[5285]
2018-01-17 16:31:16 +00:00
Denis Flaven
dc0e739667
Fix for a problem breaking the mysqldump detection (when it fails on windows). Root cause: do not return/display the output of the shell command used to test mysqldump since (on windows) it may contain non-UTF-8 characters of an unknown character set and this breaks "UTF-8 picky" functions like json_encode.
...
SVN:trunk[5284]
2018-01-17 16:29:44 +00:00
Pierre Goiffon
e74b2e32c9
Remove file that do not belongs here
...
SVN:trunk[5282]
2018-01-17 14:49:54 +00:00
Romain Quetiez
a2dd9b1d48
Getting ready for the release of 2.4.1 in february
...
SVN:trunk[5279]
2018-01-17 13:10:57 +00:00
Denis Flaven
474fdc0473
Setup: special mapping for 2 extensions which code has changed...
...
SVN:trunk[5277]
2018-01-17 12:36:25 +00:00
Guillaume Lajarige
e6ab3ac9f9
N°1277 Portal: Improve error reporting when user with no associated contact logs in the portal.
...
SVN:trunk[5276]
2018-01-17 12:31:05 +00:00
Denis Flaven
ae59780297
The Hub Connects !!
...
Adding iTop Hub Connector.
SVN:trunk[5270]
2018-01-17 10:04:33 +00:00
Pierre Goiffon
cbdafbf264
Exclude for itop-hub-connector
...
SVN:trunk[5268]
2018-01-17 09:02:46 +00:00
Guillaume Lajarige
76fa4a3090
Portal: Fix CSS for selected rows in dataTables tables
...
SVN:trunk[5266]
2018-01-16 16:59:36 +00:00
Guillaume Lajarige
896c6b79db
Internal: Portal code cleanup
...
SVN:trunk[5265]
2018-01-16 16:25:31 +00:00
Denis Flaven
bb052f30d6
Preparing for the Hub: better decouple the RunTimeEnvironment from the list of directories to scan/install in order to support installation from the Hub.
...
SVN:trunk[5264]
2018-01-16 16:24:38 +00:00
Stephen Abello
ebbff7f615
datamodel viewer : fixed case where no class name were given, cleaned up code
...
SVN:trunk[5263]
2018-01-16 15:56:25 +00:00
Guillaume Lajarige
9d76ac96bc
N°984 Portal: Fix autocomplete field reset when changing value of parent field in request templates.
...
SVN:trunk[5261]
2018-01-16 15:37:28 +00:00
Guillaume Lajarige
1926a40277
Internal: PHPDoc
...
SVN:trunk[5260]
2018-01-16 15:32:11 +00:00
Pierre Goiffon
6cd108badf
RelationGraph : some PHPDoc
...
SVN:trunk[5258]
2018-01-16 15:04:08 +00:00
Eric Espié
5993d74eec
N°1246 - Fix Obsolete data visible in dependency graph.
...
* Fix a wrong transient OQL expression cache.
SVN:trunk[5257]
2018-01-16 15:01:33 +00:00
Guillaume Lajarige
84b98a2265
N°1276 Portal: Aligned drop-down list to autocomplete threshold behavior to console's behavior.
...
SVN:trunk[5255]
2018-01-16 14:24:24 +00:00
Eric Espié
0df071b4db
Default class is Organization
...
SVN:trunk[5254]
2018-01-16 11:07:13 +00:00
Eric Espié
bfd092b499
N°1224 - The 2.4.x setup keep the selected choices from a 1.3.x version.
...
* The selection is kept even if the extension has a one more module than the 1.3.x
SVN:trunk[5252]
2018-01-16 10:38:17 +00:00
Eric Espié
23f2ea5031
N°1026 - Portal requests are too slow
...
* Counts on union requests are more optimized
* Requests for combo box values are more optimized
SVN:trunk[5249]
2018-01-15 15:16:20 +00:00
Stephen Abello
29165b8ef4
datamodel viewer : cleanup code, fixed links in tooltips and added a classname following while scrolling down the page
...
SVN:trunk[5247]
2018-01-12 16:32:10 +00:00
Pierre Goiffon
c862179465
N°942 set nex itop release MySQL requirement to 5.5.3 for utf8mb4
...
Update also the comments I forgot on the previous change (woooops), and the warning messages beginning with "error" (hahem)
SVN:trunk[5245]
2018-01-12 16:07:31 +00:00
Pierre Goiffon
7a371f8b26
N°942 next itop release PHP & MySQL requirements : use *.0 versions instead of the latests
...
SVN:trunk[5243]
2018-01-12 15:35:25 +00:00
Eric Espié
7a7b968c1b
Cleanup code
...
SVN:trunk[5242]
2018-01-12 14:28:42 +00:00
Eric Espié
9571404907
Cleanup code
...
SVN:trunk[5240]
2018-01-12 13:37:40 +00:00
Pierre Goiffon
ae946f6821
N°942 change next itop release MySQL version requirement from 5.6 to 5.5, plus add some comments
...
SVN:trunk[5238]
2018-01-12 11:26:12 +00:00
Denis Flaven
6128625706
Fixed regression introduced by [r5235]: some directories (like data/production-modules) may not always exist... this should not stop the setup.
...
SVN:trunk[5237]
2018-01-11 17:23:01 +00:00
Denis Flaven
ea2a3c1980
Handle extensions with missing dependencies.
...
SVN:trunk[5235]
2018-01-11 10:49:18 +00:00
Denis Flaven
9b6814aee9
Typo
...
SVN:trunk[5234]
2018-01-11 10:38:30 +00:00
Denis Flaven
6544659251
Small setup refactoring for getting ready for the Hub.
...
SVN:trunk[5232]
2018-01-10 15:47:15 +00:00
Stephen Abello
dcff39da25
N°1147 Enable data synchronization for applications classes (Localized Data).
...
SVN:trunk[5230]
2018-01-10 14:10:29 +00:00
Pierre Goiffon
94ba32af57
Some PHPDoc
...
SVN:trunk[5229]
2018-01-10 14:08:36 +00:00
Pierre Goiffon
cc08613304
New method to test if a field is read only in the current DBObject state
...
SVN:trunk[5228]
2018-01-10 14:08:29 +00:00
Eric Espié
95941f4dc5
N°870 - Fix the display of archived objects in the dashlets when activating/deactivating the archive mode.
...
SVN:trunk[5226]
2018-01-10 13:39:41 +00:00
Guillaume Lajarige
3f2e20fe44
Portal: Change Ticket->public_log's flags in ev_reopen form. Now MUST_CHANGE instead of MUST_PROMPT.
...
SVN:trunk[5224]
2018-01-10 13:31:39 +00:00
Stephen Abello
67124a4104
datamode viewer : fix lifecycle image generation on Windows. (Error: "C:/Program does not exist")
...
SVN:trunk[5222]
2018-01-10 08:15:49 +00:00
Eric Espié
174bcf56d3
cleanup code
...
SVN:trunk[5221]
2018-01-10 07:58:51 +00:00
Romain Quetiez
d9fd3b47e1
Copyright updated to 2018
...
SVN:trunk[5220]
2018-01-09 16:41:30 +00:00
Eric Espié
89492f8904
N°870 - Avoid Obsolete data in audit results
...
SVN:trunk[5219]
2018-01-09 16:07:18 +00:00
Eric Espié
42dc73964c
N°870 - Avoid Obsolete data export in CSV, Excel and PDF
...
SVN:trunk[5218]
2018-01-09 15:51:03 +00:00
Guillaume Lajarige
449316257a
N°1247 Fix AttributeEnum display as vertical radio buttons in console UI.
...
SVN:trunk[5216]
2018-01-09 14:43:06 +00:00
Eric Espié
3b621adcb2
N°925 - Fix portal when request template field is in autocomplete mode with a wrong value
...
* No error is displayed, but the actual value is set to '0'
SVN:trunk[5215]
2018-01-09 13:57:29 +00:00
Pierre Goiffon
8d9d4e67ca
N°942 setup : max version for PHP
...
SVN:trunk[5213]
2018-01-08 15:34:00 +00:00
Guillaume Lajarige
eb43a02bce
Fix regression introduced in r5183.
...
SVN:trunk[5211]
2018-01-08 12:40:05 +00:00
Guillaume Lajarige
7f034f60d6
N°1254 Portal: Add CSS/JS hooks on object forms for the current state
...
- CSS class on <form> tag: form_object_state_<STATE_CODE>
- HTML attribute on <form> tag: data-object-state="<STATE_CODE>"
SVN:trunk[5209]
2018-01-08 12:09:35 +00:00
Guillaume Lajarige
c4cf10b6e6
N°1172.3 Portal: Objects and external keys in linkedsets (forms) now open in a modal dialog.
...
SVN:trunk[5207]
2018-01-08 11:36:22 +00:00
Stephen Abello
b2a1404ce0
datamode viewer revamped: Class search, new panel for class list, graphical representation of each class and its related classes, granularity on data display and a fix on lifecycle graph.
...
SVN:trunk[5206]
2018-01-05 15:18:56 +00:00
Pierre Goiffon
52a97db259
N°1253 Configuration editor : save/restore editor state on saving
...
SVN:trunk[5205]
2018-01-05 15:16:45 +00:00
Pierre Goiffon
e5ccb4271e
HTMLDOMSanitizer remove duplicate code declaration
...
SVN:trunk[5204]
2018-01-04 17:30:26 +00:00
Pierre Goiffon
27a2614b7d
N°801 allow block quotes in HTML Fields
...
add BLOCKQUOTE tag in the HTMLDOMSanitizer white list
SVN:trunk[5202]
2018-01-04 17:18:02 +00:00
Guillaume Lajarige
5cc39848ff
Typo
...
SVN:trunk[5201]
2018-01-04 10:55:14 +00:00
Guillaume Lajarige
b9d719d636
N°1194 Portal: Support for MUST_CHANGE flag on CaseLog attributes in transitions.
...
SVN:trunk[5199]
2018-01-04 10:38:47 +00:00
Guillaume Lajarige
3e6b3a2755
N°1245 Fix MUST_CHANGE flag behavior on CaseLog attributes in the console.
...
SVN:trunk[5197]
2018-01-03 14:44:59 +00:00
Guillaume Lajarige
88167fb3ae
N°1217.2 Console UI: Small enhancements on object properties display.
...
* HTML Attribute value not breaking on words anymore.
* Attribute label width bigger on single column display.
SVN:trunk[5194]
2018-01-03 09:41:58 +00:00
Guillaume Lajarige
b5685a9d76
Rollback modifications from r5192 as it introduced a regression.
...
JS escaping and previous value comparison strategies are to be define before going further with this matter.
SVN:trunk[5193]
2018-01-03 09:07:26 +00:00
Guillaume Lajarige
4c652a87c0
N°1243 Fix MUST_CHANGE/MANDATORY checks on transition in the console on an HTML Attribute.
...
SVN:trunk[5192]
2018-01-02 16:18:18 +00:00
Pierre Goiffon
1f8bd69aef
N°942 setup : add checks for next iTop release requirements on PHP and MySQL versions
...
* new constants in SetupUtils
* renamed existing methods
* warning if PHP and MySQL versions are lower than expected
SVN:trunk[5190]
2018-01-02 16:04:26 +00:00
Guillaume Lajarige
71d9bb18e5
N°1172.2 Fix regression introduced in r5161 (Email notification crash because of portal urls)
...
SVN:trunk[5189]
2018-01-02 15:59:01 +00:00
Pierre Goiffon
067b3364ee
Add some PHPDoc, fix some syntax (thanks to SonarLint !)
...
SVN:trunk[5188]
2018-01-02 14:20:02 +00:00
Pierre Goiffon
b2494ebaf7
Create abstract DBSearch#GetSQLQueryStructure() to allow "call hierarchy" to work
...
Visibility to public to allow testing
SVN:trunk[5187]
2018-01-02 14:19:54 +00:00
Eric Espié
f73ca10b6c
N°1070: Enhance ergonomics of "Add To Dashboard..." popup window
...
* Larger window to avoid the scrollbar.
* Check the dashboards root parent access rights to generate the dashboards list proposed in the popup.
SVN:trunk[5185]
2018-01-02 13:08:14 +00:00
Guillaume Lajarige
fe23e099fe
N°1227 New configuration parameter (disable_attachments_download_legacy_portal) to disable attachments download from the legacy portal. Default is "true"!
...
SVN:trunk[5183]
2017-12-29 13:54:20 +00:00
Guillaume Lajarige
333411535e
N°1132 Add ContextTag on CRON background tasks (eg. "CRON:Task:<CLASS_NAME_OF_THE_CURRENT_TASK>").
...
Introduced for the "Mail to ticket automation" extension, so we know when a Ticket is created/updated from an email.
SVN:trunk[5181]
2017-12-29 09:55:36 +00:00
Guillaume Lajarige
cc6272e84a
N°1143 Fix removed email links (mailto) in HTML attributes (CKEditor).
...
SVN:trunk[5179]
2017-12-28 15:34:24 +00:00
Guillaume Lajarige
c7857835c7
N°850 Show "delete" and "bulk delete" rights in user's grant matrix.
...
SVN:trunk[5177]
2017-12-28 10:37:04 +00:00
Guillaume Lajarige
9bfaf10468
N°624 Fix WYSIWYG feature in CaseLog / HTML attributes on transition.
...
SVN:trunk[5175]
2017-12-28 09:25:03 +00:00
Guillaume Lajarige
095d5c9442
Compiled CSS filed from previous commit (r5168)
...
SVN:trunk[5171]
2017-12-27 15:54:36 +00:00
Guillaume Lajarige
4fa6f85c2e
N°1217 Console UI improvements in object forms.
...
- Columns size optimization.
- Tooltip on (none empty) String attribute so long value can be seen without scrolling to the end of the input.
- OQL attribute displayed as Text/HTML attributes.
SVN:trunk[5170]
2017-12-27 15:51:50 +00:00
Pierre Goiffon
76a9978fc5
N°1182 fix overlapping table in console dashlets : now we have a scrolling bar if necessary
...
SVN:trunk[5168]
2017-12-27 14:50:44 +00:00
Guillaume Lajarige
4b46b2776a
N°916 Fix impact analysis relation upstream description.
...
Description was unique for both directions. Now 2 separate entries are used 'Realtion:<RELATION_CODE>/<DIRECTION>Stream+'.
Translations for existing languages are already done.
SVN:trunk[5166]
2017-12-27 09:59:21 +00:00
Eric Espié
907505ccf9
Fix and refactor based on unit tests results
...
SVN:trunk[5165]
2017-12-22 14:08:58 +00:00
Eric Espié
3e35dafefb
Unit tests based on PHPUnit
...
These tests run with the sample datamodel and they don't commit any data (only some indexes are incremented).
To launch the test suite, run the following command from the test repository:
php.exe <PATH_TO>/phpunit.phar --configuration <PATH_TO>/test/PHPunit.xml
SVN:trunk[5164]
2017-12-22 13:37:26 +00:00
Eric Espié
11ee5126ef
N°789 - Fix losing the additional links attributes values during impact analysis update
...
The issue was only visible when attributes were added to the links (FunctionalCIs and Contacts).
When a Ticket is modified, the impact analysis generate a new set of links for FunctionalCIs and Contacts.
If new attributes are added on links, the values were lost during the process.
Now existing links are kept along with the additional attributes values.
SVN:trunk[5162]
2017-12-22 13:09:21 +00:00
Guillaume Lajarige
37bdb1ba2f
N°1172 Portal: Objects and external keys in linkedsets (forms) now have hyperlinks if access is authorized regarding the user's scopes.
...
SVN:trunk[5161]
2017-12-21 08:31:32 +00:00
Pierre Goiffon
a9fc1083c7
PHPDoc for AddModule()
...
SVN:trunk[5160]
2017-12-20 16:34:55 +00:00
Eric Espié
9be804fb35
N°1209 - Fix Organization selector width (missing button)
...
SVN:trunk[5157]
2017-12-15 13:17:23 +00:00
Eric Espié
38a466fc21
N°1209 - Fix Organization selector width (padding added)
...
SVN:trunk[5155]
2017-12-15 11:20:36 +00:00
Eric Espié
aa5ee45034
N°1209 - Fix Organization selector width
...
SVN:trunk[5154]
2017-12-15 09:48:13 +00:00
Denis Flaven
5b1e1d0d6a
Enhancement: automatically recognize some well-know mutli-module extensions deployed using the old format (i.e. shipped without an extension.xml file) and emulate the new format for them in order to display a meaningful label and version in the setup and in the about box.
...
SVN:trunk[5152]
2017-12-14 12:11:51 +00:00
Romain Quetiez
a818a09469
N°1188 & N°1189 Too much disk space / memory used for backup / restore - completing the commit [r5144], because the PHP extension phar is no more required
...
SVN:trunk[5151]
2017-12-11 16:19:16 +00:00
Guillaume Lajarige
0d439a08fc
Portal: Default brick icon classes were using a wrong constant and therefore not displaying correctly.
...
SVN:trunk[5150]
2017-12-05 10:24:02 +00:00
Pierre Goiffon
9032f25d64
CMDBSource : fix code errors and some warnings
...
SVN:trunk[5149]
2017-12-04 15:07:21 +00:00
Pierre Goiffon
28efea7ac1
N°1195 exception handling in cron.php
...
* cron.php : use exit(n°) instead of exit n°, and extract codes to constants
* CMDBSource : new MySQLHasGoneAwayException
* exits cron.php on MySQLHasGoneAwayException
* fix backgroundprocess PHPDoc
* new ProcessException and ProcessFatalException
* new cron.php catch blocks
SVN:trunk[5148]
2017-12-04 15:07:15 +00:00
Guillaume Lajarige
f2f0badc77
N°1199 Fixed "Notice: undefined index 0" in the portal. UserRequest/Incident::ComputePriority() was failing when attributes impact had no value.
...
SVN:trunk[5147]
2017-12-01 15:41:52 +00:00
Eric Espié
00e3d5c0d2
License reformat.
...
SVN:trunk[5146]
2017-11-30 09:23:26 +00:00
Eric Espié
c08edc207c
N°1190 - Better error reporting and disk cleanup.
...
SVN:trunk[5145]
2017-11-30 08:58:58 +00:00
Eric Espié
6477e2e1bb
N°1188 - Backup needs too much disk space
...
SVN:trunk[5144]
2017-11-30 08:52:44 +00:00
Eric Espié
694da178c4
N°1191 - Wrong file name for backup check.
...
SVN:trunk[5143]
2017-11-30 08:48:59 +00:00
Pierre Goiffon
d80b890cd0
Fix warnings and errors in SynchroReplica
...
SVN:trunk[5142]
2017-11-29 14:30:10 +00:00
Pierre Goiffon
6b9c038b31
Mutex : add some comments
...
SVN:trunk[5141]
2017-11-27 17:00:03 +00:00
Guillaume Lajarige
b071f920e9
Portal: Typo in SCSS variable.
...
SVN:trunk[5140]
2017-11-25 14:53:20 +00:00
Pierre Goiffon
3cd28d1559
Some PHPDoc and small reformat
...
SVN:trunk[5139]
2017-11-23 17:42:24 +00:00
Guillaume Lajarige
72563d8ef1
Internal: Typos in XML comments.
...
SVN:trunk[5138]
2017-11-23 09:34:26 +00:00
Eric Espié
375798a344
N°1070 - Enhance ergonomics of "Add To Dashboard..." popup window
...
SVN:trunk[5137]
2017-11-22 14:40:28 +00:00
Eric Espié
b401c65684
N°1163 - GET_LOCK 64 characters limitation in MySQL
...
SVN:trunk[5135]
2017-11-21 12:14:20 +00:00
Guillaume Lajarige
d7c78b3ce2
Portal: Updated SCSS to de-hardcode some values.
...
SVN:trunk[5134]
2017-11-20 14:29:40 +00:00
Eric Espié
4a4c03a225
N°1160 - Fix error when sending notification with list of links.
...
SVN:trunk[5132]
2017-11-17 14:43:01 +00:00
Eric Espié
85b31701f4
N°1156 - Manual backup can be very long
...
* The database is saved in last position to avoid overhead when generating the archive file
SVN:trunk[5130]
2017-11-16 14:00:41 +00:00
Guillaume Lajarige
28b3110895
N°1157 Portal: Exception raised in BrowseBrick when one of the levels had no scope.
...
SVN:trunk[5129]
2017-11-16 09:05:02 +00:00
Pierre Goiffon
011e6d895b
N.1151 compiler : throw an exception if a module contains an unknown menuId reference
...
SVN:trunk[5128]
2017-11-10 13:42:55 +00:00
Vincent Dumas
0f7099acfa
dictionnary typo on Notification header message
...
SVN:trunk[5126]
2017-11-03 09:03:14 +00:00
Eric Espié
96296fe211
Duration KPI added on sending email.
...
SVN:trunk[5125]
2017-11-02 16:43:00 +00:00
Pierre Goiffon
51a60e637c
Some PHPDoc
...
SVN:trunk[5124]
2017-10-31 17:08:25 +00:00
Pierre Goiffon
078f13fdb1
applicationcontext CrLf to Lf conversion
...
SVN:trunk[5123]
2017-10-31 15:38:30 +00:00
Denis Flaven
c210afd086
(Regression) Fix display trouble for auto_reload menus. This was caused by a collision of HTML/DOM ids where the menu item of the left (accordion) menu had the same id as the div displaying the actual content in the right pane. This caused (when the id was a valid one !) the refresh of the content (list of objects) to occur INSIDE the accordion menu !
...
SVN:trunk[5121]
2017-10-31 10:29:05 +00:00
Guillaume Lajarige
81d9071b01
N°634.3 Portal: Argh!! Secondary actions menu in BrowseBrick was broken due to previous CSS "fixes"...
...
SVN:trunk[5119]
2017-10-30 16:03:58 +00:00
Romain Quetiez
94ca9c4df9
Ready for releasing...
...
SVN:trunk[5117]
2017-10-30 14:26:22 +00:00
Eric Espié
bff2ae319f
2.4.0 - New readme format.
...
SVN:trunk[5115]
2017-10-30 14:14:51 +00:00
Eric Espié
5bd30381cf
Core russian translation kindly provided by Vladimir Kunin.
...
SVN:trunk[5113]
2017-10-30 11:34:39 +00:00
Pierre Goiffon
121a615ce3
UI.php : remove unused variables and change todo comment
...
SVN:trunk[5112]
2017-10-27 14:45:53 +00:00
Pierre Goiffon
5877b66c83
PHP Code Style : allow one line if with no braces
...
SVN:trunk[5111]
2017-10-27 14:45:47 +00:00
Stephen Abello
1ba86a91f9
added german translation for obsolescence. Thanks to ITOMIG.
...
SVN:trunk[5109]
2017-10-27 13:49:07 +00:00
Denis Flaven
e56847ee8d
Simplification of the obsolescence conditions (N° 890) due to the risk of reaching the limit of 61 tables (N°1049)
...
SVN:trunk[5107]
2017-10-27 13:07:54 +00:00
Pierre Goiffon
1fbbfd1063
Portal SCSS : restore @extend inside @media, because this gives no error and do the job with scssphp lib
...
SVN:trunk[5105]
2017-10-27 08:56:59 +00:00
Pierre Goiffon
1fed66fff3
N.1117 some PHPDoc modifications
...
SVN:trunk[5104]
2017-10-27 08:56:45 +00:00
Guillaume Lajarige
c607a7e35d
Internal: Updated modules version to 2.4.0 (as well as some copyright dates)
...
SVN:trunk[5103]
2017-10-27 08:53:39 +00:00
Pierre Goiffon
06d6968951
Fix invalid CSS and SCSS
...
SVN:trunk[5102]
2017-10-27 08:20:46 +00:00
Guillaume Lajarige
7ed8a9f638
N°1138 Portal: Scrollbar appeared sometimes in navigation menu when on the last brick.
...
SVN:trunk[5097]
2017-10-26 17:37:13 +00:00
Guillaume Lajarige
52595138cd
N°930.2 Console UI: Better object details layout step 2.
...
SVN:trunk[5095]
2017-10-26 17:03:32 +00:00
Pierre Goiffon
eca2b01307
Code style : line endings Lf
...
SVN:trunk[5094]
2017-10-26 16:02:52 +00:00
Pierre Goiffon
df758679cc
Change version number for static resources calls
...
SVN:trunk[5093]
2017-10-26 15:43:57 +00:00
Pierre Goiffon
6b6300d117
PHPStorm shared Inspections update : inconsistent line endings as WARN
...
SVN:trunk[5092]
2017-10-26 15:28:06 +00:00
Pierre Goiffon
b535e11f5a
Change modules XML version to the latest (1.4)
...
SVN:trunk[5091]
2017-10-26 15:10:06 +00:00
Pierre Goiffon
a4ad8d0a61
Change version number in CSS url() calls
...
SVN:trunk[5090]
2017-10-26 09:28:22 +00:00
Pierre Goiffon
e66eb537d8
datatable refresh prb when source is in CrLf instead of Lf :
...
* add a try/catch block in the JS code
* properly escape string returned
This can happen for example when checking out with git-svn on Windows with core.autocrlf=auto
SVN:trunk[5089]
2017-10-26 08:58:23 +00:00
Pierre Goiffon
b8ef2e68ba
Firsts settings for JS code style
...
SVN:trunk[5088]
2017-10-26 08:58:11 +00:00
Pierre Goiffon
30b10d3b6b
Dict::S() PHPDoc modification
...
SVN:trunk[5087]
2017-10-26 08:57:54 +00:00
Eric Espié
f09347841c
Fix utils::GetCurrentModuleUrl() introduced in revision 4920
...
SVN:trunk[5085]
2017-10-25 15:22:40 +00:00
Guillaume Lajarige
f87e8ca522
Translations: Added icon attribute for ServiceFamily and Service classes. English and French done, feel free to contribute for others ! :)
...
SVN:trunk[5080]
2017-10-24 15:13:51 +00:00
Guillaume Lajarige
2871f64f68
Internal: Updated sample data with avatar of new Combodo members ! (Bis)
...
SVN:trunk[5079]
2017-10-24 14:54:06 +00:00
Guillaume Lajarige
cd1c5f5799
Internal: Updated sample of ServiceFamily and Service classes to add icons (used in the mosaic mode of the portal's services catalog)
...
SVN:trunk[5078]
2017-10-24 14:39:03 +00:00
Pierre Goiffon
890fcac73f
Fix another regression introduced in r5071 : module url were generated with arguments values that were url-encoded twice (so this leads to some errors when using them)
...
SVN:trunk[5077]
2017-10-24 14:02:59 +00:00
Guillaume Lajarige
d7851ed090
Internal: Updated sample data with avatar of new Combodo members !
...
SVN:trunk[5076]
2017-10-24 11:46:16 +00:00
Pierre Goiffon
678df3cc46
Fix regression introduced in r5071 (wooops), plus some PHPDoc
...
SVN:trunk[5074]
2017-10-24 08:07:07 +00:00
Eric Espié
2f48b2e302
N°1134 - Bad version number when MTP
...
* The order of the installed versions is changed when doing MTP.
SVN:trunk[5073]
2017-10-24 08:03:26 +00:00
Pierre Goiffon
a816a6ff8d
cursor:pointer for label
...
SVN:trunk[5072]
2017-10-23 15:59:44 +00:00
Pierre Goiffon
b189d2a39b
Split the method to get a module absolute URL into 3 different methods, to allow more flexibility (for example get the URL and the query string key/value array to construct a GET form)
...
SVN:trunk[5071]
2017-10-23 15:59:34 +00:00
Guillaume Lajarige
5424682fdb
N°634.2 Portal: CSS fixes on mosaic mode of BroweseBrick
...
SVN:trunk[5070]
2017-10-23 15:43:18 +00:00
Guillaume Lajarige
ad3ce7c536
Internal: Updated module version (itop-portal, itop-portal-base)
...
SVN:trunk[5069]
2017-10-23 13:49:35 +00:00
Eric Espié
d4dd300e28
N°1131 - Setup: Can't add options to ITIL Ticketing in update mode
...
* Fix the alternative selection when updating the setup
* Uncheck options when the alternatives are deselected
SVN:trunk[5067]
2017-10-23 11:37:13 +00:00
Pierre Goiffon
99fd6b97db
JQuery hotkeys plugin license
...
SVN:trunk[5066]
2017-10-23 09:09:56 +00:00
Pierre Goiffon
684e9e3537
Run query screen : new Ctrl+Return shortcut to execute query
...
SVN:trunk[5065]
2017-10-23 07:43:05 +00:00
Guillaume Lajarige
1bde863124
N°1123.5 Typo
...
SVN:trunk[5061]
2017-10-20 13:25:28 +00:00
Guillaume Lajarige
5c34e3d988
N°1123.4 AttributeImage: Better UI when editing in console. Also, export was showing url for empty value.
...
SVN:trunk[5060]
2017-10-20 13:22:38 +00:00
Eric Espié
b7c4e084f3
N°1131 - Setup: Can't add options to ITIL Ticketing in update mode
...
* Fix the disable attribute of the options
SVN:trunk[5057]
2017-10-20 11:54:05 +00:00
Guillaume Lajarige
36395ae355
N°642.3 Portal: Lifecycle: Exception on UserRequest opening due to a bad variable initialization.
...
SVN:trunk[5056]
2017-10-20 08:30:27 +00:00
Romain Quetiez
f4881d11c7
N.1100 Regression introduced in [r4943], aka 2.4 RC3, and causing error during MTP (accessing the wrong expression cache)
...
SVN:trunk[5054]
2017-10-19 19:06:40 +00:00
Eric Espié
bbde89e0f9
N°1109 - itop-object-copier Create ticket from CI was not adding the CI in the CI list of the newly created ticket.
...
* Fix 'add_to_list' command.
* Fix Adding a n-n link at the creation time.
SVN:trunk[5053]
2017-10-19 14:39:15 +00:00
Pierre Goiffon
fb22107be8
N.689 workaround on MySQL number of joins limit (61)
...
* change MySQLException to store initial exception code
* added a try/catch to launch query with full lazy load (no attr => only id)
* load finalClass field if needed (class is nor standalone nor a final leaf)
SVN:trunk[5051]
2017-10-19 13:43:06 +00:00
Pierre Goiffon
5ada93b46c
N.689 throw Exception if querying without needed finalClass attribute, plus some PHPDoc
...
SVN:trunk[5050]
2017-10-19 13:42:56 +00:00
Guillaume Lajarige
b798b43733
N°1094 & N°1107 Portal: Mosaic mode in BrowseBrick displays icon nicely in IE9. Also, "name" on tiles doesn't break layout anymore when too long.
...
SVN:trunk[5046]
2017-10-19 12:57:44 +00:00
Guillaume Lajarige
1669eb3759
N°1071 UI: Better rendering for external keys in linkedset (no more wrapping)
...
SVN:trunk[5045]
2017-10-19 09:28:20 +00:00
Guillaume Lajarige
071316c606
N°1129.1 Support of $this->hyperlink(itop-portal)$ in notifications (only "portal" was implemented for the default portal).
...
SVN:trunk[5044]
2017-10-19 08:57:05 +00:00
Guillaume Lajarige
d8b5dd7bd2
N°1094.3 Portal: Forgot compiled .css on last commit. Not necessary but improves first page load after setup / MTP.
...
SVN:trunk[5042]
2017-10-18 14:58:23 +00:00
Guillaume Lajarige
868c1cface
N°1123.3 Internal: Removed deprecated comment.
...
SVN:trunk[5040]
2017-10-18 14:50:39 +00:00
Guillaume Lajarige
8e83baf72b
N°1094.2 Portal: Showing "icon" attribute on ServiceFamily and Service levels in "mosaic" mode of "services" BrowseBrick.
...
SVN:trunk[5038]
2017-10-18 14:29:53 +00:00
Guillaume Lajarige
54858c63f5
N°1094.1 Adding icon (AttributeImage) to ServiceFamily and Service classes
...
SVN:trunk[5037]
2017-10-18 14:27:40 +00:00
Guillaume Lajarige
bc3d03c462
N°1123.2 AttributeImage: default_image is no longer mandatory.
...
SVN:trunk[5036]
2017-10-18 13:46:17 +00:00
Eric Espié
c94476b9a2
N.1065 Fix performance issues.
...
* Added the bGetCount flag into the cache to differentiate the cache entries for COUNT only.
SVN:trunk[5034]
2017-10-18 12:53:23 +00:00
Guillaume Lajarige
73812dc400
N°1123 AttributeImage: PHP notice when displaying an object without default_image on a AttributeImage attribute.
...
SVN:trunk[5031]
2017-10-18 09:34:50 +00:00
Guillaume Lajarige
cfdc7eb74a
N°911.2 Portal: Updated typeahead repository url in files headers.
...
SVN:trunk[5030]
2017-10-17 14:03:10 +00:00
Romain Quetiez
a0ad331023
Automatic tests: improved the automatic benchmark of all queries
...
SVN:trunk[5029]
2017-10-17 10:26:02 +00:00
Guillaume Lajarige
2561358f9d
N°1122 Portal: Clean-up of 2 redundants JS files regarding the autocomplete inputs in forms.
...
SVN:trunk[5028]
2017-10-17 09:57:44 +00:00
Pierre Goiffon
3fd7dae8f9
N.1108 return exception if $bMustBeFound and result is archived
...
SVN:trunk[5025]
2017-10-16 14:42:17 +00:00
Guillaume Lajarige
426a0933b1
N°1092.1 Setup / MTP improvements regarding the environments folders:
...
- /env-production-build rights check before running setup
- /env-xxx-build is no longer deleted after MTT / MTP from the ITSM Designer. This prevents permissions issue when webserver user doesn't have suffisant rights on the root folder.
SVN:trunk[5023]
2017-10-13 13:25:20 +00:00
Eric Espié
2f8062d296
N°454 - Check data validity during CSV import
...
* The controls are only done on database integrity for the different keys.
* If retrofit to branch 2.4 take also the revisions: 4999, 5000, 5005, 5006
SVN:trunk[5022]
2017-10-13 12:28:09 +00:00
Romain Quetiez
d18165ebe9
Continuation of [r5015] Typo in FR dictionary, for SoftwareInstance/patch (backtick used instead of single quote)
...
SVN:trunk[5021]
2017-10-13 09:00:42 +00:00
Eric Espié
38796f9d0c
N.1065 Fix performance issues.
...
* Does not cache requests containing "id NOT IN ..." (too specific)
SVN:trunk[5019]
2017-10-12 15:31:14 +00:00
Eric Espié
79b887d189
N°1110 - DataSynchro: PHP Notice Undefined Index
...
* Fix access to REQUEST_URI when called by script
SVN:trunk[5017]
2017-10-12 13:54:28 +00:00
Vincent Dumas
8dc92e7ccf
FR dictionnary typo for Ticket status Waiting for approval
...
SVN:trunk[5015]
2017-10-12 13:31:56 +00:00
Eric Espié
e04e5913de
N.1065 Fix performance issues.
...
* Does not cache requests containing "id IN ..." (too specific)
SVN:trunk[5012]
2017-10-12 11:58:48 +00:00
Eric Espié
5c734cdabc
Message when no data are available
...
SVN:trunk[5011]
2017-10-12 11:54:02 +00:00
Guillaume Lajarige
f924e99f70
N°642.2 Portal: Lifecycle transitions security is now a blacklist instead of a white list. Making migration transparent and portal configuration easier.
...
SVN:trunk[5008]
2017-10-12 08:33:41 +00:00
Eric Espié
e179825896
N°1110 - DataSynchro: PHP Notice Undefined Index
...
* Fix access to REQUEST_URI when called by script
SVN:trunk[5007]
2017-10-12 07:52:39 +00:00
Eric Espié
94a561f0e4
N°454 - Check data validity during CSV import
...
* Cleanup expression construction
SVN:trunk[5006]
2017-10-12 07:43:36 +00:00
Eric Espié
56e14fc107
N°454 - Check data validity during CSV import
...
* "simulate" phase is more permissive on new hierarchical entries
* Better check during "apply" phase
SVN:trunk[5005]
2017-10-11 15:31:57 +00:00
Pierre Goiffon
29f0b74824
N.1108 Add PHPDoc
...
SVN:trunk[5004]
2017-10-11 13:20:42 +00:00
Pierre Goiffon
de682d5530
MetaModel code format
...
SVN:trunk[5003]
2017-10-11 13:20:24 +00:00
Pierre Goiffon
571a3341da
Code style settings : fix function argument on new line
...
SVN:trunk[5002]
2017-10-11 13:20:05 +00:00
Pierre Goiffon
8edf7f2d60
Code Style settings modification
...
SVN:trunk[5001]
2017-10-11 09:43:30 +00:00
Eric Espié
5408545c07
N°454 - Check data validity during CSV import
...
* "simulate" phase is more permissive on new hierarchical entries
* Better check during "apply" phase
SVN:trunk[5000]
2017-10-11 09:28:23 +00:00
Eric Espié
d504fb209f
N°454 - Check data validity during CSV import
...
* Added additional checks for external keys (including hierarchical ones)
SVN:trunk[4999]
2017-10-10 10:00:05 +00:00
Guillaume Lajarige
ee53c3a71e
N°1107.1 Portal: Fixed image display in mosaic mode of BrowseBrick for Chrome and Firefox. IE still pending !
...
SVN:trunk[4998]
2017-10-09 13:58:05 +00:00
Eric Espié
bcf88d24f3
N°870: Bulk operation and obsolescence flag
...
* Avoid the hidden selection (and update) of obsolete data when the user does not want to see the obsolete data.
SVN:trunk[4997]
2017-10-09 11:58:10 +00:00
Eric Espié
b2935139b4
N.1065 Fix performance issues.
...
Cache display CSV format fix.
SVN:trunk[4996]
2017-10-06 15:09:01 +00:00
Romain Quetiez
635e7cfeec
Fixed integration issue (possibly a regression): if an extension implements iApplicationExtension::OnDBInsert, and it calls DBWrite, then a fatal error occurs (call a member function on a null value). The error occurs for several types of attributes such as ormCustomField, ormCaseLog, ormLinkSet. The fix consists in aligning the internal values of a DBObject as soon as it has been written into the Database.
...
SVN:trunk[4993]
2017-10-06 14:06:01 +00:00
Eric Espié
49b6c3bed7
N.1065 Fix performance issues.
...
Add statistics on query table join optimization.
SVN:trunk[4992]
2017-10-06 13:53:06 +00:00
Denis Flaven
3f7ab67506
Preparing the connexion to the Hub.
...
SVN:trunk[4991]
2017-10-06 13:32:53 +00:00
Pierre Goiffon
df26833eb1
N.1065 When joining, reverse leaf-root order : now it's root first !
...
* decrease the amount of joins on obsolescence use cases
* should also improve other uses cases as most of the time we believe the attribute linked is in the root class !
* the root table join is done using expressions instead of OQL for perf reasons
* a where clause on finalclass is also added to avoid problems if the leaf table join is not used (would be removed during query optimization phase)
SVN:trunk[4983]
2017-10-05 15:53:44 +00:00
Guillaume Lajarige
df1ebaebf9
N°1104 DBObject::__toString() was way too verbose and returned all objects from linksets as string as well, causing memory limits.
...
SVN:trunk[4971]
2017-10-05 15:38:27 +00:00
Eric Espié
26bd04857d
N°1098 Fix CSV import by id.
...
Fix a regression introduced in rev 4885.
SVN:trunk[4969]
2017-10-05 13:30:43 +00:00
Eric Espié
4c4ed14af5
N°1100 - External field pointing to a magic attribute
...
* A specific pass has been added in MetaModel::InitClasses() to generate the magic attributes before the external fields.
SVN:trunk[4968]
2017-10-05 10:13:14 +00:00
Romain Quetiez
f0c5a1b382
Automatic tests: improved the error reporting
...
SVN:trunk[4967]
2017-10-05 09:57:48 +00:00
Guillaume Lajarige
59ebc49d46
N°1025 Portal: Fixed regression introduced in r4863.
...
SVN:trunk[4966]
2017-10-05 09:48:29 +00:00
Eric Espié
bfde101f6b
N.1065 Fix performance issues (unexpected objects reload).
...
* Fix regression in 2.4 into attribute optimization (archive_flag, obsolescence_flag).
* Fix attribute optimization (friendlyname for ExternalField pointing to ExternalKey)
SVN:trunk[4965]
2017-10-05 09:10:00 +00:00
Pierre Goiffon
2a0dce848c
N.1041 little changes on trunk[4963] : uses NOWDOC instead of HEREDOC syntax, and some variable renaming
...
SVN:trunk[4964]
2017-10-04 09:45:13 +00:00
Pierre Goiffon
d759fed5e4
N.1041 configuration editor : add focus and ctrl+s shortcut
...
SVN:trunk[4963]
2017-10-04 09:32:59 +00:00
Pierre Goiffon
f731abe4e8
GitIgnore : .hacks/
...
SVN:trunk[4962]
2017-10-04 09:09:09 +00:00
Guillaume Lajarige
74111212a3
N°1065 Fixed a regression introduced in r4965.
...
SVN:trunk[4961]
2017-10-03 14:02:45 +00:00
Eric Espié
f86c1a87f9
N.1065 Fix performance issues.
...
Limit APC emulation cache entries to avoid disk saturation.
New configuration entry added: 'apc_cache_emulation.max_entries'.
SVN:trunk[4960]
2017-10-03 13:53:53 +00:00
Romain Quetiez
1f2493914f
N.1065 and #372 Query build cache not efficient with global search (each search generates about 80 new entries in the APCu cache)
...
SVN:trunk[4959]
2017-10-03 11:35:21 +00:00
Guillaume Lajarige
e3efa7dc3d
N°1065 Fixed a regression introduced in r4965.
...
SVN:trunk[4958]
2017-10-03 11:22:01 +00:00
Vincent Dumas
6612782021
FR dictionnary typo for obsolescence
...
SVN:trunk[4957]
2017-10-03 10:19:22 +00:00
Eric Espié
bdaabcea93
N.1065 Fix performance issues.
...
ormLinkSet creates the objects on demand.
SVN:trunk[4956]
2017-10-03 09:22:33 +00:00
Guillaume Lajarige
e6b6be2624
N°1034 New EventOnObject class to store explaination on object's updates
...
SVN:trunk[4955]
2017-10-03 08:19:05 +00:00
Eric Espié
b1f1c10878
APC emulation using files when APC or APCu is not installed.
...
SVN:trunk[4954]
2017-10-02 07:30:41 +00:00
Denis Flaven
d5b0bb021f
N°1806, N°1069: CSV and Excel export and import of documents (files) and images as URLs.
...
SVN:trunk[4952]
2017-09-30 09:23:06 +00:00
Guillaume Lajarige
dd70275b41
N°653.2 Lifecycle: Fixed a regression introduced on r4767, transition buttons not working properly when editing an object.
...
SVN:trunk[4951]
2017-09-29 08:23:13 +00:00
Guillaume Lajarige
6aa782bd8b
N°1082 Fixed a regression introduced with ormLinkSet rework: Modified links not updated.
...
SVN:trunk[4950]
2017-09-28 15:31:57 +00:00
Guillaume Lajarige
029545703f
N°1067 Rework on ormLinkSet BC with DBObjectSet.
...
- PHP notice are not thrown anymore, see PHPDoc instead.
- GetColumnAsArray() introduced.
SVN:trunk[4949]
2017-09-28 11:33:19 +00:00
Guillaume Lajarige
8183674fc6
Internal: Typo in PHPDoc
...
SVN:trunk[4948]
2017-09-27 12:51:36 +00:00
Romain Quetiez
7391f64776
N.1072 Localization for magic attributes archive_date (completed the existing implementation) and obsolescence_date (full implementation)
...
SVN:trunk[4946]
2017-09-27 12:26:44 +00:00
Pierre Goiffon
776385cdc9
Fix regression introduced in trunk[4943]
...
SVN:trunk[4945]
2017-09-27 10:00:48 +00:00
Eric Espié
17bafc037c
Code cleanup.
...
SVN:trunk[4944]
2017-09-27 09:44:19 +00:00
Eric Espié
e785352050
N.1065 Fix performance issues (caches added on query build)
...
SVN:trunk[4943]
2017-09-27 09:37:43 +00:00
Guillaume Lajarige
43e4408df1
N°1073 Reentrance issue on cmdbAbstractObject when coming from an extension implementing iApplicationObjectExtension.
...
SVN:trunk[4942]
2017-09-27 09:27:08 +00:00
Denis Flaven
78a68bb361
Internal: Make sure that UI dialogs are never bigger than the browser's window (not used in iTop though).
...
SVN:trunk[4940]
2017-09-26 09:58:20 +00:00
Guillaume Lajarige
ec2a2d3505
Internal: Changed way AttributeLinkedSet check if two ormLinkSet are equal.
...
SVN:trunk[4939]
2017-09-26 08:05:04 +00:00
Guillaume Lajarige
2625477d35
Internal: Typo in itop-tickets XML comments
...
SVN:trunk[4938]
2017-09-25 10:26:55 +00:00
Pierre Goiffon
a655dd639d
Wooops fix some mistakes on .git* files
...
SVN:trunk[4937]
2017-09-22 16:05:00 +00:00
Romain Quetiez
3e61fd2452
N.707 Export of custom fields: improved the xlsx format and implemented the spreadsheet format (both are aligned)
...
SVN:trunk[4935]
2017-09-22 13:37:44 +00:00
Pierre Goiffon
c11753d91c
Some JetBrains project configuration files
...
SVN:trunk[4934]
2017-09-21 15:02:46 +00:00
Pierre Goiffon
5884e6b3cf
Add JetBrains files in .gitignore
...
SVN:trunk[4933]
2017-09-21 15:02:18 +00:00
Pierre Goiffon
46e4ba4518
Add a gitbugtraq file ( https://github.com/mstrap/bugtraq )
...
SVN:trunk[4932]
2017-09-21 14:58:37 +00:00
Denis Flaven
a9c9e48cdb
Added the open source logo as a character (uppercase letter O) to the font.
...
Increased the version number in the CSS to prevent caching/refresh issues.
SVN:trunk[4930]
2017-09-21 14:27:54 +00:00
Vincent Dumas
e32c1a4447
Standard DataModel: Add org_id and location_id to 'Rack' reconciliation keys. Mandatory for CSV import of CI on a Rack, when Rack name is not a unique identifier.
...
SVN:trunk[4929]
2017-09-21 13:52:01 +00:00
Romain Quetiez
fb99c25594
N°813 Enable bulk deletion of Data Synchro Replica
...
SVN:trunk[4927]
2017-09-21 10:09:45 +00:00
Eric Espié
6011aa2ac9
Configuration file editor:
...
- support syntax highlighting and checking (ace editor)
- better "apply" and "reset" buttons management
- limit code injection when checking the configuration
- better syntax checking for PHP7
SVN:trunk[4926]
2017-09-20 15:07:05 +00:00
Romain Quetiez
048c1ecf72
Code robustness: Though the commit [4922] solves the issue N.1052, it is safer to reset the cache as part of the "Commit" performed during the installation process.
...
SVN:trunk[4923]
2017-09-20 14:45:45 +00:00
Romain Quetiez
40360da454
N.1052 After a setup or MTP, the datamodel is not taken into account... until the web server gets restarted or the APC cache (user data) gets reset.
...
SVN:trunk[4922]
2017-09-20 14:41:45 +00:00
Eric Espié
0ce9ff4557
Allow modules to provide license file (license.<module_name>.xml) with same format as setup/licenses/community_license.xml
...
SVN:trunk[4921]
2017-09-20 09:21:31 +00:00
Eric Espié
625bfbb6fe
Fix utils::GetCurrentModuleUrl() introduced in revision 4844
...
SVN:trunk[4920]
2017-09-19 08:12:39 +00:00
Guillaume Lajarige
4290d94841
N°1047.1 Internal: Modified some calls to the ITOP_XXX constants.
...
SVN:trunk[4915]
2017-09-15 15:46:03 +00:00
Guillaume Lajarige
8ff2151448
N°1006.2 Templates: $this->raw(attcode)$ can be used to display an date(time) attribute in the SQL format like before.
...
SVN:trunk[4914]
2017-09-15 14:26:15 +00:00
Guillaume Lajarige
610d69fb2e
N°1006 Templates: Date & time format is now applied when using a date(time) attribute in a placeholder (eg. Notifications)
...
SVN:trunk[4913]
2017-09-15 13:49:25 +00:00
Guillaume Lajarige
822308b3a4
N°1019 Portal: OpenSans font embedded in iTop instead of fetching from google servers.
...
SVN:trunk[4912]
2017-09-15 09:18:51 +00:00
Guillaume Lajarige
c1d1e562ad
N°762 Portal: Pre-filtering a browse brick in tree mode was making tree collapsing instead of showing results.
...
SVN:trunk[4911]
2017-09-14 15:10:57 +00:00
Guillaume Lajarige
379a0bd785
N°1038 Fatal error on transition with AttributeBlob or AttributeCaseLog
...
SVN:trunk[4907]
2017-09-13 15:59:06 +00:00
Denis Flaven
a477443c8d
Adding E and F glyphs
...
SVN:trunk[4905]
2017-09-13 08:51:19 +00:00
Denis Flaven
ed693c03ab
Combodo font enhancements.
...
SVN:trunk[4903]
2017-09-12 14:48:09 +00:00
Guillaume Lajarige
48f6635917
N°1029 Allowed portals are now displayed in the console user menu.
...
SVN:trunk[4901]
2017-09-08 09:39:31 +00:00
Guillaume Lajarige
d6707743a9
N°1024 Portal: New portal instances can now be XML only (through ITSM Designer), no more need for a dedicated module !
...
SVN:trunk[4900]
2017-09-07 16:03:55 +00:00
Guillaume Lajarige
6f474686ad
N°1027 Internal
...
SVN:trunk[4899]
2017-09-07 16:01:02 +00:00
Guillaume Lajarige
affd8ea8a6
Internal: Code cleanup. Unecessary var_dump as it is already logged in the error log.
...
SVN:trunk[4898]
2017-09-06 18:56:08 +00:00
Romain Quetiez
abd2748a09
N.890.1 Move to test/prod failing with message "Unknown attribute org_id_archive_flag from class contact"
...
SVN:trunk[4897]
2017-09-06 15:31:42 +00:00
Guillaume Lajarige
6a1c9b9f26
N°1021 Regression introduced in r4841: Autocomplete failing with "Unknown filter code..."
...
SVN:trunk[4896]
2017-09-06 08:01:45 +00:00
Romain Quetiez
ac04aa3359
N.981 Regression introduced in [r4692]. It make sense to preserve the existing value... excepted when reloading some form elements (filtering depending on fields that have just been touched by the user).
...
SVN:trunk[4895]
2017-09-05 15:44:48 +00:00
Guillaume Lajarige
051d68c902
Internal: Completed documentation in itop-tickets datamodel.
...
SVN:trunk[4894]
2017-09-05 12:14:42 +00:00
Guillaume Lajarige
ce81f7abb6
Portal: Filter was not looking in the item description in tree mode.
...
SVN:trunk[4893]
2017-09-05 12:14:00 +00:00
Guillaume Lajarige
03fbde3403
N°769.1 Portal: Renamed "count per page" variable in bricks in order to prepare refactoring for bug N°769.
...
SVN:trunk[4892]
2017-09-04 15:56:18 +00:00
Guillaume Lajarige
59ddab9f94
N°781 Setup: New hook available after data load (ModuleInstaller::AfterDataLoad())
...
SVN:trunk[4891]
2017-09-04 10:46:33 +00:00
Denis Flaven
225cbb450e
N°1012: The method "Set" cannot be used to initialize a Blob or an Image with a text string value. Do not let the user think it may work.
...
SVN:trunk[4890]
2017-09-04 10:33:54 +00:00
Romain Quetiez
7cace73844
N.1014 Fixed regressions introduced in the rework of MTP/MTT : test database named after test-build, and losing the data/delta.<nev>.xml file, and cleanup badly implemented
...
SVN:trunk[4889]
2017-09-01 14:44:28 +00:00
Vincent Dumas
2562d33997
German Dictionnaries for iTop version 1.4 from Itomig
...
SVN:trunk[4888]
2017-09-01 08:33:35 +00:00
Guillaume Lajarige
a1e5b32e49
N°976 PHP Warning on not initialized variable $sHTMLValue in cmdbAbstractObject::GetFormElementForField().
...
SVN:trunk[4887]
2017-08-31 14:52:44 +00:00
Guillaume Lajarige
0c5df83a95
N°817 Portal: Linkset widget opening was throwing a warning message on IE9.
...
SVN:trunk[4886]
2017-08-31 14:42:33 +00:00
Guillaume Lajarige
cf79456ff3
N°583.2 Fixed regression introduced in r4861.
...
SVN:trunk[4885]
2017-08-31 13:34:50 +00:00
Romain Quetiez
a0a378a91a
N.948 - Obsolete objects become visible when navigating in paginated lists
...
SVN:trunk[4884]
2017-08-29 14:58:18 +00:00
Guillaume Lajarige
9cf42f6cc8
N°1002 Backup: '.' character in iTop instance path was causing a crash when trying to -temporary- replace them in the backup filename (due to compression lib limitations).
...
SVN:trunk[4883]
2017-08-29 14:30:46 +00:00
Denis Flaven
c022d12a0a
N°409 - completely remove the use of Flash (via Open Flash Charts), and therefore remove the php-ofc library. iTop now uses c3.js and d3.js instead.
...
SVN:trunk[4882]
2017-08-29 10:07:27 +00:00
Romain Quetiez
3d72060bf5
N.890.1 and N.890.2: build a new run time environment into a separate "build" directory, then commit it by the mean of quick and bullet proof file copies/moves. Not yet used in the setup.
...
SVN:trunk[4881]
2017-08-29 08:08:24 +00:00
Guillaume Lajarige
43709576c0
N°554.3 Not displaying actions menu in n:n in read mode.
...
SVN:trunk[4880]
2017-08-28 10:13:53 +00:00
Guillaume Lajarige
8ca6610e75
N°858.2 Fixed regression introduced in r4716 making DataSynchro menu hidden from the Admin menu
...
SVN:trunk[4879]
2017-08-25 13:10:31 +00:00
Guillaume Lajarige
b02d347541
N°977 DataSynchro: Creation and edition was broken due to the new object set API from ormLinkSet.
...
Backward compatible method have been introduce to ensure plugins and modules compatibility. That being said they are already flagged as deprecated and should not be used.
New: Using those deprecated methods will raise a PHP deprecated error.
SVN:trunk[4878]
2017-08-25 13:06:21 +00:00
Guillaume Lajarige
a39789cf89
N°782.2 Linkset menu actions open in a new tab in edition mode only.
...
SVN:trunk[4877]
2017-08-25 09:36:16 +00:00
Guillaume Lajarige
58534dca39
N°782.1 New configuration parameter 'allow_menu_on_linkset' (boolean, default value false) to display actions in linkset in view mode (new, modify, delete, ...)
...
SVN:trunk[4876]
2017-08-25 08:35:59 +00:00
Guillaume Lajarige
538e9c11e8
N°779 Date format handling in LinkedSetIndirect was causing fatal error on object edition.
...
SVN:trunk[4875]
2017-08-24 13:24:46 +00:00
Romain Quetiez
cba6e8d8a3
890.3 Fixed regression introduced in commit 4870 - fatal error during a MTP from the designer
...
SVN:trunk[4874]
2017-08-23 15:31:08 +00:00
Guillaume Lajarige
fd9fe85ef3
N°844 Portal: ExternalField support in forms was not properly supporting external key as readonly.
...
SVN:trunk[4873]
2017-08-23 14:39:58 +00:00
Guillaume Lajarige
7ed3e10d0f
N°978 Portal: Added cache delay to BrowseBrick item pictograms.
...
SVN:trunk[4872]
2017-08-22 12:34:12 +00:00
Guillaume Lajarige
fe98b850d1
N°978 Portal: Display / download of blob attributes and attachments in the portal was not compatible with portal configuration and silos by-passing.
...
SVN:trunk[4871]
2017-08-22 10:38:10 +00:00
Romain Quetiez
b1494d0dd9
N890.3 Archive mode toggle menu not visible after setup/MTP: the information is cached into the session and needs to be reset
...
SVN:trunk[4870]
2017-08-21 15:28:07 +00:00
Guillaume Lajarige
0655904683
N°849 Edition of an object with not allowed (silos) remote objects in a linkedset causes fatal error.
...
SVN:trunk[4869]
2017-08-21 10:12:19 +00:00
Guillaume Lajarige
bad5aff764
Internal: PHPDoc on some DBObjectSet methods.
...
SVN:trunk[4868]
2017-08-18 15:37:44 +00:00
Guillaume Lajarige
440f2639b5
N°498 Added some attributes to the HTML sanitizer (title for a tag, alt / title for img tag).
...
SVN:trunk[4867]
2017-08-18 13:59:49 +00:00
Guillaume Lajarige
5f2245595f
N°313 Show product name on branding logo title instead of a generic "iTop" text.
...
SVN:trunk[4866]
2017-08-18 13:50:33 +00:00
Guillaume Lajarige
03db4e7a14
N°934 Hierarchy button loading indicator was not hidden on HK selection.
...
SVN:trunk[4865]
2017-08-18 12:55:59 +00:00
Guillaume Lajarige
04030e07e3
Internal: Removed PHP notices in ajax call from autocomplete fields in the console
...
SVN:trunk[4864]
2017-08-17 15:47:32 +00:00
Guillaume Lajarige
80832877eb
N°984 Portal: Dependancies on autocomplete fields now works properly. (Changing value on a parent autcomplete was not resetting value on a dependant autocomplete field)
...
SVN:trunk[4863]
2017-08-17 15:21:17 +00:00
Guillaume Lajarige
aa63847502
N°991 Portal: Fixed a regression introduced in r4855 (N°743); request template selection was not working when several templates available.
...
SVN:trunk[4862]
2017-08-17 10:08:17 +00:00
Guillaume Lajarige
4171c5c35f
N°583 CSV Import now supports friendlynames as reconciliation keys. More over, read-only attributes (friendlyname, obsolescence flag, ...) are forced to reconciliation scheme.
...
SVN:trunk[4861]
2017-08-17 09:51:38 +00:00
Guillaume Lajarige
8e06a95502
N°844 Portal: ExternalField support in forms has been improved (1 file missing from previous commit)
...
SVN:trunk[4860]
2017-08-16 09:41:21 +00:00
Guillaume Lajarige
1c84934777
N°649 Stop displaying Ticket objects in a CI's ongoing tickets tab when the impact code is 'not impacted'.
...
SVN:trunk[4859]
2017-08-11 09:52:38 +00:00
Guillaume Lajarige
0294f50339
N°410 Modal dialog's height for CSV export partially hidden because no scrollbar available.
...
SVN:trunk[4858]
2017-08-10 14:45:20 +00:00
Guillaume Lajarige
33098943a1
N°744 Portal: Prevented LinkedSet corruption through simultaneous updates. In the portal are now update incremantally like in the console. This needs to be tested with both 1:n and n:n LinkedSet
...
SVN:trunk[4857]
2017-08-10 13:55:41 +00:00
Guillaume Lajarige
b953a6ab3e
N°377 Impact analysis: UI Glitch in tooltip when text was too long.
...
SVN:trunk[4856]
2017-08-09 15:09:35 +00:00
Guillaume Lajarige
7287cab6f4
N°743 Portal: Only editable fields are now passed in forms submit, fixing issue where a portal user could unwillingly change the UserRequest status if a Support Agent had assign the ticket while the portal user was editing.
...
SVN:trunk[4855]
2017-08-09 10:10:53 +00:00
Guillaume Lajarige
df4cad3ff1
N°844 Portal: ExternalField support in forms has been improved. For example, email and url links were not displayed as proper HTML.
...
SVN:trunk[4854]
2017-08-08 11:59:53 +00:00
Guillaume Lajarige
66b6206daf
N°949 Cleaned up old datamodel (1.x) as it was no longer maintained and could not be upgraded.
...
SVN:trunk[4853]
2017-08-03 10:11:39 +00:00
Guillaume Lajarige
6f40459215
N°952 Portal: Added UI extension APIs similar to those used in the console (Experimental!)
...
SVN:trunk[4852]
2017-08-02 11:30:30 +00:00
Guillaume Lajarige
24430e630f
N°969 Portal: ManageBrick tabs could show objects that were not supposed to be shown due to a bad OQL interpretation.
...
SVN:trunk[4851]
2017-08-01 14:14:32 +00:00
Guillaume Lajarige
3420db26a5
N°564 LoginWebPage title default value is now a dictionary entry ('UI:Login:Title'). Only english & french are available for now, feel free to contribute ! :)
...
SVN:trunk[4850]
2017-07-31 15:06:21 +00:00
Guillaume Lajarige
c27cafb02f
N°642 Portal: Fixed bug in new stimulus form algorithm
...
SVN:trunk[4849]
2017-07-28 15:01:51 +00:00
Denis Flaven
09a2dbc185
Bug fix: for archive and obsolescence flags: the parent class may be a pure PHP class. Use ParentPersisteClass instead.
...
SVN:trunk[4848]
2017-07-28 12:02:03 +00:00
Denis Flaven
015c5b7a96
Bug fix: protect the setup from a fatal exception when encountering a module with no version number.
...
SVN:trunk[4847]
2017-07-26 15:46:57 +00:00
Denis Flaven
4710ae6eb7
No change (just a comment for better typing return values)
...
SVN:trunk[4846]
2017-07-26 08:21:36 +00:00
Denis Flaven
c6b98dd5c1
Bug fix: do NOT scan the whole "data" directory searching for extensions !!
...
SVN:trunk[4845]
2017-07-26 08:19:13 +00:00
Denis Flaven
61d3a4e48f
(FAF for module developers): utilities to easily know the name/version/dir/URL of the current module and write module independent code !!
...
SVN:trunk[4844]
2017-07-21 13:55:22 +00:00
Denis Flaven
be4c1e2c1c
Bug fix: prevent a crash of the setup when there is no "extensions" directory at all.
...
SVN:trunk[4843]
2017-07-20 13:37:07 +00:00
Denis Flaven
6f499dd36e
N°954: don't use the same (re)naming scheme, or risk a "cannot redeclare class" error.
...
SVN:trunk[4842]
2017-07-20 13:32:46 +00:00
Guillaume Lajarige
03661158f1
N°934 Hierarchy button was no longer working when editing external key
...
SVN:trunk[4841]
2017-07-19 14:20:12 +00:00
Romain Quetiez
b9866008b2
Impact analysis: better error report if the data model defines redundancy on a unidirectional relation (make it easier to troubleshoot for consultants)
...
SVN:trunk[4840]
2017-07-19 12:53:38 +00:00
Guillaume Lajarige
2557d6e7d5
N°706 DBCollation config parameter is no longer forced during setup. It was for migrating iTop 2.0 but is now obsolete.
...
SVN:trunk[4839]
2017-07-18 13:41:51 +00:00
Guillaume Lajarige
79582b55a4
N°579: Creating an object with the [+] button on external key pointing to an abstract class.
...
SVN:trunk[4838]
2017-07-18 13:37:29 +00:00
Romain Quetiez
46b5293867
N.542, N.912 Finalized the API UserRights::Impersonate. This is an enabler for several enhancements.
...
SVN:trunk[4837]
2017-07-18 09:36:25 +00:00
Guillaume Lajarige
54ca6ad3d9
Portal: Improved debug informations on error page
...
SVN:trunk[4836]
2017-07-14 19:24:36 +00:00
Guillaume Lajarige
2ab8161182
N°911 Portal: Autocomplete fields were not showing all items when result count was below autocomplete display limit (eg. Showing only 2 elements out of 18 when display limit set to 20)
...
SVN:trunk[4835]
2017-07-13 11:39:36 +00:00
Romain Quetiez
3c7f5db5e7
N890.6 Obsolescence: if the expression defining the flag is evaluated to null, then consider the object as being NOT obsoleted. The workaround implemented in the reference datamodel has been removed (no need to use COALESCE anymore).
...
SVN:trunk[4834]
2017-07-13 09:36:57 +00:00
Vincent Dumas
e72bc65df8
Set Module id 2.4 and XML version 1.4
...
SVN:trunk[4833]
2017-07-12 09:19:24 +00:00
Denis Flaven
c039414adc
Don't add a question mark at the end of the setup's Iframe URL.
...
SVN:trunk[4832]
2017-07-12 08:51:34 +00:00
Romain Quetiez
d45cbb36f7
Regression introduced in the rework of N-N link edition. Parsing error on PHP 5.3
...
SVN:trunk[4831]
2017-07-11 15:11:46 +00:00
Romain Quetiez
ba5dd94240
Fixed a regression introduced by the new layout of forms in the console : notices issued on the transition form
...
SVN:trunk[4830]
2017-07-11 09:43:33 +00:00
Denis Flaven
fe84cbd978
Remove (once more...) a warning at the end of the setup...
...
SVN:trunk[4829]
2017-07-11 09:33:43 +00:00
Romain Quetiez
f8ddcc7b70
Releasing 2.4.0-beta
...
SVN:trunk[4828]
2017-07-11 08:27:51 +00:00
Vincent Dumas
c0d7737872
ReleaseNotes: rephrasing
...
SVN:trunk[4827]
2017-07-11 08:10:07 +00:00
Guillaume Lajarige
97e6c53add
Portal: Some fields were no longer mandatory due to a regression introduced by the flags on lifecycle
...
SVN:trunk[4826]
2017-07-10 15:48:50 +00:00
Vincent Dumas
68ac5d7300
DataModel: Remove Ticket Archiving by default
...
SVN:trunk[4825]
2017-07-10 13:44:09 +00:00
Vincent Dumas
e0eebc0b4e
ReleaseNote: 2.4. beta
...
SVN:trunk[4824]
2017-07-10 13:43:18 +00:00
Denis Flaven
fb28de971c
Remove a warning at the end of the setup...
...
SVN:trunk[4823]
2017-07-10 13:23:03 +00:00
Guillaume Lajarige
ae637c7c96
Console UI: Fixed glitch in object details layout
...
SVN:trunk[4822]
2017-07-10 10:01:03 +00:00
Denis Flaven
6bc24b6064
File names are now purely reltive to the module's root directory.
...
SVN:trunk[4821]
2017-07-10 09:49:50 +00:00
Guillaume Lajarige
db60dfb707
Console UI: Text fields validation fixed when coming back from fullscreen. Also, fixed seaarch dialog UI for ExtKeys
...
SVN:trunk[4820]
2017-07-10 09:44:31 +00:00
Vincent Dumas
ee2aa67959
DataModel: Obsolescence conditions, workaround a code issue by using COALESCE when an obsolescence condition can be NULL.
...
SVN:trunk[4819]
2017-07-10 07:59:53 +00:00
Guillaume Lajarige
eff42f5d3b
Console UI: OneWayPassword attribute are now displayed properly according to the new layout
...
SVN:trunk[4818]
2017-07-10 07:11:06 +00:00
Guillaume Lajarige
3a1810bc42
Console UI: Calendar icon for date(time) fields is now bigger.
...
SVN:trunk[4817]
2017-07-09 16:32:15 +00:00
Guillaume Lajarige
1f1ab2b10c
N°930 Better UI on object details part 2: Text type fields now handled properly and aligned with HTML type fields.
...
SVN:trunk[4816]
2017-07-09 13:44:42 +00:00
Denis Flaven
d0d9b1ce50
Improved way to track the choices made during the installation in order to:
...
1) Be able to proerly report this information
2) Make sure that the same (proper) choices are proposed upon update
SVN:trunk[4815]
2017-07-07 16:00:30 +00:00
Guillaume Lajarige
307145502c
N°930 Better UI on object details part 1. (Careful, Bulf modify and CSV import might be partly broken...)
...
SVN:trunk[4814]
2017-07-07 15:32:50 +00:00
Denis Flaven
5c84703cf0
Adding identifiers into the installation wizard.
...
SVN:trunk[4813]
2017-07-07 15:30:20 +00:00
Denis Flaven
cb2745be24
Bumping the datamodel version number to 2.4.0 !!
...
SVN:trunk[4812]
2017-07-07 15:28:42 +00:00
Denis Flaven
b613b9b302
Cosmetics on the asychronous DB connection message.
...
SVN:trunk[4811]
2017-07-07 15:27:32 +00:00
Denis Flaven
624f6bcfc5
Added a "Set" method.
...
SVN:trunk[4810]
2017-07-07 15:26:31 +00:00
Denis Flaven
ce2f1edaac
Identify the menu nodes by an ID for potential CSS styling.
...
SVN:trunk[4809]
2017-07-07 15:24:14 +00:00
Denis Flaven
140efb4240
Split of a too long code line !!
...
SVN:trunk[4808]
2017-07-07 15:23:20 +00:00
Romain Quetiez
e3847ac24b
Archive: Experimental API DBSearch::DBBulkWriteArchiveFlag, to quickly archive a huge number of objects (minimizes the number of queries needed to do the job, skips object change handlers, and DOES NOT RECORD the change in the history of object changes -that limitation could be fixed later)
...
SVN:trunk[4807]
2017-07-07 14:12:19 +00:00
Romain Quetiez
b583bd2edc
N.612 Regression introduced in the previous commit: on the setup conclusion page, the link to download the backup file does not work (and warning "unknown variable $sTruncatedFilePath')
...
SVN:trunk[4806]
2017-07-07 09:30:52 +00:00
Vincent Dumas
c654a2067d
Dictionnary: English: Labels on Modify AttributeDuration, aligned to display mode
...
SVN:trunk[4805]
2017-07-07 09:07:55 +00:00
Guillaume Lajarige
3531d5c5b7
Removed JS console.log usages that would have made IE9 crash
...
SVN:trunk[4804]
2017-07-06 15:55:02 +00:00
Romain Quetiez
e31fa066fc
N.612 Backup files could not exceed 4Gb (technology limitation). The fix consists in archiving the backup as a tar.gz instead of a zip. As a consequence, installing iTop now requires TWO additional PHP modules: phar/zlib. The zip module remains mandatory because it is used in other places. The restore utility accepts both legacy zip files and brand new tar.gz files. DBBackup::CreateZip is deprecated in favor of DBBackup::CreateCompressedBackup. DBRestore::RestoreFromZip is deprecated in favor of DBRestore::RestoreFromCompressedFile (which autodetects the format for backward compatibility).
...
SVN:trunk[4803]
2017-07-06 15:26:03 +00:00
Vincent Dumas
bc476295cb
DataModel: obsolescence conditions: Added: Contact, Location, Org. Modified: Hypervisor, Ticket
...
SVN:trunk[4802]
2017-07-06 14:54:20 +00:00
Vincent Dumas
98781fac6d
DataModel: Ticket obsolescence condition: fix issue with 'rejected' UserRequest which have no 'close_date'
...
SVN:trunk[4801]
2017-07-06 10:08:06 +00:00
Vincent Dumas
efeee395d1
DataModel: Bug on LogicalInterface obsolescence condition, status does not exist
...
SVN:trunk[4800]
2017-07-06 10:06:04 +00:00
Denis Flaven
b17505f86e
Larger area to be able to add an extra icon/menu if needed.
...
SVN:trunk[4799]
2017-07-05 15:17:16 +00:00
Vincent Dumas
f89dd77dbc
DataModel: definition of obsolescence condition per class
...
SVN:trunk[4798]
2017-07-05 14:31:17 +00:00
Vincent Dumas
f8b6fb51c2
Ticket transitions: 'reassign' force change of agent, agent and team in 'assigned' state are read-only, user satisfaction and user comment are read-only in 'closed' state.
...
In Enhanced Portal: 're-open' prompt for caselog and 'on-going tickets' brick has a modified label (english and french) and ticket count is now displayed on each tab.
SVN:trunk[4797]
2017-07-04 15:50:20 +00:00
Guillaume Lajarige
d80c2293dc
N°380 Fixed UI in console, object details that were going over their container sometimes
...
SVN:trunk[4796]
2017-07-04 11:58:40 +00:00
Guillaume Lajarige
3cecdeff1c
N°380 Fixed object header width in console UI.
...
SVN:trunk[4795]
2017-07-04 08:32:14 +00:00
Romain Quetiez
3f819eaa19
N.656 Allow DB writes during a backup
...
SVN:trunk[4794]
2017-07-04 06:55:41 +00:00
Guillaume Lajarige
01de060093
N°642 Portal: Flags on transition, fixed a bug with state form not reading DM flags correctly.
...
SVN:trunk[4793]
2017-07-03 15:37:11 +00:00
Denis Flaven
7c39a8baf1
[CKEditor] Enabled the "Source mode edition" button, by popular demand. Be aware that the resulting HTML source is anyhow filtered/validated/sanitized by CKEditor itself, then iTop.
...
SVN:trunk[4792]
2017-07-03 15:17:39 +00:00
Denis Flaven
ebcaaa089a
Updated CKEditor to the latest version (4.7.1)
...
SVN:trunk[4791]
2017-07-03 15:11:06 +00:00
Guillaume Lajarige
121635d636
N°642 Portal: Flags on transition part 3
...
SVN:trunk[4790]
2017-07-03 14:24:59 +00:00
Guillaume Lajarige
68885496dd
N°642 Portal: Flags on transition part 3, forms inheritance for stimuli.
...
SVN:trunk[4789]
2017-07-03 10:25:49 +00:00
Guillaume Lajarige
9a56c3acfd
N°642 Portal: Flags on transition part 2. Fixed a bug on transition with field that should have been must_xxx from DM
...
SVN:trunk[4788]
2017-07-03 07:33:46 +00:00
Guillaume Lajarige
a0259636b1
N°642 Portal: Flags on transition part 2
...
SVN:trunk[4787]
2017-07-03 06:57:36 +00:00
Romain Quetiez
0844beca79
Obsolescence: do not lose external keys pointing to obsolete data
...
SVN:trunk[4786]
2017-06-30 14:06:08 +00:00
Romain Quetiez
dbe3e94d5c
Obsolescence: audit errors reporting to include obsolete data as well as the audit execution does
...
SVN:trunk[4785]
2017-06-30 13:25:02 +00:00
Vincent Dumas
9a43083b3b
Fix typos in German dictionary for UI
...
SVN:trunk[4784]
2017-06-30 13:20:02 +00:00
Romain Quetiez
c6e472b98b
Archive mode: user preference "show obsolete data" is automatically checked, and disabled
...
SVN:trunk[4783]
2017-06-30 12:59:28 +00:00
Romain Quetiez
0834e36b38
Archive: fix dashboard management (edition, revert, from file) when archive mode is on
...
SVN:trunk[4782]
2017-06-30 12:51:09 +00:00
Romain Quetiez
f7cf825975
Archive: fix shortcut creation/renaming/deletion when archive mode is on
...
SVN:trunk[4781]
2017-06-30 12:21:28 +00:00
Romain Quetiez
189c03dfea
Obsolescence: count mismatch for the global search feature
...
SVN:trunk[4780]
2017-06-30 12:14:31 +00:00
Romain Quetiez
990be7a105
Archive mode: fixed the recording of user preferences
...
SVN:trunk[4779]
2017-06-30 10:00:38 +00:00
Romain Quetiez
813c80499c
Archive: fixed regression on the exports (N.890.8)
...
SVN:trunk[4778]
2017-06-30 08:21:43 +00:00
Guillaume Lajarige
495cedc04f
Fixed UI in console edit forms that were going over their container sometimes
...
SVN:trunk[4777]
2017-06-29 15:49:57 +00:00
Romain Quetiez
cbf2919dcd
Obsolescence: fixed the case when an external field points to an external key that is obsoletable (or archivable), causing an error during the setup (view could not be created)
...
SVN:trunk[4776]
2017-06-29 15:17:17 +00:00
Guillaume Lajarige
7cbdfaa5d4
Restoring /log/.htaccess filename which was renamed by mistake.
...
SVN:trunk[4775]
2017-06-29 08:29:33 +00:00
Guillaume Lajarige
374ce20d0c
N°642 Portal: Flags on transition
...
SVN:trunk[4774]
2017-06-29 08:03:35 +00:00
Romain Quetiez
1dbc2051cc
Obsolescence: fixed regression introduces in [r4766], count of 1-N link sets not matching the result set
...
SVN:trunk[4773]
2017-06-28 08:52:30 +00:00
Romain Quetiez
7e38d4be50
Fixed Regression introduced with the rework of N-N links (bug when creating software instances on a server)
...
SVN:trunk[4772]
2017-06-27 14:18:28 +00:00
Romain Quetiez
8451ffdfb4
Regression introduced with the implementation of obsolescence: first install not working (Access denied for user ''@localhost)
...
SVN:trunk[4771]
2017-06-27 13:58:38 +00:00
Romain Quetiez
c2b9716e28
Obsolescence: fixed OQL issue
...
SVN:trunk[4770]
2017-06-27 12:37:07 +00:00
Guillaume Lajarige
b15621639b
N°653: Dependant fields on transitions was not using transition flags.
...
SVN:trunk[4769]
2017-06-27 10:14:58 +00:00
Guillaume Lajarige
4ca998ce91
N°642 Portal: Transitions configuration part 1.
...
SVN:trunk[4768]
2017-06-26 16:00:07 +00:00
Guillaume Lajarige
71ec3da4ac
N°653 Portal: Lifecycle: Flags on transitions part 2
...
SVN:trunk[4767]
2017-06-22 13:38:45 +00:00
Romain Quetiez
43b8522b85
Rework of the edition of 1-N and N-N links: managed as a delta from the GUI down to the the lowest APIs.
...
- Fixes the management of obsolete linked data.
- N.744 Fixes concurrent modifications (example: a user modifies a team, another user modifies a person related to that same team). Still NOT fixed with the customer portal.
- N.849 Fixes links edition in the case some data are not allowed to the current user (organization silos) -TO BE TESTED
- #1145 Fixes the creation of duplicate links in one step (Server to NW Device)
- #1147 Fixes the update of duplicate links
SVN:trunk[4766]
2017-06-21 15:47:28 +00:00
Guillaume Lajarige
8b820ce403
N°900 Portal: Fixed wrong count on ManageBrick tabs
...
SVN:trunk[4765]
2017-06-20 15:28:31 +00:00
Guillaume Lajarige
4301a5d39d
Portal: Fixed page scrolling when clicking on FilterBrick's tile on home page.
...
SVN:trunk[4764]
2017-06-20 14:22:18 +00:00
Guillaume Lajarige
51519a3659
Portal: Added TWIG hooks for logo overloading in the navigation menu.
...
SVN:trunk[4763]
2017-06-20 09:54:02 +00:00
Romain Quetiez
2693e81bad
XML Customizations: when the parent class is unknown, the error is "unknown constant PARENT_NOT_FOUND"... which is a clue ;-)... now it says something far more accurate like "/itop_design/classes/class[MyCustomClass] at line 458: parent class 'SomeOtherCustomClass' could not be found"
...
SVN:trunk[4762]
2017-06-14 15:14:49 +00:00
Guillaume Lajarige
eca746f558
N°653 Ticket Lifecycle: Part 2, core & console done.
...
SVN:trunk[4761]
2017-06-09 07:06:40 +00:00
Denis Flaven
01865ed7f9
More meaningful default values for the version/revision of iTop.
...
SVN:trunk[4760]
2017-06-08 13:57:05 +00:00
Denis Flaven
14dfe04714
Instrumentation of the setup/compiler: dump the complete XML data model at the end of the installation.
...
SVN:trunk[4759]
2017-06-08 13:56:14 +00:00
Guillaume Lajarige
befa0b4429
N°900 Portal: Tabs in ManageBrick can now display the objects count.
...
SVN:trunk[4758]
2017-06-07 14:13:02 +00:00
Denis Flaven
68ff589f9c
(refactoring) Generate database and "instance" UUIDs upon installation/upgrade.
...
SVN:trunk[4757]
2017-06-06 14:00:10 +00:00
Denis Flaven
04e1f32860
(refactoring) Added a method to generate UUIDs.
...
SVN:trunk[4756]
2017-06-06 13:59:01 +00:00
Romain Quetiez
636356f479
N.897 Object having too many external keys could not be recorded (61 tables)
...
SVN:trunk[4755]
2017-06-01 12:44:21 +00:00
Guillaume Lajarige
313ea72017
Portal: Added icons to error page buttons
...
SVN:trunk[4754]
2017-05-31 09:01:02 +00:00
Guillaume Lajarige
98b4a0178f
Portal: Added a "Reload page" button on the error page.
...
SVN:trunk[4753]
2017-05-31 08:55:48 +00:00
Guillaume Lajarige
602be73d0b
N°873 Portal: Picture/Preferences/Password forms can now be disabled in the user profile
...
SVN:trunk[4752]
2017-05-29 16:14:21 +00:00
Guillaume Lajarige
9bfc9a0a76
Portal: New customization hooks in user profile twig
...
SVN:trunk[4751]
2017-05-29 15:10:35 +00:00
Guillaume Lajarige
7e6a040983
Portal: User profile form was broken due to new display_mode property
...
SVN:trunk[4750]
2017-05-29 14:50:57 +00:00
Guillaume Lajarige
905d47cab5
Portal: CKEditor fields now have different height regarding the form layout (cosy, compact, dense)
...
SVN:trunk[4749]
2017-05-23 13:15:22 +00:00
Romain Quetiez
2118a5da71
N.667 Metamodel introspection (schema.php) to display lifecycle labels and codes (though the code were already visible in a tooltip).
...
SVN:trunk[4748]
2017-05-22 15:35:16 +00:00
Romain Quetiez
c2c0221535
N.542 Refactored the code so that query placeholders (current_contact->attcode or current_user->attcode) become available in template too.... BUT this will not work if the notifications are sent asynchronously (thus the logged in user is an account dedicated to the cron).
...
SVN:trunk[4747]
2017-05-22 14:57:03 +00:00
Romain Quetiez
ba0a9709f4
Test: fixed automated tests that were abusively failing due to a few new magic attributes
...
SVN:trunk[4746]
2017-05-22 14:04:50 +00:00
Romain Quetiez
80121b89c3
Obsolescence: background task setting (or resetting) the obsolescence date for obsolete data. The periodicity can be tuned by the mean of obsolescence.date_update_interval, defaulting to 10 minutes. Also renamed show_obsolete_data into obsolescence.show_obsolete_data for consistency.
...
SVN:trunk[4745]
2017-05-19 09:20:13 +00:00
Romain Quetiez
3b48428897
Internal: DBObjectSearch->AddCondition, allow the case $value = null (otherwise failing because the keyword null has not yet been implemented in OQL)
...
SVN:trunk[4744]
2017-05-19 09:15:22 +00:00
Guillaume Lajarige
018d6a98e9
Portal: Debug mode now logs external keys OQL queries used in forms. Helpful to understand the final query (DM OQL intersect Scope OQL)
...
SVN:trunk[4743]
2017-05-19 08:51:59 +00:00
Guillaume Lajarige
522108dc69
N°879 Portal: Notification URLs poiting to a portal were not working when several portal instances were configured.
...
SVN:trunk[4742]
2017-05-19 08:30:34 +00:00
Romain Quetiez
5451ced894
Obsolescence: hide rows for which any of the selected class is obsolete (SELECT a, b FROM ...)
...
SVN:trunk[4741]
2017-05-17 13:22:56 +00:00
Romain Quetiez
944c24e18f
Internal: document variables to ease code browsing
...
SVN:trunk[4740]
2017-05-17 13:21:09 +00:00
Romain Quetiez
248f8d6fd4
Obsolescence: finalizing the implementation of the flag (hide obsolete objects, show an icon on hyperlinks and a tag on the object details, user preference defaulting to the new setting 'show_obsolete_data')
...
SVN:trunk[4739]
2017-05-17 08:51:10 +00:00
Guillaume Lajarige
ebe467b77a
N°635 Portal: Final touches on forms layout refactoring
...
SVN:trunk[4738]
2017-05-16 14:50:51 +00:00
Guillaume Lajarige
e9b7ccd475
Advanced customization: New overridable verb DBObject::GetDefaultValue($sAttCode)
...
SVN:trunk[4737]
2017-05-16 09:50:24 +00:00
Guillaume Lajarige
b213f2baea
N°635 Portal: Forms now have 3 differents layout (display_mode), see online documentation (when released) for more information.
...
SVN:trunk[4736]
2017-05-15 15:50:12 +00:00
Guillaume Lajarige
50970810d2
N°635 Portal: Forms now have 2 differents layout (display_mode), see online documentation (when released) for more information.
...
Note: This is a first step, some refactoring could be done soon.
SVN:trunk[4735]
2017-05-15 12:50:09 +00:00
Guillaume Lajarige
17fbc504e2
Internal: Added some PHP Doc in MetaModel class
...
SVN:trunk[4734]
2017-05-15 12:42:14 +00:00
Guillaume Lajarige
237980097d
Portal: Form field with custom css classes in twig definition were not included in the form. (Note: The CSS class is still absent from the rendering but this is because of the field_set.js widget that needs some upgrade in the _prepareField method)
...
SVN:trunk[4733]
2017-05-12 12:58:05 +00:00
Romain Quetiez
44b53e40a0
Obsolescence: introduction of this new concept (wording could change later). The obsolescence of an object is computed after other attributes, by the mean of an OQL expression. The code has been refactored (again) so as to factorize between the computation of friendly names and the computation of obsolescence flags. The refactoring involved a significant AND RISKY change: external key friendly names (magic attributes) have been changed from AttributeFriendlyName to AttributeExternalField, which simplifies the SQL query build logic.
...
SVN:trunk[4732]
2017-05-11 11:58:42 +00:00
Guillaume Lajarige
6c6ad0a45b
Portal: Fixed a regression introduced in r4724. User profile page could not be opened anymore.
...
SVN:trunk[4731]
2017-05-11 08:36:22 +00:00
Guillaume Lajarige
623fa8ec63
Portal: Fixed regression on always_show_submit form option
...
SVN:trunk[4730]
2017-05-10 15:48:57 +00:00
Guillaume Lajarige
02c79fd0a2
Portal: BrowseBrick: First level automatically opens when there is only one item in it, in order to display its subitems.
...
The opening of the root level is visible by the user so he can understand he is in a sublevel, not wondering where the root level went.
SVN:trunk[4729]
2017-05-10 15:22:13 +00:00
Guillaume Lajarige
05bb797768
Portal: Renamed Grid browse mode to Mosaic
...
SVN:trunk[4728]
2017-05-10 15:02:23 +00:00
Guillaume Lajarige
096cfdc529
Portal: BrowseBrick: Primary action is now also displayed in the secondary actions menu
...
SVN:trunk[4727]
2017-05-10 14:44:15 +00:00
Romain Quetiez
5354b0b32b
Internal: getting rid of the unused API GetExtKeyFriends, which initialization was not compatible with the declaration of <extkey>_friendlyname as external fields
...
SVN:trunk[4726]
2017-05-10 14:34:40 +00:00
Guillaume Lajarige
88ec528071
N°635 Portal: Submit button in edit forms is now labelled "Update"
...
SVN:trunk[4725]
2017-05-10 14:33:44 +00:00
Guillaume Lajarige
5584d42813
N°635 Portal: Parameter to show submit ("Update") button in forms only when there is no transition available.
...
SVN:trunk[4724]
2017-05-10 14:28:07 +00:00
Vincent Dumas
b696b140b2
Fix typo in french label of lnkContractToDocument class name
...
SVN:trunk[4723]
2017-05-09 16:34:03 +00:00
Guillaume Lajarige
1de6ac1765
Portal: AttributeImage can now be displayed in forms
...
SVN:trunk[4722]
2017-05-09 12:27:25 +00:00
Romain Quetiez
d2d895fdf5
Archives: regression. Forms not working with various symptom having the same root cause: DBObject::Set issuing an exception "Attempting to set the value on the read-only attribute operational_status"
...
SVN:trunk[4721]
2017-05-09 12:07:43 +00:00
Romain Quetiez
a8ad3004ea
Internal:
...
- code refactoring to generalize attributes based on an OQL expression (friendly name, obsolescence flag, ....). The intermediate class AttributeComputedFieldVoid has been swept in favor of the use of a new method: IsBasedOnOQLExpresssion.
- added an introspection API (experimental), allowing an external application to request for information about the capabilities of the framework (first step: list attributes and their main characteristics)
SVN:trunk[4720]
2017-05-05 15:08:49 +00:00
Guillaume Lajarige
b707db9364
Portal: Fixed action rules that were not working on CreateBrick
...
SVN:trunk[4719]
2017-05-03 14:29:48 +00:00
Guillaume Lajarige
36c53249a0
Portal: Performance optimization on ManageBrick
...
SVN:trunk[4718]
2017-05-03 12:39:25 +00:00
Guillaume Lajarige
f9ed88a084
Internal: OQL error reporting
...
SVN:trunk[4717]
2017-05-02 09:11:00 +00:00
Romain Quetiez
294964b227
N.858 (partial) Allow administrators to access the Admin tools menu even in Read-only modes (access_mode or Archive mode). Still, the Data administration menu gets hidden in Read-only modes.
...
SVN:trunk[4716]
2017-04-28 14:11:00 +00:00
Guillaume Lajarige
8a6fba1981
Portal: SecurityHelper now uses a cache when checking if an object is within a scope or not.
...
SVN:trunk[4715]
2017-04-28 09:46:05 +00:00
Guillaume Lajarige
1fe0ce5640
Portal: Optimize security helper by removing unnecessary MetaModel::GetObject() call as the check was already done by the scope query. This as significative impact on some pages.
...
SVN:trunk[4714]
2017-04-28 08:31:30 +00:00
Guillaume Lajarige
7bbe907edc
Portal: ManageBrick optimization by loading "always_in_tables" attributes to avoid unnecessary object reloads
...
SVN:trunk[4713]
2017-04-28 08:20:21 +00:00
Romain Quetiez
6f7d364826
Cleanup: removed unnecessary code
...
SVN:trunk[4712]
2017-04-27 16:03:23 +00:00
Romain Quetiez
ea2681e08c
Archives: added the option with_archive to export web services (defaults to 0)
...
SVN:trunk[4711]
2017-04-27 15:03:24 +00:00
Romain Quetiez
c66728e478
Cleanup: unused code
...
SVN:trunk[4710]
2017-04-27 14:02:02 +00:00
Guillaume Lajarige
ba9c6bd8b3
Portal: Twig cache is now disabled when debug option is activated
...
SVN:trunk[4709]
2017-04-27 13:30:54 +00:00
Romain Quetiez
b23b468c0f
Cleanup: unused code
...
SVN:trunk[4708]
2017-04-27 12:54:18 +00:00
Romain Quetiez
f5144c2bb1
Archives: filter out archived objects from the impact analysis, even when in Archive Mode
...
SVN:trunk[4707]
2017-04-27 12:42:50 +00:00
Guillaume Lajarige
ee95dd2480
Portal: Worked on some CSS optimizations in forms
...
SVN:trunk[4706]
2017-04-27 11:40:05 +00:00
Guillaume Lajarige
c1805ce47f
Portal: Person form defined in order to restrict the visible attributes
...
SVN:trunk[4705]
2017-04-27 11:39:05 +00:00
Romain Quetiez
23556e3a43
Archives: clean breadcrumb entry if attempting to navigate to the details of an archived object (while not being in archive mode)
...
SVN:trunk[4704]
2017-04-27 09:56:05 +00:00
Romain Quetiez
e70e1de75e
Archives: archivability must be set on root classes
...
SVN:trunk[4703]
2017-04-27 09:27:02 +00:00
Romain Quetiez
091b989715
Internal: if an exception is thrown during the initialization of MetaModel, do not attempt to report it into the database (may still be not initialized)
...
SVN:trunk[4702]
2017-04-27 09:17:39 +00:00
Romain Quetiez
b238283104
Archives: show the menu 'activate archive mode' only if there is at least one archivable class
...
SVN:trunk[4701]
2017-04-27 08:53:23 +00:00
Romain Quetiez
de2eed5187
Archives: allow for the update of archive_flag even when in archive mode (therefore in read-only mode)
...
SVN:trunk[4700]
2017-04-27 08:45:07 +00:00
Romain Quetiez
8e046cafda
Archives: default label for the magic attributes archive_flag and archive_date
...
SVN:trunk[4699]
2017-04-27 08:43:45 +00:00
Guillaume Lajarige
f02df401ff
Portal: Primary action on a ServiceSubcategory of the services catalog is now the creation of a new UserRequest. Previous one (Viewing details of the ServiceSubcategory) now becomes the secondary action.
...
SVN:trunk[4698]
2017-04-27 08:23:53 +00:00
Romain Quetiez
28eba2512a
Archives: cosmetics on object details
...
SVN:trunk[4697]
2017-04-26 15:48:57 +00:00
Romain Quetiez
e3931274ae
Archives: refactoring of the API to enable/disable the archive mode
...
SVN:trunk[4696]
2017-04-26 15:48:24 +00:00
Guillaume Lajarige
a55245d203
Portal: Minor CSS fixes on Combodo BS theme.
...
SVN:trunk[4695]
2017-04-26 14:54:24 +00:00
Guillaume Lajarige
7b0acbdad3
Portal: BrowseBrick: Introducing new browse mode "grid". Also some UI improvements in other browse modes.
...
SVN:trunk[4694]
2017-04-26 13:20:31 +00:00
Romain Quetiez
9cc583c47b
Archives: regression (warning during the setup)
...
SVN:trunk[4693]
2017-04-26 10:27:25 +00:00
Romain Quetiez
fa2fd6dcdf
NEW! Archiving data. Archiving is a soft delete. It can be undone. Enter the archive mode to see all the data including archives (everything is read-only in that mode). Archiving must be enabled per class (data model). Archiving is achieved by the mean of the API DBObject::Archive (or Unarchive).
...
SVN:trunk[4692]
2017-04-26 09:52:20 +00:00
Guillaume Lajarige
9d242e1623
N°848 Portal: Option to display LinkedSet as opened in a form
...
SVN:trunk[4691]
2017-04-26 09:10:24 +00:00
Romain Quetiez
ec6a8537e9
Refactoring: font awesome can be used by all the application
...
SVN:trunk[4690]
2017-04-25 13:48:22 +00:00
Romain Quetiez
402e95b9e2
Reincorporate font-awesome into the core
...
SVN:trunk[4689]
2017-04-25 13:24:37 +00:00
Guillaume Lajarige
2fcf50bb88
N°653 Lifecycle flags can be defined on both states and transitions (Note: This is a beta version and need to be tested!)
...
SVN:trunk[4688]
2017-04-21 14:59:04 +00:00
Guillaume Lajarige
2e8c629195
N°829 Portal: AttributeUrl was not clickable in the new portal
...
SVN:trunk[4686]
2017-04-19 15:36:00 +00:00
Guillaume Lajarige
9c5b3818eb
Portal: Refactor a security check to remove unnecessary security messages in error.log
...
SVN:trunk[4684]
2017-04-18 13:51:25 +00:00
Denis Flaven
c9bb27a3ff
Declare the ApplyStimulus method, for use by the Designer.
...
SVN:trunk[4683]
2017-04-18 13:29:46 +00:00
Vincent Dumas
f96a2092e7
Readme iTop Community 2.3.4
...
SVN:trunk[4681]
2017-04-14 15:34:07 +00:00
Vincent Dumas
5dafb92dd3
LOCK TABLE MySQL privilege is required for iTop user to restore backups.
...
SVN:trunk[4679]
2017-04-13 09:46:07 +00:00
Guillaume Lajarige
63f0a0ef11
Internal: Added comment about portal logo priority order
...
SVN:trunk[4678]
2017-04-12 07:50:45 +00:00
Romain Quetiez
bb9236deae
N.816 New parameter in the working time computer GetDeadline API: the 4th parameter is the threshold for which the deadline is being computed.
...
SVN:trunk[4675]
2017-04-06 19:07:08 +00:00
Romain Quetiez
1a66a6491a
N.755 Case log preset by object copier is not correcly displayed in the object creation form (if combined with the copy of the previous log AND if that log has at least one entry). Has never worked.
...
SVN:trunk[4672]
2017-04-06 18:44:34 +00:00
Guillaume Lajarige
1528d85f5f
N°637 Portal: Better feedback on exceptions and user session timeout on AJAX calls
...
SVN:trunk[4671]
2017-04-06 14:21:27 +00:00
Romain Quetiez
3773a88cc1
N.417 Object name displayed with html entities (e.g. "&" shown as "&") when selecting/creating an object into an autocomplete
...
SVN:trunk[4670]
2017-04-05 14:39:13 +00:00
Romain Quetiez
856a73fb87
N.689 61 tables limit. INVESTIGATING the issue. Added a test to reproduce the issue on the standard data model, and a test to build statistics on the number of tables used by classes.
...
SVN:trunk[4669]
2017-04-05 12:58:33 +00:00
Romain Quetiez
d0bc9a0bb8
Automatic test suite: fixed warnings (benchmarked queries processed instantaneously);
...
SVN:trunk[4668]
2017-04-05 10:26:43 +00:00
Romain Quetiez
751b7c8560
N.755 Case log latest entry preset with a copy of a case log coming from another ticket. The log gets corrupted after adding a new entry.
...
SVN:trunk[4666]
2017-04-04 12:58:02 +00:00
Guillaume Lajarige
4fccae157b
Portal: CaseLog fields value was kept in the form after object update instead of being reset.
...
SVN:trunk[4664]
2017-04-04 10:17:17 +00:00
Romain Quetiez
85dc7c9452
N.755 Case log latest entry preset with HTML code gets transformed into pure text
...
SVN:trunk[4662]
2017-04-04 09:25:02 +00:00
Guillaume Lajarige
1cf25e49ae
N°807 Portal: add_to_list can now be used in action rules (Note: Works only for IndirectLinkedSet, not LinkedSet)
...
SVN:trunk[4660]
2017-04-04 09:07:06 +00:00
Guillaume Lajarige
ab6cd49fcb
Portal: Fixed friendlyname fields rendered as mandatory when they should have been readonly.
...
SVN:trunk[4658]
2017-04-04 08:01:47 +00:00
Romain Quetiez
5411e60c81
N.755 (reduces the impact) Core API: Fixed the merging of several entries into a case log (calling several times DBObject::Set for a case log). The previous implementation did not work at all, leaving the data structure inconsistent. Moreover, the last text given is now inserted AFTER the text it is merged with (not on top of it) like in a normal text stream.
...
SVN:trunk[4657]
2017-04-03 20:56:47 +00:00
Denis Flaven
15da430459
N°686 - protect the edition of dashboards against a no-longer-existing class.
...
SVN:trunk[4655]
2017-04-03 14:49:49 +00:00
Romain Quetiez
5adb0fd556
N.447 Impact analysis: messing up redundancy settings (could either lead to wrong results or a fatal error if a relation is configured downstream)
...
SVN:trunk[4653]
2017-04-03 13:59:06 +00:00
Guillaume Lajarige
2876d7e08c
N°806 Portal: Wrong form used in some inheritance cases.
...
SVN:trunk[4651]
2017-04-03 11:57:29 +00:00
Romain Quetiez
59c3f565a3
Fixes a regression introduced in [r4642]. N.450 Impact analysis. The previous fix aimed at generating more redundancy nodes, but in fact it generated too many in some circumstances.
...
SVN:trunk[4649]
2017-04-01 20:05:14 +00:00
Guillaume Lajarige
86191b36d8
DBObject::ExecActions : add_to_list action now accepts the source object id as first parameter
...
SVN:trunk[4647]
2017-03-31 15:18:50 +00:00
Vincent Dumas
b737252076
n°519 add examples to REST/JSON on updating CaseLog with Text format
...
SVN:trunk[4646]
2017-03-31 15:17:23 +00:00
Romain Quetiez
e688d04511
N.788 Impact analysis: graph not refreshed when trying to filter out some classes. The node removal algorithm has been improved in two places. 1) Do not create loops (i.e. an edge having both ends on the same node) when removing a node. 2) Correctly cleanup nodes having a loop (in case there is a loop in the original graph (defensive programming)
...
SVN:trunk[4644]
2017-03-31 14:48:30 +00:00
Romain Quetiez
76fd5c0b5f
N.450 Impact analysis : missing edges (and redundancy) when two classes impact a given class and both relations use the same neighbour id (and if redundancy is enabled over both relations)
...
SVN:trunk[4642]
2017-03-31 14:34:43 +00:00
Guillaume Lajarige
d944f386ce
N°800 Portal: log_kpi_duration / log_kpi_memory are now supported by the portal
...
SVN:trunk[4640]
2017-03-31 12:59:35 +00:00
Guillaume Lajarige
9f9fd8550f
N°804 Portal: Object display crashed when a linkedset attribute has corrupted data (eg. an external key to 0)
...
SVN:trunk[4638]
2017-03-31 10:09:51 +00:00
Romain Quetiez
772954711a
N.799 Setup failing (during database creation) with MetaEnum attribute having no mapping for the class they are declared in.
...
SVN:trunk[4636]
2017-03-30 19:23:43 +00:00
Romain Quetiez
3644553886
N.609 Some multi-column UNION queries failing with various symptoms such as "Class 'IT Department' not found" or "An object id must be an integer value"
...
SVN:trunk[4634]
2017-03-29 19:58:02 +00:00
Romain Quetiez
c073611597
N.710 Do not notify ignored when the impacted items is computed again. Side effect: PHP Notice: Undefined offset: N in .../itop-tickets/main.itop-tickets.php on line 263.
...
SVN:trunk[4632]
2017-03-29 10:02:14 +00:00
Romain Quetiez
802d20d554
N.780 Friendly name format ignored if only one attribute is used
...
SVN:trunk[4630]
2017-03-29 09:22:39 +00:00
Romain Quetiez
38c12104b3
N.740 Error when attempting to disable the logs. Took the opportunity to refactor, relying on late static bindings (requires PHP 5.3). The refactoring avoided the fix to be duplicated in three places.
...
SVN:trunk[4628]
2017-03-29 08:28:24 +00:00
Romain Quetiez
399662ef99
N.701 (continuation of [r4596] which introduced regressions on the handling of date fields)
...
SVN:trunk[4626]
2017-03-28 14:56:52 +00:00
Denis Flaven
3daf4c62db
- Refactoring : structuration of the Exceptions thrown when the XML assembling fails
...
- Take into account the node specified as a parameter to saveXML()
SVN:trunk[4624]
2017-03-27 16:24:50 +00:00
Guillaume Lajarige
9937f62f9d
N°641 Portal: Browse and Manage bricks now have an optional <opening_target> tag to choose how to open items (modal, new tab, current window).
...
SVN:trunk[4623]
2017-03-24 09:09:15 +00:00
Romain Quetiez
cf17e197ce
N.760 XSS vulnerability
...
SVN:trunk[4621]
2017-03-23 16:32:56 +00:00
Romain Quetiez
2f8b5e5eeb
N.519 REST/JSON Add a comment in pure text into the case log (only for add_item/items syntaxes, use format="text")
...
SVN:trunk[4619]
2017-03-23 15:16:30 +00:00
Romain Quetiez
d22fb83443
N.736 Ugly labels when hovering bar charts
...
SVN:trunk[4617]
2017-03-23 14:52:57 +00:00
Romain Quetiez
af093ba86a
N.692 Config setting log_queries does not work? This setting has been deprecated (use log_kpi_duration instead) - Still the implementation of query logging remains (and is buggy) as it may be usefull in order to record and rebuild a complete set of queries.
...
SVN:trunk[4615]
2017-03-23 09:09:45 +00:00
Romain Quetiez
020f47ab2c
Code cleanup: removed unused code
...
SVN:trunk[4614]
2017-03-22 21:24:50 +00:00
Romain Quetiez
8f0095f751
N.718 (continuation) Audit failing with message "Attempting to merge a filter of class A with a filter of class B" (regression introduced in branch 2.3)....
...
SVN:trunk[4612]
2017-03-22 20:59:33 +00:00
Romain Quetiez
b7fc2e4012
N.718 Audit failing with message "Attempting to merge a filter of class A with a filter of class B" (regression introduced in branch 2.3). There are circumstances for which the queries cannot (yet) be optimized (fallback to the original algorithm)
...
SVN:trunk[4611]
2017-03-22 20:53:40 +00:00
Guillaume Lajarige
1dcf830141
N°783 Attachments can now be readonly in some states. Use the new module parameter "readonly_states".
...
SVN:trunk[4610]
2017-03-22 15:08:34 +00:00
Romain Quetiez
a10cdaba74
N.779 PARTIAL FIX - Date fields in link sets cannot be edited if the date format differs from the native format (Y-m-d). Homogeneous way to call the API GetFormElementForField, with GetEditValue as the "display value". Still, submitting the form does not work.
...
SVN:trunk[4609]
2017-03-22 13:39:48 +00:00
Romain Quetiez
435a177283
Suppressed warnings due to the error reporting. When one of the arguments in the call stack is an array, a warning (Conversion of an array into a string) is issued at the time the EventIssue is being recorded. When a posted parameter is an array, the same warning is issued at the time and EventIssue is being displayed.
...
SVN:trunk[4608]
2017-03-22 12:43:12 +00:00
Vincent Dumas
d22d657886
#1439 fix erroneous internal comments within XML files
...
SVN:trunk[4607]
2017-03-21 17:35:38 +00:00
Guillaume Lajarige
1da5618204
N°606 Portal: Request template fields marked as invalid when a mandatory textarea field was empty.
...
SVN:trunk[4605]
2017-03-21 09:53:57 +00:00
Vincent Dumas
318c069f3d
Corrigé une typo dans un dictionnaire français
...
SVN:trunk[4604]
2017-03-17 13:32:30 +00:00
Denis Flaven
d0267f60ae
Make sure that the generated form field's IDs are valid ones.
...
SVN:trunk[4602]
2017-03-17 13:20:01 +00:00
Denis Flaven
ea3c7703c4
XML format 1.4, introducing the new "force" flag.
...
SVN:trunk[4601]
2017-03-17 13:15:13 +00:00
Guillaume Lajarige
95e04178ea
N°636 Portal: Action buttons can now be added to object details page through the iPopupMenuItemExtension
...
SVN:trunk[4600]
2017-03-17 13:03:09 +00:00
Denis Flaven
cf0792cd64
More events from the property_field widgets to inform the enclosing form of the state changes.
...
SVN:trunk[4598]
2017-03-17 10:55:06 +00:00
Romain Quetiez
e41a8833e2
N.701 Data Synchro: dates can be reset by the mean of an empty string (still, integers and enums cannot be reset)
...
SVN:trunk[4596]
2017-03-17 09:14:11 +00:00
Romain Quetiez
0b2ce4289d
738 Setup not working if access_mode=2 and a synchro data source has a new attribute to create
...
SVN:trunk[4594]
2017-03-16 15:22:19 +00:00
Guillaume Lajarige
a13270ef91
N°772 Portal: Invalid URL in LinkedSet searchbox when editing an object (eg. Adding a Contact to an UserRequest)
...
SVN:trunk[4592]
2017-03-16 13:14:45 +00:00
Guillaume Lajarige
64ca121f5b
Portal: Used BS breadcrumb in BrowseBrick instead of the previous which was home-made.
...
SVN:trunk[4591]
2017-03-15 17:03:32 +00:00
Romain Quetiez
0a5708272d
N.678 Data synchro: a line break or '<' in the description breaks the synchronized objects edition form.
...
SVN:trunk[4589]
2017-03-15 14:41:12 +00:00
Guillaume Lajarige
fec15ffe66
Portal: FilterBrick: Value for placeholder and submit button can now be empty
...
SVN:trunk[4588]
2017-03-14 16:09:13 +00:00
Guillaume Lajarige
0b0340bf21
Internal: CSS optimization on portal BrowseBrick
...
SVN:trunk[4587]
2017-03-14 15:42:29 +00:00
Romain Quetiez
cf716ce2a3
N.598 Custom fields with autocomplete failing if the subfield depends on another subfield
...
SVN:trunk[4585]
2017-03-14 15:20:50 +00:00
Guillaume Lajarige
5ebcb41224
Portal: Added breadcrumbs to grid mode of the BrowseBrick
...
SVN:trunk[4584]
2017-03-14 13:59:05 +00:00
Romain Quetiez
2d9c0e16b9
N.569 Enable the browser built-in spell checker for the rich text editor
...
SVN:trunk[4582]
2017-03-14 13:42:20 +00:00
Romain Quetiez
20e0ab3d6e
N.453 Emails coming from outlook. Many line breaks added when editing the ticket
...
SVN:trunk[4580]
2017-03-14 13:16:42 +00:00
Vincent Dumas
d94ccc441a
N°675 enriched Dutch Dictionnaries for Enhanced portal
...
SVN:trunk[4579]
2017-03-14 09:49:58 +00:00
Vincent Dumas
fdff9e048b
N°759 French Dictionnary typo on closed ticket value
...
SVN:trunk[4578]
2017-03-13 17:29:31 +00:00
Vincent Dumas
64e1d7e276
Problem management: german translations on values for field 'impact' were upside down compared to english values. Value 1 means high impact in all langage but German where is was 'Eine Person'. German has been aligned. German users, be cautious when upgrading to migrate your data.
...
SVN:trunk[4577]
2017-03-13 17:19:32 +00:00
Vincent Dumas
5f82c78dc7
#1314 (N°585,586,591) allow to use finalclass (sub-class name) as reconciliation key when loading by CSV import, relationship defined on an abstract class.
...
#1387 (N°577) fixing old issue with CSV import of relationship with Documents
SVN:trunk[4576]
2017-03-13 16:56:03 +00:00
Guillaume Lajarige
b3a0c6119e
N°762: Portal: New filter brick that pre-filters a Browse or Manage brick results from the home page.
...
SVN:trunk[4575]
2017-03-13 14:06:43 +00:00
Romain Quetiez
342ac0444c
N.757 Server log filled with warnings (ContextTag::Check)
...
SVN:trunk[4573]
2017-03-10 14:32:32 +00:00
Vincent Dumas
d9469360fe
N°582 Typo on french user message used when changing user password
...
SVN:trunk[4572]
2017-03-09 10:41:37 +00:00
Vincent Dumas
0df420cd17
N°723 help message enhancement on 4th setup screen, about MySQL user required rights.
...
SVN:trunk[4571]
2017-03-08 14:16:29 +00:00
Guillaume Lajarige
ab44522016
N°636: Portal: Dictionnary entries can now be used in forms' twig (usage: {{'EntryToTranslate'|dict_s}}). Also, special characters (like 'é') are now supported.
...
SVN:trunk[4570]
2017-03-08 09:58:12 +00:00
Guillaume Lajarige
bc875653d2
Internal: Portal: Grid display optimization on BrowseBrick
...
SVN:trunk[4569]
2017-03-07 16:23:48 +00:00
Guillaume Lajarige
ee41204d6c
N°565: Portal user and Portal power user scopes alignment in "Closed tickets" brick.
...
SVN:trunk[4568]
2017-03-07 14:53:57 +00:00
Guillaume Lajarige
c4d1113bb8
N°634: BrowseBrick Windows 8-style display (tiles). This is still a beta version.
...
SVN:trunk[4567]
2017-03-07 14:25:09 +00:00
Guillaume Lajarige
6582569150
Portal: Fixed home page <body> CSS class
...
SVN:trunk[4566]
2017-03-03 14:33:42 +00:00
Guillaume Lajarige
69d0ceaf5b
Portal: Added CSS classes to <body> tag regarding the current page / brick so we can apply CSS style more precisely.
...
SVN:trunk[4565]
2017-03-03 13:09:08 +00:00
Denis Flaven
60165d5216
Bug fix: load modules before generating the WSDL file, since some modules may come with their own webservices.
...
SVN:trunk[4563]
2017-02-28 14:10:11 +00:00
Guillaume Lajarige
76ca7dc9e8
N°602: InlineImage "randomly" not available for display.
...
Adding an InlineImage while adding an object in a IndirectLinkedSet at the same time would attach the InlineImage to the linked object instead of the host one. If their organizations were different, it could result in a security issue, denying the display of the InlineImage.
SVN:trunk[4561]
2017-02-28 09:47:24 +00:00
Denis Flaven
fcc5342775
Bug fix: protect against a non existing Contact class (a rather drastic iTop customization!)
...
SVN:trunk[4559]
2017-02-24 14:09:44 +00:00
Guillaume Lajarige
b4534f455a
Internal: Fixed the usage of a private function (from Symfony ExceptionHandler) in a derivated class (iTop ExceptionHandler).
...
SVN:trunk[4558]
2017-02-23 10:49:16 +00:00
Guillaume Lajarige
0d3203476c
N°589 - Portal: Displaying a better error message when the portal crashes because the current contact's organization is not among the current user's allowed organizations. More over we introduced an exception handler to display a nicer web page and log the exception in the error log.
...
SVN:trunk[4557]
2017-02-23 10:07:12 +00:00
Guillaume Lajarige
9fa6157c37
N°587 - Portal: Fixed issue when using multiple action rules in a BrowseBrick and only one was actually used.
...
SVN:trunk[4556]
2017-02-21 14:26:07 +00:00
Guillaume Lajarige
2ee674f11b
N°620 - Fixed regression introduced in r4519: Portal: Url in notifications were broken since iTop 2.3.3.
...
SVN:trunk[4554]
2017-02-21 09:06:03 +00:00
Guillaume Lajarige
820d7108e4
N°633 - Portal: CreateBrick now accepts abstract classes. This is a refactoring from an extension (CreateBrickExtended) that has been merge into the core.
...
SVN:trunk[4553]
2017-02-21 08:10:47 +00:00
Guillaume Lajarige
9a6a562ed2
N°619 - Portal: Other allowed portals (eg. the administration console or other portal instances) can now be opened in the current window or a new tab. This is a new xml property of the portal instance.
...
SVN:trunk[4552]
2017-02-21 08:04:46 +00:00
Guillaume Lajarige
f3f9e98aa4
Portal: Added some hooks in the main twig template
...
SVN:trunk[4551]
2017-02-10 10:06:38 +00:00
Denis Flaven
fc375da128
N° 615: spreadsheet export enhancement to remove unneeded line breaks.
...
SVN:trunk[4549]
2017-01-31 13:26:12 +00:00
Denis Flaven
172ceba464
N° 615: fixing the spreadsheet export (for integration into Excel) for HTML formatted text fields (e.g. ticket's description).
...
SVN:trunk[4547]
2017-01-18 15:17:07 +00:00
Guillaume Lajarige
ecae7ea983
Portal: Browse brick: List was displaying pagination when not necessary in some circonstancies.
...
SVN:trunk[4546]
2017-01-16 13:08:45 +00:00
Guillaume Lajarige
a204a786c0
Portal: Browse brick: Filtering in list view now looks up in all the displayed fields (<name_att /> and <fields /> of the brick configuration)
...
SVN:trunk[4545]
2017-01-11 16:32:37 +00:00
Denis Flaven
79a2ab8abd
Getting ready for the release of iTop 2.3.3.
...
SVN:trunk[4542]
2016-12-22 15:14:04 +00:00
Guillaume Lajarige
af13b42eab
Legacy portal: Since iTop 2.3, plain text caselog entries can no longer be toggled due to a bad jQuery selector. Only HTML entries were working.
...
SVN:trunk[4541]
2016-12-21 13:10:15 +00:00
Denis Flaven
75721091f2
Updated Russian dictionary, thanks to Vladimir Kunin.
...
Note: you can always get the latest version on Vladimir's github: https://github.com/itop-itsm-ru/itop-rus .
SVN:trunk[4540]
2016-12-19 16:34:23 +00:00
Romain Quetiez
6e327e245b
N.497 Continuation of the fix done in [r4461], to correctly handle validation patterns containing a slash (AttributeURL in the enhanced customer portal). The initial fix has broken the validation of date (+time) fields because the slash was escaped twice, leading to an invalid regular expression. Requires testing of synchro, CSV import, console, customer portal...
...
SVN:trunk[4538]
2016-12-19 16:04:21 +00:00
Guillaume Lajarige
6bfead405d
N.551: Correcting spanish translations in the new portal (When creating a new user request in full ITIL or changing password)
...
SVN:trunk[4536]
2016-12-19 10:15:46 +00:00
Denis Flaven
a4f5620076
N. 549: "Font" menu broken in case logs (console and legacy portal). The menu was showing <> instead of font names.
...
SVN:trunk[4534]
2016-12-19 10:09:48 +00:00
Guillaume Lajarige
134a427901
Portal: Added german dictionnary
...
SVN:trunk[4532]
2016-12-16 09:13:43 +00:00
Guillaume Lajarige
27c3facb2b
Portal: Added an environment banner in the portal like in the console. It warns the user when he is browsing in an other mode than "production".
...
SVN:trunk[4531]
2016-12-15 15:02:26 +00:00
Denis Flaven
fa9848d1be
CKEditor version 4.6.1 + color dialog (for choosing the color of a table cell)
...
SVN:trunk[4530]
2016-12-14 16:45:22 +00:00
Denis Flaven
1afd7d2ae4
Exclude non-needed folders from the build.
...
SVN:trunk[4529]
2016-12-14 15:53:20 +00:00
Guillaume Lajarige
c622efe95c
Portal: Added itopversion to js/css file urls to prevent cache issues when upgrading.
...
SVN:trunk[4526]
2016-12-14 11:20:49 +00:00
Denis Flaven
c0949421ad
Support of the "target" attribute for links.
...
SVN:trunk[4524]
2016-12-14 11:16:12 +00:00
Romain Quetiez
0e21edcc77
N.561 Could not add images into the description of a ticket in the legacy portal, and losing images added into the case log (update from the portal, issue occuring when the CRON is enabled)
...
SVN:trunk[4521]
2016-12-13 16:55:16 +00:00
Denis Flaven
df85186407
N. 481:
...
1) wiki text syntax was not displayed in the description or case logs of the tickets
2) when wiki text syntax was supported, the generated hyperlinks were pointing to the console (instead of the portal)
SVN:trunk[4519]
2016-12-13 16:16:13 +00:00
Romain Quetiez
403ecf7fba
N.557 Date/date+time pickers in the legacy portal, not aligned with the configured date formats. Took the opportunity to implement time picking (thus aligned with any form of iTop)
...
SVN:trunk[4517]
2016-12-13 14:24:33 +00:00
Denis Flaven
d143f0880b
N. 533: when reloading the ticket form (due to an alternate initial state path)
...
1) the value of some controls (non-text inputs in n:n links) was not preserved,
2) popup dialogs and CKEditor instances were not properly destroyed and re-created.
SVN:trunk[4515]
2016-12-13 10:54:45 +00:00
Guillaume Lajarige
c185e1fc4f
Portal: LinkedSet label in forms can now be toggled by clicking on the field label (Was only working on the linkedset count and chevron)
...
SVN:trunk[4514]
2016-12-13 10:45:34 +00:00
Guillaume Lajarige
68c180f7eb
N.474: Support for "file" attribute (AttributeBlob) in the portal. READONLY only for now.
...
SVN:trunk[4512]
2016-12-13 10:15:43 +00:00
Denis Flaven
c903fc2246
Support of text-align in the styles.
...
SVN:trunk[4511]
2016-12-08 13:58:01 +00:00
Denis Flaven
7d5898f302
Upgrade of CKEditor from 4.5.8 to 4.6.0 and addition of the formatting buttons:
...
- Font family
- Font Size
+ reordering of the toolbar buttons to have two lines of equivalent width.
SVN:trunk[4510]
2016-12-08 13:52:28 +00:00
Guillaume Lajarige
a4bdd3aaf4
N.551: Added spanish translations to the enhanced portal thanks to the community :)
...
SVN:trunk[4508]
2016-12-08 13:21:13 +00:00
Romain Quetiez
5bae9deecc
N.545 HTML images not displayed when no login is required for the page.
...
SVN:trunk[4506]
2016-12-08 12:45:56 +00:00
Guillaume Lajarige
ffbd666aca
N.481: Portal: Impossible to submit a form with a duration attribute. Also fixed the displayed value in tables (ManageBrick and BrowseBrick)
...
SVN:trunk[4504]
2016-12-08 11:36:54 +00:00
Romain Quetiez
4ec3aeec92
N.490 Losing carrier returns and rich text formatting when the latest comments are copied to child tickets
...
SVN:trunk[4501]
2016-12-08 10:24:06 +00:00
Guillaume Lajarige
c5a00a1bf1
N.546: Portal: Edit value in case log was kept after UserRequest update.
...
SVN:trunk[4500]
2016-12-08 10:18:59 +00:00
Romain Quetiez
1b1e91f0dc
N.500 Changed the query to fetch tickets related to a CI, so as to make it unambiguous whatever customization is made to the datamodel.
...
SVN:trunk[4498]
2016-12-08 08:22:36 +00:00
Romain Quetiez
21fc272674
N.534 Cannot create a parent ticket from the ticket edition form. More generally, the object creation dialog box (opened by the mean of the PLUS button) fails as soon as any of the mandatory fields is an HTML field. Regression introduced in iTop 2.3.0, and due to HTML field edition widget (aka CKEditor)
...
SVN:trunk[4496]
2016-12-07 20:31:54 +00:00
Denis Flaven
5716c11450
N. 550 the OpCode cache may cause the upgrade of the datamodel to fail. Let's flush it after the compilation.
...
SVN:trunk[4494]
2016-12-07 13:13:36 +00:00
Romain Quetiez
f7e77e9fa6
N.539 Regression introduced in [r4451] on oct 7th. Some OQL were issuing a notice and some were generating a SQL query that would fail with error "Column 'functionalci_id' in where clause is ambiguous" (See CI details)
...
SVN:trunk[4492]
2016-12-05 12:52:08 +00:00
Romain Quetiez
ad8c3db6b4
Continuing [r4488] N.536 Regression introduced in [r4469] (N.505), itself fixing a regression introduced in [r4404]. REQUIRES TESTING
...
SVN:trunk[4490]
2016-12-05 09:59:19 +00:00
Romain Quetiez
d5c3b8d8e2
N.536 Regression introduced in [r4469] (N.505), itself fixing a regression introduced in [r4404]. REQUIRES TESTING
...
SVN:trunk[4488]
2016-12-02 20:37:13 +00:00
Romain Quetiez
6ac6aea29f
N.480 Page broken (missing menu + ...) when bulk modifying Document Notes (having various values)
...
SVN:trunk[4486]
2016-12-01 14:06:02 +00:00
Romain Quetiez
7ce06c0797
Optimizations. Continuation of [r4423] and [r4471]. The optimization of the load of icons does not work depending on the itop installation directory and version of PHP (crc32 producing a negative value, not suitable for a class name).
...
SVN:trunk[4485]
2016-12-01 10:08:35 +00:00
Romain Quetiez
53bf1f424a
N.502 Too many backups on sundays
...
SVN:trunk[4483]
2016-12-01 09:51:47 +00:00
Romain Quetiez
b793cded34
N.527 Enable the template placeholders for AttributeCustomFields
...
SVN:trunk[4481]
2016-11-25 16:37:31 +00:00
Romain Quetiez
47ec6d4917
N.523 UserRights::ListProfiles must return an empty array if nobody is currently logged in (instead of a FATAL ERROR).
...
SVN:trunk[4478]
2016-11-18 15:47:20 +00:00
Romain Quetiez
e586ba8d6e
N.520 Setup: conflicts when a module in "extensions" is an upgrade of a module that already exists in datamodels/2.x. The most recent module must be installed and the older one must be ignored.
...
SVN:trunk[4477]
2016-11-17 15:45:34 +00:00
Romain Quetiez
8a913a18cf
Cosmetics. Simplified the warning about editing the configuration file. No need to mention which sections can be edited, since ALL other sections have been moved out from the configuration file (includes and dictionnaries).
...
SVN:trunk[4475]
2016-11-08 16:36:53 +00:00
Denis Flaven
a09e579451
Support of non-case sensitive "forbidden values" in DesignerTextField
...
SVN:trunk[4473]
2016-11-04 15:58:59 +00:00
Denis Flaven
79c5dc2ce2
Support of "fileref" tags inside the definition of the class fields. Useful for the "default_image" tag of AttributeImage.
...
SVN:trunk[4472]
2016-11-04 13:34:17 +00:00
Romain Quetiez
95d7bc5319
Continuation of [r4423] Optimizing the scan of icons on disk. Added a LOCK_EX flag to prevent concurrent access related issues. Safe handing of collision on the cache key (used as a filename).
...
SVN:trunk[4471]
2016-10-28 14:03:17 +00:00
Romain Quetiez
d3f5d05063
N.505 Regression introduced in [r4404]. Security issue - Object visibility totally screwed the APC cache (user data) is enabled. This is a change in the way SQL queries are built and therefore requires testing.
...
SVN:trunk[4469]
2016-10-28 09:08:30 +00:00
Romain Quetiez
b30a35ceb5
N.504 Could not jump into the designer (APC, random)
...
SVN:trunk[4467]
2016-10-27 14:57:01 +00:00
Denis Flaven
fac22c9729
Bug fix: creating a new DOM Node containing the string "0" resulted in an empty node (no DOMText).
...
SVN:trunk[4466]
2016-10-27 08:36:26 +00:00
Romain Quetiez
44e329c38d
Cleanup of unused and possibly confusing XML markup (parent node under class/presentation/details). Thanks to D. Gumble for reporting this.
...
SVN:trunk[4463]
2016-10-21 14:14:20 +00:00
Guillaume Lajarige
e48ad8cb61
#497 Portal : Could not update object due to "Warning: preg_match(): Unknown modifier '/'"
...
SVN:trunk[4461]
2016-10-21 08:29:36 +00:00
Guillaume Lajarige
359dc73526
#497 Portal : Could not update object due to "Warning: preg_match(): Unknown modifier '/'"
...
SVN:trunk[4460]
2016-10-20 15:45:17 +00:00
Romain Quetiez
8169e81e9a
Automated tests: added tests following the latest optimizations of the query engine
...
SVN:trunk[4459]
2016-10-14 14:08:52 +00:00
Guillaume Lajarige
f62f087bcc
#475 Portal : Could not upload attachments on IE9.
...
SVN:trunk[4457]
2016-10-14 09:56:45 +00:00
Romain Quetiez
4eb0b3086d
N.466 HTML links with href="ftp://..." or "file://...". The filtering implemented by default (DOM Sanitization) now takes the configuration parameter url_validation_pattern into account. Thus aligning the behavior between HTML attributes and AttributeURL, and the automatic wiki formatting. By default, iTop allows the protocols http/https/ftp. To allow the 'file' protocol, edit the config file and change url_validation_pattern accordingly.
...
SVN:trunk[4455]
2016-10-10 16:01:46 +00:00
Guillaume Lajarige
1c81650572
Graph :
...
- Bar chart labels on x axis are now displayed vertically like in iTop 2.2. Also, when there are more than 24 labels, not all of them are displayed in order to keep the axis readable.
- Pie chart legend is now placed on the right side.
SVN:trunk[4453]
2016-10-10 13:14:13 +00:00
Romain Quetiez
59e3367da8
N.434 ... Continuation... Fixed regression introduced in [r4448]. OQL (parsed) queries are optimized too but the SQL query cannot be executed. See example herebelow:
...
SELECT
UserRequest AS u
JOIN Person AS p1 ON u.caller_id=p1.id
JOIN Organization AS o1 ON p1.org_id=o1.id
JOIN Person ON u.caller_id=Person.id
JOIN Location AS l ON Person.location_id = l.id
WHERE Person.status='active' AND p1.status='inactive' AND l.country='France'
SVN:trunk[4451]
2016-10-07 13:15:30 +00:00
Guillaume Lajarige
2b4b0fed83
Portal : Final touch to AllowedOrganizations by settings ignore_silos to true for ServiceFamily/Service/ServiceSubcategory on the default portal configuration
...
SVN:trunk[4449]
2016-10-07 09:39:34 +00:00
Romain Quetiez
fe6ae6f2eb
N.434 Optimized the DB queries. As an example, the query that shows the service catalog in the enhanced customer portal is now made of 5 nodes (at the class level) whereas it used to be made of 11 nodes... for the exact same results. This optimization impacts almost each queries built by iTop. The expected benefit can insignificant or not, depending on the cardinality of the data, the datamodel and the original OQL queries. We found one case where the query execution would apparently never end and it takes now less than a second. The risk with such a change is that is affects most of the queries built by iTop -requires testing!
...
SVN:trunk[4448]
2016-10-07 08:45:24 +00:00
Romain Quetiez
79d994acf7
N.444 ... fixing regression introduced in [r4438]
...
SVN:trunk[4441]
2016-10-04 13:15:33 +00:00
Romain Quetiez
9dbbb8e012
Fixed regression introduced in [r4415]: data model remains unchanged though the customizations have been successfully compiled (and taken into account in the DB). The fix consists in completing the implementation: the verb apc_cache_info was missing, preventing the cache from being reset by the setup. I took the opportunity to add other verbs of apc so as to make sure that the emulation be consistent with the emulation provided by older versions of apcu.
...
SVN:trunk[4440]
2016-10-03 12:47:13 +00:00
Romain Quetiez
17fafbf85b
N.444 Two date picker icons (lifecycle shortcut to resolved state, or a datetime attribute on a link). Solved by a factorization of the widgets initialization so that the initialization be the same (must be idempotent)
...
SVN:trunk[4438]
2016-10-03 11:47:03 +00:00
Guillaume Lajarige
f3a6455ed8
Portal : Bug when adding item on the first LinkedSet of an edition form
...
SVN:trunk[4436]
2016-10-03 08:01:23 +00:00
Romain Quetiez
5336d9e965
Internal: improved the API robustness by throwing an exception as soon as DBObject::Set is called with a date badly formatted. This is in line with the assumption that internal DBObject values are always safe.
...
SVN:trunk[4435]
2016-09-30 14:22:13 +00:00
Romain Quetiez
97d11ba910
N.445 Specifying a date format (other than the default one) and allowing to create a user request in the resolved status results in an error when selecting the resolved status.
...
SVN:trunk[4433]
2016-09-30 14:16:35 +00:00
Guillaume Lajarige
2fa68a3abc
Portal : Deadline attributes not displayed properly in ManageBrick
...
SVN:trunk[4431]
2016-09-30 12:50:32 +00:00
Guillaume Lajarige
a88365ca49
Resize on AttributeImage crashes when gd extension is not installed. Implemented a fallback so images are stored as is (original size) when gd extension is not available. A warning message is displayed during the setup.
...
SVN:trunk[4429]
2016-09-30 11:24:30 +00:00
Guillaume Lajarige
f3053c39c2
Portal : Allowed Organizations part for action rules.
...
SVN:trunk[4428]
2016-09-30 08:47:43 +00:00
Guillaume Lajarige
c7ac39b86a
Portal : ManageBrick crashing when displaying an abstract class with child classes attributes
...
SVN:trunk[4426]
2016-09-30 07:12:16 +00:00
Guillaume Lajarige
88eece7188
Portal : Autocomplete bug with IE9 in forms
...
SVN:trunk[4424]
2016-09-29 10:16:30 +00:00
Romain Quetiez
b7d101cdfb
Optimization: cache icons files (scan directories for the Icon selection edition widget) benefiting to each dashboard page (20% faster with PHP7 + OpCache + APCu)
...
SVN:trunk[4423]
2016-09-27 14:42:35 +00:00
Guillaume Lajarige
56ade2b44c
Removed debug traces for AllowAllData
...
SVN:trunk[4422]
2016-09-27 13:04:16 +00:00
Romain Quetiez
2a38eb757d
Code cleanup: remove unused code causing warnings with PHP7 (SQLBlock)
...
SVN:trunk[4421]
2016-09-27 12:41:52 +00:00
Guillaume Lajarige
954ba60611
Portal : Caching TWIG templates to improve performances
...
SVN:trunk[4420]
2016-09-27 12:29:25 +00:00
Guillaume Lajarige
f9a984f3e4
#1334 Portal : Sorting objects on BrowseBrick regarding the all classes' default order and not the first class' order only. (For example the services catalog might appear as sorted on the first column but not the second one)
...
SVN:trunk[4418]
2016-09-27 08:18:14 +00:00
Romain Quetiez
8fd9acb2ce
N.440 Remote troubleshooting: when the REST/JSON API fails due to malformed utf8 characters, return a meaningful json error message (explain + debug information) instead of an empty response
...
SVN:trunk[4417]
2016-09-26 19:11:08 +00:00
Romain Quetiez
915a88afd4
N.441 Character "à" in a case log causing the REST/JSON API to fail if mbstring is not enabled
...
SVN:trunk[4416]
2016-09-26 18:45:32 +00:00
Romain Quetiez
c755b66d8c
Optimization: make it less cumbersome to have the APC user cache enabled for PHP 5.5+. Prior to this enhancement, it used to require a compilation flag (for apcu) until PHP7... then it became mandatory to install a dedicated backward compatibility module named after apcu_bc. Now, having apcu installed and enabled is ENOUGH.
...
SVN:trunk[4415]
2016-09-26 15:54:41 +00:00
Romain Quetiez
2f8dc0fa0f
Prerequisite for #1334 . New API: DBObjectSet::SetOrderByClasses. Helper to sort on multicolumn queries (SELECT a, b FROM)
...
SVN:trunk[4413]
2016-09-23 15:05:06 +00:00
Guillaume Lajarige
a34747f893
Portal : Missing AllDataAllowed
...
SVN:trunk[4412]
2016-09-23 13:58:08 +00:00
Guillaume Lajarige
4dd6c813b1
Portal : Typo
...
SVN:trunk[4411]
2016-09-23 13:37:45 +00:00
Guillaume Lajarige
8e96094977
Portal : Allowed Organizations Part II. Made sur that the AllowAllData flag was passed everywhere it was necessary, only when it was necessary. This has been tested but needs MORE testing !
...
SVN:trunk[4409]
2016-09-22 09:30:12 +00:00
Guillaume Lajarige
dd41ebf861
Portal : Preserve debug parameter through urls
...
SVN:trunk[4408]
2016-09-22 09:24:07 +00:00
Guillaume Lajarige
f732df751c
Portal : Renamed <ignore_allowed_organizations> to <ignore_silos> for a more generic aproch
...
SVN:trunk[4406]
2016-09-20 14:41:56 +00:00
Guillaume Lajarige
acfab8fb63
Portal : Allowed Organizations can now be applied on the portal scopes. Just set the <ignore_allowed_organizations> to true under the concerned <scope> tag.
...
SVN:trunk[4405]
2016-09-20 14:22:04 +00:00
Romain Quetiez
23193153c6
N°436 Core API: Correctly (mathematically!) handle the "allow all data" flag, with UNIONS and INTERSECTIONS. Requires testing
...
SVN:trunk[4404]
2016-09-19 13:08:32 +00:00
Romain Quetiez
a908dcd752
#1178 Internals: Object Update/Reload should never fail: as soon as a given object has been read in the current execution context, updating/reloading it is not an issue.
...
SVN:trunk[4402]
2016-09-15 10:01:32 +00:00
Romain Quetiez
b8a80cb267
#1325 Part III - Completing the fix by aligning the internal data structures of iTop... and possibly fix an issue (?) - Not recommended for a retrofit
...
SVN:trunk[4399]
2016-09-14 15:42:19 +00:00
Romain Quetiez
ad1412c7e2
#1325 Part II - Completing the fix by aligning the internal data structures of iTop... and possibly fix an issue (?) - Not recommended for a retrofit
...
SVN:trunk[4398]
2016-09-14 15:35:16 +00:00
Romain Quetiez
4bf51515be
#1325 Could not declare an ext key to a subclass (view could not be created). This commit is minimalistic and aims at being retrofitted into the various branches of iTop. It will be followed by a second commit, which aims at completing the fix by aligning the internal data structures of iTop... and possibly fix an issue (?)
...
SVN:trunk[4397]
2016-09-14 15:24:03 +00:00
Guillaume Lajarige
05f97dd75f
Portal : Optimized column load in ManageBrick and BrowseBrick to improve performances
...
SVN:trunk[4396]
2016-09-13 08:47:24 +00:00
Denis Flaven
90cab29a3c
Enhancement:
...
- Add more debug traces (if 'synchro_trace' == 'save')
- Show debug traces (if any) at the bottom of the status page
- Protect against time differences between the MySQL server and the PHP server, when running 'synchro_import.php'
SVN:trunk[4394]
2016-09-12 12:47:40 +00:00
Romain Quetiez
445b488603
#1323 error.log polluted with the contents of each email sent (transport = PHPMail)
...
SVN:trunk[4392]
2016-09-07 12:40:12 +00:00
Romain Quetiez
7141e0f4b0
Fix for regression introduced in [r4384] and causing a blank screen when attempting to edit an object
...
SVN:trunk[4390]
2016-09-06 13:47:59 +00:00
Denis Flaven
ffc756e4a4
(regression from iTop 2.2.x) ExternalFields were not automatically reloaded when the corresponding external key changed.
...
SVN:trunk[4388]
2016-09-06 10:08:06 +00:00
Romain Quetiez
8bed267feb
Fixed XSS vulnerability
...
SVN:trunk[4386]
2016-09-06 10:01:37 +00:00
Romain Quetiez
13933e488c
Rich text editor: the Maximize button icon is missing if iTop is installed in a directory which name contains spaces
...
SVN:trunk[4384]
2016-09-06 09:35:28 +00:00
Guillaume Lajarige
d48f76e965
Portal : Added Location scope to standard portal configuration because of the implementation of r4380
...
SVN:trunk[4382]
2016-09-06 09:30:10 +00:00
Guillaume Lajarige
a025c95054
Portal : External keys OQL now intersect with scopes in forms!
...
SVN:trunk[4380]
2016-09-06 07:04:24 +00:00
Guillaume Lajarige
b2fa9c468f
Portal : Added a new mode "apply_stimulus" for forms. This allows to add flags to attributes that are prompt during transitions.
...
SVN:trunk[4378]
2016-09-05 14:29:05 +00:00
Romain Quetiez
8feef7fd8a
#1321 Losing table borders (notification templates and notes)
...
SVN:trunk[4376]
2016-09-05 13:01:08 +00:00
Guillaume Lajarige
8330f3d498
Portal : Request template OQL list fields marked as mandatory were not validated properly
...
SVN:trunk[4371]
2016-09-02 12:30:41 +00:00
Guillaume Lajarige
88e7bd225c
Portal : Updated inline documentation of UserProfile brick's <fields /> tag for easiest comprehension.
...
SVN:trunk[4370]
2016-09-02 12:16:57 +00:00
Romain Quetiez
1b0f818c4b
Forms (portal): fix the rendering of a TEXT AREA in read-only mode.
...
1) format=text -> several lines were displayed on a single line
2) format=html -> characters encoded twice
SVN:trunk[4369]
2016-09-02 12:11:16 +00:00
Guillaume Lajarige
32dc1225ca
Portal : Fixed search on enum & finalclass as well as display value of enum and html images in lists. Also Fixed display of friendlyname in lists, which was not behaving well on abstract class when the it was composed of several fields in the child classes.
...
SVN:trunk[4364]
2016-09-01 10:29:04 +00:00
Guillaume Lajarige
2b35cf5047
Portal : IE9 fixes
...
- Remaining console.log() inthe field_set.js file
- Missing zoom-in / zoom-out mouse cursors on a object images (They are actually not available on IE9, so I put a pointing hand instead)
- Missing pointer cursors on CaseLog field collapsers
SVN:trunk[4362]
2016-08-31 15:59:09 +00:00
Denis Flaven
df66e28545
Bug fix: regression from 2.3.x: SOAP webservices were broken!
...
SVN:trunk[4360]
2016-08-31 14:56:21 +00:00
Romain Quetiez
0ab060c958
Improved the comments for access_mode in the config file
...
SVN:trunk[4359]
2016-08-31 08:22:56 +00:00
Denis Flaven
dfceef4ca6
Enhancement: protect RenameValueInDB from non-existent attributes.
...
SVN:trunk[4357]
2016-08-30 12:56:13 +00:00
Denis Flaven
49f82e6377
#1297 : timezone configuration setting was inoperant.
...
SVN:trunk[4355]
2016-08-29 12:47:06 +00:00
Guillaume Lajarige
c5957f1146
Portal : Fixed a regression introduced by r4324 causing HTML entities on the browse brick.
...
SVN:trunk[4353]
2016-08-29 07:27:29 +00:00
Guillaume Lajarige
b357e7d7d6
Portal : Enhanced and refactored error feedback on ExternalKey / LinkedSet / CustomFields fields
...
SVN:trunk[4352]
2016-08-25 15:21:33 +00:00
Guillaume Lajarige
e7342b0eb8
Portal : Request template list fields now have the autocomplete option.
...
SVN:trunk[4351]
2016-08-25 13:52:41 +00:00
Guillaume Lajarige
f33f4e3406
Portal : Request template list fields now have the lookup/search option. (Autocomplete is still to be implemented!)
...
SVN:trunk[4350]
2016-08-25 13:11:34 +00:00
Romain Quetiez
3d57c720e0
Could not bulk import with the "final class" (interactive import).
...
SVN:trunk[4348]
2016-08-24 16:50:02 +00:00
Romain Quetiez
ef5d156b98
#1305 Issue with date/time inputs on Chrome: losing focus as soon as the date has been correctly typed, preventing the user from typing the time.
...
SVN:trunk[4346]
2016-08-23 18:43:41 +00:00
Guillaume Lajarige
8722447f2f
Portal : Templates not working with OQL "list" fields. This only append when the field had too many items and was trying to render as an autocomplete.
...
SVN:trunk[4344]
2016-08-23 16:01:25 +00:00
Guillaume Lajarige
e6047dcbf5
Portal : Templates not working with OQL "list" fields. This only append when the field had too many items and was trying to render as an autocomplete.
...
SVN:trunk[4343]
2016-08-23 16:00:00 +00:00
Guillaume Lajarige
df1d10f1cb
#1299 Portal : "Oops, could not load data" when creating request in Full ITIL instance when running PHP7. Cause was that PHP7 isn't able to understand the factory method invocation synthax, had to make it more simple with intermediate steps.
...
SVN:trunk[4336]
2016-08-23 11:23:12 +00:00
Guillaume Lajarige
d1dd60f928
#1281 Portal : Fixed a few hardcoded strings to dictionnaries
...
SVN:trunk[4335]
2016-08-23 09:25:13 +00:00
Guillaume Lajarige
7bea59fea1
Portal : Fixed a bug with external key as radio button in forms
...
SVN:trunk[4334]
2016-08-22 15:50:35 +00:00
Guillaume Lajarige
17703ce572
Portal : Fixed a bug on the default configuration that was displaying only UserRequest in the Closed requests brick instead of both UserRequest and Incident objects.
...
SVN:trunk[4333]
2016-08-22 14:55:57 +00:00
Guillaume Lajarige
6d556249aa
#1284 : Fixed portal issue when trying to re-open a ticket as a portal user. Cause was that the destination state had "must prompt" attributes that were all "read only" for the current user, making the entire form "read only" and therefore removing "submit" button. The user was the not able to complete the transition. Fix consists of skipping the form when all attributes are "read only" for the user.
...
Also :
- Refactored a portion of TWIG (Loader is now in an helper TWIG)
- Placed transition buttons to the right with the submit one as it was confusing
SVN:trunk[4332]
2016-08-22 14:51:10 +00:00
Guillaume Lajarige
16b5db448b
#1281 : Service catalog brick had 2 hardcoded headers ("Service" and "Sous-Service")
...
SVN:trunk[4330]
2016-08-11 10:00:49 +00:00
Denis Flaven
8ef7f073b3
CSV export of audit results: pass the parameters as a POST since they may be too long to fit in the query string of the URL.
...
SVN:trunk[4328]
2016-08-11 09:44:31 +00:00
Denis Flaven
22c647e3f8
Cleanup a Notice message: align the prototype of DBDeleteSingleObject to the current one.
...
SVN:trunk[4326]
2016-08-11 09:38:14 +00:00
Denis Flaven
bf94dfa894
Bug fix: support the display of HTML fields in the lists in the new portal.
...
SVN:trunk[4324]
2016-08-11 09:28:23 +00:00
Guillaume Lajarige
43d3cfefb5
Portal : Removed console.log to prevent crashes on IE9
...
SVN:trunk[4323]
2016-08-11 08:55:38 +00:00
Denis Flaven
e0855093ea
Cosmetics: Enlarge DateTime fields which were too narrow (the end of the time is not visible when editing).
...
SVN:trunk[4321]
2016-08-11 08:34:10 +00:00
Denis Flaven
c147062aaa
Regression introduced after 2.3.0-beta [r4217]: broken links to donwload / display blobs.
...
SVN:trunk[4319]
2016-08-10 15:54:04 +00:00
Denis Flaven
480c2fab04
Performance optimization: do not load all the columns when it is not needed.
...
SVN:trunk[4317]
2016-08-10 14:56:59 +00:00
Denis Flaven
53fb619da1
Image upload inside CKEditor (via drag and drop) seems to be desactivated on IE9.
...
SVN:trunk[4315]
2016-08-05 10:18:22 +00:00
Denis Flaven
c0a7bbaa72
Remember that console.log breaks IE9 when the console is not open !!!
...
SVN:trunk[4313]
2016-08-05 10:05:08 +00:00
Denis Flaven
12b27778f5
Bug fix: properly disable the configuration editor in demo mode! (Regression)
...
SVN:trunk[4310]
2016-07-27 09:50:40 +00:00
Denis Flaven
babcd6a92a
Increased version number of the module to 1.0.1 to reflect the change related to revision 4300 (support of custom controller in a brick).
...
SVN:trunk[4308]
2016-07-26 08:15:42 +00:00
Denis Flaven
d80d24c348
Disable PDF export if the PHP extension "GD" is not loaded.
...
SVN:trunk[4307]
2016-07-15 07:05:06 +00:00
Denis Flaven
2c78a91a00
Model factory: introduced a new variation of attribute _delta: delete_if_exists. Use this flag to delete a branch from the data model being hacked, without caring if it is already deleted (or non existing). This eases the burden of coping with different installation combinations.
...
SVN:trunk[4306]
2016-07-15 06:41:26 +00:00
Romain Quetiez
109e5dfe2c
Releasing 2.3.1
...
SVN:trunk[4302]
2016-07-08 12:00:27 +00:00
Denis Flaven
93ff327b54
2.3.0 Regression: login_mode was broken !
...
SVN:trunk[4301]
2016-07-08 11:56:27 +00:00
Guillaume Lajarige
359c188089
Customer portal : Added possibility to give a controller action for a brick tile. This allows to use some logic in order to make a specific render relying for example on DB dataobjects
...
SVN:trunk[4300]
2016-07-08 09:32:43 +00:00
Denis Flaven
6682eafb4d
Oops, missing on Czech translation file.
...
SVN:trunk[4297]
2016-07-07 09:48:13 +00:00
Denis Flaven
b64c79d34e
Force the filename (with a .csv extension) when downloading the audit errors as a CSV file.
...
SVN:trunk[4294]
2016-07-06 10:34:07 +00:00
Denis Flaven
e553c0bbe1
Prevent timeouts during the (lengthy) PDF conversion...
...
SVN:trunk[4293]
2016-07-06 09:43:20 +00:00
Denis Flaven
18f15ba9cc
Fixed the case for the Emogrifier includes.
...
SVN:trunk[4292]
2016-07-06 09:22:43 +00:00
Guillaume Lajarige
f4e45b6c8d
Updated licenses with Font Awesome
...
SVN:trunk[4291]
2016-07-05 14:53:04 +00:00
Guillaume Lajarige
1013cbc22f
Customers portal : Added generated css files to the SVN
...
SVN:trunk[4290]
2016-07-05 14:47:45 +00:00
Romain Quetiez
12c64bd6e5
Internal: enable/disable data localization
...
SVN:trunk[4289]
2016-07-05 14:44:08 +00:00
Denis Flaven
c209b75f6b
Limit the height of the "licenses" in the about box.
...
SVN:trunk[4288]
2016-07-05 13:38:15 +00:00
Denis Flaven
775ed7d437
Regresssion of iTop 2.3.0 beta: properly load the metamodel from the environment.
...
SVN:trunk[4287]
2016-07-05 13:37:40 +00:00
Romain Quetiez
dee3d55af2
Code cleanup: removed unused parameter (not used, thus confusing)
...
SVN:trunk[4286]
2016-07-05 12:08:00 +00:00
Denis Flaven
0d48e40c18
Regresssion: properly compute & record the history of StopWatch's sub-items.
...
SVN:trunk[4285]
2016-07-05 12:07:20 +00:00
Denis Flaven
a0965c2a52
Use the configurable date & time format for displaying the history of StopWatches.
...
SVN:trunk[4284]
2016-07-05 11:57:16 +00:00
Romain Quetiez
daccb122ae
Getting ready for the release of iTop 2.3.0
...
SVN:trunk[4283]
2016-07-05 10:23:56 +00:00
Romain Quetiez
0a8532e27a
Getting ready for the release of iTop 2.3.0
...
SVN:trunk[4282]
2016-07-05 10:12:36 +00:00
Denis Flaven
e7adf6559f
Updated Czech translation, thanks to Lukáš Dvořák !
...
SVN:trunk[4281]
2016-07-05 10:10:23 +00:00
Romain Quetiez
07db5855a2
Fixed regression in 2.3.0-beta: placeholder $public_log$ was generating a mix of plain text and HTML markup whereas only plain text is expected
...
SVN:trunk[4280]
2016-07-05 09:50:10 +00:00
Denis Flaven
db47b2d05c
Collapse the search form at the top of the main page when displaying a list of objects (drill down from a chart...), except when the page is the result of filling this form and pressing search.
...
SVN:trunk[4279]
2016-07-05 09:32:56 +00:00
Denis Flaven
a2eab87b7b
Properly handle the creation of objects which go outside of the silo.
...
SVN:trunk[4278]
2016-07-05 09:19:17 +00:00
Romain Quetiez
396c4564b4
HTML formatting: TWO fixes in one! Fixed a bug introduced in 2.3.0-beta: the stylesheet cannot be defined within the email templates (aka ActionEmail) anymore. Instead, a default (ready for use) stylesheet is provided into /css/email.css and it can be overriden by the configuration parameter email_css. The fix consists in transforming the stylesheet into inline style... which fixes a limitation of gmail and Outlook that support only the inline styles. The implementation relies on a new library: emogrifier. This library has been changed (home-made utility) to be compatible with PHP 5.3 (declaration of arrays).
...
SVN:trunk[4277]
2016-07-04 15:06:28 +00:00
Denis Flaven
8582f6da70
Enhancement: provide some feedback to the end-user in case of a fatal error during an interactive export.
...
SVN:trunk[4276]
2016-07-04 14:22:24 +00:00
Guillaume Lajarige
fc7a10ff03
Synchro : Change description attribute from AttributeString to AttributeText
...
SVN:trunk[4275]
2016-07-01 13:47:59 +00:00
Guillaume Lajarige
7330154dd0
Customers portal : Fixed css glitch on portal instances menu
...
SVN:trunk[4274]
2016-07-01 10:48:02 +00:00
Romain Quetiez
beb53fd9dc
When iTop is in restricted access mode (access_mode=2), the upgrade is not completely performed (profiles not updated correctly)
...
SVN:trunk[4273]
2016-07-01 10:36:26 +00:00
Guillaume Lajarige
9dbad63d6f
Synchro : Formated last synchro date in the tooltip when viewing an Object
...
SVN:trunk[4272]
2016-07-01 10:14:26 +00:00
Guillaume Lajarige
21e5ca484c
Export : Formatting dates from subitems in CSV, Excel, PDF exports
...
SVN:trunk[4271]
2016-07-01 09:45:58 +00:00
Guillaume Lajarige
41bee2b9b2
Customers portal : Home page template could not be override since template refactoring
...
SVN:trunk[4270]
2016-07-01 06:43:14 +00:00
Guillaume Lajarige
41556ba00b
Customers portal : Final touches on portal configuration
...
SVN:trunk[4269]
2016-06-30 12:07:17 +00:00
Romain Quetiez
33b46483a9
Placeholders in notification: fixed the error message when the given placeholder is invalid
...
SVN:trunk[4268]
2016-06-29 15:03:56 +00:00
Guillaume Lajarige
970f75d5e2
PDF export : Exporting objects with AttributeImage value to default was crashing due to a "division by zero". Fixed.
...
SVN:trunk[4267]
2016-06-29 14:05:24 +00:00
Romain Quetiez
3a25916f00
Data synchro: web service synchro_import - usage to expose the real default date format (mySQL datetime format)
...
SVN:trunk[4266]
2016-06-29 13:47:58 +00:00
Guillaume Lajarige
c44284dc3c
Customers portal : Fixed a bug in UserRequest edition form that prevented user to submit. Validation method was returning false on reoslution_code. Fix was to not check validators on empty && none mandatory fields (on both client and server sides).
...
SVN:trunk[4265]
2016-06-29 08:58:19 +00:00
Guillaume Lajarige
0ac9e21e5e
Customers portal : Fixed dynamic tiles on home page APIs
...
SVN:trunk[4264]
2016-06-28 11:05:29 +00:00
Guillaume Lajarige
17abb729e1
Customers portal : Fixed a bug in BrowseBrick APIs. Calls to static functions were made as $this->
...
SVN:trunk[4263]
2016-06-28 09:10:10 +00:00
Guillaume Lajarige
00d131e3fc
Customers portal : Improved error message on autocomplete field when the portal configuration is incorrect
...
SVN:trunk[4262]
2016-06-28 08:22:10 +00:00
Romain Quetiez
9d05c1c79c
Code freeze for 2.3.0
...
SVN:trunk[4261]
2016-06-24 10:11:54 +00:00
Guillaume Lajarige
71f3313070
Customers portal : Comment for context tag
...
SVN:trunk[4260]
2016-06-23 15:03:18 +00:00
Denis Flaven
18de167d5e
Internal: context tags to (programmatically) identify the context of the execution.
...
SVN:trunk[4259]
2016-06-23 14:57:37 +00:00
Guillaume Lajarige
c177264113
Customers portal : Final touches on default portal configuration
...
SVN:trunk[4258]
2016-06-23 13:59:20 +00:00
Guillaume Lajarige
31cafcf2dd
Customers portal : BrowseBrick : Extra field columns can be hidden in list mode while remaining filterable. (Use case example : Hide a "keywords" attribute to enable filtering on it)
...
SVN:trunk[4257]
2016-06-23 12:58:34 +00:00
Denis Flaven
1e6ab3bdf0
Support of Custom Fields in the Excel export... not really nice but should be usable.
...
SVN:trunk[4256]
2016-06-23 09:26:24 +00:00
Denis Flaven
0ab344edee
Internal: Read-only fields are no longer stored in the form as hidden fields.
...
SVN:trunk[4255]
2016-06-23 09:25:34 +00:00
Guillaume Lajarige
f82b5833aa
Customers portal : Fixed a bug on profile picture edition. Button was not working on Firefox.
...
SVN:trunk[4254]
2016-06-23 08:59:18 +00:00
Guillaume Lajarige
daea9f0925
DataModel : Reserved location_id field OQL filter in order to start the JOINs from the Location object. Otherwise the Intersect limitation was raising.
...
SVN:trunk[4253]
2016-06-23 08:47:11 +00:00
Romain Quetiez
ebd0ae85a4
Code refactoring : fix of #876 implemented in 2.0.3 as [r3161], moved to a place where it will fix other implementations of the setup
...
SVN:trunk[4252]
2016-06-23 08:14:43 +00:00
Guillaume Lajarige
3b1886a435
Customer portal : Fixed a regression in CSS, form field labels were no longer bold
...
SVN:trunk[4251]
2016-06-23 08:00:08 +00:00
Guillaume Lajarige
eabc2a4eab
Customer portal : Readonly attachments when object is not longer editable
...
SVN:trunk[4250]
2016-06-23 07:54:00 +00:00
Guillaume Lajarige
29cd969d49
Customer portal : Security exception raised when adding contact on a new UserRequest / Incident. This was caused by a bug in the SecurityHelper while checking scopes for a class that had no objects yet. (R-011452)
...
SVN:trunk[4249]
2016-06-23 07:23:56 +00:00
Romain Quetiez
31a375f640
Custom fields: solidified the internal APIs against creative usages (null =>default value)
...
SVN:trunk[4248]
2016-06-22 14:12:53 +00:00
Denis Flaven
218a2e2f01
Security: prevent grouping on password fields since it may lead to disclosure of the encrypted version of the password.
...
SVN:trunk[4244]
2016-06-22 13:50:19 +00:00
Romain Quetiez
94295f11da
Fixed a regression introduced in iTop 2.3.0-beta: menu collapse mechanism broken when adding a shortcut (but it is restored when reloading the whole page).
...
SVN:trunk[4243]
2016-06-22 13:46:40 +00:00
Denis Flaven
d7b58a7730
Properly sanitize the "switch_env" parameter and take it into account only if it contains a valid value.
...
SVN:trunk[4238]
2016-06-22 12:08:58 +00:00
Denis Flaven
04133a8853
#1167 Error while upgrading db model from v 2.1 to 2.2 with orphan attachments.
...
SVN:trunk[4237]
2016-06-22 12:03:36 +00:00
Denis Flaven
619fe22a15
File or image upload is not supported (and thus disabled) when using the [+] button to create a new object inside a popup dialog.
...
SVN:trunk[4236]
2016-06-22 12:01:23 +00:00
Guillaume Lajarige
8071962bf9
Customer portal : LinkedSet fields can now be display a specific list of attributes instead of the z-list 'list' attributes. This is defined in module_design/classes/class/lists/list (see example in itop-tickets/datamodel.itop-tickets.xml)
...
SVN:trunk[4235]
2016-06-22 08:56:47 +00:00
Romain Quetiez
9b87d15f9a
User/status must be read-only in demo mode
...
SVN:trunk[4234]
2016-06-21 14:50:28 +00:00
Romain Quetiez
3c9072bb65
OQL: fixed an old limitation, hierarchies can now be expressed both ways. Example of a query that now works fine: SELECT Organization AS root JOIN Organization AS child ON child.parent_id BELOW root.id WHERE child.name LIKE 'Combodo'. In the previous implementation, the operator was interpreted as '='.
...
SVN:trunk[4233]
2016-06-21 14:38:08 +00:00
Denis Flaven
fa2c234a43
"Search Drawer" is closed by default, unless the configuration parameter "legacy_search_drawer" is set to "true".
...
SVN:trunk[4232]
2016-06-21 10:20:20 +00:00
Guillaume Lajarige
a0d16b868e
Customer portal : Edit profile picture
...
SVN:trunk[4231]
2016-06-21 10:19:28 +00:00
Denis Flaven
2773419faa
New field on the User class to enable/disable user accounts.
...
SVN:trunk[4230]
2016-06-21 09:22:14 +00:00
Romain Quetiez
f89fa885d2
A few updates of the readme (valuable for the beta!)
...
SVN:trunk[4229]
2016-06-20 15:29:04 +00:00
Romain Quetiez
b34ea69cb3
#1169 Broken link to iTop Wiki in itop-tickets.htm
...
SVN:trunk[4228]
2016-06-20 15:26:50 +00:00
Romain Quetiez
b54f78ab1a
Internal: DBSearch::Intersect to throw an exception whenever any of the merged queries have a queried class that does not correspond to the first joined class. This is a limitation of the current implementation of Intersect. Allowing such use cases would require quite a rework of that API.
...
SVN:trunk[4227]
2016-06-20 14:05:11 +00:00
Romain Quetiez
963a09ba6f
Internal: fixed regression introduced in iTop 2.3.0 beta: no error though a mandatory attribute of type HTML has been left empty
...
SVN:trunk[4226]
2016-06-20 10:15:12 +00:00
Denis Flaven
feebe3f9a9
Support of formatted case log edition (with inline images) in the legacy portal.
...
SVN:trunk[4225]
2016-06-17 09:41:59 +00:00
Denis Flaven
636cd646aa
Impact analysis display: cosmetics on tooltips: widen a bit the tooltips and prevent the text from overflowing horizontally.
...
SVN:trunk[4224]
2016-06-17 08:52:12 +00:00
Denis Flaven
9b774d3f72
- Make sure that the CSV Parser has enough time to run on big amount of data.
...
- Speedup the display of the CSV Import interactive wizard by parsing only the needed lines of the CSV data (in the first steps of the wizard).
SVN:trunk[4223]
2016-06-17 08:41:20 +00:00
Romain Quetiez
12857ceba1
#1188 Advanced customizations: allow to define a new constant or a brand new class as part of a delta
...
SVN:trunk[4222]
2016-06-16 15:25:05 +00:00
Guillaume Lajarige
ff5a96f92d
Customers portal : Added some IDs in the layout to create new hooks
...
SVN:trunk[4221]
2016-06-16 12:03:42 +00:00
Guillaume Lajarige
c4660f1caf
Customers portal : CSS is now separated into a Bootstrap theme stylesheet and another one specific to the template. It is also based on SASS like the console CSSs
...
SVN:trunk[4220]
2016-06-16 09:51:18 +00:00
Denis Flaven
dc2ee3472b
Enhanced display/edition of the "Reconciliation Key" column when defining the reconciliation using the attributes.
...
SVN:trunk[4219]
2016-06-16 09:10:21 +00:00
Denis Flaven
ce6ed190aa
Automatically remove duplicated modules (by keeping only the most recent one) when loading modules, independently of the loading order.
...
SVN:trunk[4218]
2016-06-16 08:41:54 +00:00
Romain Quetiez
52309bb1e5
Improved images caching: since 2.3.0-beta, iTop handles inline images (case logs, ticket description) and a picture for a person (AttributeImage). This code refactoring handles a case where the browser checks for the validity of the image and the 304 response code can then be returned without checking anything because we assume that the URL of the image contains a signature of it (or the data cannot change -attachement and inline images are in this case).
...
SVN:trunk[4217]
2016-06-16 08:23:15 +00:00
Romain Quetiez
2e71aee720
Notice in schema.php (Admin tools / data model) when viewing the class UserRequest
...
SVN:trunk[4216]
2016-06-15 13:15:43 +00:00
Guillaume Lajarige
41cb94bcf0
SCSS Compilation : Disabled max_execution_time while compiling SCSS files as it can take a while (Set back to its original value afterwards).
...
SVN:trunk[4215]
2016-06-15 12:42:57 +00:00
Guillaume Lajarige
5b9d2182dd
Customers portal : Added GetAbsoluteAppRoot() JS function to portal.
...
SVN:trunk[4214]
2016-06-15 12:23:38 +00:00
Guillaume Lajarige
e6fefcc361
Customers portal : Started CSS rework to simply change BS theme
...
SVN:trunk[4213]
2016-06-15 11:44:23 +00:00
Guillaume Lajarige
181e14f48e
Customers portal : Started CSS rework to simply change BS theme
...
SVN:trunk[4212]
2016-06-15 11:43:18 +00:00
Denis Flaven
8446fb028d
Make sure that the setup can be launched even if the 'php-zip' module is not installed.
...
SVN:trunk[4211]
2016-06-15 09:44:25 +00:00
Denis Flaven
d88249eabc
Trying to protect the Synchro for timeouts, since the synchro may be launched from the web (as a "web service", especially by the "collectors"). To be validated further with large amounts of data.
...
SVN:trunk[4210]
2016-06-14 16:11:28 +00:00
Denis Flaven
304080d74d
#1167 Error while upgrading db model from v 2.1 to 2.2 with orphan attachments.
...
SVN:trunk[4209]
2016-06-14 12:44:29 +00:00
Denis Flaven
f74afac781
#1199 Properly handle the icon of attachments without any extension.
...
SVN:trunk[4208]
2016-06-14 09:39:11 +00:00
Denis Flaven
066e7bedc1
#1205 Positioning of dropdown list of "Popup Menus" on Chrome (and IE 11) when the content has been scrolled
...
SVN:trunk[4207]
2016-06-14 09:22:32 +00:00
Denis Flaven
899ea36bcc
Typo !
...
SVN:trunk[4206]
2016-06-14 08:36:54 +00:00
Guillaume Lajarige
8ed94c4609
Customers portal : Typo in reference module design
...
SVN:trunk[4205]
2016-06-13 15:48:31 +00:00
Guillaume Lajarige
5dc86ebc5d
utils::GetCSSFromSASS() : Skip processing if file is already a .css
...
SVN:trunk[4204]
2016-06-13 13:46:30 +00:00
Denis Flaven
4f7cc48fd4
Replacing the SCSS->CSS conversion library by a newer one made by Leaf Corcoran: http://leafo.github.io/scssphp , tweaked to work on PHP 5.3
...
SVN:trunk[4203]
2016-06-13 12:57:17 +00:00
Guillaume Lajarige
dfa855b4f7
Customer portal : ExternalField form field was crashing due to a typo.
...
SVN:trunk[4202]
2016-06-13 12:52:35 +00:00
Denis Flaven
49aeeb0202
Replace the SCSS->CSS library by a more recent and powerful one
...
SVN:trunk[4201]
2016-06-13 12:49:57 +00:00
Guillaume Lajarige
c9a0d2bc80
Customer portal : Object search from attribute was crashing if object class had no friendlyname.
...
SVN:trunk[4200]
2016-06-13 12:36:12 +00:00
Guillaume Lajarige
4a63989237
Customer portal : Fixed external key validator. Could not contain '0'.
...
SVN:trunk[4199]
2016-06-13 12:33:00 +00:00
Guillaume Lajarige
bd4aca770e
Customer portal : HTML Entities in pre-setted autocomplete fields
...
SVN:trunk[4198]
2016-06-13 10:03:46 +00:00
Guillaume Lajarige
a4adf0b9ba
Customer portal : Small update of the BrowseBrick in order to set a default filter value
...
SVN:trunk[4197]
2016-06-10 17:46:52 +00:00
Romain Quetiez
e48a1b1645
#1249 Fixed regression introduced in [r3916] (iTop 2.3.0 beta): AttributeHTML not working if the sql column name differs from the attribute code
...
SVN:trunk[4196]
2016-06-10 14:23:31 +00:00
Romain Quetiez
09fad78952
#1223 Custom lifecycle actions: improved the reporting when an action returns false (class/function/id logged into error.log)+ the framework now considers that no return value is equivalent to 'true'
...
SVN:trunk[4195]
2016-06-10 13:59:56 +00:00
Romain Quetiez
2a62b43848
XML customizations: fixed regression introduced in [r4075] (2.3.0-beta), could not change the parent of a class (which should move the class into the internal hierarchy)
...
+ fixed two error messages
SVN:trunk[4194]
2016-06-10 12:43:53 +00:00
Romain Quetiez
e8fb1cf236
#1207 Customization: allow the implementation of interfaces by the mean of abstract classes
...
SVN:trunk[4193]
2016-06-09 15:24:21 +00:00
Romain Quetiez
ac2492958c
#1162 Protect data/log against reading (support of apache 2.4) -requires testing
...
SVN:trunk[4192]
2016-06-09 15:11:16 +00:00
Romain Quetiez
ddfc20fb7d
#1233 Spanish translation: InterfaCe + Solución Aplicativa
...
SVN:trunk[4191]
2016-06-09 14:42:31 +00:00
Romain Quetiez
3147f36d96
#1252 Setup: make the project compatible with Ansible deployment (the file "database exi.png" was in fact not used at all!)
...
SVN:trunk[4190]
2016-06-09 13:34:08 +00:00
Romain Quetiez
1d379245ee
#1254 Setup: iTop 2.3.0 requires PHP 5.3.6 (HTML sanitizer using the API DOMDocument::saveHTML with an argument)
...
SVN:trunk[4189]
2016-06-09 13:22:56 +00:00
Guillaume Lajarige
cb0fa2a5c8
Customer portal : Autocomplete field was not updating dependant fields.
...
SVN:trunk[4188]
2016-06-08 12:25:10 +00:00
Romain Quetiez
4c59d64025
Extending action classes (notifications): objects listed twice (in the base classes and leaf classes) in the notification page (actions tab).
...
SVN:trunk[4187]
2016-06-08 10:21:58 +00:00
Romain Quetiez
c92b0ea8f7
Internal: Email generation - No need to force "Content-Transfer-Encoding: 8bit". The default is "quoted-printable" and works fine if the content is made of plain text. Leaving the 8bit encoding could work but in such a case, the statement should be:
...
$oEncoder = new Swift_Mime_ContentEncoder_PlainContentEncoder('8bit', true /*canonicalize*/);... otherwise the lines get truncated at random places (CRLF is assumed while PHP EOL is made of CR only!) -This has an impact on plain text email only.
SVN:trunk[4186]
2016-06-08 10:01:17 +00:00
Guillaume Lajarige
7ebb0c40f3
Customer portal : Updated object form manager to check if an AttributeType has the necessary API to be used in a form (instead of the temporary array enumerating available types)
...
SVN:trunk[4184]
2016-06-03 14:51:37 +00:00
Guillaume Lajarige
b24c2b8455
Customer portal : Improved user feedback on modal loading crashs
...
SVN:trunk[4183]
2016-06-03 14:50:17 +00:00
Guillaume Lajarige
281925755d
Customer portal : Added info/warning/error messages to the issue log along some exceptions
...
SVN:trunk[4182]
2016-06-03 14:34:29 +00:00
Guillaume Lajarige
f5ae5f7c42
Customer portal : Added user feedback when modal dialog loading crashes server side
...
SVN:trunk[4181]
2016-06-03 13:59:06 +00:00
Guillaume Lajarige
80789ccaa9
Customer portal : Formatted date in case log entries header
...
SVN:trunk[4180]
2016-06-02 15:45:33 +00:00
Denis Flaven
54a40c42cd
Fix: properly parse dates in synchro import. Thanks to Karl aka karkoff1212 for reporting the issue.
...
SVN:trunk[4179]
2016-06-02 15:12:57 +00:00
Guillaume Lajarige
2c5d95a638
Customer portal : Browse Brick : Secondary actions menu was not always opening over the right element.
...
SVN:trunk[4178]
2016-06-02 15:06:45 +00:00
Guillaume Lajarige
10ca60893b
Customer portal : Typo in module design comment
...
SVN:trunk[4177]
2016-06-02 14:42:06 +00:00
Guillaume Lajarige
f86c4bb8fa
Customer portal : Viewing an object now displays an edit button if the user is allowed to edit the viewed object.
...
SVN:trunk[4176]
2016-06-02 12:36:50 +00:00
Guillaume Lajarige
3edf777aa6
Customer portal : Manage Brick : Added an optional tag <opening_mode> to define how the objects should be open (Value can be edit|view, Default is edit). Note that even if the tag is set to edit, objects that the user isn't allowed to edit will open in view mode.
...
SVN:trunk[4175]
2016-06-02 11:54:25 +00:00
Guillaume Lajarige
8a2fbdfd56
Customer portal : Manage Brick : Now displays object from the oql_view scope instead of the oql_edit scope. However, opening an object will be in edition mode if the user is allowed to do so, iotherwise it will open in view mode
...
SVN:trunk[4174]
2016-06-02 09:29:14 +00:00
Guillaume Lajarige
07056013c2
Customer portal : Displays a message when viewing an object with no attachments in read only
...
SVN:trunk[4173]
2016-06-02 09:15:42 +00:00
Guillaume Lajarige
ae61a1e5eb
Customer portal : SecurityHelper now outputs to IssueLog on negative result when debug mode is enabled. Warning : This ca be extremely verbose ! Use debug mode smartly.
...
SVN:trunk[4172]
2016-06-02 08:51:27 +00:00
Guillaume Lajarige
e0909766fd
Customer portal : Manage Brick : Edit action hyperlink is now setted on the first column if there is no friendlyname. Until now, if no friendlyname was available on the object class, there was no was of editing the object.
...
SVN:trunk[4171]
2016-06-02 08:26:06 +00:00
Guillaume Lajarige
e9dde4ee58
Customer portal : Set autocomplete to "off" on the password form in user profile brick.
...
SVN:trunk[4170]
2016-06-02 07:54:57 +00:00
Guillaume Lajarige
0050de641a
Customer portal : Added support for some AttributeType in forms (AttributeExternalField, AttributeHierarchicalkey, AttributeSubItem, AttributeDuration)
...
SVN:trunk[4169]
2016-06-02 07:47:28 +00:00
Guillaume Lajarige
445349d2d9
Customer portal : Manage brick : Displaying objects from a class without friendlyname raised an exception.
...
SVN:trunk[4168]
2016-06-02 07:22:32 +00:00
Guillaume Lajarige
d026c86c50
Customer portal : Fixed regression introduced by r4159. Preferences form in user profile was crashing.
...
SVN:trunk[4166]
2016-06-01 15:51:29 +00:00
Romain Quetiez
1fb346da67
#1235 Internal: DBObject API - external fields not up to date after changing the external key (though they seem to be in sync when inspecting the internal values, Get() does not return the expected value).
...
SVN:trunk[4165]
2016-06-01 14:13:20 +00:00
Romain Quetiez
df466faddf
Demo mode: to not allow deleting neither changing the org of persons attached to a user account (this to make sure that the portal users will still have access to the customer portal)
...
SVN:trunk[4164]
2016-06-01 12:46:22 +00:00
Guillaume Lajarige
43106d3a77
#1251 Disabling log notification in config causes a fatal error
...
SVN:trunk[4163]
2016-06-01 09:15:24 +00:00
Denis Flaven
9fc3b52b24
Fix: cannot export an object with a property named "length" !!
...
SVN:trunk[4161]
2016-05-30 09:25:29 +00:00
Guillaume Lajarige
026edb523c
Customer portal : Added support for demo mode
...
SVN:trunk[4160]
2016-05-30 09:00:02 +00:00
Guillaume Lajarige
f640558349
Customer portal : Added support for demo mode
...
SVN:trunk[4159]
2016-05-30 08:12:17 +00:00
Guillaume Lajarige
ae52521a3f
Customer portal : Added highlight classes to items in the manage brick
...
SVN:trunk[4158]
2016-05-27 10:32:58 +00:00
Guillaume Lajarige
13ef1a4084
Customer portal : Changed behaviour of browse brick table in list mode. Now columns hide from left to right when screen is too narrow. As the table is based on a hierarchy, left columns are redundants and hence less important then those on the right. (Had to update dataTables files to get a fix on the responsive extension)
...
SVN:trunk[4157]
2016-05-27 08:37:10 +00:00
Romain Quetiez
a8f67116ea
Customer portal: continuation of the previous commit... hopefully the last one before releasing 2.3.0 beta!
...
SVN:trunk[4156]
2016-05-26 10:00:21 +00:00
Romain Quetiez
af9bd61bb7
Preparing release 2.3.0 beta
...
SVN:trunk[4155]
2016-05-26 09:27:35 +00:00
Guillaume Lajarige
fdb0a8116c
Customer portal : Changed user profile brick icon
...
SVN:trunk[4154]
2016-05-26 08:58:55 +00:00
Guillaume Lajarige
ffcc6ded74
Customer portal : Translated on going requests tabs
...
SVN:trunk[4153]
2016-05-25 15:45:17 +00:00
Guillaume Lajarige
6152277910
Customer portal : Home tile alignment to the left
...
SVN:trunk[4152]
2016-05-25 14:47:19 +00:00
Denis Flaven
62b47556bc
Aligning version numbers for the modules modified since the last release.
...
SVN:trunk[4151]
2016-05-25 14:07:45 +00:00
Romain Quetiez
c9bfeedb50
Preparing release 2.3.0 beta
...
SVN:trunk[4150]
2016-05-25 13:54:08 +00:00
Guillaume Lajarige
0dcff56969
Customer portal : Good Vibrations ♫♫
...
SVN:trunk[4149]
2016-05-25 13:44:22 +00:00
Denis Flaven
16d0df2553
Regression fix: update read-only fields which are dependent from other fields.
...
SVN:trunk[4148]
2016-05-25 13:34:12 +00:00
Guillaume Lajarige
564b8a9726
Customer portal : User name truncation when too long on mobile UI
...
SVN:trunk[4147]
2016-05-25 13:23:37 +00:00
Romain Quetiez
3830d2414c
New portal: Finalized the texts in the home view (and menus)
...
SVN:trunk[4146]
2016-05-25 13:07:50 +00:00
Guillaume Lajarige
2e6e6d52ca
Customer portal : UI improvements on navigation menu
...
SVN:trunk[4145]
2016-05-25 13:00:05 +00:00
Denis Flaven
22f73506a2
Support for objects to go "out of the silo" during a transition by making sure that we can reload an object we've just saved.
...
SVN:trunk[4144]
2016-05-25 12:32:32 +00:00
Denis Flaven
fc4c3c9bb9
Improved the "closed requests" icon at small point sizes.
...
SVN:trunk[4143]
2016-05-25 12:26:50 +00:00
Guillaume Lajarige
461153967a
Customer portal : Fixed a bug in brick layout title
...
SVN:trunk[4142]
2016-05-25 12:18:35 +00:00
Guillaume Lajarige
c4e20ea0fe
Customer portal : Fixed a bug in sticky buttons
...
SVN:trunk[4141]
2016-05-25 11:27:35 +00:00
Guillaume Lajarige
1ea66646b6
Customer portal : Allowed HTML in tile description. Also fixed tile description css to avoid text wrapping under the decoration.
...
SVN:trunk[4140]
2016-05-25 09:44:30 +00:00
Denis Flaven
201f5118b3
Fine tuning of the default value for display_max_width.
...
SVN:trunk[4139]
2016-05-25 09:29:43 +00:00
Denis Flaven
4bebcdc63a
No quotes around the default date and time format!
...
SVN:trunk[4138]
2016-05-25 09:28:40 +00:00
Guillaume Lajarige
f6b185388a
Customer portal : Added background to user card
...
SVN:trunk[4137]
2016-05-25 09:16:34 +00:00
Denis Flaven
b97b9bf1d5
$this->head_html(log)$ and $this->head(log)$ now support both text and HTML case logs.
...
SVN:trunk[4136]
2016-05-25 08:59:26 +00:00
Guillaume Lajarige
eab0320ef0
Customer portal : Creating a request from services catalog now redirects to "on going requests" page
...
SVN:trunk[4135]
2016-05-25 08:33:02 +00:00
Romain Quetiez
93adab0644
New portal: IIS default config not handling correctly woff/svg files
...
SVN:trunk[4134]
2016-05-25 07:59:00 +00:00
Guillaume Lajarige
adc70103e0
Customer portal : UI improvements
...
SVN:trunk[4133]
2016-05-25 07:32:23 +00:00
Romain Quetiez
cf3d0bde5b
Operational status: only in search forms (+ search results for Ticket)
...
SVN:trunk[4132]
2016-05-25 07:29:20 +00:00
Romain Quetiez
4187b074a9
ImageAttribute: only in XML version 1.3
...
SVN:trunk[4131]
2016-05-24 19:55:08 +00:00
Romain Quetiez
1a5637352b
New attribute 'operational_status' : finalized with three values (ongoing, resolved and closed)
...
SVN:trunk[4130]
2016-05-24 16:03:47 +00:00
Romain Quetiez
1e719b97d8
New attribute: ImageAttribute
...
SVN:trunk[4129]
2016-05-24 15:29:44 +00:00
Denis Flaven
2299d23099
Adding an extra index to speed-up data synchronization for large volumes of data.
...
SVN:trunk[4128]
2016-05-24 13:49:34 +00:00
Denis Flaven
a91723befe
Missing dictionary entry for the PDf export options.
...
SVN:trunk[4127]
2016-05-24 13:43:09 +00:00
Guillaume Lajarige
e1ea466053
Customer portal : New Combodo font and stylesheet to use some pictos as characters anywhere
...
SVN:trunk[4126]
2016-05-24 12:34:30 +00:00
Guillaume Lajarige
2c4ccd2302
Customer portal : Changed PortalURLMaker of default portal instance so generated links now point to an edit page instead of a view page.
...
SVN:trunk[4125]
2016-05-24 09:53:45 +00:00
Denis Flaven
930e51f94c
Font plugin for CKEditor
...
SVN:trunk[4124]
2016-05-24 09:38:14 +00:00
Denis Flaven
534eef1f72
Font plugin for CKEditor
...
SVN:trunk[4123]
2016-05-24 09:37:32 +00:00
Guillaume Lajarige
89fa0365fd
Customer portal : Services catalog displayed as a list by default
...
SVN:trunk[4122]
2016-05-24 09:34:17 +00:00
Guillaume Lajarige
9f8ed3ada3
Customer portal : Home UI improvements, added missing iTop logo
...
SVN:trunk[4121]
2016-05-24 09:26:35 +00:00
Denis Flaven
047fd088cc
Excel export: write empty date (and time) cells as empty strings instead of zero (0) !
...
SVN:trunk[4120]
2016-05-23 16:24:12 +00:00
Denis Flaven
db010e4ddc
Proper validation (and reporting) about date (and time) formats.
...
SVN:trunk[4119]
2016-05-23 16:11:27 +00:00
Guillaume Lajarige
bc6f73b9ec
Customer portal : Fixed some bugs and rectified some default configuration parameters
...
- Form, ExternalKey autocomplete & regular search
- Portal power user being able to see all its silo tickets
- Worked on the UI
SVN:trunk[4118]
2016-05-23 15:31:02 +00:00
Denis Flaven
7761404755
Date and time format: exports finalization.
...
SVN:trunk[4117]
2016-05-23 14:39:21 +00:00
Denis Flaven
7a6e47f067
Properly display the date value (and not the current date) in the export preview.
...
SVN:trunk[4116]
2016-05-23 13:05:10 +00:00
Denis Flaven
409ca87f8c
Initialize TimePicker in one call to prevent the time part from being reset as it happens when doing the same action in two passes (calling "options" the second time) !!
...
SVN:trunk[4115]
2016-05-23 12:35:36 +00:00
Guillaume Lajarige
6ce0940f67
Customer portal : Ordered languages in user preferences
...
SVN:trunk[4114]
2016-05-23 12:16:10 +00:00
Guillaume Lajarige
127d2a3295
Customer portal : Fixed exception in ManageBrick that was looking for objects out of its scope
...
SVN:trunk[4113]
2016-05-23 10:16:43 +00:00
Denis Flaven
f4ff96a552
InlineImage::FixUrls must be
...
1) idempotent
2) aligned with the syntax used by CKEditor
to prevent creating new entries in the history when nothing was modified.
SVN:trunk[4112]
2016-05-23 10:16:31 +00:00
Denis Flaven
64b3e12258
Updated C3Js to 0.4.11 to fix an issue (on click event) on Chrome.
...
SVN:trunk[4111]
2016-05-23 08:13:20 +00:00
Romain Quetiez
7aa1495c4a
Customer Portal: simplified the contents of the home page (still requires icons and a review of the CSS)
...
SVN:trunk[4110]
2016-05-20 09:46:55 +00:00
Romain Quetiez
4a1ec12cba
#1213 Losing SLA data when changing any attribute of an SLA.
...
SVN:trunk[4109]
2016-05-20 08:01:40 +00:00
Guillaume Lajarige
f4ab48a2d4
Customer portal : Disabled autocomplete on password fields in the user profile form
...
SVN:trunk[4108]
2016-05-19 15:23:40 +00:00
Guillaume Lajarige
eeb0d5c98c
Customer portal : Look and feel WIP
...
SVN:trunk[4107]
2016-05-19 15:23:23 +00:00
Romain Quetiez
1ebafb0566
XSS: Fixed a regression caused by the fix [3994]. Object hyperlinks were escaped twice causing accuented characters displayed as '´'. The API DBObject::MakeHyperLink has been clarified and the original fix moved elsewhere. The XSS injection that was not handled correctly prior to [3994] was in the display of an external key in the details of an object. To reproduce easily, inject some malicious characters in the name of the organization 'Demo' and view any object owned by Demo.
...
SVN:trunk[4106]
2016-05-19 09:51:09 +00:00
Denis Flaven
4a81d70bf6
Suppress a warning when exporting a case log to HTML... Limitation: be aware that wiki links are not transformed to hyperlinks in this case.
...
SVN:trunk[4105]
2016-05-18 09:33:17 +00:00
Guillaume Lajarige
ccc0c7e7aa
Customer portal : Object search dialog when adding object to a linkedset doesn't show already added elements.
...
SVN:trunk[4104]
2016-05-18 09:15:44 +00:00
Guillaume Lajarige
788f7bb029
Customer portal : Adding object to linkedset could have result in duplicates. Fixed
...
SVN:trunk[4103]
2016-05-18 09:00:54 +00:00
Romain Quetiez
70774f1923
Model factory: _delta = if_exists, not working with <class> nodes
...
SVN:trunk[4102]
2016-05-18 08:22:17 +00:00
Denis Flaven
c914344a32
Security: do not show actual encrypted values, display '*****' instead.
...
SVN:trunk[4101]
2016-05-18 08:15:14 +00:00
Denis Flaven
3b38388c73
Support "recusrive placeholders" (i.e. $this->org_id->code$) inside notifications... when using the HTML notation (i.e. -> becomes ->)
...
SVN:trunk[4100]
2016-05-17 19:01:22 +00:00
Guillaume Lajarige
d9a5b85c67
Customer portal : Fixed regression in request template that was introduced by #4095
...
SVN:trunk[4099]
2016-05-17 15:43:23 +00:00
Guillaume Lajarige
1aacf1adae
Customer portal : UX adjustments on LinkedSet (Collapse toggler pictos, check all/none state)
...
SVN:trunk[4098]
2016-05-17 14:56:25 +00:00
Guillaume Lajarige
88866ac199
Customer portal : Form, sticky buttons as pictos only in both plain page and modal layouts. Also, pictos were added to regular bottom buttons
...
SVN:trunk[4097]
2016-05-17 14:55:05 +00:00
Denis Flaven
316d1f9b14
Validate date/time fields using their regular expression during an import (or synchro) to avoid passing wrong formats as-is (e.g. 01/02/16 can become 01/02/0016 instead of 01/02/2016 if you use the 4 digits format for years and pass only 2 digits !)
...
SVN:trunk[4096]
2016-05-17 14:51:42 +00:00
Romain Quetiez
6b465688a2
Custom Fields: API to detect forms containing only hidden fields
...
SVN:trunk[4095]
2016-05-17 14:09:38 +00:00
Guillaume Lajarige
6e8ee09399
Customer portal : Form, sticky buttons only when creating / editing objects
...
SVN:trunk[4094]
2016-05-16 17:20:36 +00:00
Guillaume Lajarige
754604b009
Customer portal : Preview for attachments
...
SVN:trunk[4093]
2016-05-15 09:43:53 +00:00
Guillaume Lajarige
7790f770a7
Customer portal : Form - Hiding templates when there is none in order to optimize form space (Actually hiding SubForm when there is only HiddenField)
...
SVN:trunk[4092]
2016-05-15 08:46:24 +00:00
Denis Flaven
72b4c549c7
Fix a regression (crash) when displaying deadline attributes.
...
SVN:trunk[4091]
2016-05-14 17:42:02 +00:00
Denis Flaven
1515178500
Validate date/time fields using their regular expression during an import to avoid passing wrong formats as-is (e.g. 01/02/16 can become 01/02/0016 instead of 01/02/2016 if you use the 4 digits format for years and pass only 2 digits !)
...
SVN:trunk[4090]
2016-05-14 17:38:07 +00:00
Denis Flaven
165dbaf245
Date and time format finalization for the exports:
...
- properly display the date and time as expected in the preview during an interactive export
- differentiate date vs date&time formats in the Excel export
- use the custom format in the default URL provided by the query phrasebook
SVN:trunk[4089]
2016-05-14 17:35:52 +00:00
Guillaume Lajarige
3c112eb078
Customer portal : LinkedSet widget UX improvements part 2 (Collapsing widget)
...
SVN:trunk[4088]
2016-05-14 17:23:43 +00:00
Denis Flaven
5540fdb7db
Display the dates of the synchronization according to the date/time format defined for this language.
...
SVN:trunk[4087]
2016-05-14 17:06:47 +00:00
Denis Flaven
6e074f5486
Regression: properly initialize mandatory date (and time) attributes when using a custom date/time format.
...
SVN:trunk[4086]
2016-05-14 17:04:20 +00:00
Denis Flaven
636140bfdd
Display the dates of the history according to the date/time format defined for this language.
...
SVN:trunk[4085]
2016-05-14 17:02:26 +00:00
Guillaume Lajarige
69165396d4
Customer portal : LinkedSet widget UX improvements part 1 (Check/Uncheck all)
...
SVN:trunk[4084]
2016-05-13 17:47:14 +00:00
Romain Quetiez
dab860cfbd
Breadcrumb: reviewed icon and label for global search and search menus just openin a search form
...
SVN:trunk[4083]
2016-05-13 15:27:11 +00:00
Romain Quetiez
7380f56a50
Breadcrumb: reworked the disposition (when wrapping onto a second line, the last item could be strangely placed between both lines on Chrome)
...
SVN:trunk[4082]
2016-05-13 15:24:17 +00:00
Guillaume Lajarige
d0d761236b
Customer portal : Improvements on form sticky buttons
...
SVN:trunk[4081]
2016-05-13 14:03:36 +00:00
Guillaume Lajarige
760f3a788e
Customer portal : Added description to bricks. Displayed only in the home tiles.
...
SVN:trunk[4080]
2016-05-13 13:43:10 +00:00
Romain Quetiez
73274ec461
Customer portal: the list of service subcategories of a user request must be filtered on 'service request'
...
SVN:trunk[4079]
2016-05-13 13:33:05 +00:00
Guillaume Lajarige
291a5847f0
Customer portal : Portal logo source order is : "/images/itop-logo.png" < "/env-xxx/branding/portal-logo.png" < "value of //properties/logo of the portal module_design"
...
SVN:trunk[4078]
2016-05-13 12:06:35 +00:00
Guillaume Lajarige
2720f6e54b
Customer portal : Sticky form button when form is to long to be fully displayed in the screen
...
SVN:trunk[4077]
2016-05-13 10:31:15 +00:00
Romain Quetiez
58b571f08a
Model factory: handle the flag 'if_exists' when transforming XML from version 1.3 to older versions
...
SVN:trunk[4076]
2016-05-12 19:13:06 +00:00
Romain Quetiez
14a2d9960f
Model factory: introduced a new variation of attribute _delta: if_exists. Use this flag to ignore a branch if the corresponding node does not exist in the data model being hacked. This is to reduce the burden of developping separate modules depending on the installation options.
...
SVN:trunk[4075]
2016-05-12 15:57:09 +00:00
Romain Quetiez
88c46813d9
Setup: improved the module ordering algorithm. If a module has several dependencies (inclusive OR), it must be installed after each and every of its dependency that has been selected for installation.
...
SVN:trunk[4074]
2016-05-12 15:50:54 +00:00
Guillaume Lajarige
bcb5e4304a
Customer portal : BrowseBrick : Changed style of secondaries actions
...
SVN:trunk[4073]
2016-05-12 13:21:30 +00:00
Guillaume Lajarige
793d4f814d
Customer portal : Tooltip not closing when opening a modal on mobile devices
...
SVN:trunk[4072]
2016-05-12 12:01:52 +00:00
Guillaume Lajarige
1693f73742
Customer portal : Finally translated form validation messages !
...
SVN:trunk[4071]
2016-05-12 10:47:38 +00:00
Guillaume Lajarige
4c9edf04dd
Customer portal : Support for password field in the Bootstrap renderer
...
SVN:trunk[4070]
2016-05-12 10:25:07 +00:00
Guillaume Lajarige
9b11b12b07
Customer portal : Form adjustments on UserProfile brick
...
SVN:trunk[4069]
2016-05-12 10:24:23 +00:00
Guillaume Lajarige
6297809716
Customer portal : User Profile brick that allows basic Contact informations edition, password / preferences change from the portal
...
SVN:trunk[4068]
2016-05-12 10:22:23 +00:00
Guillaume Lajarige
6540c547a4
Customer portal : Fixed home tiles disposition algo
...
SVN:trunk[4067]
2016-05-12 10:19:30 +00:00
Romain Quetiez
9d8a2cb7bb
Customer Portal: refactoring for the "new ticket" buttons, depending on the installation options (in particular, a full ITIL install has now two buttons)
...
SVN:trunk[4066]
2016-05-11 18:37:30 +00:00
Romain Quetiez
35c0bfea1c
No need for bridge modules to be listed as installed modules in the about box. Still, they are listed in the "support information".
...
SVN:trunk[4065]
2016-05-11 18:32:54 +00:00
Denis Flaven
748c1853ec
Programmatically allow to write on any object - if needed - independently of the profiles.
...
SVN:trunk[4064]
2016-05-11 16:13:48 +00:00
Guillaume Lajarige
0e5c2c3e80
Portal : Changed "no item" message for BrowseBrick
...
SVN:trunk[4063]
2016-05-11 14:23:35 +00:00
Denis Flaven
cc0019c090
Styles fine tuning and nicer display of the main menu (no more animation on initial load).
...
SVN:trunk[4062]
2016-05-11 14:20:02 +00:00
Denis Flaven
e00667c2e4
HTML texts: support of float (left/right) in the inline style tags.
...
SVN:trunk[4061]
2016-05-11 13:43:49 +00:00
Romain Quetiez
c1a4c0185b
Customer Portal: exit if 1) there is neither UR nor INC tickets installed 2) the current login has no contact associated to it
...
SVN:trunk[4060]
2016-05-11 13:18:01 +00:00
Denis Flaven
1c997a5973
Removed "Essential" from the logo.
...
SVN:trunk[4059]
2016-05-11 13:18:00 +00:00
Romain Quetiez
236de6ce34
Customer Portal: renamed portal related modules (as seen in the about box)
...
SVN:trunk[4058]
2016-05-11 12:20:17 +00:00
Romain Quetiez
681e07ca73
Customer portal: do not install itop-portal-base if not required
...
SVN:trunk[4057]
2016-05-11 12:14:51 +00:00
Denis Flaven
e388e4b163
Bug fix: the result of CheckToWrite() was not taken into account (action failed silently) when creating an object using the [+] button inside a form.
...
SVN:trunk[4056]
2016-05-11 12:09:45 +00:00
Romain Quetiez
1018dc6e74
Customer portal: adjusted the versions of the recently updated module (inc. the XML format version raised to 1.3)
...
SVN:trunk[4055]
2016-05-11 12:05:03 +00:00
Romain Quetiez
06075805e0
Fixed regression introduced in [4022]: about box not displayed
...
SVN:trunk[4054]
2016-05-11 11:46:28 +00:00
Denis Flaven
37a6a5183d
#1214 : concurrent access lock not properly released when CheckToWrite() reports an error during a transition from one state to another.
...
SVN:trunk[4053]
2016-05-11 11:44:26 +00:00
Denis Flaven
ebd89194ee
New flag to open/collapse the search form at the top of a page in an OQLMenuNode.
...
SVN:trunk[4052]
2016-05-11 10:07:36 +00:00
Romain Quetiez
243dee4312
Brand new customer portal - installed only if selected by the user in the installation wizard
...
SVN:trunk[4051]
2016-05-11 08:25:20 +00:00
Guillaume Lajarige
d677a20c96
Portal : Datamodel modifications to ensure setup modularity
...
SVN:trunk[4050]
2016-05-11 07:49:54 +00:00
Denis Flaven
ccddf1d4f0
Fix for editing HTML content containing html entities: & must be encoded as & as well !!
...
SVN:trunk[4049]
2016-05-10 19:26:02 +00:00
Denis Flaven
1d3ab23699
Typo!
...
SVN:trunk[4048]
2016-05-10 17:21:44 +00:00
Romain Quetiez
0182822f76
Customer Portal: proposed by default for installation
...
SVN:trunk[4047]
2016-05-10 15:47:10 +00:00
Romain Quetiez
c911ce38a6
User request (all-in-one): the end-user can leave the request type undefined, in such a case, she can select any type of services and the request type gets computed when the requests is written to the DB. Still, this is possible to select a request type and the list of services is filled with the corresponding services. This behavior was necessary for the new user portal to work fine.
...
SVN:trunk[4046]
2016-05-10 15:38:10 +00:00
Denis Flaven
89328e1662
Prevent infinite cross-ticket recursion when propagating parent->child resolution in tickets.
...
SVN:trunk[4045]
2016-05-10 15:33:48 +00:00
Romain Quetiez
a618f2804b
Brand new customer portal - alpha version: requires adjustments to work with various ticketing installation options
...
SVN:trunk[4044]
2016-05-10 15:04:44 +00:00
Denis Flaven
242f7785e6
Add the "filter" attribute into the details form of the TriggerOnThresholdReached class.
...
SVN:trunk[4043]
2016-05-10 14:00:34 +00:00
Denis Flaven
3335d0a453
Throw an expection in case of unexpected value for the _delta attribute in the XML...
...
SVN:trunk[4042]
2016-05-10 13:49:35 +00:00
Denis Flaven
1621f2ba31
Make the login page more mobile friendly.
...
SVN:trunk[4041]
2016-05-10 13:33:45 +00:00
Romain Quetiez
45ddc7f71b
Internal: when uploading documents, get the mimetype from the file itself (if feasible) rather than relying on the mimetype of the HTTP header. This was already implemented but it was buggy and fell anytime into the fallback method.
...
SVN:trunk[4040]
2016-05-10 10:57:25 +00:00
Romain Quetiez
ae22bbbc81
Internal: added DBObject::RegisterURLMakerClass, to allow for overriding the standard behavior of template placeholders such as $this->org_id->hyperlink(portal)$
...
SVN:trunk[4039]
2016-05-09 16:01:56 +00:00
Denis Flaven
3e1607047e
CKEditor's full screen mode is not supported on iOS (cf https://dev.ckeditor.com/ticket/8307 )
...
SVN:trunk[4038]
2016-05-09 15:36:26 +00:00
Denis Flaven
da69985970
Preparing for 2.3.0 beta.
...
SVN:trunk[4037]
2016-05-04 12:29:33 +00:00
Romain Quetiez
6999458de6
Added credits for CKEditor (LGPL)
...
SVN:trunk[4036]
2016-05-04 12:23:29 +00:00
Denis Flaven
37a8db125a
Portal users must now be able to add/remove links to Persons and CIs.
...
SVN:trunk[4035]
2016-05-04 12:17:48 +00:00
Denis Flaven
3d74c1ccaa
More sample data: adding 1 Service Family for all IT services.
...
SVN:trunk[4034]
2016-05-04 12:16:12 +00:00
Romain Quetiez
6fae298c0c
#185 Navigation Breadcrumb - Missing standard icon for classes not having a specific icon
...
SVN:trunk[4033]
2016-05-04 11:29:17 +00:00
Denis Flaven
e85c6ca0c5
Fix full screen button in CKEditor.
...
SVN:trunk[4032]
2016-05-04 10:35:12 +00:00
Guillaume Lajarige
aa788a7aad
Portal : Finished integration of Date & DateTime attributes in forms
...
SVN:trunk[4031]
2016-05-04 10:04:06 +00:00
Denis Flaven
3c4845cf99
#1215 : URL fields can now store up to 2048 characters
...
SVN:trunk[4030]
2016-05-04 09:55:24 +00:00
Guillaume Lajarige
2b12a86fa8
Portal : Finished integration of Date & DateTime attributes in forms
...
SVN:trunk[4029]
2016-05-04 09:42:14 +00:00
Denis Flaven
dc5040c1d2
Wiki syntax is supported in formatted (HTML) text fields as well as plain text areas.
...
SVN:trunk[4028]
2016-05-04 08:53:47 +00:00
Denis Flaven
b02e163ecc
CKEditor integration fine tuning with a new "Maximize" button in the collapsed toolbar.
...
SVN:trunk[4027]
2016-05-04 08:26:14 +00:00
Romain Quetiez
0e25c9a7a1
#185 Navigation Breadcrumb - Do not generate new entries for "Preferences..." when the user is tuning the language
...
SVN:trunk[4026]
2016-05-04 07:51:06 +00:00
Guillaume Lajarige
79f73256d7
Support for Date and DateTime in portal
...
Fixed form validation on portal
SVN:trunk[4025]
2016-05-03 16:08:09 +00:00
Romain Quetiez
2513f0489c
#185 Navigation Breadcrumb - Identify iTop by the Database and URL (to avoid messing up breadcrumbs when navigating between several instances of iTop - still buggy in case of reinstall)
...
SVN:trunk[4024]
2016-05-03 15:26:05 +00:00
Denis Flaven
3579f557d1
Support of date and time custom formats... for custom fields !!
...
SVN:trunk[4023]
2016-05-03 15:17:46 +00:00
Romain Quetiez
668e822fc6
#185 Navigation Breadcrumb - Beta version
...
- Any page has a breadcrumb (except if POST and a number of pages like "new object")
- Added Home + Menu buttons showed when the left pane is closed
- Configuration: breadcrumb.max_count (0 to disable)
SVN:trunk[4022]
2016-05-03 15:06:14 +00:00
Guillaume Lajarige
dd41dc05f5
Refactoring for AttributeDateTime in the portal
...
SVN:trunk[4021]
2016-05-03 14:44:12 +00:00
Guillaume Lajarige
f247b89342
Refactoring for AttributeDateTime in the portal
...
SVN:trunk[4020]
2016-05-03 14:40:56 +00:00
Denis Flaven
5386662146
Support of date and time custom formats... continuing towards the beta !
...
SVN:trunk[4019]
2016-05-03 09:56:02 +00:00
Romain Quetiez
7d4e9ce069
Refactoring: new API utils::GetCSSFromSASS
...
SVN:trunk[4018]
2016-04-29 08:04:44 +00:00
Denis Flaven
9fd07125e2
Helper class for date & time format conversions between the various conventions for expressing date & time formats.
...
SVN:trunk[4017]
2016-04-29 07:53:45 +00:00
Romain Quetiez
5d5b61d956
Wiki syntax: allow white spaces in the specification of a link to an object (form: [[<class>:<friendlyname>]])
...
SVN:trunk[4016]
2016-04-28 11:48:03 +00:00
Guillaume Lajarige
4d91e92344
Portal :
...
- Support for attachments in forms
- Added a loader on LinkedSet fields while form is retrieving information on server when adding objects
SVN:trunk[4014]
2016-04-28 08:22:46 +00:00
Guillaume Lajarige
75b32f2552
Attachments : Delete button's label of an attachment was hard-coded. Putted dictionnary entry instead.
...
SVN:trunk[4013]
2016-04-28 08:19:42 +00:00
Denis Flaven
8eba9ae714
Enhancement: Date and time formats are now configurable in iTop !! (beta version, beware!)
...
SVN:trunk[4011]
2016-04-22 09:26:27 +00:00
Romain Quetiez
b318d27b19
#1209 Setup or Backup failing with french error message 'Effacement du fichier ...' Regression introduced in [r3868]. Occurs when a backup fails and prevents users from seeing the mysql error report.
...
SVN:trunk[4010]
2016-04-22 09:26:16 +00:00
Guillaume Lajarige
90cdd28bc8
Portal : Slightly changed the GoHome() function regexp to preserve additional parameters
...
SVN:trunk[4009]
2016-04-21 13:19:19 +00:00
Denis Flaven
e51a6f8ff2
Bug fix: when a date/time format is specified, don't try to process columns named 'id' since obviously these are neither date/times nor a genuine attribute code.
...
SVN:trunk[4008]
2016-04-20 12:20:18 +00:00
Guillaume Lajarige
585a73e641
Fixed a typo in German translation files ("Deails für Benutzeranfrage" => "Details für Benutzeranfrage")
...
SVN:trunk[4007]
2016-04-19 14:41:59 +00:00
Romain Quetiez
2a835e5be4
Internal: query arguments could be array values, making it easier to build dynamic IN() clauses
...
SVN:trunk[4006]
2016-04-19 13:59:43 +00:00
Romain Quetiez
0386c53a6a
#185 Navigation Breadcrumb - Fixed a regression introduced in [r4000]: default menu not displayed afer login
...
SVN:trunk[4005]
2016-04-19 13:55:12 +00:00
Guillaume Lajarige
e262dbfcf2
Portal : Fixed a bug in linkedset when removing last object
...
SVN:trunk[4004]
2016-04-19 13:47:24 +00:00
Guillaume Lajarige
8834e1b49c
- Added support for ExternalKey, LinkedSet, linkedSetIndirect, CaseLog to the new portal
...
- Fixed some bugs on the customfields integration with he portal
SVN:trunk[4003]
2016-04-18 15:07:58 +00:00
Denis Flaven
c9c6b2f7d5
Replacing OpenFlashCharts by d3js and c3js: Farewell Flash ! (still an alpha version !)
...
SVN:trunk[4002]
2016-04-18 14:59:56 +00:00
Denis Flaven
7abb048b7c
Replacing OpenFlashCharts by d3js and c3js: Farewell Flash ! (still an alpha version !)
...
SVN:trunk[4001]
2016-04-18 14:56:02 +00:00
Romain Quetiez
e27d61a525
#185 Navigation Breadcrumb - A beta version, based on the navigation history. Comments welcome!
...
SVN:trunk[4000]
2016-04-18 14:48:43 +00:00
Romain Quetiez
f436cece4a
OQL arguments: when the value of a query argument is null, it must be considered as being a valid argument (was reported as missing). Improved the error reporting when the argument is in the form :this->attcode and the attcode is not valid for the class of 'this'.
...
SVN:trunk[3999]
2016-04-15 15:07:35 +00:00
Romain Quetiez
e7eb1ec7e3
CustomFields: simplified the wizard helper to cope with the edition in read-only mode (no need for the wizard helper to send the read-only/hidden values !)
...
SVN:trunk[3998]
2016-04-15 14:15:07 +00:00
Romain Quetiez
21564ff340
CustomFields: overload AttributeDefinition::Fingerprint
...
SVN:trunk[3997]
2016-04-15 09:05:39 +00:00
Denis Flaven
c32ef34307
Additional Dict entries for the bulk export parameters: keeping/removing HTML markup when exporting.
...
SVN:trunk[3996]
2016-04-15 08:51:52 +00:00
Romain Quetiez
2d05b110b8
Cosmetic: improved the feedback when an attribute edition control is being refreshed in the console
...
SVN:trunk[3995]
2016-04-11 19:02:54 +00:00
Romain Quetiez
25287a8c04
XSS: Correctly escape the name of an object when it is displayed within an hyperlink
...
SVN:trunk[3994]
2016-04-11 11:51:59 +00:00
Romain Quetiez
e877ec431f
HTML to Text conversion not working if mb_string not present (verb mb_split)
...
SVN:trunk[3993]
2016-04-08 12:02:29 +00:00
Romain Quetiez
272051ea99
Internal: added verb ormCaseLog::GetAsArray()
...
SVN:trunk[3992]
2016-04-08 10:59:01 +00:00
Romain Quetiez
725c7d45d1
Internal: Implemented DBObject::ExecActions, enables scripting object preset/modifications
...
SVN:trunk[3991]
2016-04-08 07:34:38 +00:00
Denis Flaven
b991f0a6c6
Fix for a crash in the setup (regression) introduced by [r3978] (optimization of the load of dictionaries)
...
SVN:trunk[3990]
2016-04-07 16:11:10 +00:00
Denis Flaven
ed035b3699
YOU MUST RUN THE SETUP AFTER PERFORMING THIS UPDATE !!
...
- Better handling of 'auto_select' modules
- New way of implementing the "includes" of modules, now completely out of the configuration file !
SVN:trunk[3989]
2016-04-07 16:00:01 +00:00
Romain Quetiez
e9f57fd9e2
CustomFields: support of DurationField (started devs for DateField and DateTimeField)
...
SVN:trunk[3988]
2016-04-06 10:25:11 +00:00
Romain Quetiez
fd124ef53b
CustomFields: support of RadioField or SelectObject +"radio" control
...
SVN:trunk[3987]
2016-04-06 09:21:01 +00:00
Romain Quetiez
0259071bdd
Internal: fixed typo in utils::TextToHtml()
...
SVN:trunk[3986]
2016-04-06 09:17:10 +00:00
Denis Flaven
32ce26aa7d
Fix for potential XSS vulnerability on uploaded file names. To be further tested before retrofitting in branches.
...
SVN:trunk[3985]
2016-04-05 16:15:29 +00:00
Romain Quetiez
3997ea3a23
CustomFields: support of TextAreaField
...
SVN:trunk[3984]
2016-04-05 13:12:25 +00:00
Romain Quetiez
f41c4f80f8
CustomFields: implemented the autocomplete behavior for SelectObjectField
...
SVN:trunk[3983]
2016-04-05 09:41:26 +00:00
Romain Quetiez
3eacf2e7fa
Internal: typo in the reporting of page spurious chars
...
SVN:trunk[3982]
2016-04-05 08:52:57 +00:00
Romain Quetiez
c3f804bb29
CustomFields: fixed typos preventing fields from adding custom javascript/css files to the page
...
SVN:trunk[3981]
2016-04-05 08:46:51 +00:00
Guillaume Lajarige
1784653678
Cleanup and optimization of the handling/loading of the dictionary files.
...
SVN:trunk[3980]
2016-04-04 13:56:36 +00:00
Denis Flaven
447fc85867
Optimization: load "pdftage" (and thus tcpdf) only when needed.
...
SVN:trunk[3979]
2016-04-04 13:44:59 +00:00
Denis Flaven
f3773f6047
Cleanup and optimization of the handling/loading of the dictionary files.
...
SVN:trunk[3978]
2016-04-04 13:44:15 +00:00
Guillaume Lajarige
b741532231
New API for SelectObjectField, replaced OQL query by DBSearch
...
SVN:trunk[3977]
2016-04-04 10:22:57 +00:00
Romain Quetiez
f01bd61692
CustomFields: suppressed a warning when editing an object with a custom field being read-only
...
SVN:trunk[3976]
2016-04-04 10:00:54 +00:00
Romain Quetiez
a5d3208599
CustomFields: Attributes of type CustomFields must be removed when converting from 1.3 to 1.2
...
SVN:trunk[3975]
2016-03-31 15:00:02 +00:00
Guillaume Lajarige
f3cc54fe8d
Updated licences file with Bootstrap and DataTables
...
SVN:trunk[3974]
2016-03-31 13:06:46 +00:00
Romain Quetiez
70e0fab267
Fixed regression introduced with [3912] and partially fixed in [3954] : when the autocomplete is active, then the search dialog was not working anymore.
...
SVN:trunk[3972]
2016-03-30 12:11:57 +00:00
Romain Quetiez
7868c4364c
Label of the final class attribute could only be defined on the root class (overriding it in derived classes had no effect)
...
SVN:trunk[3971]
2016-03-29 14:22:13 +00:00
Guillaume Lajarige
2a5ca467fd
Alpha 2.3.0 fixes :
...
- Multiple request templates on portal
- SelectField interface stabilization
- UI fixes on portal
- Forms updates on lifecycle
SVN:trunk[3970]
2016-03-29 12:33:08 +00:00
Romain Quetiez
2ab12d9d11
#1221 Exclude git folder from the copied folders, during the compilation process
...
SVN:trunk[3969]
2016-03-25 15:22:52 +00:00
Romain Quetiez
0104c3fe41
ResetStopWatch could not be used as a lifecycle action: the symptom is "The action has failed".
...
SVN:trunk[3967]
2016-03-25 10:02:29 +00:00
Romain Quetiez
847c1d2736
Custom fields: track the changes and improve the robustness with regards to the Exception thrown by the handler. Also fixed an issue with DBObject, causing the custom fields to be written several times if invoking DBUpdate more than once. Theoretically, this issue affects any type of attribute.
...
SVN:trunk[3966]
2016-03-24 10:49:04 +00:00
Romain Quetiez
922354320b
Code refactoring: removed a debug trace
...
SVN:trunk[3965]
2016-03-24 10:40:54 +00:00
Romain Quetiez
462af27157
Custom fields: comparing two sets of values is delegated to the custom fields handler because the values must be interpreted before concluding (blind comparison resulted in objects being written though the values were equivalent)
...
SVN:trunk[3964]
2016-03-22 16:55:51 +00:00
Romain Quetiez
ea31d71d16
Custom fields: check data against the form prior to recording (do not rely solely on the HTML form)
...
SVN:trunk[3963]
2016-03-22 09:02:03 +00:00
Romain Quetiez
2150682a92
Custom fields: values not recorded if the user does not change any of the default values
...
SVN:trunk[3962]
2016-03-22 08:59:15 +00:00
Guillaume Lajarige
24fcb20927
Form : Started fix on CaseLog field in the portal. Only the edit value is now in the editor. Still have to display the history below.
...
SVN:trunk[3961]
2016-03-18 15:04:49 +00:00
Romain Quetiez
414b94405b
Custom fields: better error reporting when an exception occurs while finalizing the form
...
SVN:trunk[3960]
2016-03-18 14:49:59 +00:00
Guillaume Lajarige
5328feb58b
Form : Added LabelField class for forms.
...
SVN:trunk[3959]
2016-03-18 14:15:30 +00:00
Guillaume Lajarige
bc7176f07e
Form : Fixed call to form_field::validate on fields with no form_field widget (typically LabelField)
...
SVN:trunk[3958]
2016-03-18 14:14:06 +00:00
Denis Flaven
8f4a8fc7be
New icon for the new portal.
...
SVN:trunk[3957]
2016-03-18 11:40:38 +00:00
Romain Quetiez
81317d4df9
Custom fields: better error reporting when an exception occurs while finalizing the form
...
SVN:trunk[3956]
2016-03-18 10:35:09 +00:00
Guillaume Lajarige
af87ef3623
Form : Fixed dependancies check in Form::Finalize()
...
SVN:trunk[3955]
2016-03-17 15:25:33 +00:00
Romain Quetiez
c201ae4147
Fixed regression introduced with [3912] : autocomplete not working (new User request with lots of existing user requests)
...
SVN:trunk[3954]
2016-03-17 14:04:48 +00:00
Guillaume Lajarige
37e3cb6285
Form : Added some translations to the new form system
...
SVN:trunk[3953]
2016-03-16 16:46:58 +00:00
Guillaume Lajarige
4b7fb20eaf
DBSearch : Allow join between DBUnionSearch by adding the DBUnionSearch::Join verb
...
SVN:trunk[3952]
2016-03-16 16:45:39 +00:00
Romain Quetiez
92d9c778e5
Prerequisites to the portal forms:
...
- finalize form fields in the order of their dependencies
- introduced the SelectObjectField which will implement an autocomplete (currently remains a drop-down whatever the number of items)
- code refactoring
SVN:trunk[3951]
2016-03-16 09:09:30 +00:00
Denis Flaven
1c90cd2312
Initial feedback whilie loading the 'list' tab of the impact analysis, useful when this tab is displayed first.
...
SVN:trunk[3949]
2016-03-15 09:39:59 +00:00
Romain Quetiez
4006fce0f2
Exclude magic parameters when listing query parameters (refactoring from run_query) This enables the use of magic parameters in the exports. The issue was less exposed in iTop 2.2.0 because only one single magic parameter was available.
...
SVN:trunk[3948]
2016-03-11 20:42:04 +00:00
Guillaume Lajarige
a31be78cbd
CustomFields : Fixed a regression in field_set.js during validation due to touched_fields what were no longer in the form when switching templates
...
SVN:trunk[3947]
2016-03-11 16:03:19 +00:00
Romain Quetiez
f29af948be
Custom fields: not all the values were correctly recorded (event name collision)
...
SVN:trunk[3946]
2016-03-11 15:05:59 +00:00
Guillaume Lajarige
44ba3d7bf8
CustomFields : Bootstrap integration
...
SVN:trunk[3945]
2016-03-11 14:34:16 +00:00
Guillaume Lajarige
7ea5176b56
CustomFields : Bootstrap integration
...
SVN:trunk[3944]
2016-03-11 12:42:21 +00:00
Romain Quetiez
e6887ab317
Custom fields: alpha version.
...
SVN:trunk[3943]
2016-03-10 16:55:13 +00:00
Denis Flaven
67c92ab946
Modified the "List" tab of the Impact Analysis to display only the actually impacted objects. The content of this tab is now refreshed every time the graph is rebuilt to take into account the "context" changes which causes the actual impact to change, or the filtering.
...
SVN:trunk[3941]
2016-03-09 18:05:14 +00:00
Guillaume Lajarige
daa090d4fe
Prerequisites to the custom fields
...
SVN:trunk[3940]
2016-03-09 16:58:31 +00:00
Romain Quetiez
ced87e71cb
Magic query arguments - fixed a regression: URL exceeding 4000 characters (!) because the serialized queries were including magic arguments. Those arguments must be computed right before executing the query. An alternative to this implementation could be to serialize a DBSearch with its parameters computed at serialization time.
...
SVN:trunk[3939]
2016-03-04 15:03:46 +00:00
Romain Quetiez
e26eed3142
#1210 (reopened) ...fixed a regression on commit [r3936]: dependent fields could not be loaded when there are link set attribute in the current form
...
SVN:trunk[3938]
2016-03-04 14:22:13 +00:00
Romain Quetiez
d33dad51f8
Prerequisites for custom fields
...
SVN:trunk[3937]
2016-03-02 16:16:42 +00:00
Romain Quetiez
37f6c6ed7d
#1210 Dependant field not reset (servicesubcategory not reset when service is reset)
...
SVN:trunk[3936]
2016-03-01 14:29:35 +00:00
Denis Flaven
7e3d526de3
Background process for cleaning expired temporary attachments and inline images.
...
SVN:trunk[3935]
2016-02-29 17:20:43 +00:00
Denis Flaven
53029f9fc3
Optimization/bug (!): Never use the whole object as a placeholder in ApplyParams !!
...
SVN:trunk[3931]
2016-02-29 16:20:41 +00:00
Denis Flaven
22ccb317d6
Optimization: do not load all columns when checking if a CI is part of the "context" of a given ticket.
...
SVN:trunk[3929]
2016-02-29 15:47:52 +00:00
Guillaume Lajarige
ad91dc14b8
Prerequisites to the custom fields
...
SVN:trunk[3928]
2016-02-26 16:10:57 +00:00
Denis Flaven
6bd89f31d3
Prevent access to *any* InlineImage by just guessing its identifier, now an additional "secret" is needed, making it much harder to guess (but not 100% impossible, beware !)
...
SVN:trunk[3927]
2016-02-26 10:18:46 +00:00
Denis Flaven
608e94a613
Inline images in formatted case log & descriptions: beta version fixperms js The inline images are now no longer stored stored as Attachments but using a specific object InlineImage...
...
SVN:trunk[3926]
2016-02-25 15:06:04 +00:00
Denis Flaven
9c16b08e22
(HTML) Formatted Case Logs, Description and Notifications with inline images uploaded as Attachments. Beta Version !! - fix for missing magnificPopup()
...
SVN:trunk[3925]
2016-02-22 14:20:53 +00:00
Denis Flaven
63b6b95f71
Use one-way encryption for storing the token used for the "Forgotten password" feature.
...
SVN:trunk[3920]
2016-02-19 18:17:11 +00:00
Guillaume Lajarige
17127a5157
Prerequisites to the custom fields (and space tabs to regular tabs conversion on some files)
...
SVN:trunk[3919]
2016-02-19 16:43:28 +00:00
Romain Quetiez
bfadbc4098
Prerequisites for custom fields
...
SVN:trunk[3918]
2016-02-19 12:30:19 +00:00
Romain Quetiez
08c6bb5c5e
Prerequisites for custom fields
...
SVN:trunk[3917]
2016-02-19 11:11:09 +00:00
Denis Flaven
4e24e9899e
(HTML) Formatted Case Logs, Description and Notifications with inline images uploaded as Attachments. Beta Version !!
...
SVN:trunk[3916]
2016-02-19 10:03:59 +00:00
Denis Flaven
c72bdae8d7
Upgrading to CKEditor v4 !!
...
SVN:trunk[3915]
2016-02-19 09:32:58 +00:00
Denis Flaven
3687657dd7
Upgrading to CKEditor v4
...
SVN:trunk[3914]
2016-02-19 09:23:45 +00:00
Romain Quetiez
21f0adb41b
Prerequisites for custom fields
...
SVN:trunk[3913]
2016-02-19 08:49:14 +00:00
Romain Quetiez
e0fad5e0e6
Magic query arguments:
...
- In addition to current_contact_id, the following arguments can be used in any OQL query (provided that the page running the query requires a login): current_contact->attcode and current_user->attcode
- Code refactoring: magic arguments in one single place
- The "Run queries" page is now taking into account those magic arguments (do not prompt the end-user with these arguments!)
SVN:trunk[3912]
2016-02-17 18:55:46 +00:00
Guillaume Lajarige
77f8129fac
Prerequisites to the custom fields
...
SVN:trunk[3911]
2016-02-12 13:44:10 +00:00
Guillaume Lajarige
064ae11ba8
Prerequisites to the custom fields
...
SVN:trunk[3910]
2016-02-11 15:25:03 +00:00
Guillaume Lajarige
d7a69118bc
Prerequisites to the custom fields
...
SVN:trunk[3909]
2016-02-11 15:24:29 +00:00
Romain Quetiez
f2fabe4eec
Prerequisites to the custom fields
...
SVN:trunk[3908]
2016-02-11 14:23:35 +00:00
Romain Quetiez
dc92e40429
Prerequisites to the custom fields
...
SVN:trunk[3907]
2016-02-11 10:55:41 +00:00
Guillaume Lajarige
9c080d51f7
Prerequisites to the custom fields
...
SVN:trunk[3903]
2016-02-11 10:26:06 +00:00
Denis Flaven
cf0541c93e
#1202 : Fix for a security vulnerability in the Configuration Editor.
...
SVN:trunk[3902]
2016-02-11 10:22:53 +00:00
Romain Quetiez
54be542355
Prerequisites to the custom fields
...
SVN:trunk[3901]
2016-02-10 15:46:05 +00:00
Romain Quetiez
225ace0d02
Preparing release 2.2.1
...
SVN:trunk[3898]
2016-02-03 13:16:40 +00:00
Romain Quetiez
ca24ae9632
#1196 Only administrators can add attachments by the mean of the REST/JSON API
...
SVN:trunk[3896]
2016-02-03 13:01:43 +00:00
Denis Flaven
9f69fd0811
#1193 : When creating new object from tab with <edit_mode>add_only</edit_mode> id of the parent object was not transfered to the form. Fix provided by Vladimir Kunin. Thank you Vladimir.
...
SVN:trunk[3894]
2016-02-02 13:31:02 +00:00
Romain Quetiez
b978a5d219
Fixed regression introduced in [3852] : setup not working anymore ($_SESSION is unset and a notice is issued, which can prevent the install from completing, depending on your PHP error level).
...
SVN:trunk[3891]
2016-01-28 11:11:12 +00:00
Romain Quetiez
e7759aa79a
Fixed regression introduced by [3857] : setup not working anymore (js files could not be loaded anymore)
...
SVN:trunk[3890]
2016-01-28 11:05:13 +00:00
Guillaume Lajarige
1f4ca07b5f
Foundations for the new form system
...
SVN:trunk[3889]
2016-01-28 10:37:32 +00:00
Denis Flaven
3ecd768982
Enhanced statistics at the end of the setup.
...
SVN:trunk[3887]
2016-01-27 10:42:21 +00:00
Romain Quetiez
3cfcbeb654
Internal: fixed the verb DBObjectSearch::IsAny
...
SVN:trunk[3886]
2016-01-26 14:49:37 +00:00
Guillaume Lajarige
e1409ba39c
Fixed a regression due to the DesignDocument factorisation :
...
- DesignDocument class : Namespace issue with DOMFormatException
- Compiler class : Parameters 2 & 3 of the DOMFormatException constructor needed to have a default value
SVN:trunk[3885]
2016-01-26 14:34:53 +00:00
Denis Flaven
172e255cc2
#1174 : support HTML fields in the bulk modify forms (capability to enable/disable the field live)
...
SVN:trunk[3883]
2016-01-26 14:32:51 +00:00
Denis Flaven
ef6299c6b4
#1183 : more refactoring and some robustness enhancements after tests on big datasets.
...
SVN:trunk[3881]
2016-01-26 13:22:47 +00:00
Denis Flaven
8a99b09e83
#1153 : preserve leading zeroes (in "numeric" fields) in the Excel export.
...
SVN:trunk[3879]
2016-01-26 09:50:35 +00:00
Denis Flaven
9da19de860
Suppress "Notice" messages when iconv detects invalid UTF-8 characters, since it breaks the JSON output if display_errors in On...
...
SVN:trunk[3878]
2016-01-25 17:10:39 +00:00
Romain Quetiez
b8af72b402
Modules: added a mean to cache data that will be reset upon compilation. To be used in conjunction with ModuleDesign.
...
SVN:trunk[3877]
2016-01-25 16:47:05 +00:00
Denis Flaven
764c551f0f
#1183 : grouping threshold is now taken int account for "Depends on..." graphs (i.e. grouping backwards)
...
SVN:trunk[3875]
2016-01-25 14:33:00 +00:00
Denis Flaven
410c47178d
#1176 : empty placeholders are represented by an empty string as in previous version.
...
SVN:trunk[3873]
2016-01-25 12:46:56 +00:00
Denis Flaven
f53ce84f5d
IconSelectorField (Design time !) can be read-only.
...
SVN:trunk[3871]
2016-01-21 16:02:42 +00:00
Romain Quetiez
ab0d425d93
XML: compilation error if there is no tag module_designs (completes revisions 3820 and 3861 which introduced the issue)
...
SVN:trunk[3870]
2016-01-21 15:36:23 +00:00
Romain Quetiez
95ca14b05c
#1165 backup with errors fills up tmp-directories with lots of backup-files.
...
SVN:trunk[3868]
2016-01-21 14:55:31 +00:00
Denis Flaven
61e2f97d6c
#1150 : Spurious message "A restore is running..." - FIXED !
...
SVN:trunk[3864]
2016-01-20 15:56:09 +00:00
Romain Quetiez
9e6c024beb
Model Factory: factorized duplicate code from ApplyChanges + fixed an issue in the error reporting
...
SVN:trunk[3863]
2016-01-20 13:01:58 +00:00
Guillaume Lajarige
879f5d89b9
Moved static method GetAllowedPortals() from LoginWebpage class to UserRights class.
...
SVN:trunk[3862]
2016-01-15 10:32:17 +00:00
Romain Quetiez
161041d379
XML: the images specified in the branding or in module_designs can be given as a fileref or a path relative to the env-production directory
...
SVN:trunk[3861]
2016-01-15 09:21:32 +00:00
Romain Quetiez
6d23d64e8f
Code refactoring: eliminated duplicate code between MFDocument and ModuleDesign
...
SVN:trunk[3860]
2016-01-14 14:11:25 +00:00
Romain Quetiez
8c4e84dfaf
New type of attribute: AttributeMetaEnum.
...
Designed to cope with the need to select tickets by operational status. The value of this attribute is computed by the framework. It depends on the actual ticket status (that attribute cannot be known by the root class because its definition varies from one type of ticket to another).
The data model has been enriched with the new attribute Ticket::operational_status. Its value is 'active' unless the ticket status is either 'rejected', 'resolved' or 'closed'. The existing dashboards have been left unchanged but should be revised to fully benefit from the new attribute (e.g. Open requests, Open problems, etc.)
Note: the alpha version of the compiler had already been committed by mistake a few days ago.
SVN:trunk[3859]
2016-01-13 14:35:21 +00:00
Romain Quetiez
706940769b
Compiler: Model alterations not flattened prior to compilation (when using the setup UI) -no need for doing the job twice (compiling from within the toolkit)
...
SVN:trunk[3858]
2016-01-12 10:32:46 +00:00
Romain Quetiez
3fe2aa3b1d
Portal: Use absolute URLs for js+css embedded into iTop (login prompt not working with the usage of symlinks or rewrite rules)
...
SVN:trunk[3857]
2016-01-12 09:15:37 +00:00
Guillaume Lajarige
1f4d7f2a32
Updated licenses with Silex
...
SVN:trunk[3856]
2016-01-11 15:34:33 +00:00
Guillaume Lajarige
57f0cce318
Added Silex framework
...
SVN:trunk[3855]
2016-01-11 15:32:14 +00:00
Romain Quetiez
e95d0a4722
Compiler: Model alterations not flattened prior to compilation (when using the setup UI)
...
SVN:trunk[3854]
2016-01-11 14:28:02 +00:00
Denis Flaven
f37030fe26
internal: new autoOpen flag.
...
SVN:trunk[3853]
2016-01-06 17:38:05 +00:00
Romain Quetiez
3be0bc8ca8
Improved the User Rights management API:
...
- new verbs: HasProfile and ListProfiles
- doing less queries (no need for listing all the profiles, caching the user profiles into the SESSION cookie
- did some code cleanup (unused variables)
SVN:trunk[3852]
2015-12-15 20:30:30 +00:00
Denis Flaven
65a7a8ee56
Properly read radio button values inside a form.
...
SVN:trunk[3849]
2015-12-14 13:02:08 +00:00
Romain Quetiez
ab38ce63a5
Portal: let the administrator specify an alternative URL for the portals (rewriting rules)
...
SVN:trunk[3848]
2015-12-10 13:06:42 +00:00
Denis Flaven
e92c6e5298
(internal) Remove _altered_in when exporting the delta.
...
SVN:trunk[3847]
2015-12-09 15:23:46 +00:00
Denis Flaven
76df404c8d
Keep track of which module altered which node in the XML.
...
SVN:trunk[3845]
2015-12-09 14:56:51 +00:00
Guillaume Lajarige
d3a2841fef
Error : Deleted files from a wrong commit.
...
SVN:trunk[3844]
2015-12-07 11:47:17 +00:00
Guillaume Lajarige
d60a4aa740
Portal : Sample to show how to alter a twig template in the portal. This sample replaces the main page layout by putting the navigation bar on the left side (except for mobile where it stays on the top).
...
SVN:trunk[3843]
2015-12-04 12:57:50 +00:00
Guillaume Lajarige
6538d7af1e
DOMFormatException : Overloaded the constructor to add an optionnal parameter $node (\DOMNode) that will append informations about the node and the exception line number to $message.
...
SVN:trunk[3842]
2015-12-02 10:46:00 +00:00
Guillaume Lajarige
c69279ee20
Fixed a typo in ModuleDesignElement->Dump() function. Was creating an object of iTopDesignDocument class instead of ModuleDesign class.
...
SVN:trunk[3839]
2015-12-02 10:38:24 +00:00
Denis Flaven
a16e746aa1
Fixed the computation of the lowest common ancestor.
...
SVN:trunk[3837]
2015-12-02 10:32:37 +00:00
Romain Quetiez
b1f62c8409
Internal: dehardcoded OqlUnionQuery::GetClass against the metamodel reflection API
...
SVN:trunk[3836]
2015-12-01 16:23:35 +00:00
Romain Quetiez
4a85f7f12b
Added AttributeDef::EnumTemplateVerbs, to generate the documentation about the available attribute formatting placeholders
...
SVN:trunk[3835]
2015-11-30 16:56:22 +00:00
Denis Flaven
818be68c2d
Make sure we don't redefine CoreException.
...
SVN:trunk[3833]
2015-11-30 14:07:18 +00:00
Denis Flaven
7511391aed
Added structured error reporting in case of missing dependencies for the modules to install.
...
SVN:trunk[3831]
2015-11-25 16:55:58 +00:00
Denis Flaven
d0a50adf32
Properly create DOMNodes with a text content (beware of XML entities inside the text)
...
SVN:trunk[3829]
2015-11-25 16:52:49 +00:00
Denis Flaven
c9576c696a
Support validation patterns contains a forward slash
...
SVN:trunk[3827]
2015-11-25 16:49:20 +00:00
Guillaume Lajarige
908b442b26
Core : Added CloneWithAlias function to DBSearch class. It creates a new DBObjectSearch from a DBSearch with a new alias.
...
SVN:trunk[3826]
2015-11-25 11:16:30 +00:00
Denis Flaven
9687e9985e
Support of derived classes in "add_remove" edition mode for AttributeLinkSet fields (the search form was not refreshing / loading properly when toggling the class to search for).
...
SVN:trunk[3822]
2015-11-20 14:16:07 +00:00
Romain Quetiez
07e4b18d06
#1173 Error during setup on a development system (XML containing unwanted text)
...
SVN:trunk[3821]
2015-11-16 15:16:28 +00:00
Romain Quetiez
93654dc656
Core: a module can have its own design defined in XML (/itop_design/modules_designs/module_design) and accessed at run time via the class ModuleDesign. Switching to XML version 1.3.
...
SVN:trunk[3820]
2015-11-10 12:39:45 +00:00
Denis Flaven
4be5334829
Make ReloadSearchForm work properly when the "submit" event handler is declared either with or without a "namespace" portion (e.g. 'submit.itop' vs 'submit')
...
SVN:trunk[3816]
2015-11-09 10:43:01 +00:00
Romain Quetiez
0f4301af01
Core API: added DBSearch:SetSelectedClasses
...
SVN:trunk[3815]
2015-11-09 10:35:51 +00:00
Romain Quetiez
b071c47674
PHP warning issued when the CSS is rebuilt (SASS lib)
...
SVN:trunk[3814]
2015-11-09 10:26:11 +00:00
Romain Quetiez
05e9f394f0
Improved the error reporting when assembling data model XML files (full path and line number of the faulty node)
...
SVN:trunk[3813]
2015-11-06 11:35:46 +00:00
Denis Flaven
2027becad2
#1164 : typo in German localization.
...
SVN:trunk[3811]
2015-10-26 10:57:40 +00:00
Denis Flaven
e7170755d8
Support the download of "bigger-than-memory" backup files.
...
SVN:trunk[3809]
2015-10-26 10:38:57 +00:00
Romain Quetiez
d0a0d3c93c
Fixed regressions due to the recent code refactoring [3803]
...
SVN:trunk[3807]
2015-10-12 15:35:05 +00:00
Denis Flaven
2db785477c
Do NOT localize finalclass values in REST/JSON.
...
SVN:trunk[3805]
2015-10-12 12:39:09 +00:00
Denis Flaven
31ec3152f9
Code refactoring to make the OQL parsing self contained in the "oql" subdirectory.
...
SVN:trunk[3803]
2015-10-12 10:01:59 +00:00
Denis Flaven
7b8b469f5a
Added a version number (arbitrary initialized to 2015-08-31 for iTop v2.2.0) to the OQL Lexer/parser.
...
SVN:trunk[3801]
2015-10-12 09:52:39 +00:00
Romain Quetiez
bc4737ac23
#1159 Cannot add edge (impact analysis not working)
...
SVN:trunk[3799]
2015-10-09 15:25:18 +00:00
Denis Flaven
6dc190d369
Do not rely on MetaModel::GetRootClass() to check the data model, use the abstraction of ModelReflection instead to keep the code portable.
...
SVN:trunk[3797]
2015-10-08 15:54:23 +00:00
Denis Flaven
9980d2e72a
#1156 : properly escape file paths containing spaces
...
SVN:trunk[3795]
2015-10-05 19:52:06 +00:00
Denis Flaven
2d34510f50
Better error reporting when the setup fails to create a directory.
...
SVN:trunk[3793]
2015-09-30 14:08:04 +00:00
Romain Quetiez
ef57f870ac
Internal - MFFactory: fixed GetDelta when there is no change at all
...
SVN:trunk[3792]
2015-09-28 12:49:54 +00:00