├── .gitignore
├── .htaccess
├── README.md
├── app
├── application
│ ├── bundles.php
│ ├── config
│ │ ├── application.php
│ │ ├── auth.php
│ │ ├── cache.php
│ │ ├── database.php
│ │ ├── error.php
│ │ ├── mimes.php
│ │ ├── session.php
│ │ ├── strings.php
│ │ └── tinyissue.php
│ ├── controllers
│ │ ├── administration.php
│ │ ├── administration
│ │ │ ├── activity.php
│ │ │ ├── update.php
│ │ │ ├── update_1.php
│ │ │ ├── update_101.php
│ │ │ ├── update_2.php
│ │ │ ├── update_3.php
│ │ │ ├── update_3a.php
│ │ │ └── users.php
│ │ ├── ajax
│ │ │ ├── SendMail.php
│ │ │ ├── administration.php
│ │ │ ├── comment_viewDeleted.php
│ │ │ ├── db.php
│ │ │ ├── project.php
│ │ │ ├── sortable.php
│ │ │ ├── tags.php
│ │ │ └── todo.php
│ │ ├── base.php
│ │ ├── home.php
│ │ ├── login.php
│ │ ├── project.php
│ │ ├── project
│ │ │ └── issue.php
│ │ ├── projects.php
│ │ ├── roles.php
│ │ ├── tags.php
│ │ ├── todo.php
│ │ └── user.php
│ ├── language
│ │ ├── all.php
│ │ ├── de
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ │ ├── en
│ │ │ ├── email.php
│ │ │ ├── install.php
│ │ │ ├── pagination.php
│ │ │ ├── reports.php
│ │ │ ├── tinyissue.php
│ │ │ ├── update.php
│ │ │ └── validation.php
│ │ ├── es
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ │ ├── fr
│ │ │ ├── email.php
│ │ │ ├── install.php
│ │ │ ├── pagination.php
│ │ │ ├── reports.php
│ │ │ ├── tinyissue.php
│ │ │ ├── update.php
│ │ │ └── validation.php
│ │ ├── it
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ │ ├── ru
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ │ ├── zh_CN
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ │ └── zh_TW
│ │ │ ├── email.php
│ │ │ ├── pagination.php
│ │ │ ├── tinyissue.php
│ │ │ └── validation.php
│ ├── libraries
│ │ ├── .gitignore
│ │ ├── PHPmailer
│ │ │ ├── LICENSE
│ │ │ ├── PHPMailerAutoload.php
│ │ │ ├── VERSION
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.phpmaileroauth.php
│ │ │ ├── class.phpmaileroauthgoogle.php
│ │ │ ├── class.pop3.php
│ │ │ ├── class.smtp.php
│ │ │ ├── composer.lock
│ │ │ ├── get_oauth_token.php
│ │ │ └── language
│ │ │ │ ├── phpmailer.lang-am.php
│ │ │ │ ├── phpmailer.lang-ar.php
│ │ │ │ ├── phpmailer.lang-az.php
│ │ │ │ ├── phpmailer.lang-be.php
│ │ │ │ ├── phpmailer.lang-bg.php
│ │ │ │ ├── phpmailer.lang-ca.php
│ │ │ │ ├── phpmailer.lang-ch.php
│ │ │ │ ├── phpmailer.lang-cs.php
│ │ │ │ ├── phpmailer.lang-da.php
│ │ │ │ ├── phpmailer.lang-de.php
│ │ │ │ ├── phpmailer.lang-el.php
│ │ │ │ ├── phpmailer.lang-eo.php
│ │ │ │ ├── phpmailer.lang-es.php
│ │ │ │ ├── phpmailer.lang-et.php
│ │ │ │ ├── phpmailer.lang-fa.php
│ │ │ │ ├── phpmailer.lang-fi.php
│ │ │ │ ├── phpmailer.lang-fo.php
│ │ │ │ ├── phpmailer.lang-fr.php
│ │ │ │ ├── phpmailer.lang-gl.php
│ │ │ │ ├── phpmailer.lang-he.php
│ │ │ │ ├── phpmailer.lang-hr.php
│ │ │ │ ├── phpmailer.lang-hu.php
│ │ │ │ ├── phpmailer.lang-id.php
│ │ │ │ ├── phpmailer.lang-it.php
│ │ │ │ ├── phpmailer.lang-ja.php
│ │ │ │ ├── phpmailer.lang-ka.php
│ │ │ │ ├── phpmailer.lang-ko.php
│ │ │ │ ├── phpmailer.lang-lt.php
│ │ │ │ ├── phpmailer.lang-lv.php
│ │ │ │ ├── phpmailer.lang-ms.php
│ │ │ │ ├── phpmailer.lang-nb.php
│ │ │ │ ├── phpmailer.lang-nl.php
│ │ │ │ ├── phpmailer.lang-pl.php
│ │ │ │ ├── phpmailer.lang-pt.php
│ │ │ │ ├── phpmailer.lang-pt_br.php
│ │ │ │ ├── phpmailer.lang-ro.php
│ │ │ │ ├── phpmailer.lang-ru.php
│ │ │ │ ├── phpmailer.lang-sk.php
│ │ │ │ ├── phpmailer.lang-sl.php
│ │ │ │ ├── phpmailer.lang-sr.php
│ │ │ │ ├── phpmailer.lang-sv.php
│ │ │ │ ├── phpmailer.lang-tr.php
│ │ │ │ ├── phpmailer.lang-uk.php
│ │ │ │ ├── phpmailer.lang-vi.php
│ │ │ │ ├── phpmailer.lang-zh.php
│ │ │ │ └── phpmailer.lang-zh_cn.php
│ │ ├── checkVersion.php
│ │ ├── file.php
│ │ ├── fpdf
│ │ │ ├── FAQ.htm
│ │ │ ├── changelog.htm
│ │ │ ├── font
│ │ │ │ ├── courier.php
│ │ │ │ ├── courierb.php
│ │ │ │ ├── courierbi.php
│ │ │ │ ├── courieri.php
│ │ │ │ ├── helvetica.php
│ │ │ │ ├── helveticab.php
│ │ │ │ ├── helveticabi.php
│ │ │ │ ├── helveticai.php
│ │ │ │ ├── symbol.php
│ │ │ │ ├── times.php
│ │ │ │ ├── timesb.php
│ │ │ │ ├── timesbi.php
│ │ │ │ ├── timesi.php
│ │ │ │ └── zapfdingbats.php
│ │ │ ├── fpdf.css
│ │ │ ├── fpdf.php
│ │ │ ├── install.txt
│ │ │ ├── license.txt
│ │ │ └── makefont
│ │ │ │ ├── cp1250.map
│ │ │ │ ├── cp1251.map
│ │ │ │ ├── cp1252.map
│ │ │ │ ├── cp1253.map
│ │ │ │ ├── cp1254.map
│ │ │ │ ├── cp1255.map
│ │ │ │ ├── cp1257.map
│ │ │ │ ├── cp1258.map
│ │ │ │ ├── cp874.map
│ │ │ │ ├── iso-8859-1.map
│ │ │ │ ├── iso-8859-11.map
│ │ │ │ ├── iso-8859-15.map
│ │ │ │ ├── iso-8859-16.map
│ │ │ │ ├── iso-8859-2.map
│ │ │ │ ├── iso-8859-4.map
│ │ │ │ ├── iso-8859-5.map
│ │ │ │ ├── iso-8859-7.map
│ │ │ │ ├── iso-8859-9.map
│ │ │ │ ├── koi8-r.map
│ │ │ │ ├── koi8-u.map
│ │ │ │ ├── makefont.php
│ │ │ │ └── ttfparser.php
│ │ ├── mail.php
│ │ └── time.php
│ ├── models
│ │ ├── activity.php
│ │ ├── administration.php
│ │ ├── issues_agenda.php
│ │ ├── permission.php
│ │ ├── project.php
│ │ ├── project
│ │ │ ├── issue.php
│ │ │ ├── issue
│ │ │ │ ├── attachment.php
│ │ │ │ ├── comment.php
│ │ │ │ └── tag.php
│ │ │ └── user.php
│ │ ├── reports
│ │ │ ├── index.php
│ │ │ ├── issues_active.php
│ │ │ ├── issues_inactive.php
│ │ │ ├── issues_progress.php
│ │ │ ├── projects_active.php
│ │ │ ├── projects_activeBill.php
│ │ │ ├── projects_all.php
│ │ │ ├── tags_active.php
│ │ │ ├── tags_all.php
│ │ │ ├── tags_inactive.php
│ │ │ ├── users_activities.php
│ │ │ ├── users_customized.php
│ │ │ └── users_list.php
│ │ ├── role.php
│ │ ├── role
│ │ │ └── permission.php
│ │ ├── setting.php
│ │ ├── tag.php
│ │ ├── todo.php
│ │ ├── user.php
│ │ └── user
│ │ │ ├── activity.php
│ │ │ ├── agenda.php
│ │ │ └── setting.php
│ ├── routes.php
│ ├── start.php
│ ├── tests
│ │ └── example.test.php
│ └── views
│ │ ├── activity
│ │ ├── ChangeIssue-project.php
│ │ ├── Follow.php
│ │ ├── IssueEdit.php
│ │ ├── attached-file.php
│ │ ├── close-issue.php
│ │ ├── comment.php
│ │ ├── create-issue.php
│ │ ├── dashboard.php
│ │ ├── delete_comment.php
│ │ ├── edit_comment.php
│ │ ├── reassign-issue.php
│ │ ├── reopen-issue.php
│ │ ├── retag-issue.php
│ │ └── update-issue-tags.php
│ │ ├── administration
│ │ ├── activity
│ │ │ ├── edit.php
│ │ │ └── index.php
│ │ ├── index.php
│ │ ├── update
│ │ │ └── index.php
│ │ └── users
│ │ │ ├── add.php
│ │ │ ├── edit.php
│ │ │ └── index.php
│ │ ├── email
│ │ ├── change_status_issue.php
│ │ ├── commented_issue.php
│ │ ├── new_assigned_issue.php
│ │ ├── new_issue.php
│ │ ├── new_user.php
│ │ ├── reassigned_issue.php
│ │ └── update_issue.php
│ │ ├── error
│ │ ├── 404.php
│ │ └── 500.php
│ │ ├── layouts
│ │ ├── blocks
│ │ │ ├── default_sidebar.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ └── wiki.php
│ │ ├── login.php
│ │ ├── project.php
│ │ └── wrapper.php
│ │ ├── project
│ │ ├── edit.php
│ │ ├── index.php
│ │ ├── index
│ │ │ ├── activity.php
│ │ │ └── issues.php
│ │ ├── issue
│ │ │ ├── activity
│ │ │ │ ├── ChangeIssue-project.php
│ │ │ │ ├── Follow.php
│ │ │ │ ├── IssueEdit.php
│ │ │ │ ├── attached-file.php
│ │ │ │ ├── close-issue.php
│ │ │ │ ├── comment.php
│ │ │ │ ├── create-issue.php
│ │ │ │ ├── delete_comment.php
│ │ │ │ ├── edit_comment.php
│ │ │ │ ├── reassign-issue.php
│ │ │ │ ├── reopen-issue.php
│ │ │ │ └── update-issue-tags.php
│ │ │ ├── edit.php
│ │ │ ├── index.php
│ │ │ ├── new.php
│ │ │ └── tag.php
│ │ └── sidebar.php
│ │ ├── projects
│ │ ├── index.php
│ │ ├── new.php
│ │ └── reports.php
│ │ ├── roles
│ │ └── index.php
│ │ ├── tags
│ │ ├── edit.php
│ │ ├── index.php
│ │ └── new.php
│ │ ├── todo
│ │ └── index.php
│ │ └── user
│ │ ├── agenda.php
│ │ ├── issues.php
│ │ └── settings.php
├── assets
│ ├── .DS_Store
│ ├── css
│ │ ├── Default
│ │ │ ├── app.css
│ │ │ └── images
│ │ │ │ ├── Calend.png
│ │ │ │ ├── Liste.png
│ │ │ │ ├── addnewuser.png
│ │ │ │ ├── adduser-input.png
│ │ │ │ ├── courriel.png
│ │ │ │ ├── dropdown-arrow.png
│ │ │ │ ├── dropdown-arrow_24x24.png
│ │ │ │ ├── dropdown-arrow_72x24.png
│ │ │ │ ├── dropdown-top-arrow.png
│ │ │ │ ├── global-saving.gif
│ │ │ │ ├── h2-bg.png
│ │ │ │ ├── h2-bg_quasinoire.png
│ │ │ │ ├── icon-arrow.png
│ │ │ │ ├── icon-bi-arrow.png
│ │ │ │ ├── icon-bigadd.png
│ │ │ │ ├── icon-bigedit.png
│ │ │ │ ├── icon-bigedit_gris.png
│ │ │ │ ├── icon-clock.png
│ │ │ │ ├── icon-comments.png
│ │ │ │ ├── icon-comments_0.png
│ │ │ │ ├── icon-comments_1.png
│ │ │ │ ├── icon-comments_2.png
│ │ │ │ ├── icon-dashboard.png
│ │ │ │ ├── icon-dashboard_inactive.png
│ │ │ │ ├── icon-delete.png
│ │ │ │ ├── icon-delete_gris.png
│ │ │ │ ├── icon-edit.png
│ │ │ │ ├── icon-edit_1.png
│ │ │ │ ├── icon-empty.png
│ │ │ │ ├── icon-issues.png
│ │ │ │ ├── icon-issues_inactive.png
│ │ │ │ ├── icon-li-arrow.png
│ │ │ │ ├── icon-li-arrow_acier.png
│ │ │ │ ├── icon-li-arrow_noire.png
│ │ │ │ ├── icon-li-arrow_verte.png
│ │ │ │ ├── icon-logout.png
│ │ │ │ ├── icon-logout_active.png
│ │ │ │ ├── icon-pencil.png
│ │ │ │ ├── icon-projects.png
│ │ │ │ ├── icon-projects_inactive.png
│ │ │ │ ├── icon-reports.png
│ │ │ │ ├── icon-reports.xcf
│ │ │ │ ├── icon-reports_inactive.png
│ │ │ │ ├── icon-ri-arrow.png
│ │ │ │ ├── icon-settings.png
│ │ │ │ ├── icon-settings_inactive.png
│ │ │ │ ├── icon-ti-arrow.png
│ │ │ │ ├── icon-todo.png
│ │ │ │ ├── icon-todo_inactive.png
│ │ │ │ ├── icon-website.png
│ │ │ │ └── modifier.png
│ │ ├── Sombre_B
│ │ │ ├── app.css
│ │ │ └── images
│ │ │ │ ├── Calend.png
│ │ │ │ ├── Liste.png
│ │ │ │ ├── addnewuser.png
│ │ │ │ ├── adduser-input.png
│ │ │ │ ├── courriel.png
│ │ │ │ ├── dropdown-arrow.png
│ │ │ │ ├── dropdown-arrow_24x24.png
│ │ │ │ ├── dropdown-arrow_72x24.png
│ │ │ │ ├── dropdown-top-arrow.png
│ │ │ │ ├── global-saving.gif
│ │ │ │ ├── h2-bg.png
│ │ │ │ ├── h2-bg_quasinoire.png
│ │ │ │ ├── icon-arrow.png
│ │ │ │ ├── icon-bi-arrow.png
│ │ │ │ ├── icon-bigadd.png
│ │ │ │ ├── icon-bigedit.png
│ │ │ │ ├── icon-bigedit_gris.png
│ │ │ │ ├── icon-clock.png
│ │ │ │ ├── icon-comments.png
│ │ │ │ ├── icon-comments_0.png
│ │ │ │ ├── icon-comments_1.png
│ │ │ │ ├── icon-comments_2.png
│ │ │ │ ├── icon-dashboard.png
│ │ │ │ ├── icon-dashboard_inactive.png
│ │ │ │ ├── icon-delete.png
│ │ │ │ ├── icon-delete_gris.png
│ │ │ │ ├── icon-edit.png
│ │ │ │ ├── icon-edit_1.png
│ │ │ │ ├── icon-empty.png
│ │ │ │ ├── icon-issues.png
│ │ │ │ ├── icon-issues_inactive.png
│ │ │ │ ├── icon-li-arrow.png
│ │ │ │ ├── icon-li-arrow_acier.png
│ │ │ │ ├── icon-li-arrow_noire.png
│ │ │ │ ├── icon-li-arrow_verte.png
│ │ │ │ ├── icon-logout.png
│ │ │ │ ├── icon-logout_active.png
│ │ │ │ ├── icon-pencil.png
│ │ │ │ ├── icon-projects.png
│ │ │ │ ├── icon-projects_inactive.png
│ │ │ │ ├── icon-reports.png
│ │ │ │ ├── icon-reports.xcf
│ │ │ │ ├── icon-reports_inactive.png
│ │ │ │ ├── icon-ri-arrow.png
│ │ │ │ ├── icon-settings.png
│ │ │ │ ├── icon-settings_inactive.png
│ │ │ │ ├── icon-ti-arrow.png
│ │ │ │ ├── icon-todo.png
│ │ │ │ ├── icon-todo_inactive.png
│ │ │ │ ├── icon-website.png
│ │ │ │ └── modifier.png
│ │ ├── Sombre_G
│ │ │ ├── app.css
│ │ │ └── images
│ │ │ │ ├── Calend.png
│ │ │ │ ├── Liste.png
│ │ │ │ ├── addnewuser.png
│ │ │ │ ├── adduser-input.png
│ │ │ │ ├── courriel.png
│ │ │ │ ├── dropdown-arrow.png
│ │ │ │ ├── dropdown-arrow_24x24.png
│ │ │ │ ├── dropdown-arrow_72x24.png
│ │ │ │ ├── dropdown-top-arrow.png
│ │ │ │ ├── global-saving.gif
│ │ │ │ ├── h2-bg.png
│ │ │ │ ├── h2-bg_quasinoire.png
│ │ │ │ ├── icon-arrow.png
│ │ │ │ ├── icon-bi-arrow.png
│ │ │ │ ├── icon-bigadd.png
│ │ │ │ ├── icon-bigedit.png
│ │ │ │ ├── icon-bigedit_gris.png
│ │ │ │ ├── icon-clock.png
│ │ │ │ ├── icon-comments.png
│ │ │ │ ├── icon-comments_0.png
│ │ │ │ ├── icon-comments_1.png
│ │ │ │ ├── icon-comments_2.png
│ │ │ │ ├── icon-dashboard.png
│ │ │ │ ├── icon-dashboard_inactive.png
│ │ │ │ ├── icon-delete.png
│ │ │ │ ├── icon-delete_gris.png
│ │ │ │ ├── icon-edit.png
│ │ │ │ ├── icon-edit_1.png
│ │ │ │ ├── icon-empty.png
│ │ │ │ ├── icon-issues.png
│ │ │ │ ├── icon-issues_inactive.png
│ │ │ │ ├── icon-li-arrow.png
│ │ │ │ ├── icon-li-arrow_acier.png
│ │ │ │ ├── icon-li-arrow_noire.png
│ │ │ │ ├── icon-logout.png
│ │ │ │ ├── icon-logout_active.png
│ │ │ │ ├── icon-pencil.png
│ │ │ │ ├── icon-projects.png
│ │ │ │ ├── icon-projects_inactive.png
│ │ │ │ ├── icon-reports.png
│ │ │ │ ├── icon-reports.xcf
│ │ │ │ ├── icon-reports_inactive.png
│ │ │ │ ├── icon-ri-arrow.png
│ │ │ │ ├── icon-settings.png
│ │ │ │ ├── icon-settings_inactive.png
│ │ │ │ ├── icon-ti-arrow.png
│ │ │ │ ├── icon-todo.png
│ │ │ │ ├── icon-todo_inactive.png
│ │ │ │ ├── icon-website.png
│ │ │ │ └── modifier.png
│ │ ├── Sombre_R
│ │ │ ├── app.css
│ │ │ └── images
│ │ │ │ ├── Calend.png
│ │ │ │ ├── Liste.png
│ │ │ │ ├── addnewuser.png
│ │ │ │ ├── adduser-input.png
│ │ │ │ ├── courriel.png
│ │ │ │ ├── dropdown-arrow.png
│ │ │ │ ├── dropdown-arrow_24x24.png
│ │ │ │ ├── dropdown-arrow_72x24.png
│ │ │ │ ├── dropdown-top-arrow.png
│ │ │ │ ├── global-saving.gif
│ │ │ │ ├── h2-bg.png
│ │ │ │ ├── h2-bg_quasinoire.png
│ │ │ │ ├── h2-bg_rouge.png
│ │ │ │ ├── icon-arrow.png
│ │ │ │ ├── icon-bi-arrow.png
│ │ │ │ ├── icon-bigadd.png
│ │ │ │ ├── icon-bigedit.png
│ │ │ │ ├── icon-bigedit_gris.png
│ │ │ │ ├── icon-clock.png
│ │ │ │ ├── icon-comments.png
│ │ │ │ ├── icon-comments_0.png
│ │ │ │ ├── icon-comments_1.png
│ │ │ │ ├── icon-comments_2.png
│ │ │ │ ├── icon-dashboard.png
│ │ │ │ ├── icon-dashboard_inactive.png
│ │ │ │ ├── icon-delete.png
│ │ │ │ ├── icon-delete_gris.png
│ │ │ │ ├── icon-edit.png
│ │ │ │ ├── icon-edit_1.png
│ │ │ │ ├── icon-empty.png
│ │ │ │ ├── icon-issues.png
│ │ │ │ ├── icon-issues_inactive.png
│ │ │ │ ├── icon-li-arrow.png
│ │ │ │ ├── icon-li-arrow_acier.png
│ │ │ │ ├── icon-li-arrow_noire.png
│ │ │ │ ├── icon-logout.png
│ │ │ │ ├── icon-logout_active.png
│ │ │ │ ├── icon-pencil.png
│ │ │ │ ├── icon-projects.png
│ │ │ │ ├── icon-projects_inactive.png
│ │ │ │ ├── icon-reports.png
│ │ │ │ ├── icon-reports.xcf
│ │ │ │ ├── icon-reports_inactive.png
│ │ │ │ ├── icon-ri-arrow.png
│ │ │ │ ├── icon-settings.png
│ │ │ │ ├── icon-settings_inactive.png
│ │ │ │ ├── icon-ti-arrow.png
│ │ │ │ ├── icon-todo.png
│ │ │ │ ├── icon-todo_inactive.png
│ │ │ │ ├── icon-website.png
│ │ │ │ └── modifier.png
│ │ ├── app.css
│ │ ├── images
│ │ │ ├── courriel.png
│ │ │ ├── courriel.xcf
│ │ │ ├── icon-logout.png
│ │ │ ├── icon-logout_active.png
│ │ │ ├── modifier.png
│ │ │ ├── modifier.xcf
│ │ │ ├── poubelle.xcf
│ │ │ ├── poubelle_pleine.png
│ │ │ └── poubelle_vide.png
│ │ ├── install.css
│ │ ├── jquery.tagit.css
│ │ ├── login.css
│ │ ├── spectrum.css
│ │ └── tagit.ui-zendesk.css
│ ├── images
│ │ ├── Calendrier.xcf
│ │ ├── app-icons
│ │ │ ├── apple-touch-icon-114x114.png
│ │ │ ├── apple-touch-icon-120x120.png
│ │ │ ├── apple-touch-icon-144x144.png
│ │ │ ├── apple-touch-icon-152x152.png
│ │ │ ├── apple-touch-icon-57x57.png
│ │ │ ├── apple-touch-icon-60x60.png
│ │ │ ├── apple-touch-icon-72x72.png
│ │ │ ├── apple-touch-icon-76x76.png
│ │ │ ├── apple-touch-icon-precomposed.png
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── browserconfig.xml
│ │ │ ├── favicon-160x160.png
│ │ │ ├── favicon-16x16.png
│ │ │ ├── favicon-196x196.png
│ │ │ ├── favicon-32x32.png
│ │ │ ├── favicon-96x96.png
│ │ │ ├── favicon.ico
│ │ │ ├── favicon.jpg
│ │ │ ├── favicon.png
│ │ │ ├── mstile-144x144.png
│ │ │ ├── mstile-150x150.png
│ │ │ ├── mstile-310x150.png
│ │ │ ├── mstile-310x310.png
│ │ │ └── mstile-70x70.png
│ │ ├── dropdown-arrow.png
│ │ ├── dropdown-arrow_24x24.png
│ │ ├── dropdown-arrow_48x48.png
│ │ ├── dropdown-arrow_big.png
│ │ ├── icon-todo.png
│ │ ├── icons
│ │ │ ├── attached.png
│ │ │ ├── edit.png
│ │ │ ├── file_01.jpeg
│ │ │ ├── file_01.png
│ │ │ ├── file_02.jpeg
│ │ │ ├── file_02.png
│ │ │ ├── file_03.jpeg
│ │ │ ├── file_03.png
│ │ │ └── global-saving.gif
│ │ ├── layout
│ │ │ ├── addnewuser.png
│ │ │ ├── adduser-input.png
│ │ │ ├── bg.jpg
│ │ │ ├── bg.png
│ │ │ ├── blue-bg.png
│ │ │ ├── chrono-anime.gif
│ │ │ ├── chronometre_actif.gif
│ │ │ ├── dropdown-arrow.png
│ │ │ ├── dropdown-arrow_24x24.png
│ │ │ ├── dropdown-arrow_24x24.xcf
│ │ │ ├── dropdown-arrow_72x24.png
│ │ │ ├── dropdown-top-arrow.png
│ │ │ ├── h2-bg.png
│ │ │ ├── h2-bg_bleue.png
│ │ │ ├── h2-bg_quasinoire.png
│ │ │ ├── h2-bg_verte.png
│ │ │ ├── header-bg.jpg
│ │ │ ├── icon-arrow.png
│ │ │ ├── icon-bi-arrow.png
│ │ │ ├── icon-bigadd.png
│ │ │ ├── icon-bigedit.png
│ │ │ ├── icon-bigedit_gris.png
│ │ │ ├── icon-clock.png
│ │ │ ├── icon-comments.png
│ │ │ ├── icon-comments_0.png
│ │ │ ├── icon-comments_1.png
│ │ │ ├── icon-comments_2.png
│ │ │ ├── icon-dashboard.png
│ │ │ ├── icon-dashboard_inactive.png
│ │ │ ├── icon-delete.png
│ │ │ ├── icon-delete_gris.png
│ │ │ ├── icon-edit.png
│ │ │ ├── icon-edit_1.png
│ │ │ ├── icon-empty.png
│ │ │ ├── icon-help.png
│ │ │ ├── icon-help_inactive.png
│ │ │ ├── icon-issues.png
│ │ │ ├── icon-issues_inactive.png
│ │ │ ├── icon-li-arrow.png
│ │ │ ├── icon-li-arrow_acier.png
│ │ │ ├── icon-li-arrow_bleue.png
│ │ │ ├── icon-li-arrow_noire.png
│ │ │ ├── icon-li-arrow_verte.png
│ │ │ ├── icon-logout.png
│ │ │ ├── icon-logout_active.png
│ │ │ ├── icon-pencil.png
│ │ │ ├── icon-projects.png
│ │ │ ├── icon-projects_inactive.png
│ │ │ ├── icon-reports.png
│ │ │ ├── icon-reports.xcf
│ │ │ ├── icon-reports_inactive.png
│ │ │ ├── icon-ri-arrow.png
│ │ │ ├── icon-settings.png
│ │ │ ├── icon-settings_inactive.png
│ │ │ ├── icon-ti-arrow.png
│ │ │ ├── icon-todo.png
│ │ │ ├── icon-todo_inactive.png
│ │ │ ├── icon-website.png
│ │ │ ├── logo.jpg
│ │ │ ├── logo.png
│ │ │ ├── logo_brouille.png
│ │ │ ├── logo_degrade.png
│ │ │ ├── newissue.png
│ │ │ ├── tinyissue.ai
│ │ │ ├── tinyissue.eps
│ │ │ ├── tinyissue.pdf
│ │ │ ├── tinyissue.png
│ │ │ ├── tinyissue.svg
│ │ │ └── yourissues.png
│ │ ├── left-arrow.png
│ │ ├── present_non.png
│ │ ├── present_oui.png
│ │ ├── reports
│ │ │ ├── Customized.xcf
│ │ │ ├── Customized_reduit.xcf
│ │ │ ├── Stat.png
│ │ │ ├── Stat_custom.png
│ │ │ ├── Stat_issues.png
│ │ │ ├── Stat_issues_prem.png
│ │ │ ├── Stat_projects.png
│ │ │ ├── Stat_projects_prem.png
│ │ │ ├── Stat_tags.png
│ │ │ ├── Stat_users.png
│ │ │ ├── issues.png
│ │ │ ├── projects.png
│ │ │ ├── tags.png
│ │ │ └── users.png
│ │ ├── right-arrow.png
│ │ ├── screenshots
│ │ │ ├── BUGS_Login.png
│ │ │ ├── Tickets_AcceptedTask_dashboard.png
│ │ │ ├── Tickets_Calendar_grid.png
│ │ │ ├── Tickets_Calendar_list.png
│ │ │ ├── Tickets_Canevas.png
│ │ │ ├── Tickets_Canevas_Sombre_Bleu.png
│ │ │ ├── Tickets_Canevas_Sombre_Rouge.png
│ │ │ └── Tickets_Canevas_Sombre_Vert.png
│ │ └── upload_type
│ │ │ ├── deb.png
│ │ │ ├── doc.png
│ │ │ ├── docx.png
│ │ │ ├── odp.png
│ │ │ ├── odt.png
│ │ │ ├── pdf.png
│ │ │ ├── ppt.png
│ │ │ ├── pptx.png
│ │ │ ├── rpm.png
│ │ │ ├── txt.png
│ │ │ ├── wpd.png
│ │ │ ├── wpg.png
│ │ │ └── zip.png
│ └── js
│ │ ├── admin.js
│ │ ├── app.js
│ │ ├── jquery-ui.js
│ │ ├── jquery.js
│ │ ├── login.js
│ │ ├── project-new.js
│ │ ├── project.js
│ │ ├── sortable-issues.js
│ │ ├── spectrum.js
│ │ ├── tag-it.min.js
│ │ ├── todo-issues.js
│ │ └── todo.js
├── bundles
│ ├── .gitignore
│ └── sparkdown
│ │ ├── LICENSE
│ │ ├── apigen.neon
│ │ ├── bundle.php
│ │ ├── controllers
│ │ └── page.php
│ │ ├── parser.php
│ │ ├── readme.md
│ │ ├── start.php
│ │ └── view.php
├── laravel
│ ├── asset.php
│ ├── auth.php
│ ├── auth
│ │ └── drivers
│ │ │ ├── driver.php
│ │ │ ├── eloquent.php
│ │ │ └── fluent.php
│ ├── autoloader.php
│ ├── blade.php
│ ├── bundle.php
│ ├── cache.php
│ ├── cache
│ │ └── drivers
│ │ │ ├── apc.php
│ │ │ ├── database.php
│ │ │ ├── driver.php
│ │ │ ├── file.php
│ │ │ ├── memcached.php
│ │ │ ├── memory.php
│ │ │ ├── redis.php
│ │ │ └── sectionable.php
│ ├── cli
│ │ ├── artisan.php
│ │ ├── command.php
│ │ ├── dependencies.php
│ │ └── tasks
│ │ │ ├── bundle
│ │ │ ├── bundler.php
│ │ │ ├── providers
│ │ │ │ ├── github.php
│ │ │ │ └── provider.php
│ │ │ ├── publisher.php
│ │ │ └── repository.php
│ │ │ ├── help.json
│ │ │ ├── help.php
│ │ │ ├── key.php
│ │ │ ├── migrate
│ │ │ ├── database.php
│ │ │ ├── migrator.php
│ │ │ ├── resolver.php
│ │ │ └── stub.php
│ │ │ ├── route.php
│ │ │ ├── session
│ │ │ ├── manager.php
│ │ │ └── migration.php
│ │ │ ├── task.php
│ │ │ └── test
│ │ │ ├── phpunit.php
│ │ │ ├── runner.php
│ │ │ └── stub.xml
│ ├── config.php
│ ├── cookie.php
│ ├── core.php
│ ├── crypter.php
│ ├── crypterMcrypt.php
│ ├── crypterSSL.php
│ ├── database.php
│ ├── database
│ │ ├── connection.php
│ │ ├── connectors
│ │ │ ├── connector.php
│ │ │ ├── mysql.php
│ │ │ ├── postgres.php
│ │ │ ├── sqlite.php
│ │ │ └── sqlserver.php
│ │ ├── eloquent
│ │ │ ├── model.php
│ │ │ ├── pivot.php
│ │ │ ├── query.php
│ │ │ └── relationships
│ │ │ │ ├── belongs_to.php
│ │ │ │ ├── has_many.php
│ │ │ │ ├── has_many_and_belongs_to.php
│ │ │ │ ├── has_one.php
│ │ │ │ ├── has_one_or_many.php
│ │ │ │ └── relationship.php
│ │ ├── exception.php
│ │ ├── expression.php
│ │ ├── grammar.php
│ │ ├── query.php
│ │ ├── query
│ │ │ ├── grammars
│ │ │ │ ├── grammar.php
│ │ │ │ ├── mysql.php
│ │ │ │ ├── postgres.php
│ │ │ │ ├── sqlite.php
│ │ │ │ └── sqlserver.php
│ │ │ └── join.php
│ │ ├── schema.php
│ │ └── schema
│ │ │ ├── grammars
│ │ │ ├── grammar.php
│ │ │ ├── mysql.php
│ │ │ ├── postgres.php
│ │ │ ├── sqlite.php
│ │ │ └── sqlserver.php
│ │ │ └── table.php
│ ├── documentation
│ │ ├── artisan
│ │ │ ├── commands.md
│ │ │ └── tasks.md
│ │ ├── auth
│ │ │ ├── config.md
│ │ │ └── usage.md
│ │ ├── bundles.md
│ │ ├── cache
│ │ │ ├── config.md
│ │ │ └── usage.md
│ │ ├── changes.md
│ │ ├── config.md
│ │ ├── contents.md
│ │ ├── contrib
│ │ │ ├── command-line.md
│ │ │ ├── github.md
│ │ │ └── tortoisegit.md
│ │ ├── controllers.md
│ │ ├── database
│ │ │ ├── config.md
│ │ │ ├── eloquent.md
│ │ │ ├── fluent.md
│ │ │ ├── migrations.md
│ │ │ ├── raw.md
│ │ │ ├── redis.md
│ │ │ └── schema.md
│ │ ├── encryption.md
│ │ ├── events.md
│ │ ├── files.md
│ │ ├── home.md
│ │ ├── input.md
│ │ ├── install.md
│ │ ├── ioc.md
│ │ ├── loading.md
│ │ ├── localization.md
│ │ ├── logging.md
│ │ ├── models.md
│ │ ├── requests.md
│ │ ├── routing.md
│ │ ├── session
│ │ │ ├── config.md
│ │ │ └── usage.md
│ │ ├── strings.md
│ │ ├── testing.md
│ │ ├── urls.md
│ │ ├── validation.md
│ │ └── views
│ │ │ ├── assets.md
│ │ │ ├── forms.md
│ │ │ ├── home.md
│ │ │ ├── html.md
│ │ │ ├── pagination.md
│ │ │ └── templating.md
│ ├── error.php
│ ├── event.php
│ ├── file.php
│ ├── fluent.php
│ ├── form.php
│ ├── hash.php
│ ├── helpers.php
│ ├── html.php
│ ├── input.php
│ ├── ioc.php
│ ├── lang.php
│ ├── laravel.php
│ ├── log.php
│ ├── memcached.php
│ ├── messages.php
│ ├── paginator.php
│ ├── pluralizer.php
│ ├── profiling
│ │ ├── profiler.css
│ │ ├── profiler.js
│ │ ├── profiler.php
│ │ └── template.blade.php
│ ├── redirect.php
│ ├── redis.php
│ ├── request.php
│ ├── response.php
│ ├── routing
│ │ ├── controller.php
│ │ ├── filter.php
│ │ ├── route.php
│ │ └── router.php
│ ├── section.php
│ ├── session.php
│ ├── session
│ │ ├── drivers
│ │ │ ├── apc.php
│ │ │ ├── cookie.php
│ │ │ ├── database.php
│ │ │ ├── driver.php
│ │ │ ├── file.php
│ │ │ ├── memcached.php
│ │ │ ├── memory.php
│ │ │ ├── redis.php
│ │ │ └── sweeper.php
│ │ └── payload.php
│ ├── str.php
│ ├── uri.php
│ ├── url.php
│ ├── validator.php
│ ├── vendor
│ │ └── Symfony
│ │ │ └── Component
│ │ │ ├── Console
│ │ │ ├── Application.php
│ │ │ ├── Command
│ │ │ │ ├── Command.php
│ │ │ │ ├── HelpCommand.php
│ │ │ │ └── ListCommand.php
│ │ │ ├── Formatter
│ │ │ │ ├── OutputFormatter.php
│ │ │ │ ├── OutputFormatterInterface.php
│ │ │ │ ├── OutputFormatterStyle.php
│ │ │ │ └── OutputFormatterStyleInterface.php
│ │ │ ├── Helper
│ │ │ │ ├── DialogHelper.php
│ │ │ │ ├── FormatterHelper.php
│ │ │ │ ├── Helper.php
│ │ │ │ ├── HelperInterface.php
│ │ │ │ └── HelperSet.php
│ │ │ ├── Input
│ │ │ │ ├── ArgvInput.php
│ │ │ │ ├── ArrayInput.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── InputArgument.php
│ │ │ │ ├── InputDefinition.php
│ │ │ │ ├── InputInterface.php
│ │ │ │ ├── InputOption.php
│ │ │ │ └── StringInput.php
│ │ │ ├── LICENSE
│ │ │ ├── Output
│ │ │ │ ├── ConsoleOutput.php
│ │ │ │ ├── ConsoleOutputInterface.php
│ │ │ │ ├── NullOutput.php
│ │ │ │ ├── Output.php
│ │ │ │ ├── OutputInterface.php
│ │ │ │ └── StreamOutput.php
│ │ │ ├── README.md
│ │ │ ├── Shell.php
│ │ │ └── Tester
│ │ │ │ ├── ApplicationTester.php
│ │ │ │ └── CommandTester.php
│ │ │ └── HttpFoundation
│ │ │ ├── ApacheRequest.php
│ │ │ ├── Cookie.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
│ │ │ ├── JsonResponse.php
│ │ │ ├── LICENSE
│ │ │ ├── LaravelRequest.php
│ │ │ ├── LaravelResponse.php
│ │ │ ├── ParameterBag.php
│ │ │ ├── README.md
│ │ │ ├── RedirectResponse.php
│ │ │ ├── Request.php
│ │ │ ├── RequestMatcher.php
│ │ │ ├── RequestMatcherInterface.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
│ │ │ │ ├── MemcacheSessionHandler.php
│ │ │ │ ├── MemcachedSessionHandler.php
│ │ │ │ ├── NativeFileSessionHandler.php
│ │ │ │ ├── NativeMemcacheSessionHandler.php
│ │ │ │ ├── NativeMemcachedSessionHandler.php
│ │ │ │ ├── NativeSessionHandler.php
│ │ │ │ ├── NativeSqliteSessionHandler.php
│ │ │ │ ├── NullSessionHandler.php
│ │ │ │ └── PdoSessionHandler.php
│ │ │ │ ├── MockArraySessionStorage.php
│ │ │ │ ├── MockFileSessionStorage.php
│ │ │ │ ├── NativeSessionStorage.php
│ │ │ │ ├── Proxy
│ │ │ │ ├── AbstractProxy.php
│ │ │ │ ├── NativeProxy.php
│ │ │ │ └── SessionHandlerProxy.php
│ │ │ │ └── SessionStorageInterface.php
│ │ │ └── StreamedResponse.php
│ └── view.php
├── paths.php
├── storage
│ ├── logs
│ │ └── .gitignore
│ └── reports
│ │ ├── index.htm
│ │ ├── index.html
│ │ └── index.php
└── vendor
│ ├── Symfony
│ └── Component
│ │ └── Console
│ │ ├── Application.php
│ │ ├── Command
│ │ ├── Command.php
│ │ ├── HelpCommand.php
│ │ └── ListCommand.php
│ │ ├── Formatter
│ │ ├── OutputFormatter.php
│ │ ├── OutputFormatterInterface.php
│ │ ├── OutputFormatterStyle.php
│ │ └── OutputFormatterStyleInterface.php
│ │ ├── Helper
│ │ ├── DialogHelper.php
│ │ ├── FormatterHelper.php
│ │ ├── Helper.php
│ │ ├── HelperInterface.php
│ │ └── HelperSet.php
│ │ ├── Input
│ │ ├── ArgvInput.php
│ │ ├── ArrayInput.php
│ │ ├── Input.php
│ │ ├── InputArgument.php
│ │ ├── InputDefinition.php
│ │ ├── InputInterface.php
│ │ ├── InputOption.php
│ │ └── StringInput.php
│ │ ├── LICENSE
│ │ ├── Output
│ │ ├── ConsoleOutput.php
│ │ ├── ConsoleOutputInterface.php
│ │ ├── NullOutput.php
│ │ ├── Output.php
│ │ ├── OutputInterface.php
│ │ └── StreamOutput.php
│ │ ├── README.md
│ │ ├── Shell.php
│ │ └── Tester
│ │ ├── ApplicationTester.php
│ │ └── CommandTester.php
│ ├── Trumbowyg
│ ├── .bowerrc
│ ├── .gitattributes
│ ├── .gitignore
│ ├── .jshintrc
│ ├── .npmignore
│ ├── BACKERS.md
│ ├── Bugs_code
│ │ ├── header.php
│ │ └── showeditor.js
│ ├── CONTRIBUTORS.md
│ ├── ISSUE_TEMPLATE.md
│ ├── LICENSE
│ ├── banner.jpg
│ ├── bower.json
│ ├── dist
│ │ ├── langs
│ │ │ ├── ar.min.js
│ │ │ ├── bg.min.js
│ │ │ ├── by.min.js
│ │ │ ├── ca.min.js
│ │ │ ├── cs.min.js
│ │ │ ├── da.min.js
│ │ │ ├── de.min.js
│ │ │ ├── el.min.js
│ │ │ ├── es.min.js
│ │ │ ├── es_ar.min.js
│ │ │ ├── fa.min.js
│ │ │ ├── fi.min.js
│ │ │ ├── fr.min.js
│ │ │ ├── he.min.js
│ │ │ ├── hr.min.js
│ │ │ ├── hu.min.js
│ │ │ ├── id.min.js
│ │ │ ├── it.min.js
│ │ │ ├── ja.min.js
│ │ │ ├── ko.min.js
│ │ │ ├── mn.min.js
│ │ │ ├── my.min.js
│ │ │ ├── nl.min.js
│ │ │ ├── no_nb.min.js
│ │ │ ├── ph.min.js
│ │ │ ├── pl.min.js
│ │ │ ├── pt.min.js
│ │ │ ├── pt_br.min.js
│ │ │ ├── ro.min.js
│ │ │ ├── rs.min.js
│ │ │ ├── rs_latin.min.js
│ │ │ ├── ru.min.js
│ │ │ ├── sk.min.js
│ │ │ ├── sv.min.js
│ │ │ ├── tr.min.js
│ │ │ ├── ua.min.js
│ │ │ ├── vi.min.js
│ │ │ ├── zh_cn.min.js
│ │ │ └── zh_tw.min.js
│ │ ├── plugins
│ │ │ ├── allowtagsfrompaste
│ │ │ │ ├── trumbowyg.allowtagsfrompaste.js
│ │ │ │ └── trumbowyg.allowtagsfrompaste.min.js
│ │ │ ├── base64
│ │ │ │ ├── trumbowyg.base64.js
│ │ │ │ └── trumbowyg.base64.min.js
│ │ │ ├── cleanpaste
│ │ │ │ ├── trumbowyg.cleanpaste.js
│ │ │ │ └── trumbowyg.cleanpaste.min.js
│ │ │ ├── colors
│ │ │ │ ├── trumbowyg.colors.js
│ │ │ │ ├── trumbowyg.colors.min.js
│ │ │ │ └── ui
│ │ │ │ │ ├── sass
│ │ │ │ │ └── trumbowyg.colors.scss
│ │ │ │ │ ├── trumbowyg.colors.css
│ │ │ │ │ └── trumbowyg.colors.min.css
│ │ │ ├── emoji
│ │ │ │ ├── trumbowyg.emoji.js
│ │ │ │ ├── trumbowyg.emoji.min.js
│ │ │ │ └── ui
│ │ │ │ │ ├── sass
│ │ │ │ │ └── trumbowyg.emoji.scss
│ │ │ │ │ ├── trumbowyg.emoji.css
│ │ │ │ │ └── trumbowyg.emoji.min.css
│ │ │ ├── fontfamily
│ │ │ │ ├── trumbowyg.fontfamily.js
│ │ │ │ └── trumbowyg.fontfamily.min.js
│ │ │ ├── fontsize
│ │ │ │ ├── trumbowyg.fontsize.js
│ │ │ │ └── trumbowyg.fontsize.min.js
│ │ │ ├── insertaudio
│ │ │ │ ├── trumbowyg.insertaudio.js
│ │ │ │ └── trumbowyg.insertaudio.min.js
│ │ │ ├── lineheight
│ │ │ │ ├── trumbowyg.lineheight.js
│ │ │ │ └── trumbowyg.lineheight.min.js
│ │ │ ├── mathml
│ │ │ │ ├── trumbowyg.mathml.js
│ │ │ │ ├── trumbowyg.mathml.min.js
│ │ │ │ └── ui
│ │ │ │ │ ├── sass
│ │ │ │ │ └── trumbowyg.mathml.scss
│ │ │ │ │ ├── trumbowyg.mathml.css
│ │ │ │ │ └── trumbowyg.mathml.min.css
│ │ │ ├── mention
│ │ │ │ ├── trumbowyg.mention.js
│ │ │ │ ├── trumbowyg.mention.min.js
│ │ │ │ └── ui
│ │ │ │ │ ├── sass
│ │ │ │ │ └── trumbowyg.mention.scss
│ │ │ │ │ ├── trumbowyg.mention.css
│ │ │ │ │ └── trumbowyg.mention.min.css
│ │ │ ├── noembed
│ │ │ │ ├── trumbowyg.noembed.js
│ │ │ │ └── trumbowyg.noembed.min.js
│ │ │ ├── pasteimage
│ │ │ │ ├── trumbowyg.pasteimage.js
│ │ │ │ └── trumbowyg.pasteimage.min.js
│ │ │ ├── preformatted
│ │ │ │ ├── trumbowyg.preformatted.js
│ │ │ │ └── trumbowyg.preformatted.min.js
│ │ │ ├── ruby
│ │ │ │ ├── trumbowyg.ruby.js
│ │ │ │ └── trumbowyg.ruby.min.js
│ │ │ ├── table
│ │ │ │ ├── trumbowyg.table.js
│ │ │ │ └── trumbowyg.table.min.js
│ │ │ ├── template
│ │ │ │ ├── trumbowyg.template.js
│ │ │ │ └── trumbowyg.template.min.js
│ │ │ └── upload
│ │ │ │ ├── trumbowyg.upload.js
│ │ │ │ └── trumbowyg.upload.min.js
│ │ ├── trumbowyg.js
│ │ ├── trumbowyg.min.js
│ │ └── ui
│ │ │ ├── icons.svg
│ │ │ ├── sass
│ │ │ └── trumbowyg.scss
│ │ │ ├── trumbowyg.css
│ │ │ └── trumbowyg.min.css
│ ├── docs
│ │ ├── .gitignore
│ │ ├── .jshintrc
│ │ ├── css
│ │ │ └── main.css
│ │ ├── demos
│ │ │ ├── core
│ │ │ │ └── default.html
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── highlight.js
│ │ │ │ ├── loader.js
│ │ │ │ └── runExampleCode.js
│ │ │ └── plugins
│ │ │ │ ├── base64.html
│ │ │ │ ├── colors.html
│ │ │ │ ├── emoji.html
│ │ │ │ ├── highlight.html
│ │ │ │ ├── history.html
│ │ │ │ ├── insertaudio.html
│ │ │ │ ├── noembed.html
│ │ │ │ ├── pasteembed.html
│ │ │ │ ├── resizimg.html
│ │ │ │ ├── ruby.html
│ │ │ │ ├── table.html
│ │ │ │ ├── template.html
│ │ │ │ └── upload.html
│ │ ├── documentation.html
│ │ ├── documentation
│ │ │ ├── core
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ └── plugins
│ │ │ │ └── index.html
│ │ ├── favicon.png
│ │ ├── font
│ │ │ ├── panton.eot
│ │ │ ├── panton.ttf
│ │ │ ├── panton.woff
│ │ │ └── panton.woff2
│ │ ├── gulpfile.js
│ │ ├── humans.txt
│ │ ├── img
│ │ │ ├── beer.svg
│ │ │ ├── globe.svg
│ │ │ ├── introduction-customizable.svg
│ │ │ ├── introduction-html.svg
│ │ │ ├── introduction-lightweight.svg
│ │ │ ├── logo-doc.svg
│ │ │ ├── logo.svg
│ │ │ └── packages
│ │ │ │ ├── 99ko.svg
│ │ │ │ ├── angular.svg
│ │ │ │ ├── django.svg
│ │ │ │ ├── october.svg
│ │ │ │ ├── rails.svg
│ │ │ │ ├── react.svg
│ │ │ │ ├── rip.svg
│ │ │ │ ├── vue.svg
│ │ │ │ └── yii.svg
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── main.js
│ │ │ └── vendor
│ │ │ │ ├── highlight.js
│ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── robots.txt
│ │ └── scss
│ │ │ ├── _base.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _documentation.scss
│ │ │ ├── _donate.scss
│ │ │ ├── _font.scss
│ │ │ ├── _footer.scss
│ │ │ ├── _get-started.scss
│ │ │ ├── _header.scss
│ │ │ ├── _highlightjs-github.scss
│ │ │ ├── _introduction.scss
│ │ │ ├── _languages.scss
│ │ │ ├── _normalize.scss
│ │ │ ├── _plugins-packages.scss
│ │ │ ├── _section.scss
│ │ │ └── main.scss
│ ├── gulpfile.js
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── plugins
│ │ ├── allowtagsfrompaste
│ │ │ └── trumbowyg.allowtagsfrompaste.js
│ │ ├── base64
│ │ │ ├── trumbowyg.base64.js
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── base64.svg
│ │ ├── cleanpaste
│ │ │ └── trumbowyg.cleanpaste.js
│ │ ├── colors
│ │ │ ├── trumbowyg.colors.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ ├── back-color.svg
│ │ │ │ └── fore-color.svg
│ │ │ │ ├── sass
│ │ │ │ └── trumbowyg.colors.scss
│ │ │ │ └── trumbowyg.colors.css
│ │ ├── emoji
│ │ │ ├── trumbowyg.emoji.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ └── emoji.svg
│ │ │ │ └── sass
│ │ │ │ └── trumbowyg.emoji.scss
│ │ ├── fontfamily
│ │ │ └── trumbowyg.fontfamily.js
│ │ ├── fontsize
│ │ │ └── trumbowyg.fontsize.js
│ │ ├── highlight
│ │ │ ├── trumbowyg.highlight.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ └── highlight.svg
│ │ │ │ └── sass
│ │ │ │ └── trumbowyg.highlight.scss
│ │ ├── history
│ │ │ └── trumbowyg.history.js
│ │ ├── insertaudio
│ │ │ ├── trumbowyg.insertaudio.js
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── insert-audio.svg
│ │ ├── lineheight
│ │ │ └── trumbowyg.lineheight.js
│ │ ├── mathml
│ │ │ ├── trumbowyg.mathml.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ └── mathml.svg
│ │ │ │ └── sass
│ │ │ │ └── trumbowyg.mathml.scss
│ │ ├── mention
│ │ │ ├── trumbowyg.mention.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ └── mention.svg
│ │ │ │ └── sass
│ │ │ │ └── trumbowyg.mention.scss
│ │ ├── noembed
│ │ │ ├── trumbowyg.noembed.js
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── noembed.svg
│ │ ├── pasteembed
│ │ │ └── trumbowyg.pasteembed.js
│ │ ├── pasteimage
│ │ │ └── trumbowyg.pasteimage.js
│ │ ├── preformatted
│ │ │ ├── trumbowyg.preformatted.js
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── preformatted.svg
│ │ ├── resizimg
│ │ │ └── trumbowyg.resizimg.js
│ │ ├── ruby
│ │ │ ├── trumbowyg.ruby.js
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── ruby.svg
│ │ ├── table
│ │ │ ├── trumbowyg.table.js
│ │ │ └── ui
│ │ │ │ ├── icons
│ │ │ │ ├── col-delete.svg
│ │ │ │ ├── col-left.svg
│ │ │ │ ├── col-right.svg
│ │ │ │ ├── row-above.svg
│ │ │ │ ├── row-below.svg
│ │ │ │ ├── row-delete.svg
│ │ │ │ └── table-delete.svg
│ │ │ │ └── sass
│ │ │ │ └── trumbowyg.table.scss
│ │ ├── template
│ │ │ └── trumbowyg.template.js
│ │ └── upload
│ │ │ ├── trumbowyg.upload.js
│ │ │ └── ui
│ │ │ └── icons
│ │ │ └── upload.svg
│ ├── sponsors
│ │ ├── appseed.png
│ │ └── avot.svg
│ └── src
│ │ ├── langs
│ │ ├── ar.js
│ │ ├── bg.js
│ │ ├── by.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── da.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en.js
│ │ ├── es.js
│ │ ├── es_ar.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fr.js
│ │ ├── he.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── ko.js
│ │ ├── lt.js
│ │ ├── mn.js
│ │ ├── my.js
│ │ ├── nl.js
│ │ ├── no_nb.js
│ │ ├── ph.js
│ │ ├── pl.js
│ │ ├── pt.js
│ │ ├── pt_br.js
│ │ ├── ro.js
│ │ ├── rs.js
│ │ ├── rs_latin.js
│ │ ├── ru.js
│ │ ├── sk.js
│ │ ├── sq.js
│ │ ├── sv.js
│ │ ├── tr.js
│ │ ├── ua.js
│ │ ├── vi.js
│ │ ├── zh_cn.js
│ │ └── zh_tw.js
│ │ ├── trumbowyg.js
│ │ └── ui
│ │ ├── icons
│ │ ├── blockquote.svg
│ │ ├── bold.svg
│ │ ├── close.svg
│ │ ├── create-link.svg
│ │ ├── del.svg
│ │ ├── em.svg
│ │ ├── fontsize.svg
│ │ ├── fullscreen.svg
│ │ ├── h1.svg
│ │ ├── h2.svg
│ │ ├── h3.svg
│ │ ├── h4.svg
│ │ ├── horizontal-rule.svg
│ │ ├── insert-image.svg
│ │ ├── italic.svg
│ │ ├── justify-center.svg
│ │ ├── justify-full.svg
│ │ ├── justify-left.svg
│ │ ├── justify-right.svg
│ │ ├── lineheight.svg
│ │ ├── link.svg
│ │ ├── ordered-list.svg
│ │ ├── p.svg
│ │ ├── redo.svg
│ │ ├── removeformat.svg
│ │ ├── strikethrough.svg
│ │ ├── strong.svg
│ │ ├── subscript.svg
│ │ ├── superscript.svg
│ │ ├── table.svg
│ │ ├── underline.svg
│ │ ├── undo.svg
│ │ ├── unlink.svg
│ │ ├── unordered-list.svg
│ │ └── view-html.svg
│ │ └── sass
│ │ └── trumbowyg.scss
│ ├── bootstrap-markdown-editor-master
│ ├── .gitignore
│ ├── Bugs_code
│ │ ├── header.php
│ │ └── showeditor.js
│ ├── Gruntfile.js
│ ├── LICENSE
│ ├── bower.json
│ ├── dist
│ │ ├── css
│ │ │ └── bootstrap-markdown-editor.css
│ │ └── js
│ │ │ └── bootstrap-markdown-editor.js
│ ├── index.html
│ ├── package.json
│ ├── screenshots
│ │ └── screenshot-01.png
│ └── src
│ │ ├── bootstrap-markdown-editor.js
│ │ └── bootstrap-markdown-editor.less
│ ├── ckeditor
│ ├── Bugs_code
│ │ ├── header.php
│ │ └── showeditor.js
│ ├── CHANGES.md
│ ├── LICENSE.md
│ ├── TraiterImage.php
│ ├── TraiterImagePNG.php
│ ├── adapters
│ │ └── jquery.js
│ ├── build-config.js
│ ├── ckeditor.js
│ ├── ckeditor_ChoisirImage.php
│ ├── ckeditor_RecevoirImage.php
│ ├── config.js
│ ├── contents.css
│ ├── lang
│ │ ├── _translationstatus.txt
│ │ ├── af.js
│ │ ├── ar.js
│ │ ├── az.js
│ │ ├── bg.js
│ │ ├── bn.js
│ │ ├── bs.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.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
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── ka.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── ku.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── mn.js
│ │ ├── ms.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
│ ├── plugins
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.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.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
│ │ │ │ ├── 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
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── fastimage
│ │ │ ├── dialogs
│ │ │ │ └── fastimage.js
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── horizontalrule
│ │ │ ├── icons
│ │ │ │ ├── hidpi
│ │ │ │ │ └── horizontalrule.png
│ │ │ │ └── horizontalrule.png
│ │ │ ├── lang
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── bs.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.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
│ │ │ │ ├── is.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── ka.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── ms.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
│ │ │ └── plugin.js
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── image
│ │ │ ├── dialogs
│ │ │ │ └── image.js
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── imagebrowser
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.rst
│ │ │ └── browser
│ │ │ │ ├── browser.css
│ │ │ │ ├── browser.html
│ │ │ │ ├── browser.js
│ │ │ │ └── jquery-1.9.1.min.js
│ │ ├── justify
│ │ │ ├── icons
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── justifyblock.png
│ │ │ │ │ ├── justifycenter.png
│ │ │ │ │ ├── justifyleft.png
│ │ │ │ │ └── justifyright.png
│ │ │ │ ├── justifyblock.png
│ │ │ │ ├── justifycenter.png
│ │ │ │ ├── justifyleft.png
│ │ │ │ └── justifyright.png
│ │ │ └── plugin.js
│ │ ├── language
│ │ │ ├── icons
│ │ │ │ ├── hidpi
│ │ │ │ │ └── language.png
│ │ │ │ └── language.png
│ │ │ ├── lang
│ │ │ │ ├── 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-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es-mx.js
│ │ │ │ ├── es.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── oc.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ └── plugin.js
│ │ ├── link
│ │ │ ├── dialogs
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ ├── linkayt
│ │ │ ├── linkayt.zip
│ │ │ ├── linkayt_10.zip
│ │ │ ├── plugin.js
│ │ │ └── reseve.js
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ ├── pastecode
│ │ │ └── CHANGES.md
│ │ ├── pastefromword
│ │ │ └── filter
│ │ │ │ └── default.js
│ │ ├── scayt
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ └── dialogs
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ ├── simple-image-browser
│ │ │ └── images
│ │ │ │ └── icon.png
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.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.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
│ │ │ │ ├── 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
│ │ ├── tliyoutube2
│ │ │ └── dialogs
│ │ │ │ └── tliyoutube2.js
│ │ └── wsc
│ │ │ ├── LICENSE.md
│ │ │ └── dialogs
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ ├── skins
│ │ └── moono
│ │ │ ├── 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
│ │ │ └── spinner.gif
│ │ │ └── readme.md
│ └── styles.js
│ └── searchEngine
│ ├── Chercher.php
│ ├── FonctionsCommunes.php
│ ├── index.php
│ └── tools.php
├── config.app.example.php
├── favicon-16x16.png
├── favicon-196x196.png
├── favicon.ico
├── index.htm
├── index.html
├── index.php
├── install
├── DB_Schema_activity.php
├── DB_Schema_following.php
├── DB_Schema_permissions.php
├── DB_Schema_projects.php
├── DB_Schema_projects_issues.php
├── DB_Schema_projects_issues_attachments.php
├── DB_Schema_projects_issues_comments.php
├── DB_Schema_projects_issues_tags.php
├── DB_Schema_projects_links.php
├── DB_Schema_projects_users.php
├── DB_Schema_roles.php
├── DB_Schema_roles_permissions.php
├── DB_Schema_settings.php
├── DB_Schema_tags.php
├── DB_Schema_update_history.php
├── DB_Schema_users.php
├── DB_Schema_users_activity.php
├── DB_Schema_users_dispo.php
├── DB_Schema_users_todos.php
├── Laravel_DB_Schema.php
├── MySQL_DB_Schema.sql
├── config-setup.php
├── get_updates_list
├── historique.txt
├── index.php
├── install.php
├── mysql-structure.php
├── old_update_v1-1_1.sql
├── old_update_v1-2_9.sql
├── old_update_v1-3_1.sql
├── old_update_v1-3_2.sql
├── old_update_v1-3_3.sql
├── old_update_v1-8_3a.sql
├── old_update_v1-8_4a.sql
├── old_update_v1-8_4b.sql
├── old_update_v1-8_4d.sql
├── restore.php
├── surete_DB_Schema_sessions.php
├── tools.php
├── update.php
├── update_v1-8_5af.sql
├── update_v1-8_5t.sql
├── update_v1-8_6e.sql
├── update_v1-8_7a.sql
├── update_v1-8_7ag.sql
├── update_v1-8_7b.sql
├── update_v1-8_7c.sql
├── update_v1-8_7m.sql
├── update_v1-8_7p.sql
├── update_v1-8_7r.sql
├── update_v1-8_7s.sql
├── update_v1-8_7u.sql
├── update_v1-9_1a.sql
└── update_v1-9_1g.sql
├── license.txt
├── temp
├── .gitignore
├── index.htm
├── index.html
└── index.php
├── uploads
├── .gitignore
├── index.htm
├── index.html
└── index.php
└── web.config
/.htaccess:
--------------------------------------------------------------------------------
1 |
title,$project->name,$verb); ?>.
2 | 3 | :
4 | to(); ?>
title,$project->name); ?>:
2 | 3 | 4 | 5 |
6 | to(); ?>
title,$project->name); ?>.
2 | 3 |body); ?>
4 | 5 |user->firstname . ' ' . $issue->user->lastname); ?>
6 | to(); ?>
3 | '.$email.'',''.$password.''); ?> 4 |
5 | -------------------------------------------------------------------------------- /app/application/views/email/reassigned_issue.php: -------------------------------------------------------------------------------- 1 |title,$project->name); ?>.
2 | 3 |body); ?>
4 | 5 |
6 | to(); ?>
title,$project->name); ?>.
2 | 3 |body); ?>
4 | 5 |
6 | to(); ?>