diff options
author | hauke <hauke@pkgsrc.org> | 2019-03-15 16:32:13 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2019-03-15 16:32:13 +0000 |
commit | cbdaa563b7ade1888a552e61e8ea2d07c2300503 (patch) | |
tree | d3bf4cb172827aec5380f9b0e675c99cb048a8a4 /www | |
parent | 7b1ec679cf95507a79a73a5d651f0a0c87cac2ea (diff) | |
download | pkgsrc-cbdaa563b7ade1888a552e61e8ea2d07c2300503.tar.gz |
Upgrade GLPI to 9.4.1.1
The full changelog is available at:
<https://github.com/glpi-project/glpi/milestone/30?closed=1>
<https://github.com/glpi-project/glpi/milestone/33?closed=1>
De-support apache 2.2 config in httpd-glpi.conf sample
Re-work the way we hook in pkgsrc specific etc and var paths
Diffstat (limited to 'www')
-rw-r--r-- | www/php-glpi/MESSAGE | 4 | ||||
-rw-r--r-- | www/php-glpi/Makefile | 16 | ||||
-rw-r--r-- | www/php-glpi/PLIST | 1413 | ||||
-rw-r--r-- | www/php-glpi/distinfo | 10 | ||||
-rw-r--r-- | www/php-glpi/files/config_path.php | 37 | ||||
-rw-r--r-- | www/php-glpi/files/downstream.php | 13 | ||||
-rw-r--r-- | www/php-glpi/files/httpd-glpi.conf | 66 | ||||
-rw-r--r-- | www/php-glpi/files/local_define.php | 26 |
8 files changed, 1045 insertions, 540 deletions
diff --git a/www/php-glpi/MESSAGE b/www/php-glpi/MESSAGE index 8eaa01c26d9..9d8dd74ee4f 100644 --- a/www/php-glpi/MESSAGE +++ b/www/php-glpi/MESSAGE @@ -1,11 +1,11 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.4 2017/07/21 10:11:27 hauke Exp $ +$NetBSD: MESSAGE,v 1.5 2019/03/15 16:32:13 hauke Exp $ GLPI requires a web server set up to run PHP scripts; ${PREFIX}/share/examples/glpi/http-glpi.conf is a sample configuration for Apache. -In addition, you need access to a MySQL server. Create a MySQL gpli user, +In addition, you need access to a MySQL server. Create a MySQL glpi user, and as that user create a database: # mysql -u root -p diff --git a/www/php-glpi/Makefile b/www/php-glpi/Makefile index e91c47bf718..04470b580c3 100644 --- a/www/php-glpi/Makefile +++ b/www/php-glpi/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2018/04/27 14:19:29 hauke Exp $ +# $NetBSD: Makefile,v 1.6 2019/03/15 16:32:13 hauke Exp $ DISTNAME= glpi-${GLPI_VERSION} -GLPI_VERSION= 9.2.3 +GLPI_VERSION= 9.4.1.1 CATEGORIES= www MASTER_SITES= https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/ @@ -17,6 +17,7 @@ DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.4:../../converters/php-mbstring DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=5.4:../../databases/php-ldap DEPENDS+= ${PHP_PKG_PREFIX}-mysqli>=5.4:../../databases/php-mysqli DEPENDS+= ${PHP_PKG_PREFIX}-opcache>=5.4:../../devel/php-opcache +DEPENDS+= ${PHP_PKG_PREFIX}-exif>=5.4:../../graphics/php-exif DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4:../../graphics/php-gd DEPENDS+= ${PHP_PKG_PREFIX}-imap>=5.4:../../mail/php-imap DEPENDS+= ${PHP_PKG_PREFIX}-xmlrpc>=5.4:../../net/php-xmlrpc @@ -45,7 +46,7 @@ PKG_SYSCONFDIR_PERMS= ${APACHE_USER} ${APACHE_GROUP} 0700 EGDIR= share/examples/glpi GLPI_DIR= share/glpi -.for ddd in config_path.php +.for ddd in local_define.php CONF_FILES+= ${EGDIR}/${ddd} ${PKG_SYSCONFDIR}/${ddd} .endfor @@ -62,7 +63,8 @@ SUBST_CLASSES+= path SUBST_STAGE.path= post-configure SUBST_MESSAGE.path= Fixing paths. SUBST_VARS.path= PREFIX VARBASE PKG_SYSCONFDIR APACHE_USER -SUBST_FILES.path= config/config_path.php +SUBST_FILES.path= config/local_define.php +SUBST_FILES.path+= inc/downstream.php SUBST_FILES.path+= config/crontab.sample SUBST_FILES.path+= config/httpd-glpi.conf @@ -70,6 +72,7 @@ REPLACE_INTERPRETER+= php REPLACE.php.old= .*php REPLACE.php.new= ${PREFIX}/bin/php REPLACE_FILES.php= vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php +REPLACE_FILES.php+= bin/console .for ddd in bench.php fetch_windows_zones.php generate_vcards \ generateicalendardata.php vobject REPLACE_FILES.php+= vendor/sabre/vobject/bin/${ddd} @@ -86,10 +89,11 @@ DEPENDS+= ${PHP_PKG_PREFIX}-apcu_bc>=1.0:../../www/php-apcu_bc .endif post-extract: - for ddd in config_path.php crontab.sample httpd-glpi.conf ; do \ + for ddd in local_define.php crontab.sample httpd-glpi.conf ; do \ ${CP} ${FILESDIR}/$${ddd} ${WRKSRC}/config ; \ done - for ddd in ajax front lib locales pics vendor ; do \ + ${CP} ${FILESDIR}/downstream.php ${WRKSRC}/inc + for ddd in ajax css front inc lib locales pics vendor ; do \ find ${WRKSRC}/$${ddd} -type f -exec ${CHMOD} ugo-x \{\} \; ; \ done cd ${WRKSRC}/install && ${MV} install.php install.php.disabled diff --git a/www/php-glpi/PLIST b/www/php-glpi/PLIST index f180b8eca9f..1c2e63b05f8 100644 --- a/www/php-glpi/PLIST +++ b/www/php-glpi/PLIST @@ -1,17 +1,20 @@ -@comment $NetBSD: PLIST,v 1.3 2018/04/27 14:19:29 hauke Exp $ -share/examples/glpi/config_path.php +@comment $NetBSD: PLIST,v 1.4 2019/03/15 16:32:13 hauke Exp $ share/examples/glpi/crontab.sample share/examples/glpi/httpd-glpi.conf +share/examples/glpi/local_define.php +share/glpi/.github/ISSUE_TEMPLATE/bug_report.md +share/glpi/.github/ISSUE_TEMPLATE/feature_request.md share/glpi/.htaccess -share/glpi/AUTHORS.txt share/glpi/CHANGELOG.md +share/glpi/CONTRIBUTING.md share/glpi/COPYING.txt -share/glpi/LISEZMOI.txt share/glpi/README.md +share/glpi/SUPPORT.md share/glpi/ajax/autocompletion.php share/glpi/ajax/comments.php share/glpi/ajax/common.tabs.php share/glpi/ajax/compareKbRevisions.php +share/glpi/ajax/dcroom_size.php share/glpi/ajax/displayMessageAfterRedirect.php share/glpi/ajax/dropdownAllItems.php share/glpi/ajax/dropdownConnect.php @@ -21,6 +24,7 @@ share/glpi/ajax/dropdownDelegationUsers.php share/glpi/ajax/dropdownFieldsBlacklist.php share/glpi/ajax/dropdownInstallVersion.php share/glpi/ajax/dropdownItilActors.php +share/glpi/ajax/dropdownLocation.php share/glpi/ajax/dropdownMassiveAction.php share/glpi/ajax/dropdownMassiveActionAddActor.php share/glpi/ajax/dropdownMassiveActionAddValidator.php @@ -55,12 +59,17 @@ share/glpi/ajax/getFileTag.php share/glpi/ajax/getKbComment.php share/glpi/ajax/getKbRevision.php share/glpi/ajax/getKnowbaseItemAnswer.php +share/glpi/ajax/getMapPoint.php share/glpi/ajax/helpdesk_observer.php share/glpi/ajax/index.php share/glpi/ajax/inputtext.php share/glpi/ajax/itemTicket.php +share/glpi/ajax/item_rack.php share/glpi/ajax/kblink.php +share/glpi/ajax/knowbase.php share/glpi/ajax/ldapdaterestriction.php +share/glpi/ajax/mailcollector.php +share/glpi/ajax/map.php share/glpi/ajax/massiveaction.php share/glpi/ajax/notifications_ajax.php share/glpi/ajax/planning.php @@ -69,16 +78,15 @@ share/glpi/ajax/planningend.php share/glpi/ajax/priority.php share/glpi/ajax/private_public.php share/glpi/ajax/projecttask.php +share/glpi/ajax/rack.php share/glpi/ajax/resaperiod.php share/glpi/ajax/ruleaction.php share/glpi/ajax/ruleactionvalue.php share/glpi/ajax/rulecriteria.php share/glpi/ajax/rulecriteriavalue.php share/glpi/ajax/savedsearch.php -share/glpi/ajax/searchmetarow.php -share/glpi/ajax/searchoption.php +share/glpi/ajax/search.php share/glpi/ajax/searchoptionvalue.php -share/glpi/ajax/searchrow.php share/glpi/ajax/selectUnaffectedOrNewItem_Device.php share/glpi/ajax/solution.php share/glpi/ajax/subvisibility.php @@ -94,7 +102,6 @@ share/glpi/ajax/timeline.php share/glpi/ajax/transfers.php share/glpi/ajax/uemailUpdate.php share/glpi/ajax/unlockobject.php -share/glpi/ajax/updateMetaSearch.php share/glpi/ajax/updateTrackingDeviceType.php share/glpi/ajax/updateTranslationFields.php share/glpi/ajax/updatecurrenttab.php @@ -103,42 +110,33 @@ share/glpi/ajax/visibility.php share/glpi/apirest.md share/glpi/apirest.php share/glpi/apixmlrpc.php +share/glpi/bin/console share/glpi/config/.htaccess -share/glpi/config/config_path.php share/glpi/config/crontab.sample share/glpi/config/httpd-glpi.conf +share/glpi/config/local_define.php +share/glpi/css/_highcontrast.scss share/glpi/css/chartists-glpi.css share/glpi/css/chartists-glpi.min.css -share/glpi/css/highcontrast.css -share/glpi/css/highcontrast.min.css share/glpi/css/jquery-glpi.css share/glpi/css/jquery-glpi.min.css share/glpi/css/jstree-glpi.css share/glpi/css/jstree-glpi.min.css -share/glpi/css/palettes/aerialgreen.css -share/glpi/css/palettes/aerialgreen.min.css -share/glpi/css/palettes/auror.css -share/glpi/css/palettes/auror.min.css -share/glpi/css/palettes/automn.css -share/glpi/css/palettes/automn.min.css -share/glpi/css/palettes/classic.css -share/glpi/css/palettes/classic.min.css -share/glpi/css/palettes/clockworkorange.css -share/glpi/css/palettes/clockworkorange.min.css -share/glpi/css/palettes/dark.css -share/glpi/css/palettes/dark.min.css -share/glpi/css/palettes/flood.css -share/glpi/css/palettes/flood.min.css -share/glpi/css/palettes/greenflat.css -share/glpi/css/palettes/greenflat.min.css -share/glpi/css/palettes/hipster.css -share/glpi/css/palettes/hipster.min.css -share/glpi/css/palettes/icecream.css -share/glpi/css/palettes/icecream.min.css -share/glpi/css/palettes/lightblue.css -share/glpi/css/palettes/lightblue.min.css -share/glpi/css/palettes/premiumred.css -share/glpi/css/palettes/premiumred.min.css +share/glpi/css/palettes/_aerialgreen.scss +share/glpi/css/palettes/_auror.scss +share/glpi/css/palettes/_automn.scss +share/glpi/css/palettes/_classic.scss +share/glpi/css/palettes/_clockworkorange.scss +share/glpi/css/palettes/_dark.scss +share/glpi/css/palettes/_flood.scss +share/glpi/css/palettes/_greenflat.scss +share/glpi/css/palettes/_hipster.scss +share/glpi/css/palettes/_icecream.scss +share/glpi/css/palettes/_lightblue.scss +share/glpi/css/palettes/_premiumred.scss +share/glpi/css/palettes/_purplehaze.scss +share/glpi/css/palettes/_teclib.scss +share/glpi/css/palettes/_vintage.scss share/glpi/css/palettes/previews/aerialgreen.png share/glpi/css/palettes/previews/auror.png share/glpi/css/palettes/previews/automn.png @@ -154,22 +152,28 @@ share/glpi/css/palettes/previews/premiumred.png share/glpi/css/palettes/previews/purplehaze.png share/glpi/css/palettes/previews/teclib.png share/glpi/css/palettes/previews/vintage.png -share/glpi/css/palettes/purplehaze.css -share/glpi/css/palettes/purplehaze.min.css -share/glpi/css/palettes/teclib.css -share/glpi/css/palettes/teclib.min.css -share/glpi/css/palettes/vintage.css -share/glpi/css/palettes/vintage.min.css share/glpi/css/print.css share/glpi/css/print.min.css share/glpi/css/style_install.css share/glpi/css/style_install.min.css -share/glpi/css/styles.css -share/glpi/css/styles.min.css -share/glpi/css/styles_ie.css -share/glpi/css/styles_ie.min.css +share/glpi/css/styles.scss share/glpi/css/tab-scroller-menu.css share/glpi/css/tab-scroller-menu.min.css +share/glpi/css/tiny_mce/skins/light/content.inline.min.css +share/glpi/css/tiny_mce/skins/light/content.min.css +share/glpi/css/tiny_mce/skins/light/fonts/tinymce-small.eot +share/glpi/css/tiny_mce/skins/light/fonts/tinymce-small.svg +share/glpi/css/tiny_mce/skins/light/fonts/tinymce-small.ttf +share/glpi/css/tiny_mce/skins/light/fonts/tinymce-small.woff +share/glpi/css/tiny_mce/skins/light/fonts/tinymce.eot +share/glpi/css/tiny_mce/skins/light/fonts/tinymce.svg +share/glpi/css/tiny_mce/skins/light/fonts/tinymce.ttf +share/glpi/css/tiny_mce/skins/light/fonts/tinymce.woff +share/glpi/css/tiny_mce/skins/light/img/anchor.gif +share/glpi/css/tiny_mce/skins/light/img/loader.gif +share/glpi/css/tiny_mce/skins/light/img/object.gif +share/glpi/css/tiny_mce/skins/light/img/trans.gif +share/glpi/css/tiny_mce/skins/light/skin.min.css share/glpi/css/win_png.htc share/glpi/files/.htaccess share/glpi/files/_cache/remove.txt @@ -226,7 +230,6 @@ share/glpi/front/change.php share/glpi/front/change_group.form.php share/glpi/front/change_item.form.php share/glpi/front/change_problem.form.php -share/glpi/front/change_project.form.php share/glpi/front/change_supplier.form.php share/glpi/front/change_ticket.form.php share/glpi/front/change_user.form.php @@ -242,7 +245,6 @@ share/glpi/front/computer_item.form.php share/glpi/front/computer_softwarelicense.form.php share/glpi/front/computer_softwareversion.form.php share/glpi/front/computerantivirus.form.php -share/glpi/front/computerdisk.form.php share/glpi/front/computermodel.form.php share/glpi/front/computermodel.php share/glpi/front/computertype.form.php @@ -266,10 +268,14 @@ share/glpi/front/contract_supplier.form.php share/glpi/front/contractcost.form.php share/glpi/front/contracttype.form.php share/glpi/front/contracttype.php -share/glpi/front/control.php share/glpi/front/cron.php share/glpi/front/crontask.form.php share/glpi/front/crontask.php +share/glpi/front/css.php +share/glpi/front/datacenter.form.php +share/glpi/front/datacenter.php +share/glpi/front/dcroom.form.php +share/glpi/front/dcroom.php share/glpi/front/device.form.php share/glpi/front/device.php share/glpi/front/devicemodel.form.php @@ -295,6 +301,10 @@ share/glpi/front/dropdown.common.form.php share/glpi/front/dropdown.common.php share/glpi/front/dropdown.php share/glpi/front/dropdowntranslation.form.php +share/glpi/front/enclosure.form.php +share/glpi/front/enclosure.php +share/glpi/front/enclosuremodel.form.php +share/glpi/front/enclosuremodel.php share/glpi/front/entity.form.php share/glpi/front/entity.php share/glpi/front/event.php @@ -327,6 +337,7 @@ share/glpi/front/ipnetwork.form.php share/glpi/front/ipnetwork.php share/glpi/front/ipnetwork_vlan.form.php share/glpi/front/item_device.common.form.php +share/glpi/front/item_device.php share/glpi/front/item_devicebattery.form.php share/glpi/front/item_devicecase.form.php share/glpi/front/item_devicecontrol.form.php @@ -345,12 +356,18 @@ share/glpi/front/item_devices.form.php share/glpi/front/item_devicesensor.form.php share/glpi/front/item_devicesimcard.form.php share/glpi/front/item_devicesoundcard.form.php +share/glpi/front/item_disk.form.php +share/glpi/front/item_enclosure.form.php share/glpi/front/item_operatingsystem.form.php share/glpi/front/item_problem.form.php share/glpi/front/item_project.form.php +share/glpi/front/item_rack.form.php share/glpi/front/item_ticket.form.php +share/glpi/front/itil_project.form.php share/glpi/front/itilcategory.form.php share/glpi/front/itilcategory.php +share/glpi/front/itilfollowup.form.php +share/glpi/front/itilsolution.form.php share/glpi/front/knowbaseitem.form.php share/glpi/front/knowbaseitem.php share/glpi/front/knowbaseitem_comment.form.php @@ -441,6 +458,14 @@ share/glpi/front/operatingsystemservicepack.form.php share/glpi/front/operatingsystemservicepack.php share/glpi/front/operatingsystemversion.form.php share/glpi/front/operatingsystemversion.php +share/glpi/front/pdu.form.php +share/glpi/front/pdu.php +share/glpi/front/pdu_plug.form.php +share/glpi/front/pdu_rack.form.php +share/glpi/front/pdumodel.form.php +share/glpi/front/pdumodel.php +share/glpi/front/pdutype.form.php +share/glpi/front/pdutype.php share/glpi/front/peripheral.form.php share/glpi/front/peripheral.php share/glpi/front/peripheralmodel.form.php @@ -458,6 +483,8 @@ share/glpi/front/phonetype.php share/glpi/front/planning.form.php share/glpi/front/planning.php share/glpi/front/planningrecall.form.php +share/glpi/front/plug.form.php +share/glpi/front/plug.php share/glpi/front/plugin.form.php share/glpi/front/plugin.php share/glpi/front/pluginimage.send.php @@ -496,6 +523,12 @@ share/glpi/front/projecttype.form.php share/glpi/front/projecttype.php share/glpi/front/queuednotification.form.php share/glpi/front/queuednotification.php +share/glpi/front/rack.form.php +share/glpi/front/rack.php +share/glpi/front/rackmodel.form.php +share/glpi/front/rackmodel.php +share/glpi/front/racktype.form.php +share/glpi/front/racktype.php share/glpi/front/reminder.form.php share/glpi/front/reminder.php share/glpi/front/report.contract.list.php @@ -528,6 +561,8 @@ share/glpi/front/rule.generic.form.php share/glpi/front/rule.php share/glpi/front/rule.test.php share/glpi/front/ruleaction.form.php +share/glpi/front/ruleasset.form.php +share/glpi/front/ruleasset.php share/glpi/front/rulecriteria.form.php share/glpi/front/ruledictionnarycomputermodel.form.php share/glpi/front/ruledictionnarycomputermodel.php @@ -634,7 +669,6 @@ share/glpi/front/ticket.php share/glpi/front/ticket_ticket.form.php share/glpi/front/ticket_user.form.php share/glpi/front/ticketcost.form.php -share/glpi/front/ticketfollowup.form.php share/glpi/front/ticketrecurrent.form.php share/glpi/front/ticketrecurrent.php share/glpi/front/ticketsatisfaction.form.php @@ -665,6 +699,7 @@ share/glpi/front/vlan.form.php share/glpi/front/vlan.php share/glpi/front/wifinetwork.form.php share/glpi/front/wifinetwork.php +share/glpi/inc/abstractquery.class.php share/glpi/inc/ajax.class.php share/glpi/inc/alert.class.php share/glpi/inc/api.class.php @@ -684,6 +719,7 @@ share/glpi/inc/blacklistedmailcontent.class.php share/glpi/inc/budget.class.php share/glpi/inc/budgettype.class.php share/glpi/inc/businesscriticity.class.php +share/glpi/inc/cache/simplecache.class.php share/glpi/inc/calendar.class.php share/glpi/inc/calendar_holiday.class.php share/glpi/inc/calendarsegment.class.php @@ -699,18 +735,19 @@ share/glpi/inc/change.class.php share/glpi/inc/change_group.class.php share/glpi/inc/change_item.class.php share/glpi/inc/change_problem.class.php -share/glpi/inc/change_project.class.php share/glpi/inc/change_supplier.class.php share/glpi/inc/change_ticket.class.php share/glpi/inc/change_user.class.php share/glpi/inc/changecost.class.php share/glpi/inc/changetask.class.php share/glpi/inc/changevalidation.class.php +share/glpi/inc/climigration.class.php share/glpi/inc/commondbchild.class.php share/glpi/inc/commondbconnexity.class.php share/glpi/inc/commondbrelation.class.php share/glpi/inc/commondbtm.class.php share/glpi/inc/commondbvisible.class.php +share/glpi/inc/commondcmodeldropdown.class.php share/glpi/inc/commondevice.class.php share/glpi/inc/commondevicemodel.class.php share/glpi/inc/commondevicetype.class.php @@ -728,12 +765,22 @@ share/glpi/inc/computer_item.class.php share/glpi/inc/computer_softwarelicense.class.php share/glpi/inc/computer_softwareversion.class.php share/glpi/inc/computerantivirus.class.php -share/glpi/inc/computerdisk.class.php share/glpi/inc/computermodel.class.php share/glpi/inc/computertype.class.php share/glpi/inc/computervirtualmachine.class.php share/glpi/inc/config.class.php share/glpi/inc/config.php +share/glpi/inc/console/abstractcommand.class.php +share/glpi/inc/console/application.class.php +share/glpi/inc/console/command/forcenopluginsoptioncommandinterface.class.php +share/glpi/inc/console/commandloader.class.php +share/glpi/inc/console/database/checkcommand.class.php +share/glpi/inc/console/database/installcommand.class.php +share/glpi/inc/console/database/updatecommand.class.php +share/glpi/inc/console/ldap/synchronizeuserscommand.class.php +share/glpi/inc/console/migration/buildmissingtimestampscommand.class.php +share/glpi/inc/console/migration/myisamtoinnodbcommand.class.php +share/glpi/inc/console/task/unlockcommand.class.php share/glpi/inc/consumable.class.php share/glpi/inc/consumableitem.class.php share/glpi/inc/consumableitemtype.class.php @@ -745,14 +792,16 @@ share/glpi/inc/contract_item.class.php share/glpi/inc/contract_supplier.class.php share/glpi/inc/contractcost.class.php share/glpi/inc/contracttype.class.php -share/glpi/inc/control.class.php share/glpi/inc/crontask.class.php share/glpi/inc/crontasklog.class.php +share/glpi/inc/datacenter.class.php share/glpi/inc/db.function.php share/glpi/inc/dbconnection.class.php share/glpi/inc/dbmysql.class.php share/glpi/inc/dbmysqliterator.class.php share/glpi/inc/dbutils.class.php +share/glpi/inc/dcbreadcrumb.class.php +share/glpi/inc/dcroom.class.php share/glpi/inc/define.php share/glpi/inc/devicebattery.class.php share/glpi/inc/devicebatterymodel.class.php @@ -800,8 +849,11 @@ share/glpi/inc/document_item.class.php share/glpi/inc/documentcategory.class.php share/glpi/inc/documenttype.class.php share/glpi/inc/domain.class.php +share/glpi/inc/downstream.php share/glpi/inc/dropdown.class.php share/glpi/inc/dropdowntranslation.class.php +share/glpi/inc/enclosure.class.php +share/glpi/inc/enclosuremodel.class.php share/glpi/inc/entity.class.php share/glpi/inc/entity_knowbaseitem.class.php share/glpi/inc/entity_reminder.class.php @@ -814,7 +866,9 @@ share/glpi/inc/fieldunicity.class.php share/glpi/inc/filesystem.class.php share/glpi/inc/fqdn.class.php share/glpi/inc/fqdnlabel.class.php +share/glpi/inc/glpi.class.php share/glpi/inc/glpimailer.class.php +share/glpi/inc/glpinetwork.class.php share/glpi/inc/glpipdf.class.php share/glpi/inc/glpiuploadhandler.class.php share/glpi/inc/group.class.php @@ -862,11 +916,17 @@ share/glpi/inc/item_devices.class.php share/glpi/inc/item_devicesensor.class.php share/glpi/inc/item_devicesimcard.class.php share/glpi/inc/item_devicesoundcard.class.php +share/glpi/inc/item_disk.class.php +share/glpi/inc/item_enclosure.class.php share/glpi/inc/item_operatingsystem.class.php share/glpi/inc/item_problem.class.php share/glpi/inc/item_project.class.php +share/glpi/inc/item_rack.class.php share/glpi/inc/item_ticket.class.php +share/glpi/inc/itil_project.class.php share/glpi/inc/itilcategory.class.php +share/glpi/inc/itilfollowup.class.php +share/glpi/inc/itilsolution.class.php share/glpi/inc/knowbase.class.php share/glpi/inc/knowbaseitem.class.php share/glpi/inc/knowbaseitem_comment.class.php @@ -967,6 +1027,11 @@ share/glpi/inc/operatingsystemkernel.class.php share/glpi/inc/operatingsystemkernelversion.class.php share/glpi/inc/operatingsystemservicepack.class.php share/glpi/inc/operatingsystemversion.class.php +share/glpi/inc/pdu.class.php +share/glpi/inc/pdu_plug.class.php +share/glpi/inc/pdu_rack.class.php +share/glpi/inc/pdumodel.class.php +share/glpi/inc/pdutype.class.php share/glpi/inc/peripheral.class.php share/glpi/inc/peripheralmodel.class.php share/glpi/inc/peripheraltype.class.php @@ -976,6 +1041,7 @@ share/glpi/inc/phonepowersupply.class.php share/glpi/inc/phonetype.class.php share/glpi/inc/planning.class.php share/glpi/inc/planningrecall.class.php +share/glpi/inc/plug.class.php share/glpi/inc/plugin.class.php share/glpi/inc/preference.class.php share/glpi/inc/printer.class.php @@ -1002,7 +1068,15 @@ share/glpi/inc/projecttasktemplate.class.php share/glpi/inc/projecttasktype.class.php share/glpi/inc/projectteam.class.php share/glpi/inc/projecttype.class.php +share/glpi/inc/purgelogs.class.php +share/glpi/inc/queryexpression.class.php +share/glpi/inc/queryparam.class.php +share/glpi/inc/querysubquery.class.php +share/glpi/inc/queryunion.class.php share/glpi/inc/queuednotification.class.php +share/glpi/inc/rack.class.php +share/glpi/inc/rackmodel.class.php +share/glpi/inc/racktype.class.php share/glpi/inc/registeredid.class.php share/glpi/inc/relation.constant.php share/glpi/inc/reminder.class.php @@ -1015,6 +1089,8 @@ share/glpi/inc/rssfeed.class.php share/glpi/inc/rssfeed_user.class.php share/glpi/inc/rule.class.php share/glpi/inc/ruleaction.class.php +share/glpi/inc/ruleasset.class.php +share/glpi/inc/ruleassetcollection.class.php share/glpi/inc/rulecollection.class.php share/glpi/inc/rulecriteria.class.php share/glpi/inc/ruledictionnarycomputermodel.class.php @@ -1176,6 +1252,11 @@ share/glpi/install/update_91_92.php share/glpi/install/update_921_922.php share/glpi/install/update_922_923.php share/glpi/install/update_92_921.php +share/glpi/install/update_92_93.php +share/glpi/install/update_930_931.php +share/glpi/install/update_931_932.php +share/glpi/install/update_93_94.php +share/glpi/install/update_940_941.php share/glpi/install/update_content.php share/glpi/install/update_to_031.php share/glpi/install/update_xx_xy.tpl.php @@ -1187,8 +1268,12 @@ share/glpi/js/fileupload.js share/glpi/js/fileupload.min.js share/glpi/js/fuzzysearch.js share/glpi/js/fuzzysearch.min.js +share/glpi/js/log_filters.js +share/glpi/js/log_filters.min.js share/glpi/js/notifications_ajax.js share/glpi/js/notifications_ajax.min.js +share/glpi/js/rack.js +share/glpi/js/rack.min.js share/glpi/lib/FreeSans.ttf share/glpi/lib/chartist-js-0.10.1/LICENSE-MIT share/glpi/lib/chartist-js-0.10.1/chartist.css @@ -1201,16 +1286,35 @@ share/glpi/lib/chartist-plugin-tooltip-0.0.17/LICENSE share/glpi/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.css share/glpi/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.js share/glpi/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.min.js -share/glpi/lib/font-awesome-4.7.0/css/font-awesome.css -share/glpi/lib/font-awesome-4.7.0/css/font-awesome.min.css -share/glpi/lib/font-awesome-4.7.0/fonts/FontAwesome.otf -share/glpi/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -share/glpi/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -share/glpi/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -share/glpi/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -share/glpi/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 +share/glpi/lib/font-awesome/LICENSE.txt +share/glpi/lib/font-awesome/css/all.css +share/glpi/lib/font-awesome/css/all.min.css +share/glpi/lib/font-awesome/webfonts/fa-brands-400.eot +share/glpi/lib/font-awesome/webfonts/fa-brands-400.svg +share/glpi/lib/font-awesome/webfonts/fa-brands-400.ttf +share/glpi/lib/font-awesome/webfonts/fa-brands-400.woff +share/glpi/lib/font-awesome/webfonts/fa-brands-400.woff2 +share/glpi/lib/font-awesome/webfonts/fa-regular-400.eot +share/glpi/lib/font-awesome/webfonts/fa-regular-400.svg +share/glpi/lib/font-awesome/webfonts/fa-regular-400.ttf +share/glpi/lib/font-awesome/webfonts/fa-regular-400.woff +share/glpi/lib/font-awesome/webfonts/fa-regular-400.woff2 +share/glpi/lib/font-awesome/webfonts/fa-solid-900.eot +share/glpi/lib/font-awesome/webfonts/fa-solid-900.svg +share/glpi/lib/font-awesome/webfonts/fa-solid-900.ttf +share/glpi/lib/font-awesome/webfonts/fa-solid-900.woff +share/glpi/lib/font-awesome/webfonts/fa-solid-900.woff2 share/glpi/lib/fuzzy/LICENSE-MIT share/glpi/lib/fuzzy/fuzzy-min.js +share/glpi/lib/gridstack/LICENSE +share/glpi/lib/gridstack/src/gridstack-extra.css +share/glpi/lib/gridstack/src/gridstack-extra.min.css +share/glpi/lib/gridstack/src/gridstack.css +share/glpi/lib/gridstack/src/gridstack.jQueryUI.js +share/glpi/lib/gridstack/src/gridstack.jQueryUI.min.js +share/glpi/lib/gridstack/src/gridstack.js +share/glpi/lib/gridstack/src/gridstack.min.css +share/glpi/lib/gridstack/src/gridstack.min.js share/glpi/lib/htmlawed/htmLawed.php share/glpi/lib/index.php share/glpi/lib/jquery/css/smoothness/images/animated-overlay.gif @@ -1308,11 +1412,11 @@ share/glpi/lib/jquery/i18n/jquery.ui.datepicker-vi.js share/glpi/lib/jquery/i18n/jquery.ui.datepicker-zh-CN.js share/glpi/lib/jquery/i18n/jquery.ui.datepicker-zh-HK.js share/glpi/lib/jquery/i18n/jquery.ui.datepicker-zh-TW.js -share/glpi/lib/jquery/js/jquery-1.10.2.js -share/glpi/lib/jquery/js/jquery-1.10.2.min.js -share/glpi/lib/jquery/js/jquery-1.10.2.min.map share/glpi/lib/jquery/js/jquery-ui-1.10.4.custom.js share/glpi/lib/jquery/js/jquery-ui-1.10.4.custom.min.js +share/glpi/lib/jquery/js/jquery.js +share/glpi/lib/jquery/js/jquery.min.js +share/glpi/lib/jquery/js/jquery.min.map share/glpi/lib/jqueryplugins/autogrow/jquery.autogrow-textarea.js share/glpi/lib/jqueryplugins/autogrow/jquery.autogrow-textarea.min.js share/glpi/lib/jqueryplugins/fullcalendar/CHANGELOG.txt @@ -1326,36 +1430,23 @@ share/glpi/lib/jqueryplugins/fullcalendar/fullcalendar.print.css share/glpi/lib/jqueryplugins/fullcalendar/fullcalendar.print.min.css share/glpi/lib/jqueryplugins/fullcalendar/gcal.js share/glpi/lib/jqueryplugins/fullcalendar/gcal.min.js -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-icons_2694e8_256x240.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-icons_2e83ff_256x240.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-icons_3d80b3_256x240.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-icons_72a7cf_256x240.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/images/ui-icons_ffffff_256x240.png -share/glpi/lib/jqueryplugins/fullcalendar/lib/cupertino/jquery-ui.min.css -share/glpi/lib/jqueryplugins/fullcalendar/lib/jquery-ui.min.js -share/glpi/lib/jqueryplugins/fullcalendar/lib/jquery.min.js -share/glpi/lib/jqueryplugins/fullcalendar/lib/moment.min.js share/glpi/lib/jqueryplugins/fullcalendar/locale-all.js share/glpi/lib/jqueryplugins/fullcalendar/locale/af.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-dz.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-kw.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-ly.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-ma.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-sa.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar-tn.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ar.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/be.js share/glpi/lib/jqueryplugins/fullcalendar/locale/bg.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/bs.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ca.js share/glpi/lib/jqueryplugins/fullcalendar/locale/cs.js share/glpi/lib/jqueryplugins/fullcalendar/locale/da.js share/glpi/lib/jqueryplugins/fullcalendar/locale/de-at.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/de-ch.js share/glpi/lib/jqueryplugins/fullcalendar/locale/de.js share/glpi/lib/jqueryplugins/fullcalendar/locale/el.js share/glpi/lib/jqueryplugins/fullcalendar/locale/en-au.js @@ -1364,7 +1455,9 @@ share/glpi/lib/jqueryplugins/fullcalendar/locale/en-gb.js share/glpi/lib/jqueryplugins/fullcalendar/locale/en-ie.js share/glpi/lib/jqueryplugins/fullcalendar/locale/en-nz.js share/glpi/lib/jqueryplugins/fullcalendar/locale/es-do.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/es-us.js share/glpi/lib/jqueryplugins/fullcalendar/locale/es.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/et.js share/glpi/lib/jqueryplugins/fullcalendar/locale/eu.js share/glpi/lib/jqueryplugins/fullcalendar/locale/fa.js share/glpi/lib/jqueryplugins/fullcalendar/locale/fi.js @@ -1380,6 +1473,7 @@ share/glpi/lib/jqueryplugins/fullcalendar/locale/id.js share/glpi/lib/jqueryplugins/fullcalendar/locale/is.js share/glpi/lib/jqueryplugins/fullcalendar/locale/it.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ja.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/ka.js share/glpi/lib/jqueryplugins/fullcalendar/locale/kk.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ko.js share/glpi/lib/jqueryplugins/fullcalendar/locale/lb.js @@ -1399,6 +1493,7 @@ share/glpi/lib/jqueryplugins/fullcalendar/locale/ro.js share/glpi/lib/jqueryplugins/fullcalendar/locale/ru.js share/glpi/lib/jqueryplugins/fullcalendar/locale/sk.js share/glpi/lib/jqueryplugins/fullcalendar/locale/sl.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/sq.js share/glpi/lib/jqueryplugins/fullcalendar/locale/sr-cyrl.js share/glpi/lib/jqueryplugins/fullcalendar/locale/sr.js share/glpi/lib/jqueryplugins/fullcalendar/locale/sv.js @@ -1407,12 +1502,11 @@ share/glpi/lib/jqueryplugins/fullcalendar/locale/tr.js share/glpi/lib/jqueryplugins/fullcalendar/locale/uk.js share/glpi/lib/jqueryplugins/fullcalendar/locale/vi.js share/glpi/lib/jqueryplugins/fullcalendar/locale/zh-cn.js +share/glpi/lib/jqueryplugins/fullcalendar/locale/zh-hk.js share/glpi/lib/jqueryplugins/fullcalendar/locale/zh-tw.js share/glpi/lib/jqueryplugins/jquery-file-upload/README.md share/glpi/lib/jqueryplugins/jquery-file-upload/js/jquery.fileupload.js -share/glpi/lib/jqueryplugins/jquery-file-upload/js/jquery.fileupload.min.js share/glpi/lib/jqueryplugins/jquery-file-upload/js/jquery.iframe-transport.js -share/glpi/lib/jqueryplugins/jquery-file-upload/js/jquery.iframe-transport.min.js share/glpi/lib/jqueryplugins/jquery-file-upload/server/php/UploadHandler.php share/glpi/lib/jqueryplugins/jquery-gantt/CONTRIBUTORS.md share/glpi/lib/jqueryplugins/jquery-gantt/README.md @@ -1449,6 +1543,7 @@ share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicke share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-es.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-et.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-eu.js +share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-fa.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-fi.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-fr.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-gl.js @@ -1460,6 +1555,8 @@ share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicke share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-ja.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-ko.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-lt.js +share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-lv.js +share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-mk.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-nl.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-no.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-pl.js @@ -1469,6 +1566,7 @@ share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicke share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-ru.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sk.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sl.js +share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sq.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sr-RS.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sr-YU.js share/glpi/lib/jqueryplugins/jquery-ui-timepicker-addon/i18n/jquery-ui-timepicker-sv.js @@ -1511,65 +1609,64 @@ share/glpi/lib/jqueryplugins/rateit/jquery.rateit.min.js share/glpi/lib/jqueryplugins/rateit/rateit.css share/glpi/lib/jqueryplugins/rateit/rateit.min.css share/glpi/lib/jqueryplugins/rateit/star.gif -share/glpi/lib/jqueryplugins/select2/LICENSE -share/glpi/lib/jqueryplugins/select2/README.md -share/glpi/lib/jqueryplugins/select2/select2-bootstrap.css -share/glpi/lib/jqueryplugins/select2/select2-spinner.gif -share/glpi/lib/jqueryplugins/select2/select2.css -share/glpi/lib/jqueryplugins/select2/select2.jquery.json -share/glpi/lib/jqueryplugins/select2/select2.js -share/glpi/lib/jqueryplugins/select2/select2.min.css -share/glpi/lib/jqueryplugins/select2/select2.min.js -share/glpi/lib/jqueryplugins/select2/select2.png -share/glpi/lib/jqueryplugins/select2/select2_locale_ar.js -share/glpi/lib/jqueryplugins/select2/select2_locale_az.js -share/glpi/lib/jqueryplugins/select2/select2_locale_bg.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ca.js -share/glpi/lib/jqueryplugins/select2/select2_locale_cs.js -share/glpi/lib/jqueryplugins/select2/select2_locale_da.js -share/glpi/lib/jqueryplugins/select2/select2_locale_de.js -share/glpi/lib/jqueryplugins/select2/select2_locale_el.js -share/glpi/lib/jqueryplugins/select2/select2_locale_en.js.template -share/glpi/lib/jqueryplugins/select2/select2_locale_es.js -share/glpi/lib/jqueryplugins/select2/select2_locale_et.js -share/glpi/lib/jqueryplugins/select2/select2_locale_eu.js -share/glpi/lib/jqueryplugins/select2/select2_locale_fa.js -share/glpi/lib/jqueryplugins/select2/select2_locale_fi.js -share/glpi/lib/jqueryplugins/select2/select2_locale_fr.js -share/glpi/lib/jqueryplugins/select2/select2_locale_gl.js -share/glpi/lib/jqueryplugins/select2/select2_locale_he.js -share/glpi/lib/jqueryplugins/select2/select2_locale_hr.js -share/glpi/lib/jqueryplugins/select2/select2_locale_hu.js -share/glpi/lib/jqueryplugins/select2/select2_locale_id.js -share/glpi/lib/jqueryplugins/select2/select2_locale_is.js -share/glpi/lib/jqueryplugins/select2/select2_locale_it.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ja.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ka.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ko.js -share/glpi/lib/jqueryplugins/select2/select2_locale_lt.js -share/glpi/lib/jqueryplugins/select2/select2_locale_lv.js -share/glpi/lib/jqueryplugins/select2/select2_locale_mk.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ms.js -share/glpi/lib/jqueryplugins/select2/select2_locale_nb.js -share/glpi/lib/jqueryplugins/select2/select2_locale_nl.js -share/glpi/lib/jqueryplugins/select2/select2_locale_no.js -share/glpi/lib/jqueryplugins/select2/select2_locale_pl.js -share/glpi/lib/jqueryplugins/select2/select2_locale_pt-BR.js -share/glpi/lib/jqueryplugins/select2/select2_locale_pt-PT.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ro.js -share/glpi/lib/jqueryplugins/select2/select2_locale_rs.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ru.js -share/glpi/lib/jqueryplugins/select2/select2_locale_sk.js -share/glpi/lib/jqueryplugins/select2/select2_locale_sv.js -share/glpi/lib/jqueryplugins/select2/select2_locale_th.js -share/glpi/lib/jqueryplugins/select2/select2_locale_tr.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ua.js -share/glpi/lib/jqueryplugins/select2/select2_locale_ug-CN.js -share/glpi/lib/jqueryplugins/select2/select2_locale_uk.js -share/glpi/lib/jqueryplugins/select2/select2_locale_vi.js -share/glpi/lib/jqueryplugins/select2/select2_locale_zh-CN.js -share/glpi/lib/jqueryplugins/select2/select2_locale_zh-TW.js -share/glpi/lib/jqueryplugins/select2/select2x2.png +share/glpi/lib/jqueryplugins/select2/css/select2.css +share/glpi/lib/jqueryplugins/select2/css/select2.min.css +share/glpi/lib/jqueryplugins/select2/js/i18n/af.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ar.js +share/glpi/lib/jqueryplugins/select2/js/i18n/az.js +share/glpi/lib/jqueryplugins/select2/js/i18n/bg.js +share/glpi/lib/jqueryplugins/select2/js/i18n/bs.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ca.js +share/glpi/lib/jqueryplugins/select2/js/i18n/cs.js +share/glpi/lib/jqueryplugins/select2/js/i18n/da.js +share/glpi/lib/jqueryplugins/select2/js/i18n/de.js +share/glpi/lib/jqueryplugins/select2/js/i18n/dsb.js +share/glpi/lib/jqueryplugins/select2/js/i18n/el.js +share/glpi/lib/jqueryplugins/select2/js/i18n/en.js +share/glpi/lib/jqueryplugins/select2/js/i18n/es.js +share/glpi/lib/jqueryplugins/select2/js/i18n/et.js +share/glpi/lib/jqueryplugins/select2/js/i18n/eu.js +share/glpi/lib/jqueryplugins/select2/js/i18n/fa.js +share/glpi/lib/jqueryplugins/select2/js/i18n/fi.js +share/glpi/lib/jqueryplugins/select2/js/i18n/fr.js +share/glpi/lib/jqueryplugins/select2/js/i18n/gl.js +share/glpi/lib/jqueryplugins/select2/js/i18n/he.js +share/glpi/lib/jqueryplugins/select2/js/i18n/hi.js +share/glpi/lib/jqueryplugins/select2/js/i18n/hr.js +share/glpi/lib/jqueryplugins/select2/js/i18n/hsb.js +share/glpi/lib/jqueryplugins/select2/js/i18n/hu.js +share/glpi/lib/jqueryplugins/select2/js/i18n/hy.js +share/glpi/lib/jqueryplugins/select2/js/i18n/id.js +share/glpi/lib/jqueryplugins/select2/js/i18n/is.js +share/glpi/lib/jqueryplugins/select2/js/i18n/it.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ja.js +share/glpi/lib/jqueryplugins/select2/js/i18n/km.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ko.js +share/glpi/lib/jqueryplugins/select2/js/i18n/lt.js +share/glpi/lib/jqueryplugins/select2/js/i18n/lv.js +share/glpi/lib/jqueryplugins/select2/js/i18n/mk.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ms.js +share/glpi/lib/jqueryplugins/select2/js/i18n/nb.js +share/glpi/lib/jqueryplugins/select2/js/i18n/nl.js +share/glpi/lib/jqueryplugins/select2/js/i18n/pl.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ps.js +share/glpi/lib/jqueryplugins/select2/js/i18n/pt-BR.js +share/glpi/lib/jqueryplugins/select2/js/i18n/pt.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ro.js +share/glpi/lib/jqueryplugins/select2/js/i18n/ru.js +share/glpi/lib/jqueryplugins/select2/js/i18n/sk.js +share/glpi/lib/jqueryplugins/select2/js/i18n/sl.js +share/glpi/lib/jqueryplugins/select2/js/i18n/sr-Cyrl.js +share/glpi/lib/jqueryplugins/select2/js/i18n/sr.js +share/glpi/lib/jqueryplugins/select2/js/i18n/sv.js +share/glpi/lib/jqueryplugins/select2/js/i18n/th.js +share/glpi/lib/jqueryplugins/select2/js/i18n/tr.js +share/glpi/lib/jqueryplugins/select2/js/i18n/uk.js +share/glpi/lib/jqueryplugins/select2/js/i18n/vi.js +share/glpi/lib/jqueryplugins/select2/js/i18n/zh-CN.js +share/glpi/lib/jqueryplugins/select2/js/i18n/zh-TW.js +share/glpi/lib/jqueryplugins/select2/js/select2.full.js +share/glpi/lib/jqueryplugins/select2/js/select2.js share/glpi/lib/jqueryplugins/spectrum-colorpicker/LICENSE share/glpi/lib/jqueryplugins/spectrum-colorpicker/README.md share/glpi/lib/jqueryplugins/spectrum-colorpicker/spectrum-min.js @@ -1577,197 +1674,189 @@ share/glpi/lib/jqueryplugins/spectrum-colorpicker/spectrum.css share/glpi/lib/jqueryplugins/spectrum-colorpicker/spectrum.jquery.json share/glpi/lib/jqueryplugins/spectrum-colorpicker/spectrum.js share/glpi/lib/jqueryplugins/spectrum-colorpicker/spectrum.min.css +share/glpi/lib/leaflet/images/layers-2x.png +share/glpi/lib/leaflet/images/layers.png +share/glpi/lib/leaflet/images/marker-icon-2x.png +share/glpi/lib/leaflet/images/marker-icon.png +share/glpi/lib/leaflet/images/marker-shadow.png +share/glpi/lib/leaflet/leaflet.css +share/glpi/lib/leaflet/leaflet.js +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-matte.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-plain.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-shadow.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-shadow@2x.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-soft.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css +share/glpi/lib/leaflet/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js +share/glpi/lib/leaflet/plugins/Leaflet.fullscreen/Leaflet.fullscreen.min.js +share/glpi/lib/leaflet/plugins/Leaflet.fullscreen/fullscreen.png +share/glpi/lib/leaflet/plugins/Leaflet.fullscreen/fullscreen@2x.png +share/glpi/lib/leaflet/plugins/Leaflet.fullscreen/leaflet.fullscreen.css +share/glpi/lib/leaflet/plugins/Leaflet.markercluster/MarkerCluster.Default.css +share/glpi/lib/leaflet/plugins/Leaflet.markercluster/MarkerCluster.css +share/glpi/lib/leaflet/plugins/Leaflet.markercluster/leaflet.markercluster.js +share/glpi/lib/leaflet/plugins/leaflet-control-osm-geocoder/Control.OSMGeocoder.css +share/glpi/lib/leaflet/plugins/leaflet-control-osm-geocoder/Control.OSMGeocoder.js +share/glpi/lib/leaflet/plugins/leaflet-control-osm-geocoder/LICENSE +share/glpi/lib/leaflet/plugins/leaflet.spin/leaflet.spin.min.js +share/glpi/lib/lodash.min.js +share/glpi/lib/moment.min.js share/glpi/lib/prism/prism.css share/glpi/lib/prism/prism.js -share/glpi/lib/tiny_mce/changelog.txt -share/glpi/lib/tiny_mce/jquery.tinymce.min.js -share/glpi/lib/tiny_mce/langs/ar.js -share/glpi/lib/tiny_mce/langs/ar_SA.js -share/glpi/lib/tiny_mce/langs/az.js -share/glpi/lib/tiny_mce/langs/be.js -share/glpi/lib/tiny_mce/langs/bg_BG.js -share/glpi/lib/tiny_mce/langs/bn_BD.js -share/glpi/lib/tiny_mce/langs/bs.js -share/glpi/lib/tiny_mce/langs/ca.js -share/glpi/lib/tiny_mce/langs/cs.js -share/glpi/lib/tiny_mce/langs/cs_CZ.js -share/glpi/lib/tiny_mce/langs/cy.js -share/glpi/lib/tiny_mce/langs/da.js -share/glpi/lib/tiny_mce/langs/de.js -share/glpi/lib/tiny_mce/langs/de_AT.js -share/glpi/lib/tiny_mce/langs/dv.js -share/glpi/lib/tiny_mce/langs/el.js -share/glpi/lib/tiny_mce/langs/en_CA.js -share/glpi/lib/tiny_mce/langs/en_GB.js -share/glpi/lib/tiny_mce/langs/eo.js -share/glpi/lib/tiny_mce/langs/es.js -share/glpi/lib/tiny_mce/langs/es_MX.js -share/glpi/lib/tiny_mce/langs/et.js -share/glpi/lib/tiny_mce/langs/eu.js -share/glpi/lib/tiny_mce/langs/fa.js -share/glpi/lib/tiny_mce/langs/fa_IR.js -share/glpi/lib/tiny_mce/langs/fi.js -share/glpi/lib/tiny_mce/langs/fo.js -share/glpi/lib/tiny_mce/langs/fr_CH.js -share/glpi/lib/tiny_mce/langs/fr_FR.js -share/glpi/lib/tiny_mce/langs/ga.js -share/glpi/lib/tiny_mce/langs/gd.js -share/glpi/lib/tiny_mce/langs/gl.js -share/glpi/lib/tiny_mce/langs/he_IL.js -share/glpi/lib/tiny_mce/langs/hi_IN.js -share/glpi/lib/tiny_mce/langs/hr.js -share/glpi/lib/tiny_mce/langs/hu_HU.js -share/glpi/lib/tiny_mce/langs/hy.js -share/glpi/lib/tiny_mce/langs/id.js -share/glpi/lib/tiny_mce/langs/is_IS.js -share/glpi/lib/tiny_mce/langs/it.js -share/glpi/lib/tiny_mce/langs/ja.js -share/glpi/lib/tiny_mce/langs/ka_GE.js -share/glpi/lib/tiny_mce/langs/kab.js -share/glpi/lib/tiny_mce/langs/kk.js -share/glpi/lib/tiny_mce/langs/km_KH.js -share/glpi/lib/tiny_mce/langs/ko.js -share/glpi/lib/tiny_mce/langs/ko_KR.js -share/glpi/lib/tiny_mce/langs/ku.js -share/glpi/lib/tiny_mce/langs/ku_IQ.js -share/glpi/lib/tiny_mce/langs/lb.js -share/glpi/lib/tiny_mce/langs/lt.js -share/glpi/lib/tiny_mce/langs/lv.js -share/glpi/lib/tiny_mce/langs/mk_MK.js -share/glpi/lib/tiny_mce/langs/ml.js -share/glpi/lib/tiny_mce/langs/ml_IN.js -share/glpi/lib/tiny_mce/langs/mn_MN.js -share/glpi/lib/tiny_mce/langs/nb_NO.js -share/glpi/lib/tiny_mce/langs/nl.js -share/glpi/lib/tiny_mce/langs/pl.js -share/glpi/lib/tiny_mce/langs/pt_BR.js -share/glpi/lib/tiny_mce/langs/pt_PT.js -share/glpi/lib/tiny_mce/langs/readme.md -share/glpi/lib/tiny_mce/langs/ro.js -share/glpi/lib/tiny_mce/langs/ru.js -share/glpi/lib/tiny_mce/langs/si_LK.js -share/glpi/lib/tiny_mce/langs/sk.js -share/glpi/lib/tiny_mce/langs/sl_SI.js -share/glpi/lib/tiny_mce/langs/sr.js -share/glpi/lib/tiny_mce/langs/sv_SE.js -share/glpi/lib/tiny_mce/langs/ta.js -share/glpi/lib/tiny_mce/langs/ta_IN.js -share/glpi/lib/tiny_mce/langs/tg.js -share/glpi/lib/tiny_mce/langs/th_TH.js -share/glpi/lib/tiny_mce/langs/tr.js -share/glpi/lib/tiny_mce/langs/tr_TR.js -share/glpi/lib/tiny_mce/langs/tt.js -share/glpi/lib/tiny_mce/langs/ug.js -share/glpi/lib/tiny_mce/langs/uk.js -share/glpi/lib/tiny_mce/langs/uk_UA.js -share/glpi/lib/tiny_mce/langs/vi.js -share/glpi/lib/tiny_mce/langs/vi_VN.js -share/glpi/lib/tiny_mce/langs/zh_CN.js -share/glpi/lib/tiny_mce/langs/zh_TW.js -share/glpi/lib/tiny_mce/license.txt -share/glpi/lib/tiny_mce/plugins/advlist/plugin.min.js -share/glpi/lib/tiny_mce/plugins/anchor/plugin.min.js -share/glpi/lib/tiny_mce/plugins/autolink/plugin.min.js -share/glpi/lib/tiny_mce/plugins/autoresize/plugin.min.js -share/glpi/lib/tiny_mce/plugins/autosave/plugin.min.js -share/glpi/lib/tiny_mce/plugins/bbcode/plugin.min.js -share/glpi/lib/tiny_mce/plugins/charmap/plugin.min.js -share/glpi/lib/tiny_mce/plugins/code/plugin.min.js -share/glpi/lib/tiny_mce/plugins/codesample/css/prism.css -share/glpi/lib/tiny_mce/plugins/codesample/plugin.min.js -share/glpi/lib/tiny_mce/plugins/colorpicker/plugin.min.js -share/glpi/lib/tiny_mce/plugins/contextmenu/plugin.min.js -share/glpi/lib/tiny_mce/plugins/directionality/plugin.min.js -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-cool.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-cry.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-embarassed.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-foot-in-mouth.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-frown.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-innocent.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-kiss.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-laughing.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-money-mouth.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-sealed.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-smile.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-surprised.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-tongue-out.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-undecided.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-wink.gif -share/glpi/lib/tiny_mce/plugins/emoticons/img/smiley-yell.gif -share/glpi/lib/tiny_mce/plugins/emoticons/plugin.min.js -share/glpi/lib/tiny_mce/plugins/example/dialog.html -share/glpi/lib/tiny_mce/plugins/example/plugin.min.js -share/glpi/lib/tiny_mce/plugins/example_dependency/plugin.min.js -share/glpi/lib/tiny_mce/plugins/fullpage/plugin.min.js -share/glpi/lib/tiny_mce/plugins/fullscreen/plugin.min.js -share/glpi/lib/tiny_mce/plugins/hr/plugin.min.js -share/glpi/lib/tiny_mce/plugins/image/plugin.min.js -share/glpi/lib/tiny_mce/plugins/imagetools/plugin.min.js -share/glpi/lib/tiny_mce/plugins/importcss/plugin.min.js -share/glpi/lib/tiny_mce/plugins/insertdatetime/plugin.min.js -share/glpi/lib/tiny_mce/plugins/layer/plugin.min.js -share/glpi/lib/tiny_mce/plugins/legacyoutput/plugin.min.js -share/glpi/lib/tiny_mce/plugins/link/plugin.min.js -share/glpi/lib/tiny_mce/plugins/lists/plugin.min.js -share/glpi/lib/tiny_mce/plugins/media/moxieplayer.swf -share/glpi/lib/tiny_mce/plugins/media/plugin.min.js -share/glpi/lib/tiny_mce/plugins/nonbreaking/plugin.min.js -share/glpi/lib/tiny_mce/plugins/noneditable/plugin.min.js -share/glpi/lib/tiny_mce/plugins/pagebreak/plugin.min.js -share/glpi/lib/tiny_mce/plugins/paste/plugin.min.js -share/glpi/lib/tiny_mce/plugins/preview/plugin.min.js -share/glpi/lib/tiny_mce/plugins/print/plugin.min.js -share/glpi/lib/tiny_mce/plugins/save/plugin.min.js -share/glpi/lib/tiny_mce/plugins/searchreplace/plugin.min.js -share/glpi/lib/tiny_mce/plugins/spellchecker/plugin.min.js -share/glpi/lib/tiny_mce/plugins/tabfocus/plugin.min.js -share/glpi/lib/tiny_mce/plugins/table/plugin.min.js -share/glpi/lib/tiny_mce/plugins/template/plugin.min.js -share/glpi/lib/tiny_mce/plugins/textcolor/plugin.min.js -share/glpi/lib/tiny_mce/plugins/textpattern/plugin.min.js -share/glpi/lib/tiny_mce/plugins/toc/plugin.min.js -share/glpi/lib/tiny_mce/plugins/visualblocks/css/visualblocks.css -share/glpi/lib/tiny_mce/plugins/visualblocks/plugin.min.js -share/glpi/lib/tiny_mce/plugins/visualchars/plugin.min.js -share/glpi/lib/tiny_mce/plugins/wordcount/plugin.min.js -share/glpi/lib/tiny_mce/skins/light/content.inline.min.css -share/glpi/lib/tiny_mce/skins/light/content.min.css -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce-small.eot -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce-small.json -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce-small.svg -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce-small.ttf -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce-small.woff -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce.eot -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce.json -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce.svg -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce.ttf -share/glpi/lib/tiny_mce/skins/light/fonts/tinymce.woff -share/glpi/lib/tiny_mce/skins/light/img/anchor.gif -share/glpi/lib/tiny_mce/skins/light/img/loader.gif -share/glpi/lib/tiny_mce/skins/light/img/object.gif -share/glpi/lib/tiny_mce/skins/light/img/trans.gif -share/glpi/lib/tiny_mce/skins/light/skin.ie7.min.css -share/glpi/lib/tiny_mce/skins/light/skin.min.css -share/glpi/lib/tiny_mce/skins/lightgray/content.inline.min.css -share/glpi/lib/tiny_mce/skins/lightgray/content.min.css -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce-small.eot -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce-small.svg -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce-small.ttf -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce-small.woff -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce.eot -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce.svg -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce.ttf -share/glpi/lib/tiny_mce/skins/lightgray/fonts/tinymce.woff -share/glpi/lib/tiny_mce/skins/lightgray/img/anchor.gif -share/glpi/lib/tiny_mce/skins/lightgray/img/loader.gif -share/glpi/lib/tiny_mce/skins/lightgray/img/object.gif -share/glpi/lib/tiny_mce/skins/lightgray/img/trans.gif -share/glpi/lib/tiny_mce/skins/lightgray/skin.ie7.min.css -share/glpi/lib/tiny_mce/skins/lightgray/skin.min.css -share/glpi/lib/tiny_mce/themes/inlite/theme.min.js -share/glpi/lib/tiny_mce/themes/modern/theme.min.js -share/glpi/lib/tiny_mce/tinymce.min.js -share/glpi/lib/zend-splautoloader.class.php +share/glpi/lib/spin.js/spin.min.js +share/glpi/lib/tiny_mce/custom_plugins/stickytoolbar/plugin.js +share/glpi/lib/tiny_mce/lib/jquery.tinymce.min.js +share/glpi/lib/tiny_mce/lib/langs/af_ZA.js +share/glpi/lib/tiny_mce/lib/langs/ar.js +share/glpi/lib/tiny_mce/lib/langs/az.js +share/glpi/lib/tiny_mce/lib/langs/be.js +share/glpi/lib/tiny_mce/lib/langs/bg_BG.js +share/glpi/lib/tiny_mce/lib/langs/bn_BD.js +share/glpi/lib/tiny_mce/lib/langs/ca.js +share/glpi/lib/tiny_mce/lib/langs/cs.js +share/glpi/lib/tiny_mce/lib/langs/cs_CZ.js +share/glpi/lib/tiny_mce/lib/langs/cy.js +share/glpi/lib/tiny_mce/lib/langs/da.js +share/glpi/lib/tiny_mce/lib/langs/de.js +share/glpi/lib/tiny_mce/lib/langs/de_AT.js +share/glpi/lib/tiny_mce/lib/langs/dv.js +share/glpi/lib/tiny_mce/lib/langs/el.js +share/glpi/lib/tiny_mce/lib/langs/en_CA.js +share/glpi/lib/tiny_mce/lib/langs/en_GB.js +share/glpi/lib/tiny_mce/lib/langs/es.js +share/glpi/lib/tiny_mce/lib/langs/es_MX.js +share/glpi/lib/tiny_mce/lib/langs/et.js +share/glpi/lib/tiny_mce/lib/langs/eu.js +share/glpi/lib/tiny_mce/lib/langs/fa_IR.js +share/glpi/lib/tiny_mce/lib/langs/fi.js +share/glpi/lib/tiny_mce/lib/langs/fr_FR.js +share/glpi/lib/tiny_mce/lib/langs/ga.js +share/glpi/lib/tiny_mce/lib/langs/gl.js +share/glpi/lib/tiny_mce/lib/langs/he_IL.js +share/glpi/lib/tiny_mce/lib/langs/hr.js +share/glpi/lib/tiny_mce/lib/langs/hu_HU.js +share/glpi/lib/tiny_mce/lib/langs/id.js +share/glpi/lib/tiny_mce/lib/langs/it.js +share/glpi/lib/tiny_mce/lib/langs/ja.js +share/glpi/lib/tiny_mce/lib/langs/ka_GE.js +share/glpi/lib/tiny_mce/lib/langs/kab.js +share/glpi/lib/tiny_mce/lib/langs/kk.js +share/glpi/lib/tiny_mce/lib/langs/km_KH.js +share/glpi/lib/tiny_mce/lib/langs/ko_KR.js +share/glpi/lib/tiny_mce/lib/langs/lt.js +share/glpi/lib/tiny_mce/lib/langs/lv.js +share/glpi/lib/tiny_mce/lib/langs/nb_NO.js +share/glpi/lib/tiny_mce/lib/langs/nl.js +share/glpi/lib/tiny_mce/lib/langs/pl.js +share/glpi/lib/tiny_mce/lib/langs/pt_BR.js +share/glpi/lib/tiny_mce/lib/langs/pt_PT.js +share/glpi/lib/tiny_mce/lib/langs/readme.md +share/glpi/lib/tiny_mce/lib/langs/ro.js +share/glpi/lib/tiny_mce/lib/langs/ru.js +share/glpi/lib/tiny_mce/lib/langs/sk.js +share/glpi/lib/tiny_mce/lib/langs/sl_SI.js +share/glpi/lib/tiny_mce/lib/langs/sr.js +share/glpi/lib/tiny_mce/lib/langs/sv_SE.js +share/glpi/lib/tiny_mce/lib/langs/ta.js +share/glpi/lib/tiny_mce/lib/langs/ta_IN.js +share/glpi/lib/tiny_mce/lib/langs/th_TH.js +share/glpi/lib/tiny_mce/lib/langs/tr.js +share/glpi/lib/tiny_mce/lib/langs/tr_TR.js +share/glpi/lib/tiny_mce/lib/langs/ug.js +share/glpi/lib/tiny_mce/lib/langs/uk.js +share/glpi/lib/tiny_mce/lib/langs/uk_UA.js +share/glpi/lib/tiny_mce/lib/langs/uz.js +share/glpi/lib/tiny_mce/lib/langs/vi_VN.js +share/glpi/lib/tiny_mce/lib/langs/zh_CN.js +share/glpi/lib/tiny_mce/lib/langs/zh_TW.js +share/glpi/lib/tiny_mce/lib/license.txt +share/glpi/lib/tiny_mce/lib/plugins/advlist/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/anchor/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/autolink/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/autoresize/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/autosave/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/bbcode/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/charmap/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/code/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/codesample/css/prism.css +share/glpi/lib/tiny_mce/lib/plugins/codesample/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/colorpicker/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/contextmenu/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/directionality/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-cool.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-cry.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-embarassed.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-foot-in-mouth.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-frown.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-innocent.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-kiss.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-laughing.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-money-mouth.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-sealed.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-smile.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-surprised.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-tongue-out.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-undecided.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-wink.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/img/smiley-yell.gif +share/glpi/lib/tiny_mce/lib/plugins/emoticons/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/fullpage/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/fullscreen/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/help/img/logo.png +share/glpi/lib/tiny_mce/lib/plugins/help/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/hr/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/image/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/imagetools/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/importcss/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/insertdatetime/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/legacyoutput/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/link/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/lists/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/media/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/nonbreaking/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/noneditable/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/pagebreak/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/paste/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/preview/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/print/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/save/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/searchreplace/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/spellchecker/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/tabfocus/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/table/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/template/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/textcolor/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/textpattern/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/toc/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/visualblocks/css/visualblocks.css +share/glpi/lib/tiny_mce/lib/plugins/visualblocks/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/visualchars/plugin.min.js +share/glpi/lib/tiny_mce/lib/plugins/wordcount/plugin.min.js +share/glpi/lib/tiny_mce/lib/skins/lightgray/content.inline.min.css +share/glpi/lib/tiny_mce/lib/skins/lightgray/content.min.css +share/glpi/lib/tiny_mce/lib/skins/lightgray/content.mobile.min.css +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce-mobile.woff +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce-small.eot +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce-small.svg +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce-small.ttf +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce-small.woff +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce.eot +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce.svg +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce.ttf +share/glpi/lib/tiny_mce/lib/skins/lightgray/fonts/tinymce.woff +share/glpi/lib/tiny_mce/lib/skins/lightgray/img/anchor.gif +share/glpi/lib/tiny_mce/lib/skins/lightgray/img/loader.gif +share/glpi/lib/tiny_mce/lib/skins/lightgray/img/object.gif +share/glpi/lib/tiny_mce/lib/skins/lightgray/img/trans.gif +share/glpi/lib/tiny_mce/lib/skins/lightgray/skin.min.css +share/glpi/lib/tiny_mce/lib/skins/lightgray/skin.mobile.min.css +share/glpi/lib/tiny_mce/lib/themes/inlite/theme.min.js +share/glpi/lib/tiny_mce/lib/themes/mobile/theme.min.js +share/glpi/lib/tiny_mce/lib/themes/modern/theme.min.js +share/glpi/lib/tiny_mce/lib/tinymce.min.js +share/glpi/lib/unorm/unorm.js share/glpi/locales/.htaccess share/glpi/locales/ar_SA.mo share/glpi/locales/ar_SA.po @@ -1813,6 +1902,8 @@ share/glpi/locales/fa_IR.mo share/glpi/locales/fa_IR.po share/glpi/locales/fi_FI.mo share/glpi/locales/fi_FI.po +share/glpi/locales/fr_CA.mo +share/glpi/locales/fr_CA.po share/glpi/locales/fr_FR.mo share/glpi/locales/fr_FR.po share/glpi/locales/gl_ES.mo @@ -1820,6 +1911,8 @@ share/glpi/locales/gl_ES.po share/glpi/locales/glpi.pot share/glpi/locales/he_IL.mo share/glpi/locales/he_IL.po +share/glpi/locales/hi_IN.mo +share/glpi/locales/hi_IN.po share/glpi/locales/hr_HR.mo share/glpi/locales/hr_HR.po share/glpi/locales/hu_HU.mo @@ -1929,7 +2022,6 @@ share/glpi/pics/fond_onglet.png share/glpi/pics/fond_th.png share/glpi/pics/glpi.png share/glpi/pics/greenbutton.png -share/glpi/pics/group.png share/glpi/pics/groupes.png share/glpi/pics/icones/ai-dist.png share/glpi/pics/icones/aiff-dist.png @@ -2014,8 +2106,6 @@ share/glpi/pics/left_off.png share/glpi/pics/loader.png share/glpi/pics/lock.png share/glpi/pics/login_logo_glpi.png -share/glpi/pics/login_password.png -share/glpi/pics/login_user.png share/glpi/pics/logos/logo-GLPI-100-black.png share/glpi/pics/logos/logo-GLPI-100-white.png share/glpi/pics/logos/logo-GLPI-160-white.png @@ -2055,12 +2145,14 @@ share/glpi/pics/rdv_private.png share/glpi/pics/rdv_public.png share/glpi/pics/redbutton.png share/glpi/pics/refresh.png -share/glpi/pics/reservation-3.png share/glpi/pics/reservation.png share/glpi/pics/reset.png share/glpi/pics/right.png share/glpi/pics/right_off.png -share/glpi/pics/sauvegardes.png +share/glpi/pics/screenshots/components.png +share/glpi/pics/screenshots/dcim_racks_draganddrop.gif +share/glpi/pics/screenshots/dcim_racks_toggleimages.gif +share/glpi/pics/screenshots/timeline.png share/glpi/pics/search.png share/glpi/pics/showdeleted.png share/glpi/pics/showselect.png @@ -2086,9 +2178,7 @@ share/glpi/pics/timeline/followup.png share/glpi/pics/timeline/group.png share/glpi/pics/timeline/information.png share/glpi/pics/timeline/planification.png -share/glpi/pics/timeline/private.png share/glpi/pics/timeline/reset.png -share/glpi/pics/timeline/solution.png share/glpi/pics/timeline/task.png share/glpi/pics/timeline/todo.png share/glpi/pics/timeline/user.png @@ -2098,7 +2188,6 @@ share/glpi/pics/timeline/validation_min_active.png share/glpi/pics/toggle-left.png share/glpi/pics/toggle-right.png share/glpi/pics/treeroot.png -share/glpi/pics/user.png share/glpi/pics/users.png share/glpi/pics/waiting.png share/glpi/pics/warning.png @@ -2106,16 +2195,12 @@ share/glpi/pics/warning_min.png share/glpi/pics/web.png share/glpi/plugins/remove.txt share/glpi/scripts/.htaccess -share/glpi/scripts/add_creation_date.php -share/glpi/scripts/checkdb.php -share/glpi/scripts/cliinstall.php -share/glpi/scripts/cliupdate.php share/glpi/scripts/compute_dictionnary.php share/glpi/scripts/glpi_cron_curl.sh share/glpi/scripts/glpi_cron_lynx.sh share/glpi/scripts/ldap_mass_sync.php +share/glpi/scripts/migrations/racks_plugin.php share/glpi/scripts/softcat_mass_compute.php -share/glpi/scripts/unlock_tasks.php share/glpi/sound/sound_a.mp3 share/glpi/sound/sound_a.ogg share/glpi/sound/sound_b.mp3 @@ -2140,61 +2225,45 @@ share/glpi/vendor/container-interop/container-interop/README.md share/glpi/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php share/glpi/vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php share/glpi/vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php +share/glpi/vendor/elvanto/litemoji/LICENSE +share/glpi/vendor/elvanto/litemoji/README.md +share/glpi/vendor/elvanto/litemoji/bin/generate-shortcodes-array.php +share/glpi/vendor/elvanto/litemoji/phpunit.xml +share/glpi/vendor/elvanto/litemoji/src/LitEmoji.php +share/glpi/vendor/elvanto/litemoji/src/shortcodes-array.php share/glpi/vendor/iamcal/lib_autolink/.gitattributes share/glpi/vendor/iamcal/lib_autolink/LICENSE share/glpi/vendor/iamcal/lib_autolink/README.md share/glpi/vendor/iamcal/lib_autolink/lib_autolink.php -share/glpi/vendor/jasig/phpcas/.gitattributes -share/glpi/vendor/jasig/phpcas/CAS.php -share/glpi/vendor/jasig/phpcas/LICENSE -share/glpi/vendor/jasig/phpcas/NOTICE -share/glpi/vendor/jasig/phpcas/README.md -share/glpi/vendor/jasig/phpcas/source/CAS.php -share/glpi/vendor/jasig/phpcas/source/CAS/AuthenticationException.php -share/glpi/vendor/jasig/phpcas/source/CAS/Autoload.php -share/glpi/vendor/jasig/phpcas/source/CAS/Client.php -share/glpi/vendor/jasig/phpcas/source/CAS/CookieJar.php -share/glpi/vendor/jasig/phpcas/source/CAS/Exception.php -share/glpi/vendor/jasig/phpcas/source/CAS/GracefullTerminationException.php -share/glpi/vendor/jasig/phpcas/source/CAS/InvalidArgumentException.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/Catalan.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/ChineseSimplified.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/English.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/French.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/German.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/Greek.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/Japanese.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/LanguageInterface.php -share/glpi/vendor/jasig/phpcas/source/CAS/Languages/Spanish.php -share/glpi/vendor/jasig/phpcas/source/CAS/OutOfSequenceBeforeAuthenticationCallException.php -share/glpi/vendor/jasig/phpcas/source/CAS/OutOfSequenceBeforeClientException.php -share/glpi/vendor/jasig/phpcas/source/CAS/OutOfSequenceBeforeProxyException.php -share/glpi/vendor/jasig/phpcas/source/CAS/OutOfSequenceException.php -share/glpi/vendor/jasig/phpcas/source/CAS/PGTStorage/AbstractStorage.php -share/glpi/vendor/jasig/phpcas/source/CAS/PGTStorage/Db.php -share/glpi/vendor/jasig/phpcas/source/CAS/PGTStorage/File.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Abstract.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Exception.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Http.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Http/Abstract.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Http/Get.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Http/Post.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Imap.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxiedService/Testable.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyChain.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyChain/AllowedList.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyChain/Any.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyChain/Interface.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyChain/Trusted.php -share/glpi/vendor/jasig/phpcas/source/CAS/ProxyTicketException.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/AbstractRequest.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/CurlMultiRequest.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/CurlRequest.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/Exception.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/MultiRequestInterface.php -share/glpi/vendor/jasig/phpcas/source/CAS/Request/RequestInterface.php -share/glpi/vendor/jasig/phpcas/source/CAS/TypeMismatchException.php +share/glpi/vendor/leafo/scssphp/LICENSE.md +share/glpi/vendor/leafo/scssphp/README.md +share/glpi/vendor/leafo/scssphp/bin/pscss +share/glpi/vendor/leafo/scssphp/scss.inc.php +share/glpi/vendor/leafo/scssphp/src/Base/Range.php +share/glpi/vendor/leafo/scssphp/src/Block.php +share/glpi/vendor/leafo/scssphp/src/Colors.php +share/glpi/vendor/leafo/scssphp/src/Compiler.php +share/glpi/vendor/leafo/scssphp/src/Compiler/Environment.php +share/glpi/vendor/leafo/scssphp/src/Exception/CompilerException.php +share/glpi/vendor/leafo/scssphp/src/Exception/ParserException.php +share/glpi/vendor/leafo/scssphp/src/Exception/RangeException.php +share/glpi/vendor/leafo/scssphp/src/Exception/ServerException.php +share/glpi/vendor/leafo/scssphp/src/Formatter.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Compact.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Compressed.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Crunched.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Debug.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Expanded.php +share/glpi/vendor/leafo/scssphp/src/Formatter/Nested.php +share/glpi/vendor/leafo/scssphp/src/Formatter/OutputBlock.php +share/glpi/vendor/leafo/scssphp/src/Node.php +share/glpi/vendor/leafo/scssphp/src/Node/Number.php +share/glpi/vendor/leafo/scssphp/src/Parser.php +share/glpi/vendor/leafo/scssphp/src/SourceMap/Base64VLQEncoder.php +share/glpi/vendor/leafo/scssphp/src/SourceMap/SourceMapGenerator.php +share/glpi/vendor/leafo/scssphp/src/Type.php +share/glpi/vendor/leafo/scssphp/src/Util.php +share/glpi/vendor/leafo/scssphp/src/Version.php share/glpi/vendor/michelf/php-markdown/License.md share/glpi/vendor/michelf/php-markdown/Michelf/Markdown.inc.php share/glpi/vendor/michelf/php-markdown/Michelf/Markdown.php @@ -2204,8 +2273,104 @@ share/glpi/vendor/michelf/php-markdown/Michelf/MarkdownInterface.inc.php share/glpi/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php share/glpi/vendor/michelf/php-markdown/Readme.md share/glpi/vendor/michelf/php-markdown/Readme.php +share/glpi/vendor/monolog/monolog/.php_cs +share/glpi/vendor/monolog/monolog/CHANGELOG.md +share/glpi/vendor/monolog/monolog/LICENSE +share/glpi/vendor/monolog/monolog/README.md +share/glpi/vendor/monolog/monolog/src/Monolog/ErrorHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Logger.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php +share/glpi/vendor/monolog/monolog/src/Monolog/Registry.php +share/glpi/vendor/monolog/monolog/src/Monolog/ResettableInterface.php +share/glpi/vendor/monolog/monolog/src/Monolog/SignalHandler.php +share/glpi/vendor/monolog/monolog/src/Monolog/Utils.php share/glpi/vendor/paragonie/random_compat/LICENSE -share/glpi/vendor/paragonie/random_compat/build-phar.sh share/glpi/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey share/glpi/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc share/glpi/vendor/paragonie/random_compat/lib/byte_safe_strings.php @@ -2218,23 +2383,11 @@ share/glpi/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php share/glpi/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php share/glpi/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php share/glpi/vendor/paragonie/random_compat/lib/random_int.php -share/glpi/vendor/paragonie/random_compat/other/build_phar.php -share/glpi/vendor/paragonie/random_compat/psalm-autoload.php -share/glpi/vendor/paragonie/random_compat/psalm.xml -share/glpi/vendor/phpmailer/phpmailer/.github/ISSUE_TEMPLATE.md -share/glpi/vendor/phpmailer/phpmailer/.github/PULL_REQUEST_TEMPLATE.md +share/glpi/vendor/phpmailer/phpmailer/COMMITMENT share/glpi/vendor/phpmailer/phpmailer/LICENSE -share/glpi/vendor/phpmailer/phpmailer/PHPMailerAutoload.php +share/glpi/vendor/phpmailer/phpmailer/README.md +share/glpi/vendor/phpmailer/phpmailer/SECURITY.md share/glpi/vendor/phpmailer/phpmailer/VERSION -share/glpi/vendor/phpmailer/phpmailer/class.phpmailer.php -share/glpi/vendor/phpmailer/phpmailer/class.phpmaileroauth.php -share/glpi/vendor/phpmailer/phpmailer/class.phpmaileroauthgoogle.php -share/glpi/vendor/phpmailer/phpmailer/class.pop3.php -share/glpi/vendor/phpmailer/phpmailer/class.smtp.php -share/glpi/vendor/phpmailer/phpmailer/extras/EasyPeasyICS.php -share/glpi/vendor/phpmailer/phpmailer/extras/README.md -share/glpi/vendor/phpmailer/phpmailer/extras/htmlfilter.php -share/glpi/vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php share/glpi/vendor/phpmailer/phpmailer/get_oauth_token.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php @@ -2257,6 +2410,7 @@ share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php +share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php @@ -2266,6 +2420,7 @@ share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php +share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php @@ -2273,21 +2428,52 @@ share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-rs.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php +share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php +share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php share/glpi/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php +share/glpi/vendor/phpmailer/phpmailer/src/Exception.php +share/glpi/vendor/phpmailer/phpmailer/src/OAuth.php +share/glpi/vendor/phpmailer/phpmailer/src/PHPMailer.php +share/glpi/vendor/phpmailer/phpmailer/src/POP3.php +share/glpi/vendor/phpmailer/phpmailer/src/SMTP.php +share/glpi/vendor/psr/cache/CHANGELOG.md +share/glpi/vendor/psr/cache/LICENSE.txt +share/glpi/vendor/psr/cache/README.md +share/glpi/vendor/psr/cache/src/CacheException.php +share/glpi/vendor/psr/cache/src/CacheItemInterface.php +share/glpi/vendor/psr/cache/src/CacheItemPoolInterface.php +share/glpi/vendor/psr/cache/src/InvalidArgumentException.php share/glpi/vendor/psr/container/LICENSE share/glpi/vendor/psr/container/README.md share/glpi/vendor/psr/container/src/ContainerExceptionInterface.php share/glpi/vendor/psr/container/src/ContainerInterface.php share/glpi/vendor/psr/container/src/NotFoundExceptionInterface.php +share/glpi/vendor/psr/log/LICENSE +share/glpi/vendor/psr/log/Psr/Log/AbstractLogger.php +share/glpi/vendor/psr/log/Psr/Log/InvalidArgumentException.php +share/glpi/vendor/psr/log/Psr/Log/LogLevel.php +share/glpi/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +share/glpi/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +share/glpi/vendor/psr/log/Psr/Log/LoggerInterface.php +share/glpi/vendor/psr/log/Psr/Log/LoggerTrait.php +share/glpi/vendor/psr/log/Psr/Log/NullLogger.php +share/glpi/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +share/glpi/vendor/psr/log/Psr/Log/Test/TestLogger.php +share/glpi/vendor/psr/log/README.md +share/glpi/vendor/psr/simple-cache/.editorconfig +share/glpi/vendor/psr/simple-cache/LICENSE.md +share/glpi/vendor/psr/simple-cache/README.md +share/glpi/vendor/psr/simple-cache/src/CacheException.php +share/glpi/vendor/psr/simple-cache/src/CacheInterface.php +share/glpi/vendor/psr/simple-cache/src/InvalidArgumentException.php share/glpi/vendor/sabre/uri/.travis.yml share/glpi/vendor/sabre/uri/CHANGELOG.md share/glpi/vendor/sabre/uri/LICENSE @@ -2295,6 +2481,7 @@ share/glpi/vendor/sabre/uri/README.md share/glpi/vendor/sabre/uri/lib/InvalidUriException.php share/glpi/vendor/sabre/uri/lib/Version.php share/glpi/vendor/sabre/uri/lib/functions.php +share/glpi/vendor/sabre/vobject/.php_cs.dist share/glpi/vendor/sabre/vobject/.travis.yml share/glpi/vendor/sabre/vobject/CHANGELOG.md share/glpi/vendor/sabre/vobject/LICENSE @@ -2384,6 +2571,7 @@ share/glpi/vendor/sabre/vobject/lib/timezonedata/lotuszones.php share/glpi/vendor/sabre/vobject/lib/timezonedata/php-bc.php share/glpi/vendor/sabre/vobject/lib/timezonedata/php-workaround.php share/glpi/vendor/sabre/vobject/lib/timezonedata/windowszones.php +share/glpi/vendor/sabre/vobject/phpstan.neon share/glpi/vendor/sabre/vobject/resources/schema/xcal.rng share/glpi/vendor/sabre/vobject/resources/schema/xcard.rng share/glpi/vendor/sabre/xml/.travis.yml @@ -2466,10 +2654,378 @@ share/glpi/vendor/simplepie/simplepie/library/SimplePie/Sanitize.php share/glpi/vendor/simplepie/simplepie/library/SimplePie/Source.php share/glpi/vendor/simplepie/simplepie/library/SimplePie/XML/Declaration/Parser.php share/glpi/vendor/simplepie/simplepie/library/SimplePie/gzdecode.php +share/glpi/vendor/symfony/console/Application.php +share/glpi/vendor/symfony/console/CHANGELOG.md +share/glpi/vendor/symfony/console/Command/Command.php +share/glpi/vendor/symfony/console/Command/HelpCommand.php +share/glpi/vendor/symfony/console/Command/ListCommand.php +share/glpi/vendor/symfony/console/Command/LockableTrait.php +share/glpi/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +share/glpi/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +share/glpi/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +share/glpi/vendor/symfony/console/ConsoleEvents.php +share/glpi/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +share/glpi/vendor/symfony/console/Descriptor/ApplicationDescription.php +share/glpi/vendor/symfony/console/Descriptor/Descriptor.php +share/glpi/vendor/symfony/console/Descriptor/DescriptorInterface.php +share/glpi/vendor/symfony/console/Descriptor/JsonDescriptor.php +share/glpi/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +share/glpi/vendor/symfony/console/Descriptor/TextDescriptor.php +share/glpi/vendor/symfony/console/Descriptor/XmlDescriptor.php +share/glpi/vendor/symfony/console/Event/ConsoleCommandEvent.php +share/glpi/vendor/symfony/console/Event/ConsoleErrorEvent.php +share/glpi/vendor/symfony/console/Event/ConsoleEvent.php +share/glpi/vendor/symfony/console/Event/ConsoleExceptionEvent.php +share/glpi/vendor/symfony/console/Event/ConsoleTerminateEvent.php +share/glpi/vendor/symfony/console/EventListener/ErrorListener.php +share/glpi/vendor/symfony/console/Exception/CommandNotFoundException.php +share/glpi/vendor/symfony/console/Exception/ExceptionInterface.php +share/glpi/vendor/symfony/console/Exception/InvalidArgumentException.php +share/glpi/vendor/symfony/console/Exception/InvalidOptionException.php +share/glpi/vendor/symfony/console/Exception/LogicException.php +share/glpi/vendor/symfony/console/Exception/RuntimeException.php +share/glpi/vendor/symfony/console/Formatter/OutputFormatter.php +share/glpi/vendor/symfony/console/Formatter/OutputFormatterInterface.php +share/glpi/vendor/symfony/console/Formatter/OutputFormatterStyle.php +share/glpi/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +share/glpi/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +share/glpi/vendor/symfony/console/Helper/DebugFormatterHelper.php +share/glpi/vendor/symfony/console/Helper/DescriptorHelper.php +share/glpi/vendor/symfony/console/Helper/FormatterHelper.php +share/glpi/vendor/symfony/console/Helper/Helper.php +share/glpi/vendor/symfony/console/Helper/HelperInterface.php +share/glpi/vendor/symfony/console/Helper/HelperSet.php +share/glpi/vendor/symfony/console/Helper/InputAwareHelper.php +share/glpi/vendor/symfony/console/Helper/ProcessHelper.php +share/glpi/vendor/symfony/console/Helper/ProgressBar.php +share/glpi/vendor/symfony/console/Helper/ProgressIndicator.php +share/glpi/vendor/symfony/console/Helper/QuestionHelper.php +share/glpi/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +share/glpi/vendor/symfony/console/Helper/Table.php +share/glpi/vendor/symfony/console/Helper/TableCell.php +share/glpi/vendor/symfony/console/Helper/TableSeparator.php +share/glpi/vendor/symfony/console/Helper/TableStyle.php +share/glpi/vendor/symfony/console/Input/ArgvInput.php +share/glpi/vendor/symfony/console/Input/ArrayInput.php +share/glpi/vendor/symfony/console/Input/Input.php +share/glpi/vendor/symfony/console/Input/InputArgument.php +share/glpi/vendor/symfony/console/Input/InputAwareInterface.php +share/glpi/vendor/symfony/console/Input/InputDefinition.php +share/glpi/vendor/symfony/console/Input/InputInterface.php +share/glpi/vendor/symfony/console/Input/InputOption.php +share/glpi/vendor/symfony/console/Input/StreamableInputInterface.php +share/glpi/vendor/symfony/console/Input/StringInput.php +share/glpi/vendor/symfony/console/LICENSE +share/glpi/vendor/symfony/console/Logger/ConsoleLogger.php +share/glpi/vendor/symfony/console/Output/BufferedOutput.php +share/glpi/vendor/symfony/console/Output/ConsoleOutput.php +share/glpi/vendor/symfony/console/Output/ConsoleOutputInterface.php +share/glpi/vendor/symfony/console/Output/NullOutput.php +share/glpi/vendor/symfony/console/Output/Output.php +share/glpi/vendor/symfony/console/Output/OutputInterface.php +share/glpi/vendor/symfony/console/Output/StreamOutput.php +share/glpi/vendor/symfony/console/Question/ChoiceQuestion.php +share/glpi/vendor/symfony/console/Question/ConfirmationQuestion.php +share/glpi/vendor/symfony/console/Question/Question.php +share/glpi/vendor/symfony/console/README.md +share/glpi/vendor/symfony/console/Resources/bin/hiddeninput.exe +share/glpi/vendor/symfony/console/Style/OutputStyle.php +share/glpi/vendor/symfony/console/Style/StyleInterface.php +share/glpi/vendor/symfony/console/Style/SymfonyStyle.php +share/glpi/vendor/symfony/console/Terminal.php +share/glpi/vendor/symfony/console/Tester/ApplicationTester.php +share/glpi/vendor/symfony/console/Tester/CommandTester.php +share/glpi/vendor/symfony/console/Tests/ApplicationTest.php +share/glpi/vendor/symfony/console/Tests/Command/CommandTest.php +share/glpi/vendor/symfony/console/Tests/Command/HelpCommandTest.php +share/glpi/vendor/symfony/console/Tests/Command/ListCommandTest.php +share/glpi/vendor/symfony/console/Tests/Command/LockableTraitTest.php +share/glpi/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +share/glpi/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +share/glpi/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +share/glpi/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +share/glpi/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +share/glpi/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +share/glpi/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +share/glpi/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +share/glpi/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +share/glpi/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +share/glpi/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +share/glpi/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +share/glpi/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/TestCommand.php +share/glpi/vendor/symfony/console/Tests/Fixtures/TestTiti.php +share/glpi/vendor/symfony/console/Tests/Fixtures/TestToto.php +share/glpi/vendor/symfony/console/Tests/Fixtures/application_1.json +share/glpi/vendor/symfony/console/Tests/Fixtures/application_1.md +share/glpi/vendor/symfony/console/Tests/Fixtures/application_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_1.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/application_2.json +share/glpi/vendor/symfony/console/Tests/Fixtures/application_2.md +share/glpi/vendor/symfony/console/Tests/Fixtures/application_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_2.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +share/glpi/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_run1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_run2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_run3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/application_run4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/command_1.json +share/glpi/vendor/symfony/console/Tests/Fixtures/command_1.md +share/glpi/vendor/symfony/console/Tests/Fixtures/command_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/command_1.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/command_2.json +share/glpi/vendor/symfony/console/Tests/Fixtures/command_2.md +share/glpi/vendor/symfony/console/Tests/Fixtures/command_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/command_2.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +share/glpi/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_1.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_1.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_2.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_2.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_3.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_3.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_4.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_4.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_5.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_5.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_6.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_6.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +share/glpi/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +share/glpi/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +share/glpi/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +share/glpi/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +share/glpi/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/HelperSetTest.php +share/glpi/vendor/symfony/console/Tests/Helper/HelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +share/glpi/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +share/glpi/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +share/glpi/vendor/symfony/console/Tests/Helper/TableStyleTest.php +share/glpi/vendor/symfony/console/Tests/Helper/TableTest.php +share/glpi/vendor/symfony/console/Tests/Input/ArgvInputTest.php +share/glpi/vendor/symfony/console/Tests/Input/ArrayInputTest.php +share/glpi/vendor/symfony/console/Tests/Input/InputArgumentTest.php +share/glpi/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +share/glpi/vendor/symfony/console/Tests/Input/InputOptionTest.php +share/glpi/vendor/symfony/console/Tests/Input/InputTest.php +share/glpi/vendor/symfony/console/Tests/Input/StringInputTest.php +share/glpi/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +share/glpi/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +share/glpi/vendor/symfony/console/Tests/Output/NullOutputTest.php +share/glpi/vendor/symfony/console/Tests/Output/OutputTest.php +share/glpi/vendor/symfony/console/Tests/Output/StreamOutputTest.php +share/glpi/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +share/glpi/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +share/glpi/vendor/symfony/console/Tests/TerminalTest.php +share/glpi/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +share/glpi/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +share/glpi/vendor/symfony/debug/BufferingLogger.php +share/glpi/vendor/symfony/debug/CHANGELOG.md +share/glpi/vendor/symfony/debug/Debug.php +share/glpi/vendor/symfony/debug/DebugClassLoader.php +share/glpi/vendor/symfony/debug/ErrorHandler.php +share/glpi/vendor/symfony/debug/Exception/ClassNotFoundException.php +share/glpi/vendor/symfony/debug/Exception/ContextErrorException.php +share/glpi/vendor/symfony/debug/Exception/FatalErrorException.php +share/glpi/vendor/symfony/debug/Exception/FatalThrowableError.php +share/glpi/vendor/symfony/debug/Exception/FlattenException.php +share/glpi/vendor/symfony/debug/Exception/OutOfMemoryException.php +share/glpi/vendor/symfony/debug/Exception/SilencedErrorContext.php +share/glpi/vendor/symfony/debug/Exception/UndefinedFunctionException.php +share/glpi/vendor/symfony/debug/Exception/UndefinedMethodException.php +share/glpi/vendor/symfony/debug/ExceptionHandler.php +share/glpi/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +share/glpi/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +share/glpi/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +share/glpi/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +share/glpi/vendor/symfony/debug/LICENSE +share/glpi/vendor/symfony/debug/README.md +share/glpi/vendor/symfony/debug/Resources/ext/README.md +share/glpi/vendor/symfony/debug/Resources/ext/config.m4 +share/glpi/vendor/symfony/debug/Resources/ext/config.w32 +share/glpi/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +share/glpi/vendor/symfony/debug/Resources/ext/symfony_debug.c +share/glpi/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +share/glpi/vendor/symfony/debug/Tests/ErrorHandlerTest.php +share/glpi/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +share/glpi/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +share/glpi/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +share/glpi/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +share/glpi/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/Throwing.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +share/glpi/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +share/glpi/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +share/glpi/vendor/symfony/debug/Tests/HeaderMock.php +share/glpi/vendor/symfony/debug/Tests/MockExceptionHandler.php +share/glpi/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +share/glpi/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +share/glpi/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +share/glpi/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt share/glpi/vendor/symfony/polyfill-mbstring/LICENSE share/glpi/vendor/symfony/polyfill-mbstring/Mbstring.php share/glpi/vendor/symfony/polyfill-mbstring/README.md share/glpi/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +share/glpi/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php share/glpi/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php share/glpi/vendor/symfony/polyfill-mbstring/bootstrap.php share/glpi/vendor/tecnickcom/tcpdf/CHANGELOG.TXT @@ -2698,17 +3254,9 @@ share/glpi/vendor/true/punycode/src/Exception/LabelOutOfBoundsException.php share/glpi/vendor/true/punycode/src/Exception/OutOfBoundsException.php share/glpi/vendor/true/punycode/src/Punycode.php share/glpi/vendor/zendframework/zend-cache/CHANGELOG.md -share/glpi/vendor/zendframework/zend-cache/CONDUCT.md -share/glpi/vendor/zendframework/zend-cache/CONTRIBUTING.md share/glpi/vendor/zendframework/zend-cache/LICENSE.md share/glpi/vendor/zendframework/zend-cache/README.md share/glpi/vendor/zendframework/zend-cache/autoload/patternPluginManagerPolyfill.php -share/glpi/vendor/zendframework/zend-cache/benchmark/CommonStorageAdapterBench.php -share/glpi/vendor/zendframework/zend-cache/benchmark/FilesystemStorageAdapterBench.php -share/glpi/vendor/zendframework/zend-cache/benchmark/MemoryStorageAdapterBench.php -share/glpi/vendor/zendframework/zend-cache/mkdocs.yml -share/glpi/vendor/zendframework/zend-cache/phpbench.json -share/glpi/vendor/zendframework/zend-cache/phpcs.xml share/glpi/vendor/zendframework/zend-cache/src/ConfigProvider.php share/glpi/vendor/zendframework/zend-cache/src/Exception/BadMethodCallException.php share/glpi/vendor/zendframework/zend-cache/src/Exception/ExceptionInterface.php @@ -2734,6 +3282,14 @@ share/glpi/vendor/zendframework/zend-cache/src/PatternFactory.php share/glpi/vendor/zendframework/zend-cache/src/PatternPluginManager/PatternPluginManagerTrait.php share/glpi/vendor/zendframework/zend-cache/src/PatternPluginManager/PatternPluginManagerV2Polyfill.php share/glpi/vendor/zendframework/zend-cache/src/PatternPluginManager/PatternPluginManagerV3Polyfill.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/CacheItemPool/CacheException.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/CacheItemPool/CacheItem.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/CacheItemPool/CacheItemPoolDecorator.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/CacheItemPool/InvalidArgumentException.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/SerializationTrait.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/SimpleCache/SimpleCacheDecorator.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/SimpleCache/SimpleCacheException.php +share/glpi/vendor/zendframework/zend-cache/src/Psr/SimpleCache/SimpleCacheInvalidArgumentException.php share/glpi/vendor/zendframework/zend-cache/src/Service/PatternPluginManagerFactory.php share/glpi/vendor/zendframework/zend-cache/src/Service/PluginManagerLookupTrait.php share/glpi/vendor/zendframework/zend-cache/src/Service/StorageAdapterPluginManagerFactory.php @@ -2753,6 +3309,9 @@ share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/BlackHole.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/Dba.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/DbaIterator.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/DbaOptions.php +share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/ExtMongoDb.php +share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/ExtMongoDbOptions.php +share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/ExtMongoDbResourceManager.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/Filesystem.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/FilesystemIterator.php share/glpi/vendor/zendframework/zend-cache/src/Storage/Adapter/FilesystemOptions.php @@ -2837,12 +3396,8 @@ share/glpi/vendor/zendframework/zend-eventmanager/src/SharedEventManagerInterfac share/glpi/vendor/zendframework/zend-eventmanager/src/SharedEventsCapableInterface.php share/glpi/vendor/zendframework/zend-eventmanager/src/Test/EventListenerIntrospectionTrait.php share/glpi/vendor/zendframework/zend-i18n/CHANGELOG.md -share/glpi/vendor/zendframework/zend-i18n/CONDUCT.md -share/glpi/vendor/zendframework/zend-i18n/CONTRIBUTING.md share/glpi/vendor/zendframework/zend-i18n/LICENSE.md share/glpi/vendor/zendframework/zend-i18n/README.md -share/glpi/vendor/zendframework/zend-i18n/mkdocs.yml -share/glpi/vendor/zendframework/zend-i18n/phpcs.xml share/glpi/vendor/zendframework/zend-i18n/src/ConfigProvider.php share/glpi/vendor/zendframework/zend-i18n/src/Exception/ExceptionInterface.php share/glpi/vendor/zendframework/zend-i18n/src/Exception/ExtensionNotLoadedException.php @@ -3149,11 +3704,8 @@ share/glpi/vendor/zendframework/zend-json/src/Exception/RuntimeException.php share/glpi/vendor/zendframework/zend-json/src/Expr.php share/glpi/vendor/zendframework/zend-json/src/Json.php share/glpi/vendor/zendframework/zend-serializer/CHANGELOG.md -share/glpi/vendor/zendframework/zend-serializer/CONDUCT.md -share/glpi/vendor/zendframework/zend-serializer/CONTRIBUTING.md share/glpi/vendor/zendframework/zend-serializer/LICENSE.md share/glpi/vendor/zendframework/zend-serializer/README.md -share/glpi/vendor/zendframework/zend-serializer/mkdocs.yml share/glpi/vendor/zendframework/zend-serializer/src/Adapter/AbstractAdapter.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/AdapterInterface.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/AdapterOptions.php @@ -3163,6 +3715,7 @@ share/glpi/vendor/zendframework/zend-serializer/src/Adapter/JsonOptions.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/MsgPack.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/PhpCode.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/PhpSerialize.php +share/glpi/vendor/zendframework/zend-serializer/src/Adapter/PhpSerializeOptions.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/PythonPickle.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/PythonPickleOptions.php share/glpi/vendor/zendframework/zend-serializer/src/Adapter/Wddx.php @@ -3204,6 +3757,7 @@ share/glpi/vendor/zendframework/zend-servicemanager/src/Initializer/InitializerI share/glpi/vendor/zendframework/zend-servicemanager/src/InitializerInterface.php share/glpi/vendor/zendframework/zend-servicemanager/src/PluginManagerInterface.php share/glpi/vendor/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactory.php +share/glpi/vendor/zendframework/zend-servicemanager/src/PsrContainerDecorator.php share/glpi/vendor/zendframework/zend-servicemanager/src/ServiceLocatorInterface.php share/glpi/vendor/zendframework/zend-servicemanager/src/ServiceManager.php share/glpi/vendor/zendframework/zend-servicemanager/src/Test/CommonPluginManagerTrait.php @@ -3212,15 +3766,8 @@ share/glpi/vendor/zendframework/zend-servicemanager/src/Tool/ConfigDumperCommand share/glpi/vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreator.php share/glpi/vendor/zendframework/zend-servicemanager/src/Tool/FactoryCreatorCommand.php share/glpi/vendor/zendframework/zend-stdlib/CHANGELOG.md -share/glpi/vendor/zendframework/zend-stdlib/CONDUCT.md -share/glpi/vendor/zendframework/zend-stdlib/CONTRIBUTING.md share/glpi/vendor/zendframework/zend-stdlib/LICENSE.md share/glpi/vendor/zendframework/zend-stdlib/README.md -share/glpi/vendor/zendframework/zend-stdlib/benchmark/ExtractPriorityQueue.php -share/glpi/vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php -share/glpi/vendor/zendframework/zend-stdlib/benchmark/RemovePriorityQueue.php -share/glpi/vendor/zendframework/zend-stdlib/mkdocs.yml -share/glpi/vendor/zendframework/zend-stdlib/phpcs.xml share/glpi/vendor/zendframework/zend-stdlib/src/AbstractOptions.php share/glpi/vendor/zendframework/zend-stdlib/src/ArrayObject.php share/glpi/vendor/zendframework/zend-stdlib/src/ArraySerializableInterface.php diff --git a/www/php-glpi/distinfo b/www/php-glpi/distinfo index 91c0cf004d6..b21844b18b4 100644 --- a/www/php-glpi/distinfo +++ b/www/php-glpi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/04/27 14:19:29 hauke Exp $ +$NetBSD: distinfo,v 1.5 2019/03/15 16:32:13 hauke Exp $ -SHA1 (glpi-9.2.3.tgz) = 5e4264b7498b2d7593986d8a60f021e91f4763d8 -RMD160 (glpi-9.2.3.tgz) = 2720e4ccdcb0d7914a0ec9c6459480e2eb2afe12 -SHA512 (glpi-9.2.3.tgz) = 8028f4500875e598b548dbbec726217226666b7553b1f681b14349b6ce75f90f432eec1184639aeee69e3b31fa7233e750b97bca768ae1ddc77dd9a97c1b6b65 -Size (glpi-9.2.3.tgz) = 31755947 bytes +SHA1 (glpi-9.4.1.1.tgz) = 6b37adf1336c7590e822238a54b9e4b4134457a7 +RMD160 (glpi-9.4.1.1.tgz) = 7da2b40a7d24d5a2c049361c9a656c70a181cc93 +SHA512 (glpi-9.4.1.1.tgz) = 528f0e2d65d2f134583f1c544da74b94c631ba783666718e5bc643041a461668a62a1c8ef56ea1c6b458d14cccb3af3900c68f58f9fca640ddce9265488f9687 +Size (glpi-9.4.1.1.tgz) = 34795273 bytes diff --git a/www/php-glpi/files/config_path.php b/www/php-glpi/files/config_path.php deleted file mode 100644 index 98ee9eec052..00000000000 --- a/www/php-glpi/files/config_path.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -// $NetBSD: config_path.php,v 1.2 2017/11/17 11:07:39 hauke Exp $ -// -// pkgsrc GLPI path setup file, see -// <http://glpi-developer-documentation.readthedocs.io/en/master/packaging.html> - -// Configuration -define('GLPI_CONFIG_DIR', '@PKG_SYSCONFDIR@'); - -// Runtime Data -define('GLPI_DOC_DIR', '@VARBASE@/glpi'); -define('GLPI_CACHE_DIR', GLPI_DOC_DIR . '/_cache'); -define('GLPI_CRON_DIR', GLPI_DOC_DIR . '/_cron'); -define('GLPI_DUMP_DIR', GLPI_DOC_DIR . '/_dumps'); -define('GLPI_GRAPH_DIR', GLPI_DOC_DIR . '/_graphs'); -define('GLPI_LOCK_DIR', GLPI_DOC_DIR . '/_lock'); -define('GLPI_PICTURE_DIR', GLPI_DOC_DIR . '/_pictures'); -define('GLPI_PLUGIN_DOC_DIR', GLPI_DOC_DIR . '/_plugins'); -define('GLPI_RSS_DIR', GLPI_DOC_DIR . '/_rss'); -define('GLPI_SESSION_DIR', GLPI_DOC_DIR . '/_sessions'); -define('GLPI_TMP_DIR', GLPI_DOC_DIR . '/_tmp'); -define('GLPI_UPLOAD_DIR', GLPI_DOC_DIR . '/_uploads'); - -// Log file -define('GLPI_LOG_DIR', '@VARBASE@/log/glpi'); - -// System libraries -// htmlawed not in pkgsrc - built-in, anyway? -//define('GLPI_HTMLAWED', '@PREFIX@/share/php/htmLawed/htmLawed.php'); - -// Fonts -// fonts/freefont-ttf -define('GLPI_FONT_FREESANS', '@PREFIX@/share/fonts/X11/TTF/FreeSans.ttf'); - -// Use system cron -define('GLPI_SYSTEM_CRON', true); diff --git a/www/php-glpi/files/downstream.php b/www/php-glpi/files/downstream.php new file mode 100644 index 00000000000..b9ab80ec43e --- /dev/null +++ b/www/php-glpi/files/downstream.php @@ -0,0 +1,13 @@ +<?php + +// $NetBSD: downstream.php,v 1.1 2019/03/15 16:32:13 hauke Exp $ +// +// pkgsrc GLPI path setup file, see +// <http://glpi-developer-documentation.readthedocs.io/en/master/packaging.html> + +// Configuration +define('GLPI_CONFIG_DIR', '@PKG_SYSCONFDIR@'); + +if (file_exists(GLPI_CONFIG_DIR . '/local_define.php')) { + require_once GLPI_CONFIG_DIR . '/local_define.php'; +} diff --git a/www/php-glpi/files/httpd-glpi.conf b/www/php-glpi/files/httpd-glpi.conf index 4f5cefc8b55..884bb409008 100644 --- a/www/php-glpi/files/httpd-glpi.conf +++ b/www/php-glpi/files/httpd-glpi.conf @@ -1,6 +1,6 @@ -# $NetBSD: httpd-glpi.conf,v 1.1 2017/07/18 14:29:51 hauke Exp $ +# $NetBSD: httpd-glpi.conf,v 1.2 2019/03/15 16:32:13 hauke Exp $ # -# Sample Apache 2.x GLPI configuration +# Sample Apache 2.4 GLPI configuration # To access via http://servername/glpi/ Alias /glpi @PREFIX@/share/glpi @@ -19,15 +19,7 @@ Alias /glpi @PREFIX@/share/glpi # which could be less than recommanded value php_value memory_limit 64M - <IfModule mod_authz_core.c> - # Apache 2.4 - Require all granted - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Allow from All - </IfModule> + Require all granted </Directory> <Directory @PREFIX@/share/glpi/install> @@ -36,63 +28,23 @@ Alias /glpi @PREFIX@/share/glpi php_value memory_limit 128M # Block access after GLPI setup or update - <IfModule mod_authz_core.c> - # Apache 2.4 - #Require all denied - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - #Order Deny,Allow - #Deny from All - </IfModule> + #Require all denied </Directory> -# This sections remplaces the .htaccess files provided in the tarball +# This sections replaces the .htaccess files provided in the tarball <Directory @PREFIX@/share/glpi/config> - <IfModule mod_authz_core.c> - # Apache 2.4 - Require all denied - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Deny from All - </IfModule> + Require all denied </Directory> <Directory @PREFIX@/share/glpi/locales> - <IfModule mod_authz_core.c> - # Apache 2.4 - Require all denied - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Deny from All - </IfModule> + Require all denied </Directory> <Directory @PREFIX@/share/glpi/install/mysql> - <IfModule mod_authz_core.c> - # Apache 2.4 - Require all denied - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Deny from All - </IfModule> + Require all denied </Directory> <Directory @PREFIX@/share/glpi/scripts> - <IfModule mod_authz_core.c> - # Apache 2.4 - Require all denied - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Deny from All - </IfModule> + Require all denied </Directory> diff --git a/www/php-glpi/files/local_define.php b/www/php-glpi/files/local_define.php new file mode 100644 index 00000000000..dade6226456 --- /dev/null +++ b/www/php-glpi/files/local_define.php @@ -0,0 +1,26 @@ +<?php + +// $NetBSD: local_define.php,v 1.1 2019/03/15 16:32:13 hauke Exp $ +// +// pkgsrc GLPI setup file, see +// <http://glpi-developer-documentation.readthedocs.io/en/master/packaging.html> + +// Configuration +define('GLPI_CONFIG_DIR', '@PKG_SYSCONFDIR@'); + +// Runtime Data +define('GLPI_VAR_DIR', '@VARBASE@/glpi'); + +// Log file +define('GLPI_LOG_DIR', '@VARBASE@/log/glpi'); + +// System libraries +// htmlawed not in pkgsrc - built-in, anyway? +//define('GLPI_HTMLAWED', '@PREFIX@/share/php/htmLawed/htmLawed.php'); + +// Fonts +// fonts/freefont-ttf +define('GLPI_FONT_FREESANS', '@PREFIX@/share/fonts/X11/TTF/FreeSans.ttf'); + +// Use system cron +define('GLPI_SYSTEM_CRON', true); |