├── .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 | 2 | RewriteEngine On 3 | 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteRule ^(.*)$ index.php?/$1 [L,QSA] 7 | 8 | -------------------------------------------------------------------------------- /app/application/config/tinyissue.php: -------------------------------------------------------------------------------- 1 | '11-11-2022', 4 | 'version' => '1.9', 5 | 'release' => '1g' 6 | ); 7 | -------------------------------------------------------------------------------- /app/application/libraries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/libraries/.gitignore -------------------------------------------------------------------------------- /app/application/libraries/PHPmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.22 2 | -------------------------------------------------------------------------------- /app/application/libraries/fpdf/FAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/libraries/fpdf/FAQ.htm -------------------------------------------------------------------------------- /app/application/libraries/fpdf/changelog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/libraries/fpdf/changelog.htm -------------------------------------------------------------------------------- /app/application/libraries/fpdf/font/courier.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /app/application/libraries/fpdf/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/libraries/fpdf/install.txt -------------------------------------------------------------------------------- /app/application/libraries/fpdf/license.txt: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy 2 | of this software to use, copy, modify, distribute, sublicense, and/or sell 3 | copies of the software, and to permit persons to whom the software is furnished 4 | to do so. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. -------------------------------------------------------------------------------- /app/application/models/permission.php: -------------------------------------------------------------------------------- 1 | get() as $role) 17 | { 18 | $roles[$role->id]=$role->name; 19 | } 20 | 21 | return $roles; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /app/application/models/setting.php: -------------------------------------------------------------------------------- 1 | has_many_and_belongs_to('\Project\Issue', 'projects_issues_tags', 'tag_id', 'issue_id'); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /app/application/tests/example.test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /app/application/views/email/change_status_issue.php: -------------------------------------------------------------------------------- 1 |

title,$project->name,$verb); ?>.

2 | 3 |

:
4 | to(); ?>

-------------------------------------------------------------------------------- /app/application/views/email/commented_issue.php: -------------------------------------------------------------------------------- 1 |

title,$project->name); ?>:

2 | 3 |

4 | 5 |


6 | to(); ?>

-------------------------------------------------------------------------------- /app/application/views/email/new_issue.php: -------------------------------------------------------------------------------- 1 |

title,$project->name); ?>.

2 | 3 |

body); ?>

4 | 5 |

user->firstname . ' ' . $issue->user->lastname); ?>
6 | to(); ?>

-------------------------------------------------------------------------------- /app/application/views/email/new_user.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | '.$email.'',''.$password.''); ?> 4 |

5 | -------------------------------------------------------------------------------- /app/application/views/email/reassigned_issue.php: -------------------------------------------------------------------------------- 1 |

title,$project->name); ?>.

2 | 3 |

body); ?>

4 | 5 |


6 | to(); ?>

7 | -------------------------------------------------------------------------------- /app/application/views/email/update_issue.php: -------------------------------------------------------------------------------- 1 |

title,$project->name); ?>.

2 | 3 |

body); ?>

4 | 5 |

 
6 | to(); ?>

-------------------------------------------------------------------------------- /app/application/views/layouts/project.php: -------------------------------------------------------------------------------- 1 | with('sidebar', $sidebar)->with('active', $active); ?> 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/application/views/layouts/wrapper.php: -------------------------------------------------------------------------------- 1 | with('sidebar', $sidebar)->with('active', $active); ?> 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/application/views/project/issue/activity/Follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/views/project/issue/activity/Follow.php -------------------------------------------------------------------------------- /app/application/views/project/issue/activity/IssueEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/views/project/issue/activity/IssueEdit.php -------------------------------------------------------------------------------- /app/application/views/project/issue/activity/create-issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/application/views/project/issue/activity/create-issue.php -------------------------------------------------------------------------------- /app/application/views/project/issue/tag.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | #39404f 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon-160x160.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon-16x16.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon-196x196.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon-32x32.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon-96x96.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon.jpg -------------------------------------------------------------------------------- /app/assets/images/app-icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/favicon.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/mstile-144x144.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/mstile-150x150.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/mstile-310x150.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/mstile-310x310.png -------------------------------------------------------------------------------- /app/assets/images/app-icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/app-icons/mstile-70x70.png -------------------------------------------------------------------------------- /app/assets/images/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/dropdown-arrow.png -------------------------------------------------------------------------------- /app/assets/images/dropdown-arrow_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/dropdown-arrow_24x24.png -------------------------------------------------------------------------------- /app/assets/images/dropdown-arrow_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/dropdown-arrow_48x48.png -------------------------------------------------------------------------------- /app/assets/images/dropdown-arrow_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/dropdown-arrow_big.png -------------------------------------------------------------------------------- /app/assets/images/icon-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icon-todo.png -------------------------------------------------------------------------------- /app/assets/images/icons/attached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/attached.png -------------------------------------------------------------------------------- /app/assets/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/edit.png -------------------------------------------------------------------------------- /app/assets/images/icons/file_01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_01.jpeg -------------------------------------------------------------------------------- /app/assets/images/icons/file_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_01.png -------------------------------------------------------------------------------- /app/assets/images/icons/file_02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_02.jpeg -------------------------------------------------------------------------------- /app/assets/images/icons/file_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_02.png -------------------------------------------------------------------------------- /app/assets/images/icons/file_03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_03.jpeg -------------------------------------------------------------------------------- /app/assets/images/icons/file_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/file_03.png -------------------------------------------------------------------------------- /app/assets/images/icons/global-saving.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/icons/global-saving.gif -------------------------------------------------------------------------------- /app/assets/images/layout/addnewuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/addnewuser.png -------------------------------------------------------------------------------- /app/assets/images/layout/adduser-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/adduser-input.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/bg.jpg -------------------------------------------------------------------------------- /app/assets/images/layout/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/bg.png -------------------------------------------------------------------------------- /app/assets/images/layout/blue-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/blue-bg.png -------------------------------------------------------------------------------- /app/assets/images/layout/chrono-anime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/chrono-anime.gif -------------------------------------------------------------------------------- /app/assets/images/layout/chronometre_actif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/chronometre_actif.gif -------------------------------------------------------------------------------- /app/assets/images/layout/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/dropdown-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/dropdown-arrow_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/dropdown-arrow_24x24.png -------------------------------------------------------------------------------- /app/assets/images/layout/dropdown-arrow_24x24.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/dropdown-arrow_24x24.xcf -------------------------------------------------------------------------------- /app/assets/images/layout/dropdown-arrow_72x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/dropdown-arrow_72x24.png -------------------------------------------------------------------------------- /app/assets/images/layout/dropdown-top-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/dropdown-top-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/h2-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/h2-bg.png -------------------------------------------------------------------------------- /app/assets/images/layout/h2-bg_bleue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/h2-bg_bleue.png -------------------------------------------------------------------------------- /app/assets/images/layout/h2-bg_quasinoire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/h2-bg_quasinoire.png -------------------------------------------------------------------------------- /app/assets/images/layout/h2-bg_verte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/h2-bg_verte.png -------------------------------------------------------------------------------- /app/assets/images/layout/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/header-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/layout/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-bi-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-bi-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-bigadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-bigadd.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-bigedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-bigedit.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-bigedit_gris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-bigedit_gris.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-clock.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-comments.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-comments_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-comments_0.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-comments_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-comments_1.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-comments_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-comments_2.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-dashboard.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-dashboard_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-dashboard_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-delete.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-delete_gris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-delete_gris.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-edit.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-edit_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-edit_1.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-empty.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-help.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-help_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-help_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-issues.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-issues_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-issues_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-li-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-li-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-li-arrow_acier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-li-arrow_acier.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-li-arrow_bleue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-li-arrow_bleue.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-li-arrow_noire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-li-arrow_noire.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-li-arrow_verte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-li-arrow_verte.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-logout.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-logout_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-logout_active.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-pencil.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-projects.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-projects_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-projects_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-reports.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-reports.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-reports.xcf -------------------------------------------------------------------------------- /app/assets/images/layout/icon-reports_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-reports_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-ri-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-ri-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-settings.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-settings_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-ti-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-ti-arrow.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-todo.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-todo_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-todo_inactive.png -------------------------------------------------------------------------------- /app/assets/images/layout/icon-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/icon-website.png -------------------------------------------------------------------------------- /app/assets/images/layout/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/logo.jpg -------------------------------------------------------------------------------- /app/assets/images/layout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/logo.png -------------------------------------------------------------------------------- /app/assets/images/layout/logo_brouille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/logo_brouille.png -------------------------------------------------------------------------------- /app/assets/images/layout/logo_degrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/logo_degrade.png -------------------------------------------------------------------------------- /app/assets/images/layout/newissue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/newissue.png -------------------------------------------------------------------------------- /app/assets/images/layout/tinyissue.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/tinyissue.ai -------------------------------------------------------------------------------- /app/assets/images/layout/tinyissue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/tinyissue.pdf -------------------------------------------------------------------------------- /app/assets/images/layout/tinyissue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/tinyissue.png -------------------------------------------------------------------------------- /app/assets/images/layout/yourissues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/layout/yourissues.png -------------------------------------------------------------------------------- /app/assets/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/left-arrow.png -------------------------------------------------------------------------------- /app/assets/images/present_non.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/present_non.png -------------------------------------------------------------------------------- /app/assets/images/present_oui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/present_oui.png -------------------------------------------------------------------------------- /app/assets/images/reports/Customized.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Customized.xcf -------------------------------------------------------------------------------- /app/assets/images/reports/Customized_reduit.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Customized_reduit.xcf -------------------------------------------------------------------------------- /app/assets/images/reports/Stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_custom.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_issues.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_issues_prem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_issues_prem.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_projects.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_projects_prem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_projects_prem.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_tags.png -------------------------------------------------------------------------------- /app/assets/images/reports/Stat_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/Stat_users.png -------------------------------------------------------------------------------- /app/assets/images/reports/issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/issues.png -------------------------------------------------------------------------------- /app/assets/images/reports/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/projects.png -------------------------------------------------------------------------------- /app/assets/images/reports/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/tags.png -------------------------------------------------------------------------------- /app/assets/images/reports/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/reports/users.png -------------------------------------------------------------------------------- /app/assets/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/right-arrow.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/BUGS_Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/BUGS_Login.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_AcceptedTask_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_AcceptedTask_dashboard.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Calendar_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Calendar_grid.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Calendar_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Calendar_list.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Canevas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Canevas.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Canevas_Sombre_Bleu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Canevas_Sombre_Bleu.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Canevas_Sombre_Rouge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Canevas_Sombre_Rouge.png -------------------------------------------------------------------------------- /app/assets/images/screenshots/Tickets_Canevas_Sombre_Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/screenshots/Tickets_Canevas_Sombre_Vert.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/deb.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/doc.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/docx.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/odp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/odp.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/odt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/odt.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/pdf.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/ppt.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/pptx.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/rpm.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/txt.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/wpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/wpd.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/wpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/wpg.png -------------------------------------------------------------------------------- /app/assets/images/upload_type/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/assets/images/upload_type/zip.png -------------------------------------------------------------------------------- /app/bundles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/bundles/.gitignore -------------------------------------------------------------------------------- /app/bundles/sparkdown/apigen.neon: -------------------------------------------------------------------------------- 1 | title: Sparkdown Bundle 2 | main: Sparkdown 3 | source: . 4 | destination: api 5 | groups: packages -------------------------------------------------------------------------------- /app/bundles/sparkdown/bundle.php: -------------------------------------------------------------------------------- 1 | __DIR__.DS.'view'.EXT, 6 | 'Sparkdown_Page_Controller' => __DIR__.DS.'controllers'.DS.'page'.EXT, 7 | )); 8 | 9 | // It's safe to assume that if you've started the bundle you're 10 | // going to want to use the parser. 11 | require __DIR__.DS."parser.php"; 12 | -------------------------------------------------------------------------------- /app/laravel/cli/tasks/bundle/providers/github.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | {{directory}} 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/laravel/crypter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/storage/reports/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/storage/reports/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components/" 3 | } 4 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # SCSS and JS files must always use LF for tools to work 5 | *.js eol=lf 6 | *.scss eol=lf -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/.gitignore: -------------------------------------------------------------------------------- 1 | # Others 2 | ~$* 3 | /.sass-cache 4 | /uploaded-files 5 | /node_modules 6 | /bower_components 7 | /dist 8 | /src/ui/sass/_sprite* 9 | /plugins/**/ui/sass/_sprite* 10 | 11 | 12 | # Windows image file caches 13 | Thumbs.db 14 | 15 | # Folder config file 16 | Desktop.ini 17 | 18 | # Mac crap 19 | .DS_Store 20 | 21 | # IDEA 22 | .idea 23 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/.npmignore: -------------------------------------------------------------------------------- 1 | Gulpfile.js 2 | banner.jpg 3 | bower.json 4 | src 5 | docs 6 | bower_components 7 | .idea 8 | sponsors 9 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Informations 2 | 3 | **Browser version**: 4 | **OS**: 5 | **Screen resolution**: 6 | 7 | 8 | ### How to reproduce the bug? 9 | 10 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/banner.jpg -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/dist/plugins/mathml/ui/trumbowyg.mathml.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.9.4 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .mathMlContainer{position:relative}.mathMlContainer[inline=false]{display:block;width:100%}.mathMlContainer:hover{pointer-events:none}.mathMlContainer:hover:after{content:'\270E';pointer-events:auto;position:absolute;left:0;top:0;background-color:#fffd4;cursor:pointer;bottom:0;right:0;box-shadow:0 0 5px 5px #fffd4} -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/dist/plugins/pasteimage/trumbowyg.pasteimage.min.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";e.extend(!0,e.trumbowyg,{plugins:{pasteImage:{init:function(e){e.pasteHandlers.push(function(t){try{for(var a,n=(t.originalEvent||t).clipboardData.items,i=n.length-1;i>=0;i+=1)n[i].type.match(/^image\//)&&(a=new FileReader,a.onloadend=function(t){e.execCmd("insertImage",t.target.result,void 0,!0)},a.readAsDataURL(n[i].getAsFile()))}catch(r){}})}}}})}(jQuery); -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /bower_components 3 | /dist 4 | /src 5 | /plugins 6 | uploaded-files/ -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/demos/js/runExampleCode.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | 4 | $('.js-code-to-eval').each(function() { 5 | eval($(this).text()); // jshint ignore:line 6 | $(this).text($(this).text().replace(/'Client-ID\s[a-z0-9]+'/, '\'Client-ID xxxxxxxxxxxx\'')); 7 | }); 8 | })(jQuery); 9 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/documentation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/docs/favicon.png -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/font/panton.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/docs/font/panton.eot -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/font/panton.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/docs/font/panton.ttf -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/font/panton.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/docs/font/panton.woff -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/font/panton.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/docs/font/panton.woff2 -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | Alex-D -- Main developper -- @AlexandreDemode 7 | 8 | # THANKS 9 | 10 | Vinz 11 | Simbilou 12 | 13 | # TECHNOLOGY COLOPHON 14 | 15 | HTML5, CSS3 16 | jQuery, Modernizr 17 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/img/packages/vue.svg: -------------------------------------------------------------------------------- 1 | pictos_vue -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/docs/scss/_font.scss: -------------------------------------------------------------------------------- 1 | // Panton Light 2 | @font-face { 3 | font-family: 'Panton'; 4 | src: url('../font/panton.eot'); 5 | src: url('../font/panton.eot?#iefix') format('embedded-opentype'), 6 | url('../font/panton.woff2') format('woff2'), 7 | url('../font/panton.woff') format('woff'), 8 | url('../font/panton.ttf') format('truetype'); 9 | font-weight: 300; 10 | } -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/plugins/highlight/ui/sass/trumbowyg.highlight.scss: -------------------------------------------------------------------------------- 1 | .trumbowyg-highlight-form-group { 2 | margin: 15px 10px; 3 | 4 | .trumbowyg-highlight-form-control { 5 | width: 100%; 6 | border: 1px solid #DEDEDE; 7 | font-size: 14px; 8 | padding: 7px; 9 | 10 | &.code { 11 | height: 200px; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/sponsors/appseed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/Trumbowyg/sponsors/appseed.png -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/src/langs/en.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * en.js 3 | * English translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alexandre Demode (Alex-D) 7 | * Twitter : @AlexandreDemode 8 | * Website : alex-d.fr 9 | */ 10 | 11 | /** 12 | * English is the default languange of Trumbowyg, 13 | * you don't need to include any file :) 14 | */ -------------------------------------------------------------------------------- /app/vendor/Trumbowyg/src/ui/icons/fontsize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/vendor/bootstrap-markdown-editor-master/.gitignore: -------------------------------------------------------------------------------- 1 | # OS or Editor folders 2 | ._* 3 | .cache 4 | .DS_Store 5 | .idea 6 | .project 7 | .settings 8 | .tmproj 9 | *.esproj 10 | *.sublime-project 11 | *.sublime-workspace 12 | nbproject 13 | Thumbs.db 14 | 15 | # Komodo 16 | .komodotools 17 | *.komodoproject 18 | 19 | # Folders to ignore 20 | bower_components 21 | node_modules 22 | -------------------------------------------------------------------------------- /app/vendor/bootstrap-markdown-editor-master/Bugs_code/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/bootstrap-markdown-editor-master/Bugs_code/header.php -------------------------------------------------------------------------------- /app/vendor/bootstrap-markdown-editor-master/Bugs_code/showeditor.js: -------------------------------------------------------------------------------- 1 | function AffichonsEditor(id) { 2 | } 3 | -------------------------------------------------------------------------------- /app/vendor/bootstrap-markdown-editor-master/screenshots/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/bootstrap-markdown-editor-master/screenshots/screenshot-01.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/Bugs_code/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/Bugs_code/header.php -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/fastimage/dialogs/fastimage.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | (function(){CKEDITOR.dialog.add("fastimage",function(){});CKEDITOR.dialog.add("imagebutton",function(){})})(); -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/fastimage/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/fastimage/images/noimage.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/icons/hidpi/horizontalrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/horizontalrule/icons/hidpi/horizontalrule.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/icons/horizontalrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/horizontalrule/icons/horizontalrule.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'af', { 6 | toolbar: 'Horisontale lyn invoeg' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ar', { 6 | toolbar: 'خط فاصل' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/az.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'az', { 6 | toolbar: 'Sərhəd xətti yarat' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'bg', { 6 | toolbar: 'Вмъкване на хоризонтална линия' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'bn', { 6 | toolbar: 'অনুভূমিক লাইন যোগ করি' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'bs', { 6 | toolbar: 'Ubaci horizontalnu liniju' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ca', { 6 | toolbar: 'Insereix línia horitzontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'cs', { 6 | toolbar: 'Vložit vodorovnou linku' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'cy', { 6 | toolbar: 'Mewnosod Llinell Lorweddol' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'da', { 6 | toolbar: 'Indsæt vandret streg' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'de-ch', { 6 | toolbar: 'Horizontale Linie einfügen' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'de', { 6 | toolbar: 'Horizontale Linie einfügen' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'el', { 6 | toolbar: 'Εισαγωγή Οριζόντιας Γραμμής' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'en-au', { 6 | toolbar: 'Insert Horizontal Line' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'en-ca', { 6 | toolbar: 'Insert Horizontal Line' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'en-gb', { 6 | toolbar: 'Insert Horizontal Line' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'en', { 6 | toolbar: 'Insert Horizontal Line' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'eo', { 6 | toolbar: 'Enmeti Horizontalan Linion' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'es', { 6 | toolbar: 'Insertar Línea Horizontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'et', { 6 | toolbar: 'Horisontaaljoone sisestamine' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'eu', { 6 | toolbar: 'Txertatu marra horizontala' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'fa', { 6 | toolbar: 'گنجاندن خط افقی' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'fi', { 6 | toolbar: 'Lisää murtoviiva' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'fo', { 6 | toolbar: 'Ger vatnrætta linju' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'fr-ca', { 6 | toolbar: 'Insérer un séparateur horizontale' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'fr', { 6 | toolbar: 'Ligne horizontale' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'gl', { 6 | toolbar: 'Inserir unha liña horizontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'gu', { 6 | toolbar: 'સમસ્તરીય રેખા ઇન્સર્ટ/દાખલ કરવી' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'he', { 6 | toolbar: 'הוספת קו אופקי' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'hi', { 6 | toolbar: 'हॉरिज़ॉन्टल रेखा इन्सर्ट करें' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'hr', { 6 | toolbar: 'Ubaci vodoravnu liniju' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'hu', { 6 | toolbar: 'Elválasztóvonal beillesztése' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'id', { 6 | toolbar: 'Sisip Garis Horisontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'is', { 6 | toolbar: 'Lóðrétt lína' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'it', { 6 | toolbar: 'Inserisci riga orizzontale' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ja', { 6 | toolbar: '水平線' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ka', { 6 | toolbar: 'ჰორიზონტალური ხაზის ჩასმა' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'km', { 6 | toolbar: 'បន្ថែមបន្ទាត់ផ្តេក' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ko', { 6 | toolbar: '가로 줄 삽입' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ku', { 6 | toolbar: 'دانانی هێلی ئاسۆیی' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'lt', { 6 | toolbar: 'Įterpti horizontalią liniją' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'lv', { 6 | toolbar: 'Ievietot horizontālu Atdalītājsvītru' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'mk', { 6 | toolbar: 'Insert Horizontal Line' // MISSING 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'mn', { 6 | toolbar: 'Хөндлөн зураас оруулах' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ms', { 6 | toolbar: 'Masukkan Garisan Membujur' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'nb', { 6 | toolbar: 'Sett inn horisontal linje' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'nl', { 6 | toolbar: 'Horizontale lijn invoegen' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'no', { 6 | toolbar: 'Sett inn horisontal linje' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/oc.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'oc', { 6 | toolbar: 'Inserir una linha orizontala' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'pl', { 6 | toolbar: 'Wstaw poziomą linię' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'pt-br', { 6 | toolbar: 'Inserir Linha Horizontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'pt', { 6 | toolbar: 'Inserir linha horizontal' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ro', { 6 | toolbar: 'Inserează linie orizontală' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ru', { 6 | toolbar: 'Вставить горизонтальную линию' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'si', { 6 | toolbar: 'තිරස් රේඛාවක් ඇතුලත් කරන්න' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sk', { 6 | toolbar: 'Vložiť vodorovnú čiaru' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sl', { 6 | toolbar: 'Vstavi vodoravno črto' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sq', { 6 | toolbar: 'Vendos Vijë Horizontale' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sr-latn', { 6 | toolbar: 'Unesi horizontalnu liniju' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sr', { 6 | toolbar: 'Унеси хоризонталну линију' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'sv', { 6 | toolbar: 'Infoga horisontal linje' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'th', { 6 | toolbar: 'แทรกเส้นคั่นบรรทัด' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'tr', { 6 | toolbar: 'Yatay Satır Ekle' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'tt', { 6 | toolbar: 'Ятма сызык өстәү' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'ug', { 6 | toolbar: 'توغرا سىزىق قىستۇر' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'uk', { 6 | toolbar: 'Горизонтальна лінія' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'vi', { 6 | toolbar: 'Chèn đường phân cách ngang' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'zh-cn', { 6 | toolbar: '插入水平线' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/horizontalrule/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'horizontalrule', 'zh', { 6 | toolbar: '插入水平線' 7 | } ); 8 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyblock.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/hidpi/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/hidpi/justifycenter.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyleft.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/hidpi/justifyright.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/justifyblock.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/justifycenter.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/justifyleft.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/justify/icons/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/justify/icons/justifyright.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/icons/hidpi/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/language/icons/hidpi/language.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/language/icons/language.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ar', { 7 | button: 'حدد اللغة', 8 | remove: 'حذف اللغة' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/az.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'az', { 7 | button: 'Dilini təyin et', 8 | remove: 'Dilini sil' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'bg', { 7 | button: 'Задай език', 8 | remove: 'Премахни език' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ca', { 7 | button: 'Definir l\'idioma', 8 | remove: 'Eliminar idioma' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'cs', { 7 | button: 'Nastavit jazyk', 8 | remove: 'Odstranit jazyk' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'cy', { 7 | button: 'Gosod iaith', 8 | remove: 'Tynnu iaith' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'da', { 7 | button: 'Vælg sprog', 8 | remove: 'Fjern sprog' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'de-ch', { 7 | button: 'Sprache festlegen', 8 | remove: 'Sprache entfernen' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'de', { 7 | button: 'Sprache festlegen', 8 | remove: 'Sprache entfernen' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'el', { 7 | button: 'Θέση γλώσσας', 8 | remove: 'Αφαίρεση γλώσσας' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'en-au', { 7 | button: 'Set language', 8 | remove: 'Remove language' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'en-gb', { 7 | button: 'Set language', 8 | remove: 'Remove language' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'en', { 7 | button: 'Set language', 8 | remove: 'Remove language' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'eo', { 7 | button: 'Instali lingvon', 8 | remove: 'Forigi lingvon' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'es-mx', { 7 | button: 'Establecer idioma', 8 | remove: 'Remover idioma' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'es', { 7 | button: 'Fijar lenguaje', 8 | remove: 'Quitar lenguaje' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/eu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'eu', { 7 | button: 'Ezarri hizkuntza', 8 | remove: 'Kendu hizkuntza' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'fa', { 7 | button: 'تعیین زبان', 8 | remove: 'حذف زبان' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'fi', { 7 | button: 'Aseta kieli', 8 | remove: 'Poista kieli' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/fo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'fo', { 7 | button: 'Velja tungumál', 8 | remove: 'Remove language' // MISSING 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'fr', { 7 | button: 'Définir la langue', 8 | remove: 'Supprimer la langue' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/gl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'gl', { 7 | button: 'Estabelezer o idioma', 8 | remove: 'Retirar o idioma' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'he', { 7 | button: 'צור שפה', 8 | remove: 'הסר שפה' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'hr', { 7 | button: 'Namjesti jezik', 8 | remove: 'Makni jezik' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'hu', { 7 | button: 'Nyelv beállítása', 8 | remove: 'Nyelv eltávolítása' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'id', { 7 | button: 'Atur Bahasa', 8 | remove: 'Hapus Bahasa' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'it', { 7 | button: 'Imposta lingua', 8 | remove: 'Rimuovi lingua' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ja', { 7 | button: '言語を設定', 8 | remove: '言語を削除' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'km', { 7 | button: 'កំណត់​ភាសា', 8 | remove: 'លុប​ភាសា' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ko', { 7 | button: '언어 설정', 8 | remove: '언어 설정 지우기' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ku', { 7 | button: 'جێگیرکردنی زمان', 8 | remove: 'لابردنی زمان' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'nb', { 7 | button: 'Sett språk', 8 | remove: 'Fjern språk' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'nl', { 7 | button: 'Taal instellen', 8 | remove: 'Taal verwijderen' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'no', { 7 | button: 'Sett språk', 8 | remove: 'Fjern språk' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/oc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'oc', { 7 | button: 'Definir la lenga', 8 | remove: 'Suprimir la lenga' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'pl', { 7 | button: 'Ustaw język', 8 | remove: 'Usuń język' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'pt-br', { 7 | button: 'Configure o Idioma', 8 | remove: 'Remover Idioma' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'pt', { 7 | button: 'Definir Idioma', 8 | remove: 'Remover idioma' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ro', { 7 | button: 'Alege limba', 8 | remove: 'Șterge limba deja selectată' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ru', { 7 | button: 'Установка языка', 8 | remove: 'Удалить язык' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'sk', { 7 | button: 'Nastaviť jazyk', 8 | remove: 'Odstrániť jazyk' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'sl', { 7 | button: 'Nastavi jezik', 8 | remove: 'Odstrani jezik' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'sq', { 7 | button: 'Përzgjidhni gjuhën', 8 | remove: 'Largoni gjuhën' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'sv', { 7 | button: 'Sätt språk', 8 | remove: 'Ta bort språk' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'tr', { 7 | button: 'Dili seç', 8 | remove: 'Dili kaldır' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'tt', { 7 | button: 'Тел сайлау', 8 | remove: 'Телне бетерү' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'ug', { 7 | button: 'تىل تەڭشەك', 8 | remove: 'تىلنى چىقىرىۋەت' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'uk', { 7 | button: 'Установити мову', 8 | remove: 'Вилучити мову' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'vi', { 7 | button: 'Thiết lập ngôn ngữ', 8 | remove: 'Loại bỏ ngôn ngữ' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'zh-cn', { 7 | button: '设置语言', 8 | remove: '移除语言' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/language/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'language', 'zh', { 7 | button: '設定語言', 8 | remove: '移除語言' 9 | } ); 10 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/linkayt/linkayt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/linkayt/linkayt.zip -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/linkayt/linkayt_10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/linkayt/linkayt_10.zip -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/pastecode/CHANGES.md: -------------------------------------------------------------------------------- 1 | Paste code plugin for CKEditor Changelog 2 | ==================== 3 | 4 | ## CKEditor 0.1 5 | 6 | The first stable release of the Paste code plugin for CKEditor. 7 | 8 | See demo here: [Link](http://ollea.ch/media/pastecode/demo.html) 9 | -------------------------------------------------------------------------------- /app/vendor/ckeditor/plugins/simple-image-browser/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/plugins/simple-image-browser/images/icon.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /app/vendor/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/app/vendor/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/favicon-196x196.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/favicon.ico -------------------------------------------------------------------------------- /index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | BUGS 9 | 10 | 11 | Cliquez ici pour entrer / clic here to start 12 | 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | BUGS 9 | 10 | 11 | Cliquez ici pour entrer / clic here to start 12 | 13 | -------------------------------------------------------------------------------- /install/DB_Schema_following.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->integer('user_id')->default(1); 5 | $table->integer('project_id')->default(1); 6 | $table->integer('issue_id')->default(1); 7 | $table->integer('project')->default(0); 8 | $table->integer('attached')->default(1); 9 | $table->integer('tags')->default(1); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /install/DB_Schema_projects.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->string('name', 255)->default(''); 5 | $table->integer('status')->default(1); 6 | $table->timestamps(); 7 | $table->integer('default_assignee')->default(1); 8 | }); 9 | 10 | 11 | -------------------------------------------------------------------------------- /install/DB_Schema_projects_links.php: -------------------------------------------------------------------------------- 1 | increments('id_link'); 4 | $table->integer('id_project')->default(1); 5 | $table->string('category', 25)->default('dev'); 6 | $table->string('link', 100)->default(NULL); 7 | $table->timestamps(); 8 | $table->date('desactivated')->default(NULL); 9 | }); 10 | 11 | 12 | -------------------------------------------------------------------------------- /install/DB_Schema_projects_users.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->integer('user_id')->default(0); 5 | $table->integer('project_id')->default(0); 6 | $table->timestamps(); 7 | }); 8 | 9 | 10 | -------------------------------------------------------------------------------- /install/DB_Schema_settings.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->string('key', 255)->default(''); 5 | $table->text('value')->default(NULL); 6 | $table->string('name', 255)->default(''); 7 | }); 8 | 9 | 10 | -------------------------------------------------------------------------------- /install/DB_Schema_users_activity.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->integer('user_id')->default(NULL); 5 | $table->integer('parent_id')->default(NULL); 6 | $table->integer('item_id')->default(NULL); 7 | $table->integer('action_id')->default(NULL); 8 | $table->integer('type_id')->default(NULL); 9 | $table->text('data'); 10 | $table->timestamps(); 11 | }); 12 | 13 | -------------------------------------------------------------------------------- /install/DB_Schema_users_todos.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->integer('issue_id')->default(NULL); 5 | $table->integer('user_id')->default(NULL); 6 | $table->integer('status')->default(1); 7 | $table->integer('weight')->default(1); 8 | $table->timestamps(); 9 | }); 10 | 11 | -------------------------------------------------------------------------------- /install/get_updates_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/install/get_updates_list -------------------------------------------------------------------------------- /install/historique.txt: -------------------------------------------------------------------------------- 1 | update_v1-1_1.sql;update_v1-2_9.sql;update_v1-3_1.sql;update_v1-3_2.sql;update_v1-8_3a.sql;update_v1-8_4a.sql;update_v1-8_4b.sql;update_v1-3_3.sql;update_v1-8_4d.sql;update_v1-8_5af.sql;update_v1-8_5t.sql;update_v1-8_6e.sql -------------------------------------------------------------------------------- /install/old_update_v1-1_1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE projects_users ADD COLUMN updated_at DATETIME DEFAULT NOW() AFTER role_id; 2 | ALTER TABLE projects_users ADD COLUMN created_at DATETIME DEFAULT NOW() AFTER updated_at; 3 | UPDATE projects_users SET created_at = NOW(), updated_at = NOW() WHERE created_at IS NULL AND updated_at IS NULL; 4 | 5 | -------------------------------------------------------------------------------- /install/old_update_v1-3_3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixeline/bugs/2f676596ed464eb66b746b5b359713c2a71a55cd/install/old_update_v1-3_3.sql -------------------------------------------------------------------------------- /install/old_update_v1-8_3a.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO activity (id, description,activity) VALUES (8, 'Move an issue from project A to project B', 'Changed issue`s project'); 2 | 3 | CREATE TABLE `update_history` ( 4 | `id` int(11) NOT NULL AUTO_INCREMENT, 5 | `Footprint` varchar(25) DEFAULT NULL, 6 | `Description` varchar(100) DEFAULT NULL, 7 | `DteRelease` datetime DEFAULT NULL, 8 | `DteInstall` datetime DEFAULT NULL, 9 | PRIMARY KEY (`id`) 10 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 11 | 12 | -------------------------------------------------------------------------------- /install/old_update_v1-8_4d.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO activity (id, description,activity) VALUES (10, 'Updated an issue', 'IssueEdit'); 2 | -------------------------------------------------------------------------------- /install/surete_DB_Schema_sessions.php: -------------------------------------------------------------------------------- 1 | increments('id'); 4 | $table->integer('last_activity'); 5 | $table->text('data'); 6 | }); 7 | 8 | 9 | -------------------------------------------------------------------------------- /install/update_v1-8_5af.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `activity` (`id`, `description`, `activity`) VALUES (11, 'Deleted a comment','delete_comment' ),(12, 'Edited a comment','edit_comment' ); 2 | -------------------------------------------------------------------------------- /install/update_v1-8_5t.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE tags ADD COLUMN ftcolor VARCHAR(50) DEFAULT '#FFFFFF' AFTER bgcolor ; 2 | -------------------------------------------------------------------------------- /install/update_v1-8_6e.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM `users_activity` WHERE `data` LIKE '{\"added_tags\":{\"%' OR `data` LIKE '%\"removed_tags\":{\"%'; 2 | 3 | -------------------------------------------------------------------------------- /install/update_v1-8_7b.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE projects_issues ADD COLUMN start_at datetime DEFAULT NULL AFTER created_at; 2 | UPDATE projects_issues SET start_at = created_at; 3 | -------------------------------------------------------------------------------- /install/update_v1-8_7c.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users ADD COLUMN preferences text; 2 | INSERT INTO activity (id, description, activity) VALUES (13, 'Elapsed time worked on an issue', 'issue_chrono'); 3 | -------------------------------------------------------------------------------- /install/update_v1-8_7m.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE projects_issues MODIFY COLUMN start_at datetime; 2 | -------------------------------------------------------------------------------- /install/update_v1-8_7p.sql: -------------------------------------------------------------------------------- 1 | UPDATE users SET preferences = replace(preferences, 'point-virgule', '&'); 2 | UPDATE users SET preferences = replace(preferences, '!', '&'); 3 | -------------------------------------------------------------------------------- /install/update_v1-8_7s.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE projects_issues_comments MODIFY COLUMN temps_fait_fin datetime DEFAULT NULL; 2 | ALTER TABLE projects_issues_comments MODIFY COLUMN temps_fait_deb datetime DEFAULT NULL; 3 | ALTER TABLE projects_issues_comments MODIFY COLUMN temps_fait smallint(4) DEFAULT 1; 4 | 5 | -------------------------------------------------------------------------------- /install/update_v1-8_7u.sql: -------------------------------------------------------------------------------- 1 | UPDATE projects_users AS PRO SET role_id = (SELECT role_id FROM users AS USR WHERE USR.id = PRO.user_id), updated_at = NOW() WHERE role_id = 0; 2 | -------------------------------------------------------------------------------- /install/update_v1-9_1g.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `activity` (id, description, DE, EN, ES, FR, IT, RU, ZH_CN, ZH_TW, activity, created_at, updated_at) VALUES (14, 'user login', '', 'user login', '', 'Connexion de cet usager', '', '', '','', 'user_login', '2022-11-11', '2022-11-11'); 2 | INSERT INTO `activity` (id, description, DE, EN, ES, FR, IT, RU, ZH_CN, ZH_TW, activity, created_at, updated_at) VALUES (15, 'user logout', '', 'user logout', '', 'Déconnexion', '', '', '','', 'user_logout', '2022-11-11', '2022-11-11'); -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /temp/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | -------------------------------------------------------------------------------- /temp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | -------------------------------------------------------------------------------- /temp/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | -------------------------------------------------------------------------------- /uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /uploads/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | -------------------------------------------------------------------------------- /uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | -------------------------------------------------------------------------------- /uploads/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OUPS! 6 | 9 | 10 | 11 |

12 |

13 |

14 |

Back to normal / Retour à la racine

15 | 16 | --------------------------------------------------------------------------------