Pierre Goiffon
eb41d3e2ef
📝 Fix erroneous PHPDoc for InlineImageGC
2020-03-30 17:09:04 +02: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
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
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
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
a45d1336f4
🎨 Change \ormStopWatch::ComputeGoal for IDE convencience, add phpdoc
2020-02-28 12:02:20 +01:00
Stephen Abello
ed030403aa
N°2112 - Remove unused legacy portal conf variable and its usage
2020-02-25 14:00:58 +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
c669d6951b
PHPDoc and warnings suppression
2020-02-24 16:36:31 +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
Pierre Goiffon
19809249a2
📝 Update PHPDoc for StopWatches interfaces
2020-02-20 18:01:09 +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
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
Pierre Goiffon
03834fedb8
N°2369 deprecate MySQL views
2020-02-12 18:11:12 +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
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
55d8a2316a
📝 GetAttributeFlags PHPDoc revised
2020-02-11 08:34:57 +01:00
Eric
888d0775e6
N°2758 - Removed ValueSetDef cache
2020-02-10 14:29:28 +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
Eric
5d88391109
N°2758 - Reset ValueSetDef cache when modifying some parameters
2020-02-07 14:27:22 +01:00
Eric
dd5f4909da
Fix warning
2020-02-06 15:01:02 +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
Molkobain
6a432c6a25
N°2757 - Fix count in group by dashlets
2020-02-06 12:12:27 +01:00
Eric
3c2130aa72
N°2321 - Fix SQL request generation for inherited magic attributes
2020-02-04 15:54:03 +01:00
Eric
008614fde6
N°2321 - Fix SQL request generation for inherited magic attributes
2020-02-04 10:28:35 +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
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
ebe86d09ee
N°985 - Add applicable contexts on Trigger (logs)
2020-01-30 16:18:49 +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
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
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