├── addons └── userrights │ ├── userrightsmatrix.class.inc.php │ ├── userrightsnull.class.inc.php │ ├── userrightsprofile.class.inc.php │ ├── userrightsprofile.db.class.inc.php │ └── userrightsprojection.class.inc.php ├── application ├── Html2Text.php ├── Html2TextException.php ├── ajaxwebpage.class.inc.php ├── application.inc.php ├── applicationcontext.class.inc.php ├── applicationextension.inc.php ├── audit.category.class.inc.php ├── audit.rule.class.inc.php ├── capturewebpage.class.inc.php ├── clipage.class.inc.php ├── cmdbabstract.class.inc.php ├── csvpage.class.inc.php ├── dashboard.class.inc.php ├── dashboardlayout.class.inc.php ├── dashlet.class.inc.php ├── datamodel.application.xml ├── datatable.class.inc.php ├── displayblock.class.inc.php ├── excelexporter.class.inc.php ├── forms.class.inc.php ├── iotask.class.inc.php ├── itopwebpage.class.inc.php ├── itopwizardwebpage.class.inc.php ├── loginwebpage.class.inc.php ├── menunode.class.inc.php ├── nicewebpage.class.inc.php ├── pdfpage.class.inc.php ├── portaldispatcher.class.inc.php ├── portalwebpage.class.inc.php ├── query.class.inc.php ├── shortcut.class.inc.php ├── startup.inc.php ├── template.class.inc.php ├── templates │ ├── audit_category.html │ └── welcome_popup.html ├── transaction.class.inc.php ├── ui.extkeywidget.class.inc.php ├── ui.htmleditorwidget.class.inc.php ├── ui.linksdirectwidget.class.inc.php ├── ui.linkswidget.class.inc.php ├── ui.passwordwidget.class.inc.php ├── ui.searchformforeignkeys.class.inc.php ├── uiwizard.class.inc.php ├── user.dashboard.class.inc.php ├── user.preferences.class.inc.php ├── utils.inc.php ├── webpage.class.inc.php ├── wizardhelper.class.inc.php ├── xlsxwriter.class.php └── xmlpage.class.inc.php ├── approot.inc.php ├── composer.json ├── core ├── MyHelpers.class.inc.php ├── action.class.inc.php ├── apc-compat.php ├── apc-emulation.php ├── archive.class.inc.php ├── asynctask.class.inc.php ├── attributedef.class.inc.php ├── autoload.php ├── background.inc.php ├── backgroundprocess.inc.php ├── backgroundtask.class.inc.php ├── bulkchange.class.inc.php ├── bulkexport.class.inc.php ├── cmdbchange.class.inc.php ├── cmdbchangeop.class.inc.php ├── cmdbobject.class.inc.php ├── cmdbsource.class.inc.php ├── computing.inc.php ├── config.class.inc.php ├── contexttag.class.inc.php ├── coreexception.class.inc.php ├── csvbulkexport.class.inc.php ├── csvparser.class.inc.php ├── customfieldshandler.class.inc.php ├── data.generator.class.inc.php ├── datamodel.core.xml ├── datetimeformat.class.inc.php ├── dbobject.class.php ├── dbobjectiterator.php ├── dbobjectsearch.class.php ├── dbobjectset.class.php ├── dbproperty.class.inc.php ├── dbsearch.class.php ├── dbunionsearch.class.php ├── deletionplan.class.inc.php ├── designdocument.class.inc.php ├── dict.class.inc.php ├── displayablegraph.class.inc.php ├── email.class.inc.php ├── event.class.inc.php ├── excelbulkexport.class.inc.php ├── expression.class.inc.php ├── expressioncache.class.inc.php ├── filterdef.class.inc.php ├── htmlbulkexport.class.inc.php ├── htmlsanitizer.class.inc.php ├── inlineimage.class.inc.php ├── introspection.class.inc.php ├── kpi.class.inc.php ├── log.class.inc.php ├── metamodel.class.php ├── metamodelmodifier.inc.php ├── modelreflection.class.inc.php ├── moduledesign.class.inc.php ├── modulehandler.class.inc.php ├── mutex.class.inc.php ├── oql │ ├── build │ │ ├── PHP │ │ │ ├── Lempar.php │ │ │ ├── LexerGenerator.php │ │ │ ├── LexerGenerator │ │ │ │ ├── Exception.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Parser.out │ │ │ │ ├── Parser.php │ │ │ │ ├── Parser.y │ │ │ │ ├── Regex │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── Lexer.plex │ │ │ │ │ ├── Parser.out │ │ │ │ │ ├── Parser.php │ │ │ │ │ └── Parser.y │ │ │ │ └── cli.php │ │ │ ├── ParserGenerator.php │ │ │ └── ParserGenerator │ │ │ │ ├── Action.php │ │ │ │ ├── ActionTable.php │ │ │ │ ├── Config.php │ │ │ │ ├── Data.php │ │ │ │ ├── Parser.php │ │ │ │ ├── PropagationLink.php │ │ │ │ ├── Rule.php │ │ │ │ ├── State.php │ │ │ │ ├── Symbol.php │ │ │ │ └── cli.php │ │ ├── build.bash │ │ └── build.cmd │ ├── check_oql.php │ ├── exclude.txt │ ├── expression.class.inc.php │ ├── oql-lexer.php │ ├── oql-lexer.plex │ ├── oql-parser.php │ ├── oql-parser.y │ ├── oqlexception.class.inc.php │ ├── oqlinterpreter.class.inc.php │ ├── oqlquery.class.inc.php │ └── version.txt ├── ormcaselog.class.inc.php ├── ormcustomfieldsvalue.class.inc.php ├── ormdocument.class.inc.php ├── ormlinkset.class.inc.php ├── ormpassword.class.inc.php ├── ormstopwatch.class.inc.php ├── ownershiplock.class.inc.php ├── pdfbulkexport.class.inc.php ├── querybuildercontext.class.inc.php ├── querymodifier.class.inc.php ├── relationgraph.class.inc.php ├── restservices.class.inc.php ├── simplecrypt.class.inc.php ├── simplegraph.class.inc.php ├── spreadsheetbulkexport.class.inc.php ├── sqlobjectquery.class.inc.php ├── sqlquery.class.inc.php ├── sqlunionquery.class.inc.php ├── stimulus.class.inc.php ├── tabularbulkexport.class.inc.php ├── tagfield.class.inc.php ├── templatestring.class.inc.php ├── trigger.class.inc.php ├── userrights.class.inc.php ├── valuesetdef.class.inc.php └── xmlbulkexport.class.inc.php ├── css ├── blue_green.css ├── c3.min.css ├── css-variables.scss ├── date.picker.css ├── default.css ├── dragtable.css ├── email.css ├── font-awesome │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── font-combodo │ ├── combodo-webfont.ttf │ ├── combodo-webfont.woff │ ├── combodo-webfont.woff2 │ ├── combodo.sfd │ ├── exclude.txt │ ├── font-combodo.css │ ├── glyphs │ │ ├── 0.svg │ │ ├── 1.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── B.svg │ │ ├── C.svg │ │ ├── D.svg │ │ ├── E.svg │ │ ├── F.svg │ │ ├── I.svg │ │ ├── O.svg │ │ └── b-lowercase.svg │ └── test.html ├── font-open-sans │ ├── OpenSans-Bold-cyrillic-ext.woff2 │ ├── OpenSans-Bold-cyrillic.woff2 │ ├── OpenSans-Bold-greek-ext.woff2 │ ├── OpenSans-Bold-greek.woff2 │ ├── OpenSans-Bold-latin-ext.woff2 │ ├── OpenSans-Bold-latin.woff2 │ ├── OpenSans-Bold-vietnamese.woff2 │ ├── OpenSans-Regular-cyrillic-ext.woff2 │ ├── OpenSans-Regular-cyrillic.woff2 │ ├── OpenSans-Regular-greek-ext.woff2 │ ├── OpenSans-Regular-greek.woff2 │ ├── OpenSans-Regular-latin-ext.woff2 │ ├── OpenSans-Regular-latin.woff2 │ ├── OpenSans-Regular-vietnamese.woff2 │ └── font-open-sans.css ├── jqModal.css ├── jquery-ui-timepicker-addon.css ├── jquery.autocomplete.css ├── jquery.contextMenu.css ├── jquery.multiselect.css ├── jquery.tabs-ie.css ├── jquery.tabs.css ├── jquery.treeview.css ├── light-grey.css ├── light-grey.scss ├── login.css ├── magnific-popup.css ├── print.css └── ui-lightness │ ├── images │ ├── animated-overlay.gif │ ├── ui-anim_basic_16x16.gif │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_100_eeeeee_40x100.png │ ├── ui-bg_flat_100_f1f1f1_40x100.png │ ├── ui-bg_flat_100_fde17c_40x100.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_flat_35_E87C1E_40x100.png │ ├── ui-bg_flat_65_ffffff_40x100.png │ ├── ui-bg_flat_75_ffe45c_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_1c94c4_256x240.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_E87C1E_256x240.png │ ├── ui-icons_F26522_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png │ └── jquery-ui-1.11.4.custom.css ├── data ├── .htaccess ├── index.php └── web.config ├── datamodels └── 2.x │ ├── authent-external │ ├── cs.dict.authent-external.php │ ├── da.dict.authent-external.php │ ├── de.dict.authent-external.php │ ├── en.dict.authent-external.php │ ├── es_cr.dict.authent-external.php │ ├── fr.dict.authent-external.php │ ├── hu.dict.authent-external.php │ ├── it.dict.authent-external.php │ ├── ja.dict.authent-external.php │ ├── model.authent-external.php │ ├── module.authent-external.php │ ├── pt_br.dict.authent-external.php │ ├── ru.dict.authent-external.php │ ├── tr.dict.authent-external.php │ └── zh.dict.authent-external.php │ ├── authent-ldap │ ├── cs.dict.authent-ldap.php │ ├── da.dict.authent-ldap.php │ ├── de.dict.authent-ldap.php │ ├── en.dict.authent-ldap.php │ ├── es_cr.dict.authent-ldap.php │ ├── fr.dict.authent-ldap.php │ ├── hu.dict.authent-ldap.php │ ├── it.dict.authent-ldap.php │ ├── ja.dict.authent-ldap.php │ ├── model.authent-ldap.php │ ├── module.authent-ldap.php │ ├── pt_br.dict.authent-ldap.php │ ├── ru.dict.authent-ldap.php │ ├── tr.dict.authent-ldap.php │ └── zh.dict.authent-ldap.php │ ├── authent-local │ ├── cs.dict.authent-local.php │ ├── da.dict.authent-local.php │ ├── de.dict.authent-local.php │ ├── en.dict.authent-local.php │ ├── es_cr.dict.authent-local.php │ ├── fr.dict.authent-local.php │ ├── hu.dict.authent-local.php │ ├── it.dict.authent-local.php │ ├── ja.dict.authent-local.php │ ├── model.authent-local.php │ ├── module.authent-local.php │ ├── pt_br.dict.authent-local.php │ ├── ru.dict.authent-local.php │ ├── tr.dict.authent-local.php │ └── zh.dict.authent-local.php │ ├── installation.xml │ ├── itop-attachments │ ├── ajax.attachment.php │ ├── cs.dict.itop-attachments.php │ ├── da.dict.itop-attachments.php │ ├── datamodel.itop-attachments.xml │ ├── de.dict.itop-attachments.php │ ├── en.dict.itop-attachments.php │ ├── es_cr.dict.itop-attachments.php │ ├── fr.dict.itop-attachments.php │ ├── icons │ │ ├── doc.png │ │ ├── document.png │ │ ├── html.png │ │ ├── image.png │ │ ├── odp.png │ │ ├── ods.png │ │ ├── odt.png │ │ ├── pdf.png │ │ ├── ppt.png │ │ ├── rtf.png │ │ ├── txt.png │ │ ├── xls.png │ │ └── zip.png │ ├── ja.dict.itop-attachments.php │ ├── main.attachments.php │ ├── module.attachments.php │ ├── nl.dict.itop-attachments.php │ ├── pt_br.dict.itop-attachments.php │ └── ru.dict.itop-attachments.php │ ├── itop-backup │ ├── ajax.backup.php │ ├── backup.params.distrib │ ├── backup.php │ ├── check-backup.php │ ├── cs.dict.itop-backup.php │ ├── datamodel.itop-backup.xml │ ├── dbrestore.class.inc.php │ ├── de.dict.itop-backup.php │ ├── en.dict.itop-backup.php │ ├── fr.dict.itop-backup.php │ ├── main.itop-backup.php │ ├── module.itop-backup.php │ ├── pt_br.dict.itop-backup.php │ ├── ru.dict.itop-backup.php │ └── status.php │ ├── itop-bridge-virtualization-storage │ ├── datamodel.itop-bridge-virtualization-storage.xml │ └── module.itop-bridge-virtualization-storage.php │ ├── itop-change-mgmt-itil │ ├── cs.dict.itop-change-mgmt-itil.php │ ├── da.dict.itop-change-mgmt-itil.php │ ├── datamodel.itop-change-mgmt-itil.xml │ ├── de.dict.itop-change-mgmt-itil.php │ ├── en.dict.itop-change-mgmt-itil.php │ ├── es_cr.dict.itop-change-mgmt-itil.php │ ├── fr.dict.itop-change-mgmt-itil.php │ ├── hu.dict.itop-change-mgmt-itil.php │ ├── images │ │ ├── change-approved.png │ │ ├── change-closed.png │ │ ├── change-done.png │ │ ├── change-ongoing.png │ │ ├── change-rejected.png │ │ └── change.png │ ├── it.dict.itop-change-mgmt-itil.php │ ├── ja.dict.itop-change-mgmt-itil.php │ ├── lifecycle │ │ ├── EmergencyChange.png │ │ ├── NormalChange.png │ │ └── RoutineChange.png │ ├── module.itop-change-mgmt-itil.php │ ├── overview.html │ ├── pt_br.dict.itop-change-mgmt-itil.php │ ├── ru.dict.itop-change-mgmt-itil.php │ ├── tr.dict.itop-change-mgmt-itil.php │ └── zh.dict.itop-change-mgmt-itil.php │ ├── itop-change-mgmt │ ├── cs.dict.itop-change-mgmt.php │ ├── da.dict.itop-change-mgmt.php │ ├── datamodel.itop-change-mgmt.xml │ ├── de.dict.itop-change-mgmt.php │ ├── en.dict.itop-change-mgmt.php │ ├── es_cr.dict.itop-change-mgmt.php │ ├── fr.dict.itop-change-mgmt.php │ ├── images │ │ ├── change-approved.png │ │ ├── change-closed.png │ │ ├── change-done.png │ │ ├── change-ongoing.png │ │ ├── change-rejected.png │ │ └── change.png │ ├── ja.dict.itop-change-mgmt.php │ ├── lifecycle │ │ └── Change.png │ ├── module.itop-change-mgmt.php │ ├── nl.dict.itop-change-mgmt.php │ ├── pt_br.dict.itop-change-mgmt.php │ └── ru.dict.itop-change-mgmt.php │ ├── itop-config-mgmt │ ├── cs.dict.itop-config-mgmt.php │ ├── da.dict.itop-config-mgmt.php │ ├── data.sample.applications.xml │ ├── data.sample.applicationsolutionci.xml │ ├── data.sample.brand.xml │ ├── data.sample.contactteam.xml │ ├── data.sample.contacttype.xml │ ├── data.sample.dbschema.xml │ ├── data.sample.dbserver.xml │ ├── data.sample.locations.xml │ ├── data.sample.model.xml │ ├── data.sample.networkdevicetype.xml │ ├── data.sample.nw-devices.xml │ ├── data.sample.organizations.xml │ ├── data.sample.osfamily.xml │ ├── data.sample.osversion.xml │ ├── data.sample.persons.xml │ ├── data.sample.servers.xml │ ├── data.sample.software.xml │ ├── data.sample.teams.xml │ ├── data.sample.webapp.xml │ ├── data.sample.webserver.xml │ ├── datamodel.itop-config-mgmt.xml │ ├── de.dict.itop-config-mgmt.php │ ├── en.dict.itop-config-mgmt.php │ ├── es_cr.dict.itop-config-mgmt.php │ ├── fr.dict.itop-config-mgmt.php │ ├── hu.dict.itop-config-mgmt.php │ ├── images │ │ ├── application.png │ │ ├── applicationservice.png │ │ ├── building.png │ │ ├── business-process.png │ │ ├── computer.png │ │ ├── contact.png │ │ ├── database-instance.png │ │ ├── database-schema.png │ │ ├── database.png │ │ ├── diskarray.png │ │ ├── document.png │ │ ├── group.png │ │ ├── interface.png │ │ ├── licence.png │ │ ├── location.png │ │ ├── middleware.png │ │ ├── patch.png │ │ ├── person.png │ │ ├── printer.png │ │ ├── server.png │ │ ├── silhouette.png │ │ ├── software.png │ │ ├── solution.png │ │ ├── subnet.png │ │ ├── switch.png │ │ ├── team.png │ │ ├── typology.png │ │ ├── vlan.png │ │ ├── volume.png │ │ ├── webapp.png │ │ └── webserver.png │ ├── it.dict.itop-config-mgmt.php │ ├── ja.dict.itop-config-mgmt.php │ ├── main.itop-config-mgmt.php │ ├── module.itop-config-mgmt.php │ ├── nl.dict.itop-config-mgmt.php │ ├── pt_br.dict.itop-config-mgmt.php │ ├── ru.dict.itop-config-mgmt.php │ ├── tr.dict.itop-config-mgmt.php │ ├── typology_menu.html │ └── zh.dict.itop-config-mgmt.php │ ├── itop-config │ ├── config.php │ ├── cs.dict.itop-config.php │ ├── datamodel.itop-config.xml │ ├── de.dict.itop-config.php │ ├── en.dict.itop-config.php │ ├── fr.dict.itop-config.php │ ├── js │ │ ├── ace.js │ │ ├── ext-searchbox.js │ │ ├── mode-php.js │ │ ├── theme-eclipse.js │ │ └── worker-php.js │ ├── license.itop-config.xml │ ├── module.itop-config.php │ └── ru.dict.itop-config.php │ ├── itop-datacenter-mgmt │ ├── data.sample.racks.xml │ ├── datamodel.itop-datacenter-mgmt.xml │ ├── en.dict.itop-datacenter-mgmt.php │ ├── images │ │ ├── enclosure.png │ │ ├── pdu.png │ │ ├── power-connection.png │ │ └── rack.png │ └── module.itop-datacenter-mgmt.php │ ├── itop-endusers-devices │ ├── datamodel.itop-enduser-devices.xml │ ├── en.dict.itop-endusers-devices.php │ ├── images │ │ ├── ipphone.png │ │ ├── laptop.png │ │ ├── mobile-phone.png │ │ ├── peripherals.png │ │ ├── phone.png │ │ ├── printer.png │ │ └── tablet.png │ └── module.itop-endusers-devices.php │ ├── itop-full-itil │ ├── datamodel.itop-full-itil.xml │ └── module.itop-full-itil.php │ ├── itop-hub-connector │ ├── ajax.php │ ├── css │ │ └── hub.css │ ├── datamodel.itop-hub-connector.xml │ ├── en.dict.itop-hub-connector.php │ ├── extension.xml │ ├── fr.dict.itop-hub-connector.php │ ├── hubconnectorpage.class.inc.php │ ├── hubruntimeenvironment.class.inc.php │ ├── images │ │ ├── black-close.svg │ │ ├── itophub-logo.png │ │ ├── itophub-logo.svg │ │ ├── landing-extension.png │ │ ├── orange-progress.gif │ │ ├── rocket.svg │ │ └── white-arrow-right.svg │ ├── installation.xml │ ├── js │ │ └── hub.js │ ├── land.php │ ├── launch.php │ ├── menus.php │ ├── model.itop-hub-connector.php │ ├── module.itop-hub-connector.php │ └── myextensions.php │ ├── itop-incident-mgmt-itil │ ├── cs.dict.itop-incident-mgmt-itil.php │ ├── da.dict.itop-incident-mgmt-itil.php │ ├── datamodel.itop-incident-mgmt-itil.xml │ ├── de.dict.itop-incident-mgmt-itil.php │ ├── en.dict.itop-incident-mgmt-itil.php │ ├── es_cr.dict.itop-incident-mgmt-itil.php │ ├── fr.dict.itop-incident-mgmt-itil.php │ ├── images │ │ ├── incident-closed.png │ │ ├── incident-deadline.png │ │ ├── incident-escalated.png │ │ ├── incident-red.png │ │ └── incident.png │ ├── ja.dict.itop-incident-mgmt-itil.php │ ├── lifecycle │ │ └── Incident.png │ ├── module.itop-incident-mgmt-itil.php │ ├── pt_br.dict.itop-incident-mgmt-itil.php │ └── ru.dict.itop-incident-mgmt-itil.php │ ├── itop-knownerror-mgmt │ ├── cs.dict.itop-knownerror-mgmt.php │ ├── da.dict.itop-knownerror-mgmt.php │ ├── datamodel.itop-knownerror-mgmt.xml │ ├── de.dict.itop-knownerror-mgmt.php │ ├── en.dict.itop-knownerror-mgmt.php │ ├── es_cr.dict.itop-knownerror-mgmt.php │ ├── fr.dict.itop-knownerror-mgmt.php │ ├── hu.dict.itop-knownerror-mgmt.php │ ├── images │ │ ├── faq.png │ │ └── known-error.png │ ├── it.dict.itop-knownerror-mgmt.php │ ├── ja.dict.itop-knownerror-mgmt.php │ ├── module.itop-knownerror-mgmt.php │ ├── nl.dict.itop-knownerror-mgmt.php │ ├── pt_br.dict.itop-knownerror-mgmt.php │ ├── ru.dict.itop-knownerror-mgmt.php │ ├── tr.dict.itop-knownerror-mgmt.php │ └── zh.dict.itop-knownerror-mgmt.php │ ├── itop-portal-base │ ├── cs.dict.itop-portal-base.php │ ├── de.dict.itop-portal-base.php │ ├── en.dict.itop-portal-base.php │ ├── es_cr.dict.itop-portal-base.php │ ├── fr.dict.itop-portal-base.php │ ├── index.php │ ├── module.itop-portal-base.php │ ├── nl.dict.itop-portal-base.php │ ├── portal │ │ ├── src │ │ │ ├── controllers │ │ │ │ ├── abstractcontroller.class.inc.php │ │ │ │ ├── aggregatepagebrickcontroller.class.inc.php │ │ │ │ ├── brickcontroller.class.inc.php │ │ │ │ ├── browsebrickcontroller.class.inc.php │ │ │ │ ├── createbrickcontroller.class.inc.php │ │ │ │ ├── defaultcontroller.class.inc.php │ │ │ │ ├── managebrickcontroller.class.inc.php │ │ │ │ ├── objectcontroller.class.inc.php │ │ │ │ └── userprofilebrickcontroller.class.inc.php │ │ │ ├── entities │ │ │ │ ├── abstractbrick.class.inc.php │ │ │ │ ├── aggregatepagebrick.class.inc.php │ │ │ │ ├── browsebrick.class.inc.php │ │ │ │ ├── createbrick.class.inc.php │ │ │ │ ├── filterbrick.class.inc.php │ │ │ │ ├── managebrick.class.inc.php │ │ │ │ ├── portalbrick.class.inc.php │ │ │ │ └── userprofilebrick.class.inc.php │ │ │ ├── forms │ │ │ │ ├── objectformmanager.class.inc.php │ │ │ │ ├── passwordformmanager.class.inc.php │ │ │ │ └── preferencesformmanager.class.inc.php │ │ │ ├── helpers │ │ │ │ ├── applicationhelper.class.inc.php │ │ │ │ ├── contextmanipulatorhelper.class.inc.php │ │ │ │ ├── lifecyclevalidatorhelper.class.inc.php │ │ │ │ ├── requestmanipulatorhelper.class.inc.php │ │ │ │ ├── scopevalidatorhelper.class.inc.php │ │ │ │ ├── securityhelper.class.inc.php │ │ │ │ └── urlgeneratorhelper.class.inc.php │ │ │ ├── providers │ │ │ │ ├── contextmanipulatorserviceprovider.class.inc.php │ │ │ │ ├── lifecyclevalidatorserviceprovider.class.inc.php │ │ │ │ ├── requestmanipulatorserviceprovider.class.inc.php │ │ │ │ ├── scopevalidatorserviceprovider.class.inc.php │ │ │ │ └── urlgeneratorserviceprovider.class.inc.php │ │ │ ├── routers │ │ │ │ ├── abstractrouter.class.inc.php │ │ │ │ ├── aggregatepagebrickrouter.class.inc.php │ │ │ │ ├── browsebrickrouter.class.inc.php │ │ │ │ ├── createbrickrouter.class.inc.php │ │ │ │ ├── defaultrouter.class.inc.php │ │ │ │ ├── managebrickrouter.class.inc.php │ │ │ │ ├── objectrouter.class.inc.php │ │ │ │ └── userprofilebrickrouter.class.inc.php │ │ │ └── views │ │ │ │ ├── bricks │ │ │ │ ├── aggregate-page │ │ │ │ │ └── layout.html.twig │ │ │ │ ├── browse │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ ├── mode_list.html.twig │ │ │ │ │ ├── mode_mosaic.html.twig │ │ │ │ │ └── mode_tree.html.twig │ │ │ │ ├── create │ │ │ │ │ └── modal.html.twig │ │ │ │ ├── filter │ │ │ │ │ └── tile.html.twig │ │ │ │ ├── layout.html.twig │ │ │ │ ├── manage │ │ │ │ │ ├── layout-chart.html.twig │ │ │ │ │ ├── layout-table.html.twig │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ ├── mode-bar-chart.html.twig │ │ │ │ │ ├── mode-pie-chart.html.twig │ │ │ │ │ ├── popup-export-excel.html.twig │ │ │ │ │ ├── tile-badge.html.twig │ │ │ │ │ ├── tile-chart.html.twig │ │ │ │ │ ├── tile-default.html.twig │ │ │ │ │ └── tile-top-list.html.twig │ │ │ │ ├── object │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ ├── modal.html.twig │ │ │ │ │ ├── mode_apply_stimulus.html.twig │ │ │ │ │ ├── mode_create.html.twig │ │ │ │ │ ├── mode_edit.html.twig │ │ │ │ │ ├── mode_search_hierarchy.html.twig │ │ │ │ │ ├── mode_search_regular.html.twig │ │ │ │ │ ├── mode_view.html.twig │ │ │ │ │ └── plugins_buttons.html.twig │ │ │ │ ├── tile.html.twig │ │ │ │ └── user-profile │ │ │ │ │ └── layout.html.twig │ │ │ │ ├── errors │ │ │ │ └── layout.html.twig │ │ │ │ ├── helpers │ │ │ │ └── loader.html.twig │ │ │ │ ├── home │ │ │ │ └── layout.html.twig │ │ │ │ ├── layout.html.twig │ │ │ │ └── modal │ │ │ │ ├── layout.html.twig │ │ │ │ └── mode_loader.html.twig │ │ └── web │ │ │ ├── css │ │ │ ├── bootstrap-theme-combodo.css │ │ │ ├── bootstrap-theme-combodo.scss │ │ │ ├── portal.css │ │ │ ├── portal.scss │ │ │ └── variables.scss │ │ │ ├── img │ │ │ ├── backgrounds │ │ │ │ └── geometric-orange.svg │ │ │ ├── icons │ │ │ │ ├── checklist-ok-orange-100px.png │ │ │ │ ├── headset-mic-orange-100px.png │ │ │ │ ├── hierarchy-white-13px.png │ │ │ │ ├── laptop-cursor-orange-100px.png │ │ │ │ ├── network-device-orange-100px.png │ │ │ │ ├── puzzle-piece-orange-100px.png │ │ │ │ └── warning-sign-orange-100px.png │ │ │ └── user-profile-default-256px.png │ │ │ ├── index.php │ │ │ ├── js │ │ │ ├── dataTables.accentNeutraliseForFilter.js │ │ │ ├── export.js │ │ │ ├── portal_form_field.js │ │ │ ├── portal_form_field_html.js │ │ │ └── portal_form_handler.js │ │ │ └── lib │ │ │ ├── bootstrap-datetimepicker │ │ │ ├── css │ │ │ │ ├── bootstrap-datetimepicker-standalone.css │ │ │ │ ├── bootstrap-datetimepicker.css │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ └── js │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── datatables │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ ├── scroller.bootstrap.min.css │ │ │ │ ├── select.bootstrap.min.css │ │ │ │ └── select.dataTables.min.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.fixedHeader.min.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ ├── dataTables.select.min.js │ │ │ │ ├── datetime-moment.js │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── handlebars │ │ │ └── js │ │ │ │ └── handlebars.min-768ddbd.js │ │ │ ├── jquery-base64 │ │ │ └── js │ │ │ │ └── jquery.base64.min.js │ │ │ ├── jquery-treelistfilter │ │ │ └── js │ │ │ │ └── TreeListFilter.js │ │ │ ├── jquery-visible │ │ │ └── js │ │ │ │ └── jquery.visible.min.js │ │ │ ├── moment │ │ │ └── js │ │ │ │ └── moment.min.js │ │ │ └── typeahead │ │ │ ├── css │ │ │ └── typeaheadjs.bootstrap.css │ │ │ └── js │ │ │ ├── bloodhound.min.js │ │ │ ├── typeahead.bundle.min.js │ │ │ ├── typeahead.jquery.min.js │ │ │ └── update.txt │ ├── pt_br.dict.itop-portal-base.php │ └── ru.dict.itop-portal-base.php │ ├── itop-portal │ ├── datamodel.itop-portal.xml │ ├── index.php │ ├── main.itop-portal.php │ └── module.itop-portal.php │ ├── itop-problem-mgmt │ ├── cs.dict.itop-problem-mgmt.php │ ├── da.dict.itop-problem-mgmt.php │ ├── datamodel.itop-problem-mgmt.xml │ ├── de.dict.itop-problem-mgmt.php │ ├── en.dict.itop-problem-mgmt.php │ ├── es_cr.dict.itop-problem-mgmt.php │ ├── fr.dict.itop-problem-mgmt.php │ ├── hu.dict.itop-problem-mgmt.php │ ├── images │ │ └── problem.png │ ├── it.dict.itop-problem-mgmt.php │ ├── ja.dict.itop-problem-mgmt.php │ ├── lifecycle │ │ └── Problem.png │ ├── module.itop-problem-mgmt.php │ ├── nl.dict.itop-problem-mgmt.php │ ├── pt_br.dict.itop-problem-mgmt.php │ ├── ru.dict.itop-problem-mgmt.php │ ├── tr.dict.itop-problem-mgmt.php │ └── zh.dict.itop-problem-mgmt.php │ ├── itop-profiles-itil │ ├── datamodel.itop-profiles-itil.xml │ └── module.itop-profiles-itil.php │ ├── itop-request-mgmt-itil │ ├── cs.dict.itop-request-mgmt-itil.php │ ├── da.dict.itop-request-mgmt-itil.php │ ├── datamodel.itop-request-mgmt-itil.xml │ ├── de.dict.itop-request-mgmt-itil.php │ ├── en.dict.itop-request-mgmt-itil.php │ ├── es_cr.dict.itop-request-mgmt-itil.php │ ├── fr.dict.itop-request-mgmt-itil.php │ ├── images │ │ ├── user-request-closed.png │ │ ├── user-request-deadline.png │ │ ├── user-request-escalated.png │ │ └── user-request.png │ ├── ja.dict.itop-request-mgmt-itil.php │ ├── lifecycle │ │ └── UserRequest.png │ ├── main.itop-request-mgmt-itil.php │ ├── module.itop-request-mgmt-itil.php │ ├── nl.dict.itop-request-mgmt-itil.php │ ├── pt_br.dict.itop-request-mgmt-itil.php │ └── ru.dict.itop-request-mgmt-itil.php │ ├── itop-request-mgmt │ ├── cs.dict.itop-request-mgmt.php │ ├── da.dict.itop-request-mgmt.php │ ├── datamodel.itop-request-mgmt.xml │ ├── de.dict.itop-request-mgmt.php │ ├── en.dict.itop-request-mgmt.php │ ├── es_cr.dict.itop-request-mgmt.php │ ├── fr.dict.itop-request-mgmt.php │ ├── images │ │ ├── incident-red.png │ │ ├── user-request-closed.png │ │ ├── user-request-deadline.png │ │ ├── user-request-escalated.png │ │ └── user-request.png │ ├── ja.dict.itop-request-mgmt.php │ ├── lifecycle │ │ └── UserRequest.png │ ├── main.itop-request-mgmt.php │ ├── module.itop-request-mgmt.php │ ├── nl.dict.itop-request-mgmt.php │ ├── pt_br.dict.itop-request-mgmt.php │ └── ru.dict.itop-request-mgmt.php │ ├── itop-service-mgmt-provider │ ├── cs.dict.itop-service-mgmt-provider.php │ ├── da.dict.itop-service-mgmt-provider.php │ ├── data.sample.contracts.xml │ ├── data.sample.contractservice.xml │ ├── data.sample.deliverymodel.xml │ ├── data.sample.deliverymodelcontact.xml │ ├── data.sample.organizations.xml │ ├── data.sample.serviceelements.xml │ ├── data.sample.servicefamilies.xml │ ├── data.sample.services.xml │ ├── data.sample.sla.xml │ ├── data.sample.slt.xml │ ├── data.sample.sltsla.xml │ ├── datamodel.itop-service-mgmt-provider.xml │ ├── de.dict.itop-service-mgmt-provider.php │ ├── en.dict.itop-service-mgmt-provider.php │ ├── es_cr.dict.itop-service-mgmt-provider.php │ ├── fr.dict.itop-service-mgmt-provider.php │ ├── images │ │ ├── contract.png │ │ ├── service.png │ │ ├── sla.png │ │ └── slt.png │ ├── ja.dict.itop-service-mgmt-provider.php │ ├── main.itop-service-mgmt-provider.php │ ├── module.itop-service-mgmt-provider.php │ ├── nl.dict.itop-service-mgmt-provider.php │ ├── pt_br.dict.itop-service-mgmt-provider.php │ └── ru.dict.itop-service-mgmt-provider.php │ ├── itop-service-mgmt │ ├── contract.png │ ├── cs.dict.itop-service-mgmt.php │ ├── da.dict.itop-service-mgmt.php │ ├── data.sample.contracts.xml │ ├── data.sample.contractservice.xml │ ├── data.sample.coveragewindows.xml │ ├── data.sample.deliverymodel.xml │ ├── data.sample.deliverymodelcontact.xml │ ├── data.sample.organizations.xml │ ├── data.sample.serviceelements.xml │ ├── data.sample.servicefamilies.xml │ ├── data.sample.services.xml │ ├── data.sample.sla.xml │ ├── data.sample.slt.xml │ ├── data.sample.sltsla.xml │ ├── datamodel.itop-service-mgmt.xml │ ├── de.dict.itop-service-mgmt.php │ ├── en.dict.itop-service-mgmt.php │ ├── es_cr.dict.itop-service-mgmt.php │ ├── fr.dict.itop-service-mgmt.php │ ├── hu.dict.itop-service-mgmt.php │ ├── images │ │ ├── contract.png │ │ ├── service.png │ │ ├── sla.png │ │ └── slt.png │ ├── it.dict.itop-service-mgmt.php │ ├── ja.dict.itop-service-mgmt.php │ ├── main.itop-service-mgmt.php │ ├── module.itop-service-mgmt.php │ ├── nl.dict.itop-service-mgmt.php │ ├── pt_br.dict.itop-service-mgmt.php │ ├── ru.dict.itop-service-mgmt.php │ ├── service.png │ ├── sla.png │ ├── slt.png │ ├── tr.dict.itop-service-mgmt.php │ └── zh.dict.itop-service-mgmt.php │ ├── itop-sla-computation │ ├── en.dict.itop-sla-computation.php │ ├── main.itop-sla-computation.php │ └── module.itop-sla-computation.php │ ├── itop-storage-mgmt │ ├── datamodel.itop-storage-mgmt.xml │ ├── en.dict.itop-storage-mgmt.php │ ├── images │ │ ├── diskarray.png │ │ ├── fc-interface.png │ │ ├── filesystem.png │ │ ├── interface.png │ │ ├── nas.png │ │ ├── storageArea.png │ │ ├── switch-san.png │ │ ├── switch.png │ │ ├── tape.png │ │ ├── tapelibrary.png │ │ └── volume.png │ └── module.itop-storage-mgmt.php │ ├── itop-tickets │ ├── cs.dict.itop-tickets.php │ ├── da.dict.itop-tickets.php │ ├── data.struct.ta-actions.xml │ ├── datamodel.itop-tickets.xml │ ├── de.dict.itop-tickets.php │ ├── en.dict.itop-tickets.php │ ├── es_cr.dict.itop-tickets.php │ ├── fr.dict.itop-tickets.php │ ├── hu.dict.itop-tickets.php │ ├── images │ │ └── workorder.png │ ├── it.dict.itop-tickets.php │ ├── ja.dict.itop-tickets.php │ ├── lifecycle │ │ └── WorkOrder.png │ ├── main.itop-tickets.php │ ├── module.itop-tickets.php │ ├── nl.dict.itop-tickets.php │ ├── pt_br.dict.itop-tickets.php │ ├── ru.dict.itop-tickets.php │ ├── tr.dict.itop-tickets.php │ └── zh.dict.itop-tickets.php │ ├── itop-virtualization-mgmt │ ├── data.sample.applicationsolutionci.xml │ ├── data.sample.dbschema.xml │ ├── data.sample.dbserver.xml │ ├── data.sample.farm.xml │ ├── data.sample.hypervisor.xml │ ├── data.sample.vm.xml │ ├── data.sample.webapp.xml │ ├── data.sample.webserver.xml │ ├── datamodel.itop-virtualization-mgmt.xml │ ├── en.dict.itop-virtualization-mgmt.php │ ├── images │ │ ├── cluster.png │ │ ├── hypervisor-sw.png │ │ ├── hypervisor.png │ │ ├── interface.png │ │ ├── virtualmachine.png │ │ └── vlan.png │ ├── module.itop-virtualization-mgmt.php │ └── nl.dict.itop-virtualization-mgmt.php │ ├── itop-welcome-itil │ ├── cs.dict.itop-welcome-itil.php │ ├── datamodel.itop-welcome-itil.xml │ ├── de.dict.itop-welcome-itil.php │ ├── en.dict.itop-welcome-itil.php │ ├── es_cr.dict.itop-welcome-itil.php │ ├── fr.dict.itop-welcome-itil.php │ ├── hu.dict.itop-welcome-itil.php │ ├── images │ │ ├── database.png │ │ └── user-request-deadline.png │ ├── it.dict.itop-welcome-itil.php │ ├── ja.dict.itop-welcome-itil.php │ ├── main.itop-welcome-itil.php │ ├── module.itop-welcome-itil.php │ ├── pt_br.dict.itop-welcome-itil.php │ ├── ru.dict.itop-welcome-itil.php │ ├── tr.dict.itop-welcome-itil.php │ └── zh.dict.itop-welcome-itil.php │ ├── version.xml │ └── wizard-icons │ ├── portal.png │ └── service.png ├── dictionaries ├── cs.dictionary.itop.core.php ├── cs.dictionary.itop.ui.php ├── da.dictionary.itop.core.php ├── da.dictionary.itop.ui.php ├── de.dictionary.itop.core.php ├── de.dictionary.itop.ui.php ├── en.dictionary.itop.core.php ├── en.dictionary.itop.model.php ├── en.dictionary.itop.ui.php ├── es_cr.dictionary.itop.core.php ├── es_cr.dictionary.itop.ui.php ├── fr.dictionary.itop.core.php ├── fr.dictionary.itop.ui.php ├── hu.dictionary.itop.core.php ├── hu.dictionary.itop.ui.php ├── it.dictionary.itop.core.php ├── it.dictionary.itop.ui.php ├── ja.dictionary.itop.core.php ├── ja.dictionary.itop.ui.php ├── nl.dictionary.itop.core.php ├── nl.dictionary.itop.ui.php ├── pt_br.dictionary.itop.core.php ├── pt_br.dictionary.itop.ui.php ├── ru.dictionary.itop.core.php ├── ru.dictionary.itop.ui.php ├── tr.dictionary.itop.core.php ├── tr.dictionary.itop.ui.php ├── zh.dictionary.itop.core.php └── zh.dictionary.itop.ui.php ├── documentation └── itop-tickets.htm ├── extensions └── readme.txt ├── images ├── ac-background.gif ├── actions_bkg.png ├── actions_left.png ├── actions_right.png ├── added.png ├── asc.gif ├── back.png ├── bandeau2.gif ├── bandeau3.gif ├── banner-bkg.png ├── banner-search.png ├── bell.png ├── bg.gif ├── breadcrumb-dashboard.png ├── breadcrumb-search.png ├── breadcrumb-separator.png ├── breadcrumb_home.png ├── breadcrumb_object.png ├── calendar.png ├── charts.swf ├── charts_library │ ├── arno.swf │ ├── arst.swf │ ├── brfl.swf │ ├── brno.swf │ ├── brst.swf │ ├── cl3d.swf │ ├── clfl.swf │ ├── clno.swf │ ├── clp3.swf │ ├── cls3.swf │ ├── clst.swf │ ├── cnno.swf │ ├── lnno.swf │ ├── mxno.swf │ ├── pi3d.swf │ ├── pino.swf │ ├── pono.swf │ └── scno.swf ├── clean-mid.png ├── clean.png ├── csv.png ├── dahslet-groupby2-table.png ├── dashlet-badge.png ├── dashlet-bar-chart.png ├── dashlet-groupby-table.png ├── dashlet-header-stats.png ├── dashlet-header.png ├── dashlet-heatmap.png ├── dashlet-list.png ├── dashlet-pie-chart.png ├── dashlet-proxy.png ├── dashlet-stackedbars.png ├── dashlet-text.png ├── dashlet-unknown.png ├── database.png ├── delete.png ├── desc.gif ├── details_sep.gif ├── drawer-handle.gif ├── edit.png ├── error.png ├── extension.png ├── eye-closed-555.png ├── eye-closed-fff.png ├── eye-open-555.png ├── eye-open-fff.png ├── favicon.ico ├── first.png ├── folder_documents.png ├── full-screen.png ├── green-corner.png ├── green-header.gif ├── green-square.gif ├── grey-header.gif ├── help.png ├── home.png ├── iTop-icon.ico ├── iTop-icon.png ├── iTop.gif ├── iTop2.gif ├── imageChange.gif ├── imageChange.png ├── indicator.gif ├── indicator_arrows.gif ├── info-mid.png ├── info-mini.png ├── info.png ├── itop-logo-external.png ├── itop-logo.png ├── kservices-big.png ├── laptop_pcmcia.png ├── last.png ├── layout_1col.png ├── layout_2col.png ├── layout_3col.png ├── left-bkg.png ├── left-border.gif ├── lifecycle │ ├── EmergencyChange.png │ ├── Incident.png │ ├── NormalChange.png │ ├── ResponseTicket.png │ ├── RoutineChange.png │ └── UserRequest.png ├── location.gif ├── locked.png ├── logo-combodo.png ├── logo-itop-dark-bg.svg ├── logoff.png ├── magnifier.gif ├── mail.png ├── menu.png ├── messagebox_warning-mid.png ├── messagebox_warning.png ├── mini-arrow-green-open.gif ├── mini-arrow-green.gif ├── mini-arrow-orange-open.gif ├── mini-arrow-orange.gif ├── mini_add.gif ├── mini_search.gif ├── mini_tree.gif ├── minus.gif ├── modified.png ├── modules.png ├── network-server.png ├── next.png ├── ok.png ├── on-off-menu.png ├── onOffBtn.png ├── open-flash-chart.swf ├── orange-header.gif ├── password.png ├── pencil-menu.png ├── play.png ├── plus.gif ├── preferences.png ├── prev.png ├── printableversion.png ├── red-arrow.gif ├── red-header.gif ├── refresh-fff.png ├── refresh.png ├── reload.png ├── search.png ├── searchBtn.png ├── settings.gif ├── setup-register.gif ├── setup-support.gif ├── setup-training.gif ├── starthere.png ├── stop-mid.png ├── stop.png ├── synchro.png ├── tar.png ├── toolkit_menu.png ├── transp-lock.png ├── transparent_32_32.png ├── truncated.png ├── tv-collapsable-last.gif ├── tv-collapsable.gif ├── tv-expandable-last.gif ├── tv-expandable.gif ├── tv-item-last.gif ├── tv-item.gif ├── unchanged.png ├── unlocked.png ├── users2-big.png ├── validation_error.png ├── validation_ok.png ├── vgrabber2.gif ├── vgrabber2_active.gif ├── vsplitter-grey.gif ├── welcome.jpg ├── wrench.png ├── xlsx.png └── zoom.gif ├── index.php ├── install.txt ├── js ├── ajaxfileupload.js ├── breadcrumb.js ├── c3.js ├── c3.min.js ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fr.js │ │ ├── it.js │ │ └── pt-br.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── confighelper │ │ │ └── docs │ │ │ │ ├── install.html │ │ │ │ └── styles.css │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── widget │ │ │ └── images │ │ │ │ └── handle.png │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ └── moono-lisa │ │ │ └── wsc.css │ ├── skins │ │ └── flat │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js ├── console_form_handler.js ├── d3.js ├── d3.min.js ├── dashboard.js ├── dashlet.js ├── datatable.js ├── date.js ├── edit_image.js ├── exclude.txt ├── extkeywidget.js ├── field_set.js ├── field_sorter.js ├── form_field.js ├── form_handler.js ├── forms-json-utils.js ├── fraphael.js ├── hovertip.js ├── icon_select.js ├── jquery-3.3.1.min.js ├── jquery-migrate-3.0.1.min.js ├── jquery-ui-1.11.4.custom.min.js ├── jquery-ui-timepicker-addon-i18n.min.js ├── jquery-ui-timepicker-addon.js ├── jquery.autocomplete.js ├── jquery.ba-bbq.js ├── jquery.ba-bbq.min.js ├── jquery.blockUI.js ├── jquery.contextMenu.js ├── jquery.dragtable.js ├── jquery.fileupload.js ├── jquery.hotkeys.js ├── jquery.iframe-transport.js ├── jquery.layout.js ├── jquery.layout.min.js ├── jquery.magnific-popup.js ├── jquery.magnific-popup.min.js ├── jquery.mousewheel.js ├── jquery.multiselect.js ├── jquery.popupmenu.js ├── jquery.positionBy.js ├── jquery.qtip-1.0.min.js ├── jquery.tablehover.js ├── jquery.tablesorter.js ├── jquery.tablesorter.min.js ├── jquery.tablesorter.pager.js ├── jquery.tabs-ie.css ├── jquery.treeview.js ├── jquery.treeview.min.js ├── jquery.treeview.pack.js ├── json.js ├── json │ └── json2.js ├── latinise │ └── latinise.min.js ├── linksdirectwidget.js ├── linkswidget.js ├── moment.min.js ├── property_field.js ├── raphael-min.js ├── search │ ├── search_form_criteria.js │ ├── search_form_criteria_date.js │ ├── search_form_criteria_date_abstract.js │ ├── search_form_criteria_date_time.js │ ├── search_form_criteria_enum.js │ ├── search_form_criteria_external_field.js │ ├── search_form_criteria_external_key.js │ ├── search_form_criteria_hierarchical_key.js │ ├── search_form_criteria_numeric.js │ ├── search_form_criteria_raw.js │ ├── search_form_criteria_string.js │ ├── search_form_handler.js │ └── search_form_handler_history.js ├── searchformforeignkeys.js ├── simple_graph.js ├── subform_field.js ├── swfobject.js ├── table-selectable-lines.js ├── tabularfieldsselector.js ├── themes │ ├── dark │ │ ├── dark.css │ │ ├── dark.form.css │ │ ├── dark.form.png │ │ ├── dark.menu.css │ │ ├── dark.modal.css │ │ ├── dark.tabs.css │ │ └── dark.tree.css │ ├── flora │ │ ├── flora.accordion.css │ │ ├── flora.all.css │ │ ├── flora.calendar.css │ │ ├── flora.css │ │ ├── flora.dialog.css │ │ ├── flora.menu.css │ │ ├── flora.resizable.css │ │ ├── flora.shadow.css │ │ ├── flora.slider.css │ │ ├── flora.tablesorter.css │ │ ├── flora.tabs.css │ │ └── i │ │ │ ├── Thumbs.db │ │ │ ├── accordion-left-act.png │ │ │ ├── accordion-left-over.png │ │ │ ├── accordion-left.png │ │ │ ├── accordion-middle-act.png │ │ │ ├── accordion-middle-over.png │ │ │ ├── accordion-middle.png │ │ │ ├── accordion-right-act.png │ │ │ ├── accordion-right-over.png │ │ │ ├── accordion-right.png │ │ │ ├── asc.gif │ │ │ ├── bg.gif │ │ │ ├── desc.gif │ │ │ ├── dialog-e.gif │ │ │ ├── dialog-n.gif │ │ │ ├── dialog-ne.gif │ │ │ ├── dialog-nw.gif │ │ │ ├── dialog-s.gif │ │ │ ├── dialog-se.gif │ │ │ ├── dialog-sw.gif │ │ │ ├── dialog-title.gif │ │ │ ├── dialog-titlebar-close-hover.png │ │ │ ├── dialog-titlebar-close.png │ │ │ ├── dialog-w.gif │ │ │ ├── menu-submenu.gif │ │ │ ├── resizable-e.gif │ │ │ ├── resizable-n.gif │ │ │ ├── resizable-ne.gif │ │ │ ├── resizable-nw.gif │ │ │ ├── resizable-s.gif │ │ │ ├── resizable-se.gif │ │ │ ├── resizable-sw.gif │ │ │ ├── resizable-w.gif │ │ │ ├── shadow.png │ │ │ ├── slider-bg-1.png │ │ │ ├── slider-bg-2.png │ │ │ ├── slider-handle.gif │ │ │ └── tabs.gif │ └── light │ │ ├── light.css │ │ ├── light.form.css │ │ ├── light.menu.css │ │ ├── light.modal.css │ │ ├── light.tabs.css │ │ └── light.tree.css ├── utils.js ├── wizard.utils.js └── wizardhelper.js ├── lib ├── emogrifier │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Classes │ │ └── Emogrifier.php │ ├── Configuration │ │ └── PhpCodeSniffer │ │ │ └── Standards │ │ │ └── Emogrifier │ │ │ └── ruleset.xml │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ └── Unit │ │ │ └── EmogrifierTest.php │ ├── composer.json │ └── exclude.txt ├── scssphp │ ├── LICENSE.md │ ├── README.md │ ├── bin │ │ └── pscss │ ├── scss.inc.php │ └── src │ │ ├── Base │ │ └── Range.php │ │ ├── Block.php │ │ ├── Colors.php │ │ ├── Compiler.php │ │ ├── Compiler │ │ └── Environment.php │ │ ├── Exception │ │ ├── CompilerException.php │ │ ├── ParserException.php │ │ └── ServerException.php │ │ ├── Formatter.php │ │ ├── Formatter │ │ ├── Compact.php │ │ ├── Compressed.php │ │ ├── Crunched.php │ │ ├── Debug.php │ │ ├── Expanded.php │ │ ├── Nested.php │ │ └── OutputBlock.php │ │ ├── Node.php │ │ ├── Node │ │ └── Number.php │ │ ├── Parser.php │ │ ├── Server.php │ │ ├── Type.php │ │ ├── Util.php │ │ └── Version.php ├── silex │ ├── composer.json │ ├── composer.lock │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ ├── paragonie │ │ └── random_compat │ │ │ ├── LICENSE │ │ │ ├── build-phar.sh │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ │ ├── lib │ │ │ ├── byte_safe_strings.php │ │ │ ├── cast_to_int.php │ │ │ ├── error_polyfill.php │ │ │ ├── random.php │ │ │ ├── random_bytes_com_dotnet.php │ │ │ ├── random_bytes_dev_urandom.php │ │ │ ├── random_bytes_libsodium.php │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ ├── random_bytes_mcrypt.php │ │ │ └── random_int.php │ │ │ ├── other │ │ │ └── build_phar.php │ │ │ ├── psalm-autoload.php │ │ │ └── psalm.xml │ │ ├── pimple │ │ └── pimple │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── composer.json │ │ │ ├── ext │ │ │ └── pimple │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── config.m4 │ │ │ │ ├── config.w32 │ │ │ │ ├── php_pimple.h │ │ │ │ ├── pimple.c │ │ │ │ ├── pimple_compat.h │ │ │ │ └── tests │ │ │ │ ├── 001.phpt │ │ │ │ ├── 002.phpt │ │ │ │ ├── 003.phpt │ │ │ │ ├── 004.phpt │ │ │ │ ├── 005.phpt │ │ │ │ ├── 006.phpt │ │ │ │ ├── 007.phpt │ │ │ │ ├── 008.phpt │ │ │ │ ├── 009.phpt │ │ │ │ ├── 010.phpt │ │ │ │ ├── 011.phpt │ │ │ │ ├── 012.phpt │ │ │ │ ├── 013.phpt │ │ │ │ ├── 014.phpt │ │ │ │ ├── 015.phpt │ │ │ │ ├── 016.phpt │ │ │ │ ├── 017.phpt │ │ │ │ ├── 017_1.phpt │ │ │ │ ├── 018.phpt │ │ │ │ ├── 019.phpt │ │ │ │ ├── bench.phpb │ │ │ │ └── bench_shared.phpb │ │ │ ├── lib │ │ │ └── Pimple.php │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ └── Pimple │ │ │ ├── Container.php │ │ │ ├── Exception │ │ │ ├── ExpectedInvokableException.php │ │ │ ├── FrozenServiceException.php │ │ │ ├── InvalidServiceIdentifierException.php │ │ │ └── UnknownIdentifierException.php │ │ │ ├── Psr11 │ │ │ ├── Container.php │ │ │ └── ServiceLocator.php │ │ │ ├── ServiceIterator.php │ │ │ ├── ServiceProviderInterface.php │ │ │ └── Tests │ │ │ ├── Fixtures │ │ │ ├── Invokable.php │ │ │ ├── NonInvokable.php │ │ │ ├── PimpleServiceProvider.php │ │ │ └── Service.php │ │ │ ├── PimpleServiceProviderInterfaceTest.php │ │ │ ├── PimpleTest.php │ │ │ ├── Psr11 │ │ │ ├── ContainerTest.php │ │ │ └── ServiceLocatorTest.php │ │ │ └── ServiceIteratorTest.php │ │ ├── psr │ │ ├── container │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ContainerExceptionInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotFoundExceptionInterface.php │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ └── LoggerInterfaceTest.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── silex │ │ └── silex │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ ├── build │ │ │ ├── compile │ │ │ └── skeleton │ │ │ │ ├── fat_composer.json │ │ │ │ ├── index.php │ │ │ │ └── slim_composer.json │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── changelog.rst │ │ │ ├── conf.py │ │ │ ├── contributing.rst │ │ │ ├── cookbook │ │ │ │ ├── assets.rst │ │ │ │ ├── error_handler.rst │ │ │ │ ├── form_no_csrf.rst │ │ │ │ ├── guard_authentication.rst │ │ │ │ ├── index.rst │ │ │ │ ├── json_request_body.rst │ │ │ │ ├── multiple_loggers.rst │ │ │ │ ├── session_storage.rst │ │ │ │ ├── sub_requests.rst │ │ │ │ ├── translating_validation_messages.rst │ │ │ │ └── validator_yaml.rst │ │ │ ├── index.rst │ │ │ ├── internals.rst │ │ │ ├── intro.rst │ │ │ ├── middlewares.rst │ │ │ ├── organizing_controllers.rst │ │ │ ├── phar.rst │ │ │ ├── providers.rst │ │ │ ├── providers │ │ │ │ ├── asset.rst │ │ │ │ ├── csrf.rst │ │ │ │ ├── doctrine.rst │ │ │ │ ├── form.rst │ │ │ │ ├── http_cache.rst │ │ │ │ ├── http_fragment.rst │ │ │ │ ├── index.rst │ │ │ │ ├── locale.rst │ │ │ │ ├── monolog.rst │ │ │ │ ├── remember_me.rst │ │ │ │ ├── security.rst │ │ │ │ ├── serializer.rst │ │ │ │ ├── service_controller.rst │ │ │ │ ├── session.rst │ │ │ │ ├── swiftmailer.rst │ │ │ │ ├── translation.rst │ │ │ │ ├── twig.rst │ │ │ │ ├── url_generator.rst │ │ │ │ ├── validator.rst │ │ │ │ └── var_dumper.rst │ │ │ ├── services.rst │ │ │ ├── testing.rst │ │ │ ├── usage.rst │ │ │ └── web_servers.rst │ │ │ ├── exclude.txt │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Silex │ │ │ │ ├── Api │ │ │ │ ├── BootableProviderInterface.php │ │ │ │ ├── ControllerProviderInterface.php │ │ │ │ ├── EventListenerProviderInterface.php │ │ │ │ ├── LICENSE │ │ │ │ └── composer.json │ │ │ │ ├── AppArgumentValueResolver.php │ │ │ │ ├── Application.php │ │ │ │ ├── Application │ │ │ │ ├── FormTrait.php │ │ │ │ ├── MonologTrait.php │ │ │ │ ├── SecurityTrait.php │ │ │ │ ├── SwiftmailerTrait.php │ │ │ │ ├── TranslationTrait.php │ │ │ │ ├── TwigTrait.php │ │ │ │ └── UrlGeneratorTrait.php │ │ │ │ ├── CallbackResolver.php │ │ │ │ ├── ConstraintValidatorFactory.php │ │ │ │ ├── Controller.php │ │ │ │ ├── ControllerCollection.php │ │ │ │ ├── ControllerProviderInterface.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── EventListener │ │ │ │ ├── ConverterListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── LogListener.php │ │ │ │ ├── MiddlewareListener.php │ │ │ │ └── StringToResponseListener.php │ │ │ │ ├── Exception │ │ │ │ └── ControllerFrozenException.php │ │ │ │ ├── ExceptionHandler.php │ │ │ │ ├── ExceptionListenerWrapper.php │ │ │ │ ├── HttpCache.php │ │ │ │ ├── LazyUrlMatcher.php │ │ │ │ ├── Provider │ │ │ │ ├── AssetServiceProvider.php │ │ │ │ ├── CsrfServiceProvider.php │ │ │ │ ├── DoctrineServiceProvider.php │ │ │ │ ├── ExceptionHandlerServiceProvider.php │ │ │ │ ├── Form │ │ │ │ │ └── SilexFormExtension.php │ │ │ │ ├── FormServiceProvider.php │ │ │ │ ├── HttpCache │ │ │ │ │ └── HttpCache.php │ │ │ │ ├── HttpCacheServiceProvider.php │ │ │ │ ├── HttpFragmentServiceProvider.php │ │ │ │ ├── HttpKernelServiceProvider.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Locale │ │ │ │ │ └── LocaleListener.php │ │ │ │ ├── LocaleServiceProvider.php │ │ │ │ ├── MonologServiceProvider.php │ │ │ │ ├── RememberMeServiceProvider.php │ │ │ │ ├── Routing │ │ │ │ │ ├── LazyRequestMatcher.php │ │ │ │ │ └── RedirectableUrlMatcher.php │ │ │ │ ├── RoutingServiceProvider.php │ │ │ │ ├── SecurityServiceProvider.php │ │ │ │ ├── SerializerServiceProvider.php │ │ │ │ ├── ServiceControllerServiceProvider.php │ │ │ │ ├── Session │ │ │ │ │ ├── SessionListener.php │ │ │ │ │ └── TestSessionListener.php │ │ │ │ ├── SessionServiceProvider.php │ │ │ │ ├── SwiftmailerServiceProvider.php │ │ │ │ ├── TranslationServiceProvider.php │ │ │ │ ├── Twig │ │ │ │ │ └── RuntimeLoader.php │ │ │ │ ├── TwigCoreExtension.php │ │ │ │ ├── TwigServiceProvider.php │ │ │ │ ├── UrlGeneratorServiceProvider.php │ │ │ │ ├── Validator │ │ │ │ │ └── ConstraintValidatorFactory.php │ │ │ │ ├── ValidatorServiceProvider.php │ │ │ │ ├── VarDumperServiceProvider.php │ │ │ │ └── composer.json │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── Route.php │ │ │ │ ├── Route │ │ │ │ └── SecurityTrait.php │ │ │ │ ├── ServiceControllerResolver.php │ │ │ │ ├── ServiceProviderInterface.php │ │ │ │ ├── Translator.php │ │ │ │ ├── Util │ │ │ │ └── Compiler.php │ │ │ │ ├── ViewListenerWrapper.php │ │ │ │ └── WebTestCase.php │ │ │ └── tests │ │ │ ├── Silex │ │ │ └── Tests │ │ │ │ ├── Application │ │ │ │ ├── FormApplication.php │ │ │ │ ├── FormTraitTest.php │ │ │ │ ├── MonologApplication.php │ │ │ │ ├── MonologTraitTest.php │ │ │ │ ├── SecurityApplication.php │ │ │ │ ├── SecurityTraitTest.php │ │ │ │ ├── SwiftmailerApplication.php │ │ │ │ ├── SwiftmailerTraitTest.php │ │ │ │ ├── TranslationApplication.php │ │ │ │ ├── TranslationTraitTest.php │ │ │ │ ├── TwigApplication.php │ │ │ │ ├── TwigTraitTest.php │ │ │ │ ├── UrlGeneratorApplication.php │ │ │ │ └── UrlGeneratorTraitTest.php │ │ │ │ ├── ApplicationTest.php │ │ │ │ ├── CallbackResolverTest.php │ │ │ │ ├── CallbackServicesTest.php │ │ │ │ ├── ControllerCollectionTest.php │ │ │ │ ├── ControllerResolverTest.php │ │ │ │ ├── ControllerTest.php │ │ │ │ ├── EventListener │ │ │ │ └── LogListenerTest.php │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ ├── Php7Controller.php │ │ │ │ └── manifest.json │ │ │ │ ├── FunctionalTest.php │ │ │ │ ├── JsonTest.php │ │ │ │ ├── LazyDispatcherTest.php │ │ │ │ ├── LazyRequestMatcherTest.php │ │ │ │ ├── LazyUrlMatcherTest.php │ │ │ │ ├── LocaleTest.php │ │ │ │ ├── MiddlewareTest.php │ │ │ │ ├── Provider │ │ │ │ ├── AssetServiceProviderTest.php │ │ │ │ ├── DoctrineServiceProviderTest.php │ │ │ │ ├── FormServiceProviderTest.php │ │ │ │ ├── FormServiceProviderTest │ │ │ │ │ └── DisableCsrfExtension.php │ │ │ │ ├── HttpCacheServiceProviderTest.php │ │ │ │ ├── HttpFragmentServiceProviderTest.php │ │ │ │ ├── MonologServiceProviderTest.php │ │ │ │ ├── RememberMeServiceProviderTest.php │ │ │ │ ├── RoutingServiceProviderTest.php │ │ │ │ ├── SecurityServiceProviderTest.php │ │ │ │ ├── SecurityServiceProviderTest │ │ │ │ │ └── TokenAuthenticator.php │ │ │ │ ├── SerializerServiceProviderTest.php │ │ │ │ ├── SessionServiceProviderTest.php │ │ │ │ ├── SpoolStub.php │ │ │ │ ├── SwiftmailerServiceProviderTest.php │ │ │ │ ├── TranslationServiceProviderTest.php │ │ │ │ ├── TwigServiceProviderTest.php │ │ │ │ ├── UrlGeneratorServiceProviderTest.php │ │ │ │ ├── ValidatorServiceProviderTest.php │ │ │ │ └── ValidatorServiceProviderTest │ │ │ │ │ └── Constraint │ │ │ │ │ ├── Custom.php │ │ │ │ │ └── CustomValidator.php │ │ │ │ ├── Route │ │ │ │ ├── SecurityRoute.php │ │ │ │ └── SecurityTraitTest.php │ │ │ │ ├── RouterTest.php │ │ │ │ ├── ServiceControllerResolverRouterTest.php │ │ │ │ ├── ServiceControllerResolverTest.php │ │ │ │ ├── StreamTest.php │ │ │ │ └── WebTestCaseTest.php │ │ │ └── bootstrap.php │ │ ├── symfony │ │ ├── debug │ │ │ ├── .gitignore │ │ │ ├── BufferingLogger.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ContextErrorException.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── FatalThrowableError.php │ │ │ │ ├── FlattenException.php │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ ├── SilencedErrorContext.php │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ └── UndefinedMethodException.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── FatalErrorHandler │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── ext │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.m4 │ │ │ │ │ ├── config.w32 │ │ │ │ │ ├── php_symfony_debug.h │ │ │ │ │ ├── symfony_debug.c │ │ │ │ │ └── tests │ │ │ │ │ ├── 001.phpt │ │ │ │ │ ├── 002.phpt │ │ │ │ │ ├── 002_1.phpt │ │ │ │ │ └── 003.phpt │ │ │ ├── Symfony │ │ │ │ └── Component │ │ │ │ │ └── Debug │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── Debug.php │ │ │ │ │ ├── DebugClassLoader.php │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ │ ├── ContextErrorException.php │ │ │ │ │ ├── DummyException.php │ │ │ │ │ ├── FatalErrorException.php │ │ │ │ │ ├── FatalThrowableError.php │ │ │ │ │ ├── FlattenException.php │ │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ │ └── UndefinedMethodException.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Resources │ │ │ │ │ └── ext │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── config.m4 │ │ │ │ │ │ ├── config.w32 │ │ │ │ │ │ ├── php_symfony_debug.h │ │ │ │ │ │ ├── symfony_debug.c │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── 001.phpt │ │ │ │ │ ├── Tests │ │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ │ ├── psr4 │ │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ │ ├── Fixtures2 │ │ │ │ │ │ └── RequiredTwice.php │ │ │ │ │ └── MockExceptionHandler.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── exclude.txt │ │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Tests │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClass.php │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ │ ├── ExtendedFinalMethod.php │ │ │ │ │ ├── FinalClass.php │ │ │ │ │ ├── FinalMethod.php │ │ │ │ │ ├── InternalClass.php │ │ │ │ │ ├── InternalInterface.php │ │ │ │ │ ├── InternalTrait.php │ │ │ │ │ ├── InternalTrait2.php │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ ├── Throwing.php │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ ├── psr4 │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ ├── Fixtures2 │ │ │ │ │ └── RequiredTwice.php │ │ │ │ ├── HeaderMock.php │ │ │ │ ├── MockExceptionHandler.php │ │ │ │ └── phpt │ │ │ │ │ ├── debug_class_loader.phpt │ │ │ │ │ ├── decorate_exception_hander.phpt │ │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── event-dispatcher │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ ├── Debug │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPass.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Symfony │ │ │ │ └── Component │ │ │ │ │ └── EventDispatcher │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ │ └── WrappedListener.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPass.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventDispatcher.php │ │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ │ ├── EventSubscriberInterface.php │ │ │ │ │ ├── GenericEvent.php │ │ │ │ │ ├── ImmutableEventDispatcher.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tests │ │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ │ ├── EventTest.php │ │ │ │ │ ├── GenericEventTest.php │ │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── exclude.txt │ │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Tests │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ │ ├── Debug │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ ├── EventTest.php │ │ │ │ ├── GenericEventTest.php │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-foundation │ │ │ ├── .gitignore │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── ApacheRequest.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Cookie.php │ │ │ ├── Exception │ │ │ │ ├── ConflictingHeadersException.php │ │ │ │ ├── RequestExceptionInterface.php │ │ │ │ └── SuspiciousOperationException.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── File │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── MimeType │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ ├── Stream.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestMatcher.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── RequestStack.php │ │ │ ├── Response.php │ │ │ ├── ResponseHeaderBag.php │ │ │ ├── ServerBag.php │ │ │ ├── Session │ │ │ │ ├── Attribute │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ │ └── NamespacedAttributeBag.php │ │ │ │ ├── Flash │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionBagInterface.php │ │ │ │ ├── SessionBagProxy.php │ │ │ │ ├── SessionInterface.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ ├── StrictSessionHandler.php │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Symfony │ │ │ │ └── Component │ │ │ │ │ └── HttpFoundation │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AcceptHeader.php │ │ │ │ │ ├── AcceptHeaderItem.php │ │ │ │ │ ├── ApacheRequest.php │ │ │ │ │ ├── BinaryFileResponse.php │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── ExpressionRequestMatcher.php │ │ │ │ │ ├── File │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── FileException.php │ │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ │ └── UploadException.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── MimeType │ │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ │ └── UploadedFile.php │ │ │ │ │ ├── FileBag.php │ │ │ │ │ ├── HeaderBag.php │ │ │ │ │ ├── IpUtils.php │ │ │ │ │ ├── JsonResponse.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── ParameterBag.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RedirectResponse.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── RequestMatcher.php │ │ │ │ │ ├── RequestMatcherInterface.php │ │ │ │ │ ├── RequestStack.php │ │ │ │ │ ├── Resources │ │ │ │ │ └── stubs │ │ │ │ │ │ └── SessionHandlerInterface.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── ResponseHeaderBag.php │ │ │ │ │ ├── ServerBag.php │ │ │ │ │ ├── Session │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ │ │ └── NamespacedAttributeBag.php │ │ │ │ │ ├── Flash │ │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ │ ├── Session.php │ │ │ │ │ ├── SessionBagInterface.php │ │ │ │ │ ├── SessionInterface.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── LegacyPdoSessionHandler.php │ │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ │ ├── Proxy │ │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ │ └── SessionStorageInterface.php │ │ │ │ │ ├── StreamedResponse.php │ │ │ │ │ ├── Tests │ │ │ │ │ ├── AcceptHeaderItemTest.php │ │ │ │ │ ├── AcceptHeaderTest.php │ │ │ │ │ ├── ApacheRequestTest.php │ │ │ │ │ ├── BinaryFileResponseTest.php │ │ │ │ │ ├── ClockMock.php │ │ │ │ │ ├── CookieTest.php │ │ │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ │ │ ├── File │ │ │ │ │ │ ├── FakeFile.php │ │ │ │ │ │ ├── FileTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── directory │ │ │ │ │ │ │ │ └── .empty │ │ │ │ │ │ │ ├── other-file.example │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── test.gif │ │ │ │ │ │ ├── MimeType │ │ │ │ │ │ │ └── MimeTypeTest.php │ │ │ │ │ │ └── UploadedFileTest.php │ │ │ │ │ ├── FileBagTest.php │ │ │ │ │ ├── HeaderBagTest.php │ │ │ │ │ ├── IpUtilsTest.php │ │ │ │ │ ├── JsonResponseTest.php │ │ │ │ │ ├── ParameterBagTest.php │ │ │ │ │ ├── RedirectResponseTest.php │ │ │ │ │ ├── RequestMatcherTest.php │ │ │ │ │ ├── RequestStackTest.php │ │ │ │ │ ├── RequestTest.php │ │ │ │ │ ├── ResponseHeaderBagTest.php │ │ │ │ │ ├── ResponseTest.php │ │ │ │ │ ├── ResponseTestCase.php │ │ │ │ │ ├── ServerBagTest.php │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ │ │ ├── Flash │ │ │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ │ │ └── FlashBagTest.php │ │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── LegacyPdoSessionHandlerTest.php │ │ │ │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ │ │ └── Proxy │ │ │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ │ │ ├── NativeProxyTest.php │ │ │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ │ │ └── StreamedResponseTest.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── exclude.txt │ │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Tests │ │ │ │ ├── AcceptHeaderItemTest.php │ │ │ │ ├── AcceptHeaderTest.php │ │ │ │ ├── ApacheRequestTest.php │ │ │ │ ├── BinaryFileResponseTest.php │ │ │ │ ├── CookieTest.php │ │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ │ ├── File │ │ │ │ │ ├── FakeFile.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── .unknownextension │ │ │ │ │ │ ├── directory │ │ │ │ │ │ │ └── .empty │ │ │ │ │ │ ├── other-file.example │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── test.gif │ │ │ │ │ ├── MimeType │ │ │ │ │ │ └── MimeTypeTest.php │ │ │ │ │ └── UploadedFileTest.php │ │ │ │ ├── FileBagTest.php │ │ │ │ ├── HeaderBagTest.php │ │ │ │ ├── IpUtilsTest.php │ │ │ │ ├── JsonResponseTest.php │ │ │ │ ├── ParameterBagTest.php │ │ │ │ ├── RedirectResponseTest.php │ │ │ │ ├── RequestMatcherTest.php │ │ │ │ ├── RequestStackTest.php │ │ │ │ ├── RequestTest.php │ │ │ │ ├── ResponseHeaderBagTest.php │ │ │ │ ├── ResponseTest.php │ │ │ │ ├── ResponseTestCase.php │ │ │ │ ├── ServerBagTest.php │ │ │ │ ├── Session │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ │ ├── Flash │ │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ │ └── FlashBagTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractSessionHandlerTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ │ ├── empty_destroys.expected │ │ │ │ │ │ │ ├── empty_destroys.php │ │ │ │ │ │ │ ├── read_only.expected │ │ │ │ │ │ │ ├── read_only.php │ │ │ │ │ │ │ ├── regenerate.expected │ │ │ │ │ │ │ ├── regenerate.php │ │ │ │ │ │ │ ├── storage.expected │ │ │ │ │ │ │ ├── storage.php │ │ │ │ │ │ │ ├── with_cookie.expected │ │ │ │ │ │ │ ├── with_cookie.php │ │ │ │ │ │ │ ├── with_cookie_and_session.expected │ │ │ │ │ │ │ └── with_cookie_and_session.php │ │ │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ │ ├── StrictSessionHandlerTest.php │ │ │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ │ └── Proxy │ │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ │ ├── NativeProxyTest.php │ │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ │ ├── StreamedResponseTest.php │ │ │ │ └── schema │ │ │ │ │ ├── http-status-codes.rng │ │ │ │ │ └── iana-registry.rng │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-kernel │ │ │ ├── .gitignore │ │ │ ├── Bundle │ │ │ │ ├── Bundle.php │ │ │ │ └── BundleInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheClearer │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ ├── ChainCacheClearer.php │ │ │ │ └── Psr6CacheClearer.php │ │ │ ├── CacheWarmer │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ └── WarmableInterface.php │ │ │ ├── Client.php │ │ │ ├── Config │ │ │ │ ├── EnvParametersResource.php │ │ │ │ └── FileLocator.php │ │ │ ├── Controller │ │ │ │ ├── ArgumentResolver.php │ │ │ │ ├── ArgumentResolver │ │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ │ ├── RequestValueResolver.php │ │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ │ ├── SessionValueResolver.php │ │ │ │ │ └── VariadicValueResolver.php │ │ │ │ ├── ArgumentResolverInterface.php │ │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ │ ├── ContainerControllerResolver.php │ │ │ │ ├── ControllerReference.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── ControllerResolverInterface.php │ │ │ │ ├── TraceableArgumentResolver.php │ │ │ │ └── TraceableControllerResolver.php │ │ │ ├── ControllerMetadata │ │ │ │ ├── ArgumentMetadata.php │ │ │ │ ├── ArgumentMetadataFactory.php │ │ │ │ └── ArgumentMetadataFactoryInterface.php │ │ │ ├── DataCollector │ │ │ │ ├── AjaxDataCollector.php │ │ │ │ ├── ConfigDataCollector.php │ │ │ │ ├── DataCollector.php │ │ │ │ ├── DataCollectorInterface.php │ │ │ │ ├── DumpDataCollector.php │ │ │ │ ├── EventDataCollector.php │ │ │ │ ├── ExceptionDataCollector.php │ │ │ │ ├── LateDataCollectorInterface.php │ │ │ │ ├── LoggerDataCollector.php │ │ │ │ ├── MemoryDataCollector.php │ │ │ │ ├── RequestDataCollector.php │ │ │ │ ├── RouterDataCollector.php │ │ │ │ ├── TimeDataCollector.php │ │ │ │ └── Util │ │ │ │ │ └── ValueExporter.php │ │ │ ├── Debug │ │ │ │ ├── FileLinkFormatter.php │ │ │ │ └── TraceableEventDispatcher.php │ │ │ ├── DependencyInjection │ │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ │ ├── AddClassesToCachePass.php │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ │ ├── Extension.php │ │ │ │ ├── FragmentRendererPass.php │ │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ │ ├── LoggerPass.php │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ │ ├── ResettableServicePass.php │ │ │ │ └── ServicesResetter.php │ │ │ ├── Event │ │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ ├── GetResponseEvent.php │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ ├── KernelEvent.php │ │ │ │ └── PostResponseEvent.php │ │ │ ├── EventListener │ │ │ │ ├── AbstractSessionListener.php │ │ │ │ ├── AbstractTestSessionListener.php │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ ├── DumpListener.php │ │ │ │ ├── ExceptionListener.php │ │ │ │ ├── FragmentListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── ProfilerListener.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── RouterListener.php │ │ │ │ ├── SaveSessionListener.php │ │ │ │ ├── SessionListener.php │ │ │ │ ├── StreamedResponseListener.php │ │ │ │ ├── SurrogateListener.php │ │ │ │ ├── TestSessionListener.php │ │ │ │ ├── TranslatorListener.php │ │ │ │ └── ValidateRequestListener.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ ├── ConflictHttpException.php │ │ │ │ ├── GoneHttpException.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ ├── Fragment │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ ├── FragmentHandler.php │ │ │ │ ├── FragmentRendererInterface.php │ │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ │ ├── InlineFragmentRenderer.php │ │ │ │ ├── RoutableFragmentRenderer.php │ │ │ │ └── SsiFragmentRenderer.php │ │ │ ├── HttpCache │ │ │ │ ├── AbstractSurrogate.php │ │ │ │ ├── Esi.php │ │ │ │ ├── HttpCache.php │ │ │ │ ├── ResponseCacheStrategy.php │ │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ │ ├── Ssi.php │ │ │ │ ├── Store.php │ │ │ │ ├── StoreInterface.php │ │ │ │ └── SurrogateInterface.php │ │ │ ├── HttpKernel.php │ │ │ ├── HttpKernelInterface.php │ │ │ ├── Kernel.php │ │ │ ├── KernelEvents.php │ │ │ ├── KernelInterface.php │ │ │ ├── LICENSE │ │ │ ├── Log │ │ │ │ ├── DebugLoggerInterface.php │ │ │ │ └── Logger.php │ │ │ ├── Profiler │ │ │ │ ├── FileProfilerStorage.php │ │ │ │ ├── Profile.php │ │ │ │ ├── Profiler.php │ │ │ │ └── ProfilerStorageInterface.php │ │ │ ├── README.md │ │ │ ├── RebootableInterface.php │ │ │ ├── Resources │ │ │ │ └── welcome.html.php │ │ │ ├── Symfony │ │ │ │ └── Component │ │ │ │ │ └── HttpKernel │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Bundle │ │ │ │ │ ├── Bundle.php │ │ │ │ │ └── BundleInterface.php │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CacheClearer │ │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ │ └── ChainCacheClearer.php │ │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── CacheWarmer.php │ │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ │ └── WarmableInterface.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── Config │ │ │ │ │ ├── EnvParametersResource.php │ │ │ │ │ └── FileLocator.php │ │ │ │ │ ├── Controller │ │ │ │ │ ├── ControllerReference.php │ │ │ │ │ ├── ControllerResolver.php │ │ │ │ │ ├── ControllerResolverInterface.php │ │ │ │ │ └── TraceableControllerResolver.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ ├── ConfigDataCollector.php │ │ │ │ │ ├── DataCollector.php │ │ │ │ │ ├── DataCollectorInterface.php │ │ │ │ │ ├── DumpDataCollector.php │ │ │ │ │ ├── EventDataCollector.php │ │ │ │ │ ├── ExceptionDataCollector.php │ │ │ │ │ ├── LateDataCollectorInterface.php │ │ │ │ │ ├── LoggerDataCollector.php │ │ │ │ │ ├── MemoryDataCollector.php │ │ │ │ │ ├── RequestDataCollector.php │ │ │ │ │ ├── RouterDataCollector.php │ │ │ │ │ ├── TimeDataCollector.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── ValueExporter.php │ │ │ │ │ ├── Debug │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ └── TraceableEventDispatcher.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AddClassesToCachePass.php │ │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ │ ├── ContainerAwareHttpKernel.php │ │ │ │ │ ├── Extension.php │ │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ │ └── RegisterListenersPass.php │ │ │ │ │ ├── Event │ │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ │ ├── GetResponseEvent.php │ │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ │ ├── KernelEvent.php │ │ │ │ │ └── PostResponseEvent.php │ │ │ │ │ ├── EventListener │ │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ │ ├── DumpListener.php │ │ │ │ │ ├── ErrorsLoggerListener.php │ │ │ │ │ ├── EsiListener.php │ │ │ │ │ ├── ExceptionListener.php │ │ │ │ │ ├── FragmentListener.php │ │ │ │ │ ├── LocaleListener.php │ │ │ │ │ ├── ProfilerListener.php │ │ │ │ │ ├── ResponseListener.php │ │ │ │ │ ├── RouterListener.php │ │ │ │ │ ├── SaveSessionListener.php │ │ │ │ │ ├── SessionListener.php │ │ │ │ │ ├── StreamedResponseListener.php │ │ │ │ │ ├── SurrogateListener.php │ │ │ │ │ ├── TestSessionListener.php │ │ │ │ │ └── TranslatorListener.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ │ ├── ConflictHttpException.php │ │ │ │ │ ├── FatalErrorException.php │ │ │ │ │ ├── FlattenException.php │ │ │ │ │ ├── GoneHttpException.php │ │ │ │ │ ├── HttpException.php │ │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ │ │ ├── Fragment │ │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ │ ├── FragmentHandler.php │ │ │ │ │ ├── FragmentRendererInterface.php │ │ │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ │ │ ├── InlineFragmentRenderer.php │ │ │ │ │ ├── RoutableFragmentRenderer.php │ │ │ │ │ └── SsiFragmentRenderer.php │ │ │ │ │ ├── HttpCache │ │ │ │ │ ├── Esi.php │ │ │ │ │ ├── EsiResponseCacheStrategy.php │ │ │ │ │ ├── EsiResponseCacheStrategyInterface.php │ │ │ │ │ ├── HttpCache.php │ │ │ │ │ ├── ResponseCacheStrategy.php │ │ │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ │ │ ├── Ssi.php │ │ │ │ │ ├── Store.php │ │ │ │ │ ├── StoreInterface.php │ │ │ │ │ └── SurrogateInterface.php │ │ │ │ │ ├── HttpKernel.php │ │ │ │ │ ├── HttpKernelInterface.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── KernelEvents.php │ │ │ │ │ ├── KernelInterface.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Log │ │ │ │ │ ├── DebugLoggerInterface.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ └── NullLogger.php │ │ │ │ │ ├── Profiler │ │ │ │ │ ├── BaseMemcacheProfilerStorage.php │ │ │ │ │ ├── FileProfilerStorage.php │ │ │ │ │ ├── MemcacheProfilerStorage.php │ │ │ │ │ ├── MemcachedProfilerStorage.php │ │ │ │ │ ├── MongoDbProfilerStorage.php │ │ │ │ │ ├── MysqlProfilerStorage.php │ │ │ │ │ ├── PdoProfilerStorage.php │ │ │ │ │ ├── Profile.php │ │ │ │ │ ├── Profiler.php │ │ │ │ │ ├── ProfilerStorageInterface.php │ │ │ │ │ ├── RedisProfilerStorage.php │ │ │ │ │ └── SqliteProfilerStorage.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TerminableInterface.php │ │ │ │ │ ├── Tests │ │ │ │ │ ├── Bundle │ │ │ │ │ │ └── BundleTest.php │ │ │ │ │ ├── CacheClearer │ │ │ │ │ │ └── ChainCacheClearerTest.php │ │ │ │ │ ├── CacheWarmer │ │ │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ │ │ └── CacheWarmerTest.php │ │ │ │ │ ├── ClientTest.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── EnvParametersResourceTest.php │ │ │ │ │ │ └── FileLocatorTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── ControllerResolverTest.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ │ │ ├── TimeDataCollectorTest.php │ │ │ │ │ │ └── Util │ │ │ │ │ │ │ └── ValueExporterTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── ContainerAwareHttpKernelTest.php │ │ │ │ │ │ └── MergeExtensionConfigurationPassTest.php │ │ │ │ │ ├── EventListener │ │ │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ │ │ ├── DumpListenerTest.php │ │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ │ ├── RouterListenerTest.php │ │ │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ │ │ └── TranslatorListenerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── ExtensionAbsentBundle │ │ │ │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ │ │ │ ├── ExtensionLoadedBundle │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ │ │ │ ├── ExtensionNotValidBundle │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ │ │ │ ├── ExtensionPresentBundle │ │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ │ │ │ └── FooCommand.php │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ │ │ │ └── ExtensionPresentBundle.php │ │ │ │ │ │ ├── FooBarBundle.php │ │ │ │ │ │ ├── KernelForOverrideName.php │ │ │ │ │ │ ├── KernelForTest.php │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── TestClient.php │ │ │ │ │ │ └── TestEventDispatcher.php │ │ │ │ │ ├── Fragment │ │ │ │ │ │ ├── EsiFragmentRendererTest.php │ │ │ │ │ │ ├── FragmentHandlerTest.php │ │ │ │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ │ │ │ ├── InlineFragmentRendererTest.php │ │ │ │ │ │ └── RoutableFragmentRendererTest.php │ │ │ │ │ ├── HttpCache │ │ │ │ │ │ ├── EsiTest.php │ │ │ │ │ │ ├── HttpCacheTest.php │ │ │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ │ │ ├── SsiTest.php │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ │ │ ├── HttpKernelTest.php │ │ │ │ │ ├── KernelTest.php │ │ │ │ │ ├── Logger.php │ │ │ │ │ ├── Profiler │ │ │ │ │ │ ├── AbstractProfilerStorageTest.php │ │ │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ │ │ ├── MemcacheProfilerStorageTest.php │ │ │ │ │ │ ├── MemcachedProfilerStorageTest.php │ │ │ │ │ │ ├── Mock │ │ │ │ │ │ │ ├── MemcacheMock.php │ │ │ │ │ │ │ ├── MemcachedMock.php │ │ │ │ │ │ │ └── RedisMock.php │ │ │ │ │ │ ├── MongoDbProfilerStorageTest.php │ │ │ │ │ │ ├── ProfilerTest.php │ │ │ │ │ │ ├── RedisProfilerStorageTest.php │ │ │ │ │ │ └── SqliteProfilerStorageTest.php │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ └── UriSignerTest.php │ │ │ │ │ ├── UriSigner.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── exclude.txt │ │ │ │ │ └── phpunit.xml.dist │ │ │ ├── TerminableInterface.php │ │ │ ├── Tests │ │ │ │ ├── Bundle │ │ │ │ │ └── BundleTest.php │ │ │ │ ├── CacheClearer │ │ │ │ │ ├── ChainCacheClearerTest.php │ │ │ │ │ └── Psr6CacheClearerTest.php │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ │ └── CacheWarmerTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ ├── Config │ │ │ │ │ ├── EnvParametersResourceTest.php │ │ │ │ │ └── FileLocatorTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── ArgumentResolver │ │ │ │ │ │ └── ServiceValueResolverTest.php │ │ │ │ │ ├── ArgumentResolverTest.php │ │ │ │ │ ├── ContainerControllerResolverTest.php │ │ │ │ │ └── ControllerResolverTest.php │ │ │ │ ├── ControllerMetadata │ │ │ │ │ ├── ArgumentMetadataFactoryTest.php │ │ │ │ │ └── ArgumentMetadataTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ ├── Compiler.log │ │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ │ ├── DataCollectorTest.php │ │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ │ ├── TimeDataCollectorTest.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── ValueExporterTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── FileLinkFormatterTest.php │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AddAnnotatedClassesToCachePassTest.php │ │ │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ │ │ ├── FragmentRendererPassTest.php │ │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ │ │ ├── LoggerPassTest.php │ │ │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ │ │ ├── RegisterControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── ResettableServicePassTest.php │ │ │ │ │ └── ServicesResetterTest.php │ │ │ │ ├── Event │ │ │ │ │ ├── FilterControllerArgumentsEventTest.php │ │ │ │ │ └── GetResponseForExceptionEventTest.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ │ ├── DumpListenerTest.php │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ ├── RouterListenerTest.php │ │ │ │ │ ├── SaveSessionListenerTest.php │ │ │ │ │ ├── SessionListenerTest.php │ │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ │ ├── TranslatorListenerTest.php │ │ │ │ │ └── ValidateRequestListenerTest.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedHttpExceptionTest.php │ │ │ │ │ ├── BadRequestHttpExceptionTest.php │ │ │ │ │ ├── ConflictHttpExceptionTest.php │ │ │ │ │ ├── GoneHttpExceptionTest.php │ │ │ │ │ ├── HttpExceptionTest.php │ │ │ │ │ ├── LengthRequiredHttpExceptionTest.php │ │ │ │ │ ├── MethodNotAllowedHttpExceptionTest.php │ │ │ │ │ ├── NotAcceptableHttpExceptionTest.php │ │ │ │ │ ├── NotFoundHttpExceptionTest.php │ │ │ │ │ ├── PreconditionFailedHttpExceptionTest.php │ │ │ │ │ ├── PreconditionRequiredHttpExceptionTest.php │ │ │ │ │ ├── ServiceUnavailableHttpExceptionTest.php │ │ │ │ │ ├── TooManyRequestsHttpExceptionTest.php │ │ │ │ │ ├── UnauthorizedHttpExceptionTest.php │ │ │ │ │ ├── UnprocessableEntityHttpExceptionTest.php │ │ │ │ │ └── UnsupportedMediaTypeHttpExceptionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── 123 │ │ │ │ │ │ └── Kernel123.php │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── ClearableService.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── BasicTypesController.php │ │ │ │ │ │ ├── ExtendingRequest.php │ │ │ │ │ │ ├── ExtendingSession.php │ │ │ │ │ │ ├── NullableController.php │ │ │ │ │ │ └── VariadicController.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ └── CloneVarDataCollector.php │ │ │ │ │ ├── ExtensionAbsentBundle │ │ │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ │ │ ├── ExtensionLoadedBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ │ │ ├── ExtensionNotValidBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ │ │ ├── ExtensionPresentBundle │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ │ │ └── FooCommand.php │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ │ │ └── ExtensionPresentBundle.php │ │ │ │ │ ├── KernelForOverrideName.php │ │ │ │ │ ├── KernelForTest.php │ │ │ │ │ ├── KernelWithoutBundles.php │ │ │ │ │ ├── ResettableService.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── TestClient.php │ │ │ │ │ └── TestEventDispatcher.php │ │ │ │ ├── Fragment │ │ │ │ │ ├── EsiFragmentRendererTest.php │ │ │ │ │ ├── FragmentHandlerTest.php │ │ │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ │ │ ├── InlineFragmentRendererTest.php │ │ │ │ │ ├── RoutableFragmentRendererTest.php │ │ │ │ │ └── SsiFragmentRendererTest.php │ │ │ │ ├── HttpCache │ │ │ │ │ ├── EsiTest.php │ │ │ │ │ ├── HttpCacheTest.php │ │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ │ │ ├── SsiTest.php │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ │ ├── HttpKernelTest.php │ │ │ │ ├── KernelTest.php │ │ │ │ ├── Log │ │ │ │ │ └── LoggerTest.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Profiler │ │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ │ └── ProfilerTest.php │ │ │ │ ├── TestHttpKernel.php │ │ │ │ └── UriSignerTest.php │ │ │ ├── UriSigner.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-php70 │ │ │ ├── LICENSE │ │ │ ├── Php70.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── stubs │ │ │ │ │ ├── ArithmeticError.php │ │ │ │ │ ├── AssertionError.php │ │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── ParseError.php │ │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ │ └── TypeError.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ └── routing │ │ │ ├── .gitignore │ │ │ ├── Annotation │ │ │ └── Route.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CompiledRoute.php │ │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── MissingMandatoryParametersException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── ResourceNotFoundException.php │ │ │ └── RouteNotFoundException.php │ │ │ ├── Generator │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ ├── Dumper │ │ │ │ ├── GeneratorDumper.php │ │ │ │ ├── GeneratorDumperInterface.php │ │ │ │ └── PhpGeneratorDumper.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlGeneratorInterface.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.php │ │ │ ├── ClosureLoader.php │ │ │ ├── Configurator │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ ├── ImportConfigurator.php │ │ │ │ ├── RouteConfigurator.php │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ ├── DependencyInjection │ │ │ │ └── ServiceRouterLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── ObjectRouteLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── routing │ │ │ │ └── routing-1.0.xsd │ │ │ ├── Matcher │ │ │ ├── Dumper │ │ │ │ ├── DumperCollection.php │ │ │ │ ├── DumperRoute.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ └── StaticPrefixCollection.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── TraceableUrlMatcher.php │ │ │ ├── UrlMatcher.php │ │ │ └── UrlMatcherInterface.php │ │ │ ├── README.md │ │ │ ├── RequestContext.php │ │ │ ├── RequestContextAwareInterface.php │ │ │ ├── Route.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCollectionBuilder.php │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteCompilerInterface.php │ │ │ ├── Router.php │ │ │ ├── RouterInterface.php │ │ │ ├── Symfony │ │ │ └── Component │ │ │ │ └── Routing │ │ │ │ ├── .gitignore │ │ │ │ ├── Annotation │ │ │ │ └── Route.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CompiledRoute.php │ │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ ├── MissingMandatoryParametersException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ └── RouteNotFoundException.php │ │ │ │ ├── Generator │ │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── GeneratorDumper.php │ │ │ │ │ ├── GeneratorDumperInterface.php │ │ │ │ │ └── PhpGeneratorDumper.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlGeneratorInterface.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Loader │ │ │ │ ├── AnnotationClassLoader.php │ │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ │ ├── AnnotationFileLoader.php │ │ │ │ ├── ClosureLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema │ │ │ │ │ └── routing │ │ │ │ │ └── routing-1.0.xsd │ │ │ │ ├── Matcher │ │ │ │ ├── ApacheUrlMatcher.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── ApacheMatcherDumper.php │ │ │ │ │ ├── DumperCollection.php │ │ │ │ │ ├── DumperPrefixCollection.php │ │ │ │ │ ├── DumperRoute.php │ │ │ │ │ ├── MatcherDumper.php │ │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ │ └── PhpMatcherDumper.php │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ │ ├── RequestMatcherInterface.php │ │ │ │ ├── TraceableUrlMatcher.php │ │ │ │ ├── UrlMatcher.php │ │ │ │ └── UrlMatcherInterface.php │ │ │ │ ├── README.md │ │ │ │ ├── RequestContext.php │ │ │ │ ├── RequestContextAwareInterface.php │ │ │ │ ├── Route.php │ │ │ │ ├── RouteCollection.php │ │ │ │ ├── RouteCompiler.php │ │ │ │ ├── RouteCompilerInterface.php │ │ │ │ ├── Router.php │ │ │ │ ├── RouterInterface.php │ │ │ │ ├── Tests │ │ │ │ ├── Annotation │ │ │ │ │ └── RouteTest.php │ │ │ │ ├── CompiledRouteTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ │ ├── BarClass.php │ │ │ │ │ │ └── FooClass.php │ │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ │ ├── annotated.php │ │ │ │ │ ├── dumper │ │ │ │ │ │ ├── url_matcher1.apache │ │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ │ ├── url_matcher2.apache │ │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ │ └── url_matcher3.php │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── foo1.xml │ │ │ │ │ ├── incomplete.yml │ │ │ │ │ ├── missing_id.xml │ │ │ │ │ ├── missing_path.xml │ │ │ │ │ ├── namespaceprefix.xml │ │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ │ ├── nonvalid.xml │ │ │ │ │ ├── nonvalid.yml │ │ │ │ │ ├── nonvalid2.yml │ │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ │ ├── nonvalidnode.xml │ │ │ │ │ ├── nonvalidroute.xml │ │ │ │ │ ├── null_values.xml │ │ │ │ │ ├── special_route_name.yml │ │ │ │ │ ├── validpattern.php │ │ │ │ │ ├── validpattern.xml │ │ │ │ │ ├── validpattern.yml │ │ │ │ │ ├── validresource.php │ │ │ │ │ ├── validresource.xml │ │ │ │ │ ├── validresource.yml │ │ │ │ │ ├── with_define_path_variable.php │ │ │ │ │ └── withdoctype.xml │ │ │ │ ├── Generator │ │ │ │ │ ├── Dumper │ │ │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ │ │ └── UrlGeneratorTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── Matcher │ │ │ │ │ ├── Dumper │ │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ │ │ │ ├── LegacyApacheMatcherDumperTest.php │ │ │ │ │ │ └── PhpMatcherDumperTest.php │ │ │ │ │ ├── LegacyApacheUrlMatcherTest.php │ │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ │ └── UrlMatcherTest.php │ │ │ │ ├── RequestContextTest.php │ │ │ │ ├── RouteCollectionTest.php │ │ │ │ ├── RouteCompilerTest.php │ │ │ │ ├── RouteTest.php │ │ │ │ └── RouterTest.php │ │ │ │ ├── composer.json │ │ │ │ ├── exclude.txt │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Tests │ │ │ ├── Annotation │ │ │ │ └── RouteTest.php │ │ │ ├── CompiledRouteTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── RoutingResolverPassTest.php │ │ │ ├── Fixtures │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ ├── BarClass.php │ │ │ │ │ ├── BazClass.php │ │ │ │ │ ├── FooClass.php │ │ │ │ │ └── FooTrait.php │ │ │ │ ├── CustomCompiledRoute.php │ │ │ │ ├── CustomRouteCompiler.php │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ │ ├── AnonymousClassInTrait.php │ │ │ │ │ ├── NoStartTagClass.php │ │ │ │ │ └── VariadicClass.php │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── annotated.php │ │ │ │ ├── bad_format.yml │ │ │ │ ├── bar.xml │ │ │ │ ├── controller │ │ │ │ │ ├── import__controller.xml │ │ │ │ │ ├── import__controller.yml │ │ │ │ │ ├── import_controller.xml │ │ │ │ │ ├── import_controller.yml │ │ │ │ │ ├── import_override_defaults.xml │ │ │ │ │ ├── import_override_defaults.yml │ │ │ │ │ ├── override_defaults.xml │ │ │ │ │ ├── override_defaults.yml │ │ │ │ │ ├── routing.xml │ │ │ │ │ └── routing.yml │ │ │ │ ├── directory │ │ │ │ │ ├── recurse │ │ │ │ │ │ ├── routes1.yml │ │ │ │ │ │ └── routes2.yml │ │ │ │ │ └── routes3.yml │ │ │ │ ├── directory_import │ │ │ │ │ └── import.yml │ │ │ │ ├── dumper │ │ │ │ │ ├── url_matcher0.php │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ ├── url_matcher3.php │ │ │ │ │ ├── url_matcher4.php │ │ │ │ │ ├── url_matcher5.php │ │ │ │ │ ├── url_matcher6.php │ │ │ │ │ └── url_matcher7.php │ │ │ │ ├── empty.yml │ │ │ │ ├── file_resource.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── list_defaults.xml │ │ │ │ ├── list_in_list_defaults.xml │ │ │ │ ├── list_in_map_defaults.xml │ │ │ │ ├── list_null_values.xml │ │ │ │ ├── map_defaults.xml │ │ │ │ ├── map_in_list_defaults.xml │ │ │ │ ├── map_in_map_defaults.xml │ │ │ │ ├── map_null_values.xml │ │ │ │ ├── missing_id.xml │ │ │ │ ├── missing_path.xml │ │ │ │ ├── namespaceprefix.xml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── nonvalid.xml │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonvalidnode.xml │ │ │ │ ├── nonvalidroute.xml │ │ │ │ ├── null_values.xml │ │ │ │ ├── php_dsl.php │ │ │ │ ├── php_dsl_sub.php │ │ │ │ ├── scalar_defaults.xml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── validpattern.php │ │ │ │ ├── validpattern.xml │ │ │ │ ├── validpattern.yml │ │ │ │ ├── validresource.php │ │ │ │ ├── validresource.xml │ │ │ │ ├── validresource.yml │ │ │ │ ├── with_define_path_variable.php │ │ │ │ └── withdoctype.xml │ │ │ ├── Generator │ │ │ │ ├── Dumper │ │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ │ └── UrlGeneratorTest.php │ │ │ ├── Loader │ │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ ├── DirectoryLoaderTest.php │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ └── YamlFileLoaderTest.php │ │ │ ├── Matcher │ │ │ │ ├── Dumper │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ ├── PhpMatcherDumperTest.php │ │ │ │ │ └── StaticPrefixCollectionTest.php │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ └── UrlMatcherTest.php │ │ │ ├── RequestContextTest.php │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ ├── RouteCollectionTest.php │ │ │ ├── RouteCompilerTest.php │ │ │ ├── RouteTest.php │ │ │ └── RouterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ └── twig │ │ └── twig │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── doc │ │ ├── advanced.rst │ │ ├── advanced_legacy.rst │ │ ├── api.rst │ │ ├── coding_standards.rst │ │ ├── deprecated.rst │ │ ├── filters │ │ │ ├── abs.rst │ │ │ ├── batch.rst │ │ │ ├── capitalize.rst │ │ │ ├── convert_encoding.rst │ │ │ ├── date.rst │ │ │ ├── date_modify.rst │ │ │ ├── default.rst │ │ │ ├── escape.rst │ │ │ ├── first.rst │ │ │ ├── format.rst │ │ │ ├── index.rst │ │ │ ├── join.rst │ │ │ ├── json_encode.rst │ │ │ ├── keys.rst │ │ │ ├── last.rst │ │ │ ├── length.rst │ │ │ ├── lower.rst │ │ │ ├── merge.rst │ │ │ ├── nl2br.rst │ │ │ ├── number_format.rst │ │ │ ├── raw.rst │ │ │ ├── replace.rst │ │ │ ├── reverse.rst │ │ │ ├── round.rst │ │ │ ├── slice.rst │ │ │ ├── sort.rst │ │ │ ├── split.rst │ │ │ ├── striptags.rst │ │ │ ├── title.rst │ │ │ ├── trim.rst │ │ │ ├── upper.rst │ │ │ └── url_encode.rst │ │ ├── functions │ │ │ ├── attribute.rst │ │ │ ├── block.rst │ │ │ ├── constant.rst │ │ │ ├── cycle.rst │ │ │ ├── date.rst │ │ │ ├── dump.rst │ │ │ ├── include.rst │ │ │ ├── index.rst │ │ │ ├── max.rst │ │ │ ├── min.rst │ │ │ ├── parent.rst │ │ │ ├── random.rst │ │ │ ├── range.rst │ │ │ ├── source.rst │ │ │ └── template_from_string.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── internals.rst │ │ ├── intro.rst │ │ ├── recipes.rst │ │ ├── tags │ │ │ ├── autoescape.rst │ │ │ ├── block.rst │ │ │ ├── do.rst │ │ │ ├── embed.rst │ │ │ ├── extends.rst │ │ │ ├── filter.rst │ │ │ ├── flush.rst │ │ │ ├── for.rst │ │ │ ├── from.rst │ │ │ ├── if.rst │ │ │ ├── import.rst │ │ │ ├── include.rst │ │ │ ├── index.rst │ │ │ ├── macro.rst │ │ │ ├── sandbox.rst │ │ │ ├── set.rst │ │ │ ├── spaceless.rst │ │ │ ├── use.rst │ │ │ ├── verbatim.rst │ │ │ └── with.rst │ │ ├── templates.rst │ │ └── tests │ │ │ ├── constant.rst │ │ │ ├── defined.rst │ │ │ ├── divisibleby.rst │ │ │ ├── empty.rst │ │ │ ├── even.rst │ │ │ ├── index.rst │ │ │ ├── iterable.rst │ │ │ ├── null.rst │ │ │ ├── odd.rst │ │ │ └── sameas.rst │ │ ├── exclude.txt │ │ ├── ext │ │ └── twig │ │ │ ├── .gitignore │ │ │ ├── config.m4 │ │ │ ├── config.w32 │ │ │ ├── php_twig.h │ │ │ └── twig.c │ │ ├── lib │ │ └── Twig │ │ │ ├── Autoloader.php │ │ │ ├── BaseNodeVisitor.php │ │ │ ├── Cache │ │ │ ├── Filesystem.php │ │ │ └── Null.php │ │ │ ├── CacheInterface.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerInterface.php │ │ │ ├── ContainerRuntimeLoader.php │ │ │ ├── Environment.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ ├── Loader.php │ │ │ ├── Runtime.php │ │ │ └── Syntax.php │ │ │ ├── ExistsLoaderInterface.php │ │ │ ├── ExpressionParser.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ ├── Core.php │ │ │ ├── Debug.php │ │ │ ├── Escaper.php │ │ │ ├── GlobalsInterface.php │ │ │ ├── InitRuntimeInterface.php │ │ │ ├── Optimizer.php │ │ │ ├── Profiler.php │ │ │ ├── Sandbox.php │ │ │ ├── Staging.php │ │ │ └── StringLoader.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FactoryRuntimeLoader.php │ │ │ ├── FileExtensionEscapingStrategy.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ ├── Function.php │ │ │ ├── Method.php │ │ │ └── Node.php │ │ │ ├── FilterCallableInterface.php │ │ │ ├── FilterInterface.php │ │ │ ├── Function.php │ │ │ ├── Function │ │ │ ├── Function.php │ │ │ ├── Method.php │ │ │ └── Node.php │ │ │ ├── FunctionCallableInterface.php │ │ │ ├── FunctionInterface.php │ │ │ ├── Lexer.php │ │ │ ├── LexerInterface.php │ │ │ ├── Loader │ │ │ ├── Array.php │ │ │ ├── Chain.php │ │ │ ├── Filesystem.php │ │ │ └── String.php │ │ │ ├── LoaderInterface.php │ │ │ ├── Markup.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── AutoEscape.php │ │ │ ├── Block.php │ │ │ ├── BlockReference.php │ │ │ ├── Body.php │ │ │ ├── CheckSecurity.php │ │ │ ├── Do.php │ │ │ ├── Embed.php │ │ │ ├── Expression.php │ │ │ ├── Expression │ │ │ │ ├── Array.php │ │ │ │ ├── AssignName.php │ │ │ │ ├── Binary.php │ │ │ │ ├── Binary │ │ │ │ │ ├── Add.php │ │ │ │ │ ├── And.php │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── EndsWith.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── FloorDiv.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterEqual.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── Less.php │ │ │ │ │ ├── LessEqual.php │ │ │ │ │ ├── Matches.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIn.php │ │ │ │ │ ├── Or.php │ │ │ │ │ ├── Power.php │ │ │ │ │ ├── Range.php │ │ │ │ │ ├── StartsWith.php │ │ │ │ │ └── Sub.php │ │ │ │ ├── BlockReference.php │ │ │ │ ├── Call.php │ │ │ │ ├── Conditional.php │ │ │ │ ├── Constant.php │ │ │ │ ├── ExtensionReference.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Filter │ │ │ │ │ └── Default.php │ │ │ │ ├── Function.php │ │ │ │ ├── GetAttr.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── Name.php │ │ │ │ ├── NullCoalesce.php │ │ │ │ ├── Parent.php │ │ │ │ ├── TempName.php │ │ │ │ ├── Test.php │ │ │ │ ├── Test │ │ │ │ │ ├── Constant.php │ │ │ │ │ ├── Defined.php │ │ │ │ │ ├── Divisibleby.php │ │ │ │ │ ├── Even.php │ │ │ │ │ ├── Null.php │ │ │ │ │ ├── Odd.php │ │ │ │ │ └── Sameas.php │ │ │ │ ├── Unary.php │ │ │ │ └── Unary │ │ │ │ │ ├── Neg.php │ │ │ │ │ ├── Not.php │ │ │ │ │ └── Pos.php │ │ │ ├── Flush.php │ │ │ ├── For.php │ │ │ ├── ForLoop.php │ │ │ ├── If.php │ │ │ ├── Import.php │ │ │ ├── Include.php │ │ │ ├── Macro.php │ │ │ ├── Module.php │ │ │ ├── Print.php │ │ │ ├── Sandbox.php │ │ │ ├── SandboxedPrint.php │ │ │ ├── Set.php │ │ │ ├── SetTemp.php │ │ │ ├── Spaceless.php │ │ │ ├── Text.php │ │ │ └── With.php │ │ │ ├── NodeCaptureInterface.php │ │ │ ├── NodeInterface.php │ │ │ ├── NodeOutputInterface.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeVisitor │ │ │ ├── Escaper.php │ │ │ ├── Optimizer.php │ │ │ ├── SafeAnalysis.php │ │ │ └── Sandbox.php │ │ │ ├── NodeVisitorInterface.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ ├── Profiler │ │ │ ├── Dumper │ │ │ │ ├── Base.php │ │ │ │ ├── Blackfire.php │ │ │ │ ├── Html.php │ │ │ │ └── Text.php │ │ │ ├── Node │ │ │ │ ├── EnterProfile.php │ │ │ │ └── LeaveProfile.php │ │ │ ├── NodeVisitor │ │ │ │ └── Profiler.php │ │ │ └── Profile.php │ │ │ ├── RuntimeLoaderInterface.php │ │ │ ├── Sandbox │ │ │ ├── SecurityError.php │ │ │ ├── SecurityNotAllowedFilterError.php │ │ │ ├── SecurityNotAllowedFunctionError.php │ │ │ ├── SecurityNotAllowedMethodError.php │ │ │ ├── SecurityNotAllowedPropertyError.php │ │ │ ├── SecurityNotAllowedTagError.php │ │ │ ├── SecurityPolicy.php │ │ │ └── SecurityPolicyInterface.php │ │ │ ├── SimpleFilter.php │ │ │ ├── SimpleFunction.php │ │ │ ├── SimpleTest.php │ │ │ ├── Source.php │ │ │ ├── SourceContextLoaderInterface.php │ │ │ ├── Template.php │ │ │ ├── TemplateInterface.php │ │ │ ├── TemplateWrapper.php │ │ │ ├── Test.php │ │ │ ├── Test │ │ │ ├── Function.php │ │ │ ├── IntegrationTestCase.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ └── NodeTestCase.php │ │ │ ├── TestCallableInterface.php │ │ │ ├── TestInterface.php │ │ │ ├── Token.php │ │ │ ├── TokenParser.php │ │ │ ├── TokenParser │ │ │ ├── AutoEscape.php │ │ │ ├── Block.php │ │ │ ├── Do.php │ │ │ ├── Embed.php │ │ │ ├── Extends.php │ │ │ ├── Filter.php │ │ │ ├── Flush.php │ │ │ ├── For.php │ │ │ ├── From.php │ │ │ ├── If.php │ │ │ ├── Import.php │ │ │ ├── Include.php │ │ │ ├── Macro.php │ │ │ ├── Sandbox.php │ │ │ ├── Set.php │ │ │ ├── Spaceless.php │ │ │ ├── Use.php │ │ │ └── With.php │ │ │ ├── TokenParserBroker.php │ │ │ ├── TokenParserBrokerInterface.php │ │ │ ├── TokenParserInterface.php │ │ │ ├── TokenStream.php │ │ │ └── Util │ │ │ ├── DeprecationCollector.php │ │ │ └── TemplateDirIterator.php │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Cache │ │ │ ├── CacheInterface.php │ │ │ ├── FilesystemCache.php │ │ │ └── NullCache.php │ │ ├── Compiler.php │ │ ├── Environment.php │ │ ├── Error │ │ │ ├── Error.php │ │ │ ├── LoaderError.php │ │ │ ├── RuntimeError.php │ │ │ └── SyntaxError.php │ │ ├── ExpressionParser.php │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── CoreExtension.php │ │ │ ├── DebugExtension.php │ │ │ ├── EscaperExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── GlobalsInterface.php │ │ │ ├── InitRuntimeInterface.php │ │ │ ├── OptimizerExtension.php │ │ │ ├── ProfilerExtension.php │ │ │ ├── RuntimeExtensionInterface.php │ │ │ ├── SandboxExtension.php │ │ │ ├── StagingExtension.php │ │ │ └── StringLoaderExtension.php │ │ ├── FileExtensionEscapingStrategy.php │ │ ├── Lexer.php │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── ChainLoader.php │ │ │ ├── ExistsLoaderInterface.php │ │ │ ├── FilesystemLoader.php │ │ │ ├── LoaderInterface.php │ │ │ └── SourceContextLoaderInterface.php │ │ ├── Markup.php │ │ ├── Node │ │ │ ├── AutoEscapeNode.php │ │ │ ├── BlockNode.php │ │ │ ├── BlockReferenceNode.php │ │ │ ├── BodyNode.php │ │ │ ├── CheckSecurityNode.php │ │ │ ├── DoNode.php │ │ │ ├── EmbedNode.php │ │ │ ├── Expression │ │ │ │ ├── AbstractExpression.php │ │ │ │ ├── ArrayExpression.php │ │ │ │ ├── AssignNameExpression.php │ │ │ │ ├── Binary │ │ │ │ │ ├── AbstractBinary.php │ │ │ │ │ ├── AddBinary.php │ │ │ │ │ ├── AndBinary.php │ │ │ │ │ ├── BitwiseAndBinary.php │ │ │ │ │ ├── BitwiseOrBinary.php │ │ │ │ │ ├── BitwiseXorBinary.php │ │ │ │ │ ├── ConcatBinary.php │ │ │ │ │ ├── DivBinary.php │ │ │ │ │ ├── EndsWithBinary.php │ │ │ │ │ ├── EqualBinary.php │ │ │ │ │ ├── FloorDivBinary.php │ │ │ │ │ ├── GreaterBinary.php │ │ │ │ │ ├── GreaterEqualBinary.php │ │ │ │ │ ├── InBinary.php │ │ │ │ │ ├── LessBinary.php │ │ │ │ │ ├── LessEqualBinary.php │ │ │ │ │ ├── MatchesBinary.php │ │ │ │ │ ├── ModBinary.php │ │ │ │ │ ├── MulBinary.php │ │ │ │ │ ├── NotEqualBinary.php │ │ │ │ │ ├── NotInBinary.php │ │ │ │ │ ├── OrBinary.php │ │ │ │ │ ├── PowerBinary.php │ │ │ │ │ ├── RangeBinary.php │ │ │ │ │ ├── StartsWithBinary.php │ │ │ │ │ └── SubBinary.php │ │ │ │ ├── BlockReferenceExpression.php │ │ │ │ ├── CallExpression.php │ │ │ │ ├── ConditionalExpression.php │ │ │ │ ├── ConstantExpression.php │ │ │ │ ├── Filter │ │ │ │ │ └── DefaultFilter.php │ │ │ │ ├── FilterExpression.php │ │ │ │ ├── FunctionExpression.php │ │ │ │ ├── GetAttrExpression.php │ │ │ │ ├── MethodCallExpression.php │ │ │ │ ├── NameExpression.php │ │ │ │ ├── NullCoalesceExpression.php │ │ │ │ ├── ParentExpression.php │ │ │ │ ├── TempNameExpression.php │ │ │ │ ├── Test │ │ │ │ │ ├── ConstantTest.php │ │ │ │ │ ├── DefinedTest.php │ │ │ │ │ ├── DivisiblebyTest.php │ │ │ │ │ ├── EvenTest.php │ │ │ │ │ ├── NullTest.php │ │ │ │ │ ├── OddTest.php │ │ │ │ │ └── SameasTest.php │ │ │ │ ├── TestExpression.php │ │ │ │ └── Unary │ │ │ │ │ ├── AbstractUnary.php │ │ │ │ │ ├── NegUnary.php │ │ │ │ │ ├── NotUnary.php │ │ │ │ │ └── PosUnary.php │ │ │ ├── FlushNode.php │ │ │ ├── ForLoopNode.php │ │ │ ├── ForNode.php │ │ │ ├── IfNode.php │ │ │ ├── ImportNode.php │ │ │ ├── IncludeNode.php │ │ │ ├── MacroNode.php │ │ │ ├── ModuleNode.php │ │ │ ├── Node.php │ │ │ ├── NodeCaptureInterface.php │ │ │ ├── NodeOutputInterface.php │ │ │ ├── PrintNode.php │ │ │ ├── SandboxNode.php │ │ │ ├── SandboxedPrintNode.php │ │ │ ├── SetNode.php │ │ │ ├── SetTempNode.php │ │ │ ├── SpacelessNode.php │ │ │ ├── TextNode.php │ │ │ └── WithNode.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor │ │ │ ├── AbstractNodeVisitor.php │ │ │ ├── EscaperNodeVisitor.php │ │ │ ├── NodeVisitorInterface.php │ │ │ ├── OptimizerNodeVisitor.php │ │ │ ├── SafeAnalysisNodeVisitor.php │ │ │ └── SandboxNodeVisitor.php │ │ ├── Parser.php │ │ ├── Profiler │ │ │ ├── Dumper │ │ │ │ ├── BaseDumper.php │ │ │ │ ├── BlackfireDumper.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ └── TextDumper.php │ │ │ ├── Node │ │ │ │ ├── EnterProfileNode.php │ │ │ │ └── LeaveProfileNode.php │ │ │ ├── NodeVisitor │ │ │ │ └── ProfilerNodeVisitor.php │ │ │ └── Profile.php │ │ ├── RuntimeLoader │ │ │ ├── ContainerRuntimeLoader.php │ │ │ ├── FactoryRuntimeLoader.php │ │ │ └── RuntimeLoaderInterface.php │ │ ├── Sandbox │ │ │ ├── SecurityError.php │ │ │ ├── SecurityNotAllowedFilterError.php │ │ │ ├── SecurityNotAllowedFunctionError.php │ │ │ ├── SecurityNotAllowedMethodError.php │ │ │ ├── SecurityNotAllowedPropertyError.php │ │ │ ├── SecurityNotAllowedTagError.php │ │ │ ├── SecurityPolicy.php │ │ │ └── SecurityPolicyInterface.php │ │ ├── Source.php │ │ ├── Template.php │ │ ├── TemplateWrapper.php │ │ ├── Test │ │ │ ├── IntegrationTestCase.php │ │ │ └── NodeTestCase.php │ │ ├── Token.php │ │ ├── TokenParser │ │ │ ├── AbstractTokenParser.php │ │ │ ├── AutoEscapeTokenParser.php │ │ │ ├── BlockTokenParser.php │ │ │ ├── DoTokenParser.php │ │ │ ├── EmbedTokenParser.php │ │ │ ├── ExtendsTokenParser.php │ │ │ ├── FilterTokenParser.php │ │ │ ├── FlushTokenParser.php │ │ │ ├── ForTokenParser.php │ │ │ ├── FromTokenParser.php │ │ │ ├── IfTokenParser.php │ │ │ ├── ImportTokenParser.php │ │ │ ├── IncludeTokenParser.php │ │ │ ├── MacroTokenParser.php │ │ │ ├── SandboxTokenParser.php │ │ │ ├── SetTokenParser.php │ │ │ ├── SpacelessTokenParser.php │ │ │ ├── TokenParserInterface.php │ │ │ ├── UseTokenParser.php │ │ │ └── WithTokenParser.php │ │ ├── TokenStream.php │ │ ├── TwigFilter.php │ │ ├── TwigFunction.php │ │ ├── TwigTest.php │ │ └── Util │ │ │ ├── DeprecationCollector.php │ │ │ └── TemplateDirIterator.php │ │ └── test │ │ ├── Twig │ │ └── Tests │ │ │ ├── AutoloaderTest.php │ │ │ ├── Cache │ │ │ └── FilesystemTest.php │ │ │ ├── CompilerTest.php │ │ │ ├── ContainerRuntimeLoaderTest.php │ │ │ ├── CustomExtensionTest.php │ │ │ ├── EnvironmentTest.php │ │ │ ├── ErrorTest.php │ │ │ ├── ExpressionParserTest.php │ │ │ ├── Extension │ │ │ ├── CoreTest.php │ │ │ └── SandboxTest.php │ │ │ ├── FactoryRuntimeLoaderTest.php │ │ │ ├── FileCachingTest.php │ │ │ ├── FileExtensionEscapingStrategyTest.php │ │ │ ├── FilesystemHelper.php │ │ │ ├── Fixtures │ │ │ ├── autoescape │ │ │ │ ├── block.test │ │ │ │ ├── filename.test │ │ │ │ └── name.test │ │ │ ├── errors │ │ │ │ ├── base.html │ │ │ │ └── index.html │ │ │ ├── exceptions │ │ │ │ ├── child_contents_outside_blocks.test │ │ │ │ ├── multiline_array_with_undefined_variable.test │ │ │ │ ├── multiline_array_with_undefined_variable_again.test │ │ │ │ ├── multiline_function_with_undefined_variable.test │ │ │ │ ├── multiline_function_with_unknown_argument.test │ │ │ │ ├── multiline_tag_with_undefined_variable.test │ │ │ │ ├── syntax_error_in_reused_template.test │ │ │ │ ├── unclosed_tag.test │ │ │ │ ├── undefined_parent.test │ │ │ │ ├── undefined_template_in_child_template.test │ │ │ │ └── undefined_trait.test │ │ │ ├── expressions │ │ │ │ ├── _self.test │ │ │ │ ├── array.test │ │ │ │ ├── array_call.test │ │ │ │ ├── binary.test │ │ │ │ ├── bitwise.test │ │ │ │ ├── comparison.test │ │ │ │ ├── divisibleby.test │ │ │ │ ├── dotdot.test │ │ │ │ ├── ends_with.test │ │ │ │ ├── grouping.test │ │ │ │ ├── literals.test │ │ │ │ ├── magic_call.test │ │ │ │ ├── matches.test │ │ │ │ ├── method_call.test │ │ │ │ ├── negative_numbers.test │ │ │ │ ├── operators_as_variables.test │ │ │ │ ├── postfix.test │ │ │ │ ├── power.test │ │ │ │ ├── sameas.test │ │ │ │ ├── starts_with.test │ │ │ │ ├── strings.test │ │ │ │ ├── ternary_operator.test │ │ │ │ ├── ternary_operator_noelse.test │ │ │ │ ├── ternary_operator_nothen.test │ │ │ │ ├── two_word_operators_as_variables.test │ │ │ │ ├── unary.test │ │ │ │ ├── unary_macro_arguments.test │ │ │ │ └── unary_precedence.test │ │ │ ├── filters │ │ │ │ ├── abs.test │ │ │ │ ├── batch.test │ │ │ │ ├── batch_float.test │ │ │ │ ├── batch_with_empty_fill.test │ │ │ │ ├── batch_with_exact_elements.test │ │ │ │ ├── batch_with_fill.test │ │ │ │ ├── batch_with_keys.test │ │ │ │ ├── batch_with_zero_elements.test │ │ │ │ ├── convert_encoding.test │ │ │ │ ├── date.test │ │ │ │ ├── date_default_format.test │ │ │ │ ├── date_default_format_interval.test │ │ │ │ ├── date_immutable.test │ │ │ │ ├── date_interval.test │ │ │ │ ├── date_modify.test │ │ │ │ ├── date_namedargs.test │ │ │ │ ├── default.test │ │ │ │ ├── dynamic_filter.test │ │ │ │ ├── escape.test │ │ │ │ ├── escape_html_attr.test │ │ │ │ ├── escape_javascript.test │ │ │ │ ├── escape_non_supported_charset.test │ │ │ │ ├── first.test │ │ │ │ ├── force_escape.test │ │ │ │ ├── format.test │ │ │ │ ├── join.test │ │ │ │ ├── json_encode.test │ │ │ │ ├── last.test │ │ │ │ ├── length.test │ │ │ │ ├── length_utf8.test │ │ │ │ ├── merge.test │ │ │ │ ├── nl2br.test │ │ │ │ ├── number_format.test │ │ │ │ ├── number_format_default.test │ │ │ │ ├── replace.test │ │ │ │ ├── replace_invalid_arg.test │ │ │ │ ├── reverse.test │ │ │ │ ├── round.test │ │ │ │ ├── slice.test │ │ │ │ ├── sort.test │ │ │ │ ├── special_chars.test │ │ │ │ ├── split.test │ │ │ │ ├── split_utf8.test │ │ │ │ ├── static_calls.test │ │ │ │ ├── trim.test │ │ │ │ ├── urlencode.test │ │ │ │ └── urlencode_deprecated.test │ │ │ ├── functions │ │ │ │ ├── attribute.test │ │ │ │ ├── block.test │ │ │ │ ├── block_with_template.test │ │ │ │ ├── block_without_name.test │ │ │ │ ├── constant.test │ │ │ │ ├── cycle.test │ │ │ │ ├── date.test │ │ │ │ ├── date_namedargs.test │ │ │ │ ├── dump.test │ │ │ │ ├── dump_array.test │ │ │ │ ├── dynamic_function.test │ │ │ │ ├── include │ │ │ │ │ ├── assignment.test │ │ │ │ │ ├── autoescaping.test │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── expression.test │ │ │ │ │ ├── ignore_missing.test │ │ │ │ │ ├── missing.test │ │ │ │ │ ├── missing_nested.test │ │ │ │ │ ├── sandbox.test │ │ │ │ │ ├── sandbox_disabling.test │ │ │ │ │ ├── sandbox_disabling_ignore_missing.test │ │ │ │ │ ├── template_instance.test │ │ │ │ │ ├── templates_as_array.test │ │ │ │ │ ├── with_context.test │ │ │ │ │ └── with_variables.test │ │ │ │ ├── magic_call.test │ │ │ │ ├── magic_call53.test │ │ │ │ ├── max.test │ │ │ │ ├── min.test │ │ │ │ ├── range.test │ │ │ │ ├── recursive_block_with_inheritance.test │ │ │ │ ├── source.test │ │ │ │ ├── special_chars.test │ │ │ │ ├── static_calls.test │ │ │ │ └── template_from_string.test │ │ │ ├── macros │ │ │ │ ├── default_values.test │ │ │ │ ├── nested_calls.test │ │ │ │ ├── reserved_variables.test │ │ │ │ ├── simple.test │ │ │ │ ├── varargs.test │ │ │ │ ├── varargs_argument.test │ │ │ │ └── with_filters.test │ │ │ ├── regression │ │ │ │ ├── combined_debug_info.test │ │ │ │ ├── empty_token.test │ │ │ │ ├── issue_1143.test │ │ │ │ ├── multi_word_tests.test │ │ │ │ ├── simple_xml_element.test │ │ │ │ └── strings_like_numbers.test │ │ │ ├── tags │ │ │ │ ├── autoescape │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── blocks.test │ │ │ │ │ ├── double_escaping.test │ │ │ │ │ ├── functions.test │ │ │ │ │ ├── literal.test │ │ │ │ │ ├── nested.test │ │ │ │ │ ├── objects.test │ │ │ │ │ ├── raw.test │ │ │ │ │ ├── strategy.legacy.test │ │ │ │ │ ├── strategy.test │ │ │ │ │ ├── type.test │ │ │ │ │ ├── with_filters.test │ │ │ │ │ ├── with_filters_arguments.test │ │ │ │ │ ├── with_pre_escape_filters.test │ │ │ │ │ └── with_preserves_safety_filters.test │ │ │ │ ├── block │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── block_unique_name.test │ │ │ │ │ └── special_chars.test │ │ │ │ ├── embed │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── complex_dynamic_parent.test │ │ │ │ │ ├── dynamic_parent.test │ │ │ │ │ ├── error_line.test │ │ │ │ │ ├── multiple.test │ │ │ │ │ ├── nested.test │ │ │ │ │ └── with_extends.test │ │ │ │ ├── filter │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── json_encode.test │ │ │ │ │ ├── multiple.test │ │ │ │ │ ├── nested.test │ │ │ │ │ ├── with_for_tag.test │ │ │ │ │ └── with_if_tag.test │ │ │ │ ├── for │ │ │ │ │ ├── condition.test │ │ │ │ │ ├── context.test │ │ │ │ │ ├── else.test │ │ │ │ │ ├── inner_variables.test │ │ │ │ │ ├── keys.test │ │ │ │ │ ├── keys_and_values.test │ │ │ │ │ ├── loop_context.test │ │ │ │ │ ├── loop_context_local.test │ │ │ │ │ ├── loop_not_defined.test │ │ │ │ │ ├── loop_not_defined_cond.test │ │ │ │ │ ├── nested_else.test │ │ │ │ │ ├── objects.test │ │ │ │ │ ├── objects_countable.test │ │ │ │ │ ├── recursive.test │ │ │ │ │ └── values.test │ │ │ │ ├── from.test │ │ │ │ ├── if │ │ │ │ │ ├── basic.test │ │ │ │ │ └── expression.test │ │ │ │ ├── include │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── expression.test │ │ │ │ │ ├── ignore_missing.test │ │ │ │ │ ├── missing.test │ │ │ │ │ ├── missing_nested.test │ │ │ │ │ ├── only.test │ │ │ │ │ ├── template_instance.test │ │ │ │ │ ├── templates_as_array.test │ │ │ │ │ └── with_variables.test │ │ │ │ ├── inheritance │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── block_expr.test │ │ │ │ │ ├── block_expr2.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── dynamic.test │ │ │ │ │ ├── empty.test │ │ │ │ │ ├── extends_as_array.test │ │ │ │ │ ├── extends_as_array_with_empty_name.test │ │ │ │ │ ├── extends_as_array_with_null_name.test │ │ │ │ │ ├── multiple.test │ │ │ │ │ ├── multiple_dynamic.test │ │ │ │ │ ├── nested_blocks.test │ │ │ │ │ ├── nested_blocks_parent_only.test │ │ │ │ │ ├── nested_inheritance.test │ │ │ │ │ ├── parent.test │ │ │ │ │ ├── parent_change.test │ │ │ │ │ ├── parent_in_a_block.test │ │ │ │ │ ├── parent_isolation.test │ │ │ │ │ ├── parent_nested.test │ │ │ │ │ ├── parent_without_extends.test │ │ │ │ │ ├── parent_without_extends_but_traits.test │ │ │ │ │ ├── template_instance.test │ │ │ │ │ └── use.test │ │ │ │ ├── macro │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── endmacro_name.test │ │ │ │ │ ├── external.test │ │ │ │ │ ├── from.test │ │ │ │ │ ├── from_with_reserved_name.test │ │ │ │ │ ├── global.test │ │ │ │ │ ├── import_with_reserved_nam.test │ │ │ │ │ ├── reserved_name.test │ │ │ │ │ ├── self_import.test │ │ │ │ │ ├── special_chars.test │ │ │ │ │ └── super_globals.test │ │ │ │ ├── raw │ │ │ │ │ ├── basic.legacy.test │ │ │ │ │ ├── mixed_usage_with_raw.legacy.test │ │ │ │ │ └── whitespace_control.legacy.test │ │ │ │ ├── sandbox │ │ │ │ │ ├── not_valid1.test │ │ │ │ │ ├── not_valid2.test │ │ │ │ │ └── simple.test │ │ │ │ ├── set │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── capture-empty.test │ │ │ │ │ ├── capture.test │ │ │ │ │ └── expression.test │ │ │ │ ├── spaceless │ │ │ │ │ └── simple.test │ │ │ │ ├── special_chars.test │ │ │ │ ├── trim_block.test │ │ │ │ ├── use │ │ │ │ │ ├── aliases.test │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── deep.test │ │ │ │ │ ├── deep_empty.test │ │ │ │ │ ├── inheritance.test │ │ │ │ │ ├── inheritance2.test │ │ │ │ │ ├── multiple.test │ │ │ │ │ ├── multiple_aliases.test │ │ │ │ │ ├── parent_block.test │ │ │ │ │ ├── parent_block2.test │ │ │ │ │ ├── parent_block3.test │ │ │ │ │ └── use_with_parent.test │ │ │ │ ├── verbatim │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── mixed_usage_with_raw.test │ │ │ │ │ └── whitespace_control.test │ │ │ │ └── with │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── expression.test │ │ │ │ │ ├── nested.test │ │ │ │ │ ├── with_no_hash.test │ │ │ │ │ └── with_only.test │ │ │ └── tests │ │ │ │ ├── array.test │ │ │ │ ├── constant.test │ │ │ │ ├── defined.test │ │ │ │ ├── defined_for_attribute.test │ │ │ │ ├── defined_for_blocks.test │ │ │ │ ├── defined_for_blocks_with_template.test │ │ │ │ ├── defined_for_constants.test │ │ │ │ ├── empty.test │ │ │ │ ├── even.test │ │ │ │ ├── in.test │ │ │ │ ├── in_with_objects.test │ │ │ │ ├── iterable.test │ │ │ │ ├── null_coalesce.test │ │ │ │ └── odd.test │ │ │ ├── IntegrationTest.php │ │ │ ├── LegacyFixtures │ │ │ ├── autoescape │ │ │ │ └── filename.legacy.test │ │ │ ├── functions │ │ │ │ └── undefined_block.legacy.test │ │ │ └── test.legacy.test │ │ │ ├── LegacyIntegrationTest.php │ │ │ ├── LexerTest.php │ │ │ ├── Loader │ │ │ ├── ArrayTest.php │ │ │ ├── ChainTest.php │ │ │ ├── FilesystemTest.php │ │ │ └── Fixtures │ │ │ │ ├── inheritance │ │ │ │ ├── array_inheritance_empty_parent.html.twig │ │ │ │ ├── array_inheritance_nonexistent_parent.html.twig │ │ │ │ ├── array_inheritance_null_parent.html.twig │ │ │ │ ├── array_inheritance_valid_parent.html.twig │ │ │ │ ├── parent.html.twig │ │ │ │ └── spare_parent.html.twig │ │ │ │ ├── named │ │ │ │ └── index.html │ │ │ │ ├── named_bis │ │ │ │ └── index.html │ │ │ │ ├── named_final │ │ │ │ └── index.html │ │ │ │ ├── named_quater │ │ │ │ └── named_absolute.html │ │ │ │ ├── named_ter │ │ │ │ └── index.html │ │ │ │ ├── normal │ │ │ │ └── index.html │ │ │ │ ├── normal_bis │ │ │ │ └── index.html │ │ │ │ ├── normal_final │ │ │ │ └── index.html │ │ │ │ ├── normal_ter │ │ │ │ └── index.html │ │ │ │ ├── phar │ │ │ │ └── phar-sample.phar │ │ │ │ └── themes │ │ │ │ ├── theme1 │ │ │ │ └── blocks.html.twig │ │ │ │ └── theme2 │ │ │ │ └── blocks.html.twig │ │ │ ├── NativeExtensionTest.php │ │ │ ├── Node │ │ │ ├── AutoEscapeTest.php │ │ │ ├── BlockReferenceTest.php │ │ │ ├── BlockTest.php │ │ │ ├── DoTest.php │ │ │ ├── Expression │ │ │ │ ├── ArrayTest.php │ │ │ │ ├── AssignNameTest.php │ │ │ │ ├── Binary │ │ │ │ │ ├── AddTest.php │ │ │ │ │ ├── AndTest.php │ │ │ │ │ ├── ConcatTest.php │ │ │ │ │ ├── DivTest.php │ │ │ │ │ ├── FloorDivTest.php │ │ │ │ │ ├── ModTest.php │ │ │ │ │ ├── MulTest.php │ │ │ │ │ ├── OrTest.php │ │ │ │ │ └── SubTest.php │ │ │ │ ├── CallTest.php │ │ │ │ ├── ConditionalTest.php │ │ │ │ ├── ConstantTest.php │ │ │ │ ├── FilterTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── GetAttrTest.php │ │ │ │ ├── NameTest.php │ │ │ │ ├── NullCoalesceTest.php │ │ │ │ ├── PHP53 │ │ │ │ │ ├── FilterInclude.php │ │ │ │ │ ├── FunctionInclude.php │ │ │ │ │ └── TestInclude.php │ │ │ │ ├── ParentTest.php │ │ │ │ ├── TestTest.php │ │ │ │ └── Unary │ │ │ │ │ ├── NegTest.php │ │ │ │ │ ├── NotTest.php │ │ │ │ │ └── PosTest.php │ │ │ ├── ForTest.php │ │ │ ├── IfTest.php │ │ │ ├── ImportTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── MacroTest.php │ │ │ ├── ModuleTest.php │ │ │ ├── PrintTest.php │ │ │ ├── SandboxTest.php │ │ │ ├── SandboxedPrintTest.php │ │ │ ├── SetTest.php │ │ │ ├── SpacelessTest.php │ │ │ └── TextTest.php │ │ │ ├── NodeVisitor │ │ │ └── OptimizerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── Profiler │ │ │ ├── Dumper │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── BlackfireTest.php │ │ │ │ ├── HtmlTest.php │ │ │ │ └── TextTest.php │ │ │ └── ProfileTest.php │ │ │ ├── TemplateTest.php │ │ │ ├── TemplateWrapperTest.php │ │ │ ├── TokenStreamTest.php │ │ │ ├── Util │ │ │ └── DeprecationCollectorTest.php │ │ │ └── escapingTest.php │ │ └── bootstrap.php ├── swiftmailer │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── VERSION │ └── lib │ │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── DummyKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_init.php │ │ ├── swift_required.php │ │ └── swift_required_pear.php └── tcpdf │ ├── CHANGELOG.TXT │ ├── LICENSE.TXT │ ├── README.TXT │ ├── composer.json │ ├── config │ └── tcpdf_config.php │ ├── fonts │ ├── courier.php │ ├── courierb.php │ ├── courierbi.php │ ├── courieri.php │ ├── dejavusans.ctg.z │ ├── dejavusans.php │ ├── dejavusans.z │ ├── dejavusansb.ctg.z │ ├── dejavusansb.php │ ├── dejavusansb.z │ ├── dejavusansbi.ctg.z │ ├── dejavusansbi.php │ ├── dejavusansbi.z │ ├── helvetica.php │ ├── helveticab.php │ ├── helveticabi.php │ ├── helveticai.php │ ├── symbol.php │ ├── times.php │ ├── timesb.php │ ├── timesbi.php │ ├── timesi.php │ └── zapfdingbats.php │ ├── include │ ├── barcodes │ │ ├── datamatrix.php │ │ ├── pdf417.php │ │ └── qrcode.php │ ├── sRGB.icc │ ├── tcpdf_colors.php │ ├── tcpdf_filters.php │ ├── tcpdf_font_data.php │ ├── tcpdf_fonts.php │ ├── tcpdf_images.php │ └── tcpdf_static.php │ ├── tcpdf.php │ ├── tcpdf_autoconfig.php │ ├── tcpdf_barcodes_1d.php │ ├── tcpdf_barcodes_2d.php │ ├── tcpdf_import.php │ ├── tcpdf_parser.php │ └── tools │ ├── .htaccess │ ├── convert_fonts_examples.txt │ └── tcpdf_addfont.php ├── license.txt ├── log ├── .htaccess ├── index.php └── web.config ├── pages ├── UI.php ├── UniversalSearch.php ├── ajax.csvimport.php ├── ajax.document.php ├── ajax.render.php ├── ajax.searchform.php ├── audit.php ├── csvimport.php ├── exec.php ├── graphviz.php ├── index.php ├── logoff.php ├── navigator.php ├── notifications.php ├── opensearch.xml.php ├── preferences.php ├── run_query.php └── schema.php ├── phpdoc.dist.xml ├── portal ├── images │ ├── bg.png │ ├── company_logo.png │ ├── dockbar_bg.png │ └── header_bg.png ├── index.php ├── portal.css └── readme.txt ├── readme.txt ├── setup ├── ajax.dataloader.php ├── applicationinstaller.class.inc.php ├── backup.class.inc.php ├── compat │ └── domcompat.php ├── compiler.class.inc.php ├── email.test.php ├── exclude.txt ├── extensionsmap.class.inc.php ├── index.php ├── install │ ├── apache.conf.tpl │ ├── cron.tpl │ ├── install.sh │ └── logrotate.tpl ├── itop_design.xsd ├── itopdesignformat.class.inc.php ├── jquery.progression.js ├── licenses │ └── community-licences.xml ├── modelfactory.class.inc.php ├── modulediscovery.class.inc.php ├── moduleinstallation.class.inc.php ├── moduleinstaller.class.inc.php ├── orange-progress.gif ├── packaging │ └── rpm │ │ └── itop-itsm.spec ├── parameters.class.inc.php ├── phpinfo.php ├── runtimeenv.class.inc.php ├── setup.js ├── setuppage.class.inc.php ├── setuputils.class.inc.php ├── tar.php ├── wizardcontroller.class.inc.php ├── wizardsteps.class.inc.php └── xmldataloader.class.inc.php ├── sources ├── application │ └── search │ │ ├── ajaxsearchexception.class.inc.php │ │ ├── criterionconversion │ │ ├── criteriontooql.class.inc.php │ │ └── criteriontosearchform.class.inc.php │ │ ├── criterionconversionabstract.class.inc.php │ │ ├── criterionparser.class.inc.php │ │ └── searchform.class.inc.php ├── autoload.php ├── form │ ├── field │ │ ├── blobfield.class.inc.php │ │ ├── caselogfield.class.inc.php │ │ ├── checkboxfield.class.inc.php │ │ ├── datefield.class.inc.php │ │ ├── datetimefield.class.inc.php │ │ ├── durationfield.class.inc.php │ │ ├── emailfield.class.inc.php │ │ ├── field.class.inc.php │ │ ├── fileuploadfield.class.inc.php │ │ ├── hiddenfield.class.inc.php │ │ ├── imagefield.class.inc.php │ │ ├── labelfield.class.inc.php │ │ ├── linkedsetfield.class.inc.php │ │ ├── multiplechoicesfield.class.inc.php │ │ ├── multipleselectfield.class.inc.php │ │ ├── passwordfield.class.inc.php │ │ ├── phonefield.class.inc.php │ │ ├── radiofield.class.inc.php │ │ ├── selectfield.class.inc.php │ │ ├── selectobjectfield.class.inc.php │ │ ├── stringfield.class.inc.php │ │ ├── subformfield.class.inc.php │ │ ├── textareafield.class.inc.php │ │ ├── textfield.class.inc.php │ │ └── urlfield.class.inc.php │ ├── form.class.inc.php │ ├── formmanager.class.inc.php │ └── validator │ │ ├── integervalidator.class.inc.php │ │ ├── mandatoryvalidator.class.inc.php │ │ ├── notemptyextkeyvalidator.class.inc.php │ │ └── validator.class.inc.php └── renderer │ ├── bootstrap │ ├── bsformrenderer.class.inc.php │ └── fieldrenderer │ │ ├── bsfileuploadfieldrenderer.class.inc.php │ │ ├── bslinkedsetfieldrenderer.class.inc.php │ │ ├── bsselectobjectfieldrenderer.class.inc.php │ │ ├── bssimplefieldrenderer.class.inc.php │ │ └── bssubformfieldrenderer.class.inc.php │ ├── console │ ├── consoleformrenderer.class.inc.php │ └── fieldrenderer │ │ ├── consoleselectobjectfieldrenderer.class.inc.php │ │ ├── consolesimplefieldrenderer.class.inc.php │ │ └── consolesubformfieldrenderer.class.inc.php │ ├── fieldrenderer.class.inc.php │ ├── formrenderer.class.inc.php │ └── renderingoutput.class.inc.php ├── synchro ├── priv_sync_chunk.php ├── replica.php ├── synchro_exec.php ├── synchro_import.php └── synchrodatasource.class.inc.php ├── test ├── GroupByAndFunctions.php ├── ItopDataTestCase.php ├── ItopTestCase.php ├── application │ └── search │ │ ├── CriterionConversionTest.php │ │ ├── CriterionParserTest.php │ │ └── SearchFormTest.php ├── benchmark.php ├── composer.json ├── composer.lock ├── config-test-farm.php ├── core │ ├── DBObjectTest.php │ ├── DBSearchTest.php │ ├── UserRightsTest.php │ ├── apcEmulationTest.php │ ├── dictTest.php │ ├── mockApcEmulation.incphp │ ├── mockDict.incphp │ └── ormLinkSetTest.php ├── display_cache_content.php ├── itop-tickets │ └── itopTicketTest.php ├── phpunit.xml.dist ├── replay_query_log.php ├── setup │ └── DBBackupTest.php ├── test.class.inc.php ├── test.php ├── testlist.inc.php └── unittestautoload.php ├── web.config └── webservices ├── backoffice.dataloader.php ├── createfrommail.php ├── cron.cmd ├── cron.distrib ├── cron.php ├── exclude.txt ├── export-v2.php ├── export.php ├── import.php ├── itop.wsdl.php ├── itop.wsdl.tpl ├── itoprest.examples.php ├── itopsoap.examples.php ├── itopsoaptypes.class.inc.php ├── rest.php ├── soapserver.php ├── webservices.basic.php └── webservices.class.inc.php /application/Html2Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/Html2Text.php -------------------------------------------------------------------------------- /application/Html2TextException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/Html2TextException.php -------------------------------------------------------------------------------- /application/ajaxwebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/ajaxwebpage.class.inc.php -------------------------------------------------------------------------------- /application/application.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/application.inc.php -------------------------------------------------------------------------------- /application/applicationextension.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/applicationextension.inc.php -------------------------------------------------------------------------------- /application/audit.category.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/audit.category.class.inc.php -------------------------------------------------------------------------------- /application/audit.rule.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/audit.rule.class.inc.php -------------------------------------------------------------------------------- /application/capturewebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/capturewebpage.class.inc.php -------------------------------------------------------------------------------- /application/clipage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/clipage.class.inc.php -------------------------------------------------------------------------------- /application/cmdbabstract.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/cmdbabstract.class.inc.php -------------------------------------------------------------------------------- /application/csvpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/csvpage.class.inc.php -------------------------------------------------------------------------------- /application/dashboard.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/dashboard.class.inc.php -------------------------------------------------------------------------------- /application/dashboardlayout.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/dashboardlayout.class.inc.php -------------------------------------------------------------------------------- /application/dashlet.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/dashlet.class.inc.php -------------------------------------------------------------------------------- /application/datamodel.application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/datamodel.application.xml -------------------------------------------------------------------------------- /application/datatable.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/datatable.class.inc.php -------------------------------------------------------------------------------- /application/displayblock.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/displayblock.class.inc.php -------------------------------------------------------------------------------- /application/excelexporter.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/excelexporter.class.inc.php -------------------------------------------------------------------------------- /application/forms.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/forms.class.inc.php -------------------------------------------------------------------------------- /application/iotask.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/iotask.class.inc.php -------------------------------------------------------------------------------- /application/itopwebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/itopwebpage.class.inc.php -------------------------------------------------------------------------------- /application/loginwebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/loginwebpage.class.inc.php -------------------------------------------------------------------------------- /application/menunode.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/menunode.class.inc.php -------------------------------------------------------------------------------- /application/nicewebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/nicewebpage.class.inc.php -------------------------------------------------------------------------------- /application/pdfpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/pdfpage.class.inc.php -------------------------------------------------------------------------------- /application/portaldispatcher.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/portaldispatcher.class.inc.php -------------------------------------------------------------------------------- /application/portalwebpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/portalwebpage.class.inc.php -------------------------------------------------------------------------------- /application/query.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/query.class.inc.php -------------------------------------------------------------------------------- /application/shortcut.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/shortcut.class.inc.php -------------------------------------------------------------------------------- /application/startup.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/startup.inc.php -------------------------------------------------------------------------------- /application/template.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/template.class.inc.php -------------------------------------------------------------------------------- /application/templates/audit_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/templates/audit_category.html -------------------------------------------------------------------------------- /application/templates/welcome_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/templates/welcome_popup.html -------------------------------------------------------------------------------- /application/transaction.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/transaction.class.inc.php -------------------------------------------------------------------------------- /application/ui.extkeywidget.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/ui.extkeywidget.class.inc.php -------------------------------------------------------------------------------- /application/ui.linkswidget.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/ui.linkswidget.class.inc.php -------------------------------------------------------------------------------- /application/uiwizard.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/uiwizard.class.inc.php -------------------------------------------------------------------------------- /application/user.dashboard.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/user.dashboard.class.inc.php -------------------------------------------------------------------------------- /application/user.preferences.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/user.preferences.class.inc.php -------------------------------------------------------------------------------- /application/utils.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/utils.inc.php -------------------------------------------------------------------------------- /application/webpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/webpage.class.inc.php -------------------------------------------------------------------------------- /application/wizardhelper.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/wizardhelper.class.inc.php -------------------------------------------------------------------------------- /application/xlsxwriter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/xlsxwriter.class.php -------------------------------------------------------------------------------- /application/xmlpage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/application/xmlpage.class.inc.php -------------------------------------------------------------------------------- /approot.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/approot.inc.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/composer.json -------------------------------------------------------------------------------- /core/MyHelpers.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/MyHelpers.class.inc.php -------------------------------------------------------------------------------- /core/action.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/action.class.inc.php -------------------------------------------------------------------------------- /core/apc-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/apc-compat.php -------------------------------------------------------------------------------- /core/apc-emulation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/apc-emulation.php -------------------------------------------------------------------------------- /core/archive.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/archive.class.inc.php -------------------------------------------------------------------------------- /core/asynctask.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/asynctask.class.inc.php -------------------------------------------------------------------------------- /core/attributedef.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/attributedef.class.inc.php -------------------------------------------------------------------------------- /core/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/autoload.php -------------------------------------------------------------------------------- /core/background.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/background.inc.php -------------------------------------------------------------------------------- /core/backgroundprocess.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/backgroundprocess.inc.php -------------------------------------------------------------------------------- /core/backgroundtask.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/backgroundtask.class.inc.php -------------------------------------------------------------------------------- /core/bulkchange.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/bulkchange.class.inc.php -------------------------------------------------------------------------------- /core/bulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/bulkexport.class.inc.php -------------------------------------------------------------------------------- /core/cmdbchange.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/cmdbchange.class.inc.php -------------------------------------------------------------------------------- /core/cmdbchangeop.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/cmdbchangeop.class.inc.php -------------------------------------------------------------------------------- /core/cmdbobject.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/cmdbobject.class.inc.php -------------------------------------------------------------------------------- /core/cmdbsource.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/cmdbsource.class.inc.php -------------------------------------------------------------------------------- /core/computing.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/computing.inc.php -------------------------------------------------------------------------------- /core/config.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/config.class.inc.php -------------------------------------------------------------------------------- /core/contexttag.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/contexttag.class.inc.php -------------------------------------------------------------------------------- /core/coreexception.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/coreexception.class.inc.php -------------------------------------------------------------------------------- /core/csvbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/csvbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/csvparser.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/csvparser.class.inc.php -------------------------------------------------------------------------------- /core/customfieldshandler.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/customfieldshandler.class.inc.php -------------------------------------------------------------------------------- /core/data.generator.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/data.generator.class.inc.php -------------------------------------------------------------------------------- /core/datamodel.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/datamodel.core.xml -------------------------------------------------------------------------------- /core/datetimeformat.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/datetimeformat.class.inc.php -------------------------------------------------------------------------------- /core/dbobject.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbobject.class.php -------------------------------------------------------------------------------- /core/dbobjectiterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbobjectiterator.php -------------------------------------------------------------------------------- /core/dbobjectsearch.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbobjectsearch.class.php -------------------------------------------------------------------------------- /core/dbobjectset.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbobjectset.class.php -------------------------------------------------------------------------------- /core/dbproperty.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbproperty.class.inc.php -------------------------------------------------------------------------------- /core/dbsearch.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbsearch.class.php -------------------------------------------------------------------------------- /core/dbunionsearch.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dbunionsearch.class.php -------------------------------------------------------------------------------- /core/deletionplan.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/deletionplan.class.inc.php -------------------------------------------------------------------------------- /core/designdocument.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/designdocument.class.inc.php -------------------------------------------------------------------------------- /core/dict.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/dict.class.inc.php -------------------------------------------------------------------------------- /core/displayablegraph.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/displayablegraph.class.inc.php -------------------------------------------------------------------------------- /core/email.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/email.class.inc.php -------------------------------------------------------------------------------- /core/event.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/event.class.inc.php -------------------------------------------------------------------------------- /core/excelbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/excelbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/expression.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/expression.class.inc.php -------------------------------------------------------------------------------- /core/expressioncache.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/expressioncache.class.inc.php -------------------------------------------------------------------------------- /core/filterdef.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/filterdef.class.inc.php -------------------------------------------------------------------------------- /core/htmlbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/htmlbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/htmlsanitizer.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/htmlsanitizer.class.inc.php -------------------------------------------------------------------------------- /core/inlineimage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/inlineimage.class.inc.php -------------------------------------------------------------------------------- /core/introspection.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/introspection.class.inc.php -------------------------------------------------------------------------------- /core/kpi.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/kpi.class.inc.php -------------------------------------------------------------------------------- /core/log.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/log.class.inc.php -------------------------------------------------------------------------------- /core/metamodel.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/metamodel.class.php -------------------------------------------------------------------------------- /core/metamodelmodifier.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/metamodelmodifier.inc.php -------------------------------------------------------------------------------- /core/modelreflection.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/modelreflection.class.inc.php -------------------------------------------------------------------------------- /core/moduledesign.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/moduledesign.class.inc.php -------------------------------------------------------------------------------- /core/modulehandler.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/modulehandler.class.inc.php -------------------------------------------------------------------------------- /core/mutex.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/mutex.class.inc.php -------------------------------------------------------------------------------- /core/oql/build/PHP/Lempar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/Lempar.php -------------------------------------------------------------------------------- /core/oql/build/PHP/LexerGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/LexerGenerator.php -------------------------------------------------------------------------------- /core/oql/build/PHP/LexerGenerator/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/LexerGenerator/Parser.y -------------------------------------------------------------------------------- /core/oql/build/PHP/LexerGenerator/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/LexerGenerator/cli.php -------------------------------------------------------------------------------- /core/oql/build/PHP/ParserGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/ParserGenerator.php -------------------------------------------------------------------------------- /core/oql/build/PHP/ParserGenerator/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/PHP/ParserGenerator/cli.php -------------------------------------------------------------------------------- /core/oql/build/build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/build.bash -------------------------------------------------------------------------------- /core/oql/build/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/build/build.cmd -------------------------------------------------------------------------------- /core/oql/check_oql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/check_oql.php -------------------------------------------------------------------------------- /core/oql/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/exclude.txt -------------------------------------------------------------------------------- /core/oql/expression.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/expression.class.inc.php -------------------------------------------------------------------------------- /core/oql/oql-lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oql-lexer.php -------------------------------------------------------------------------------- /core/oql/oql-lexer.plex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oql-lexer.plex -------------------------------------------------------------------------------- /core/oql/oql-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oql-parser.php -------------------------------------------------------------------------------- /core/oql/oql-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oql-parser.y -------------------------------------------------------------------------------- /core/oql/oqlexception.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oqlexception.class.inc.php -------------------------------------------------------------------------------- /core/oql/oqlinterpreter.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oqlinterpreter.class.inc.php -------------------------------------------------------------------------------- /core/oql/oqlquery.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/oql/oqlquery.class.inc.php -------------------------------------------------------------------------------- /core/oql/version.txt: -------------------------------------------------------------------------------- 1 | 2015-08-31 2 | -------------------------------------------------------------------------------- /core/ormcaselog.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormcaselog.class.inc.php -------------------------------------------------------------------------------- /core/ormcustomfieldsvalue.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormcustomfieldsvalue.class.inc.php -------------------------------------------------------------------------------- /core/ormdocument.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormdocument.class.inc.php -------------------------------------------------------------------------------- /core/ormlinkset.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormlinkset.class.inc.php -------------------------------------------------------------------------------- /core/ormpassword.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormpassword.class.inc.php -------------------------------------------------------------------------------- /core/ormstopwatch.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ormstopwatch.class.inc.php -------------------------------------------------------------------------------- /core/ownershiplock.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/ownershiplock.class.inc.php -------------------------------------------------------------------------------- /core/pdfbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/pdfbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/querybuildercontext.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/querybuildercontext.class.inc.php -------------------------------------------------------------------------------- /core/querymodifier.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/querymodifier.class.inc.php -------------------------------------------------------------------------------- /core/relationgraph.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/relationgraph.class.inc.php -------------------------------------------------------------------------------- /core/restservices.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/restservices.class.inc.php -------------------------------------------------------------------------------- /core/simplecrypt.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/simplecrypt.class.inc.php -------------------------------------------------------------------------------- /core/simplegraph.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/simplegraph.class.inc.php -------------------------------------------------------------------------------- /core/spreadsheetbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/spreadsheetbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/sqlobjectquery.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/sqlobjectquery.class.inc.php -------------------------------------------------------------------------------- /core/sqlquery.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/sqlquery.class.inc.php -------------------------------------------------------------------------------- /core/sqlunionquery.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/sqlunionquery.class.inc.php -------------------------------------------------------------------------------- /core/stimulus.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/stimulus.class.inc.php -------------------------------------------------------------------------------- /core/tabularbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/tabularbulkexport.class.inc.php -------------------------------------------------------------------------------- /core/tagfield.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/tagfield.class.inc.php -------------------------------------------------------------------------------- /core/templatestring.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/templatestring.class.inc.php -------------------------------------------------------------------------------- /core/trigger.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/trigger.class.inc.php -------------------------------------------------------------------------------- /core/userrights.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/userrights.class.inc.php -------------------------------------------------------------------------------- /core/valuesetdef.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/valuesetdef.class.inc.php -------------------------------------------------------------------------------- /core/xmlbulkexport.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/core/xmlbulkexport.class.inc.php -------------------------------------------------------------------------------- /css/blue_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/blue_green.css -------------------------------------------------------------------------------- /css/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/c3.min.css -------------------------------------------------------------------------------- /css/css-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/css-variables.scss -------------------------------------------------------------------------------- /css/date.picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/date.picker.css -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/default.css -------------------------------------------------------------------------------- /css/dragtable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/dragtable.css -------------------------------------------------------------------------------- /css/email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/email.css -------------------------------------------------------------------------------- /css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /css/font-combodo/combodo-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/combodo-webfont.ttf -------------------------------------------------------------------------------- /css/font-combodo/combodo-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/combodo-webfont.woff -------------------------------------------------------------------------------- /css/font-combodo/combodo-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/combodo-webfont.woff2 -------------------------------------------------------------------------------- /css/font-combodo/combodo.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/combodo.sfd -------------------------------------------------------------------------------- /css/font-combodo/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/exclude.txt -------------------------------------------------------------------------------- /css/font-combodo/font-combodo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/font-combodo.css -------------------------------------------------------------------------------- /css/font-combodo/glyphs/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/0.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/1.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/2.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/3.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/4.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/B.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/C.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/D.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/E.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/F.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/I.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/O.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/O.svg -------------------------------------------------------------------------------- /css/font-combodo/glyphs/b-lowercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/glyphs/b-lowercase.svg -------------------------------------------------------------------------------- /css/font-combodo/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-combodo/test.html -------------------------------------------------------------------------------- /css/font-open-sans/font-open-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/font-open-sans/font-open-sans.css -------------------------------------------------------------------------------- /css/jqModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jqModal.css -------------------------------------------------------------------------------- /css/jquery-ui-timepicker-addon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery-ui-timepicker-addon.css -------------------------------------------------------------------------------- /css/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.autocomplete.css -------------------------------------------------------------------------------- /css/jquery.contextMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.contextMenu.css -------------------------------------------------------------------------------- /css/jquery.multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.multiselect.css -------------------------------------------------------------------------------- /css/jquery.tabs-ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.tabs-ie.css -------------------------------------------------------------------------------- /css/jquery.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.tabs.css -------------------------------------------------------------------------------- /css/jquery.treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/jquery.treeview.css -------------------------------------------------------------------------------- /css/light-grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/light-grey.css -------------------------------------------------------------------------------- /css/light-grey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/light-grey.scss -------------------------------------------------------------------------------- /css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/login.css -------------------------------------------------------------------------------- /css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/magnific-popup.css -------------------------------------------------------------------------------- /css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/css/print.css -------------------------------------------------------------------------------- /data/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/data/.htaccess -------------------------------------------------------------------------------- /data/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pages/logoff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/logoff.php -------------------------------------------------------------------------------- /pages/navigator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/navigator.php -------------------------------------------------------------------------------- /pages/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/notifications.php -------------------------------------------------------------------------------- /pages/opensearch.xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/opensearch.xml.php -------------------------------------------------------------------------------- /pages/preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/preferences.php -------------------------------------------------------------------------------- /pages/run_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/run_query.php -------------------------------------------------------------------------------- /pages/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/pages/schema.php -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /portal/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/images/bg.png -------------------------------------------------------------------------------- /portal/images/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/images/company_logo.png -------------------------------------------------------------------------------- /portal/images/dockbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/images/dockbar_bg.png -------------------------------------------------------------------------------- /portal/images/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/images/header_bg.png -------------------------------------------------------------------------------- /portal/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/index.php -------------------------------------------------------------------------------- /portal/portal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/portal.css -------------------------------------------------------------------------------- /portal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/portal/readme.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/readme.txt -------------------------------------------------------------------------------- /setup/ajax.dataloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/ajax.dataloader.php -------------------------------------------------------------------------------- /setup/backup.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/backup.class.inc.php -------------------------------------------------------------------------------- /setup/compat/domcompat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/compat/domcompat.php -------------------------------------------------------------------------------- /setup/compiler.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/compiler.class.inc.php -------------------------------------------------------------------------------- /setup/email.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/email.test.php -------------------------------------------------------------------------------- /setup/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/exclude.txt -------------------------------------------------------------------------------- /setup/extensionsmap.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/extensionsmap.class.inc.php -------------------------------------------------------------------------------- /setup/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/index.php -------------------------------------------------------------------------------- /setup/install/apache.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/install/apache.conf.tpl -------------------------------------------------------------------------------- /setup/install/cron.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/install/cron.tpl -------------------------------------------------------------------------------- /setup/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/install/install.sh -------------------------------------------------------------------------------- /setup/install/logrotate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/install/logrotate.tpl -------------------------------------------------------------------------------- /setup/itop_design.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/itop_design.xsd -------------------------------------------------------------------------------- /setup/itopdesignformat.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/itopdesignformat.class.inc.php -------------------------------------------------------------------------------- /setup/jquery.progression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/jquery.progression.js -------------------------------------------------------------------------------- /setup/licenses/community-licences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/licenses/community-licences.xml -------------------------------------------------------------------------------- /setup/modelfactory.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/modelfactory.class.inc.php -------------------------------------------------------------------------------- /setup/modulediscovery.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/modulediscovery.class.inc.php -------------------------------------------------------------------------------- /setup/moduleinstallation.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/moduleinstallation.class.inc.php -------------------------------------------------------------------------------- /setup/moduleinstaller.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/moduleinstaller.class.inc.php -------------------------------------------------------------------------------- /setup/orange-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/orange-progress.gif -------------------------------------------------------------------------------- /setup/packaging/rpm/itop-itsm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/packaging/rpm/itop-itsm.spec -------------------------------------------------------------------------------- /setup/parameters.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/parameters.class.inc.php -------------------------------------------------------------------------------- /setup/phpinfo.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /setup/runtimeenv.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/runtimeenv.class.inc.php -------------------------------------------------------------------------------- /setup/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/setup.js -------------------------------------------------------------------------------- /setup/setuppage.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/setuppage.class.inc.php -------------------------------------------------------------------------------- /setup/setuputils.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/setuputils.class.inc.php -------------------------------------------------------------------------------- /setup/tar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/tar.php -------------------------------------------------------------------------------- /setup/wizardcontroller.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/wizardcontroller.class.inc.php -------------------------------------------------------------------------------- /setup/wizardsteps.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/wizardsteps.class.inc.php -------------------------------------------------------------------------------- /setup/xmldataloader.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/setup/xmldataloader.class.inc.php -------------------------------------------------------------------------------- /sources/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/sources/autoload.php -------------------------------------------------------------------------------- /sources/form/field/field.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/sources/form/field/field.class.inc.php -------------------------------------------------------------------------------- /sources/form/form.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/sources/form/form.class.inc.php -------------------------------------------------------------------------------- /sources/form/formmanager.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/sources/form/formmanager.class.inc.php -------------------------------------------------------------------------------- /synchro/priv_sync_chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/synchro/priv_sync_chunk.php -------------------------------------------------------------------------------- /synchro/replica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/synchro/replica.php -------------------------------------------------------------------------------- /synchro/synchro_exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/synchro/synchro_exec.php -------------------------------------------------------------------------------- /synchro/synchro_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/synchro/synchro_import.php -------------------------------------------------------------------------------- /synchro/synchrodatasource.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/synchro/synchrodatasource.class.inc.php -------------------------------------------------------------------------------- /test/GroupByAndFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/GroupByAndFunctions.php -------------------------------------------------------------------------------- /test/ItopDataTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/ItopDataTestCase.php -------------------------------------------------------------------------------- /test/ItopTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/ItopTestCase.php -------------------------------------------------------------------------------- /test/benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/benchmark.php -------------------------------------------------------------------------------- /test/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/composer.json -------------------------------------------------------------------------------- /test/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/composer.lock -------------------------------------------------------------------------------- /test/config-test-farm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/config-test-farm.php -------------------------------------------------------------------------------- /test/core/DBObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/DBObjectTest.php -------------------------------------------------------------------------------- /test/core/DBSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/DBSearchTest.php -------------------------------------------------------------------------------- /test/core/UserRightsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/UserRightsTest.php -------------------------------------------------------------------------------- /test/core/apcEmulationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/apcEmulationTest.php -------------------------------------------------------------------------------- /test/core/dictTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/dictTest.php -------------------------------------------------------------------------------- /test/core/mockApcEmulation.incphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/mockApcEmulation.incphp -------------------------------------------------------------------------------- /test/core/mockDict.incphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/mockDict.incphp -------------------------------------------------------------------------------- /test/core/ormLinkSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/core/ormLinkSetTest.php -------------------------------------------------------------------------------- /test/display_cache_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/display_cache_content.php -------------------------------------------------------------------------------- /test/itop-tickets/itopTicketTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/itop-tickets/itopTicketTest.php -------------------------------------------------------------------------------- /test/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/phpunit.xml.dist -------------------------------------------------------------------------------- /test/replay_query_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/replay_query_log.php -------------------------------------------------------------------------------- /test/setup/DBBackupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/setup/DBBackupTest.php -------------------------------------------------------------------------------- /test/test.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/test.class.inc.php -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/test.php -------------------------------------------------------------------------------- /test/testlist.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/testlist.inc.php -------------------------------------------------------------------------------- /test/unittestautoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/test/unittestautoload.php -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/web.config -------------------------------------------------------------------------------- /webservices/backoffice.dataloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/backoffice.dataloader.php -------------------------------------------------------------------------------- /webservices/createfrommail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/createfrommail.php -------------------------------------------------------------------------------- /webservices/cron.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/cron.cmd -------------------------------------------------------------------------------- /webservices/cron.distrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/cron.distrib -------------------------------------------------------------------------------- /webservices/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/cron.php -------------------------------------------------------------------------------- /webservices/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/exclude.txt -------------------------------------------------------------------------------- /webservices/export-v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/export-v2.php -------------------------------------------------------------------------------- /webservices/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/export.php -------------------------------------------------------------------------------- /webservices/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/import.php -------------------------------------------------------------------------------- /webservices/itop.wsdl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/itop.wsdl.php -------------------------------------------------------------------------------- /webservices/itop.wsdl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/itop.wsdl.tpl -------------------------------------------------------------------------------- /webservices/itoprest.examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/itoprest.examples.php -------------------------------------------------------------------------------- /webservices/itopsoap.examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/itopsoap.examples.php -------------------------------------------------------------------------------- /webservices/itopsoaptypes.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/itopsoaptypes.class.inc.php -------------------------------------------------------------------------------- /webservices/rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/rest.php -------------------------------------------------------------------------------- /webservices/soapserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/soapserver.php -------------------------------------------------------------------------------- /webservices/webservices.basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/webservices.basic.php -------------------------------------------------------------------------------- /webservices/webservices.class.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changi67/itop/HEAD/webservices/webservices.class.inc.php --------------------------------------------------------------------------------