summaryrefslogtreecommitdiffstats
path: root/public/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Update jQuery to v1.12.4 (#4551)techknowlogick2018-07-303-7/+7
| | | Fix #4384
* relative URLs for LibreJS page (#4460)techknowlogick2018-07-181-24/+24
| | | Fix #4449
* Added front-end topics validation (#4316)Alexey Terentyev2018-07-1424-697/+5622
|
* Update gitgraph.js to fix "Cannot read property color of undefined" (#4095)Alexey Terentyev2018-06-022-28/+45
| | | Signed-off-by: Alexey Terentyev <axifnx@gmail.com>
* Remove autolink.js references (#4072)techknowlogick2018-05-292-8/+3
| | | | | | | | | | * Autolink.js no longer used Fixes #4069 * Remove autolink.js references * Fix reference to u2f js
* Add support for FIDO U2F (#3971)Jonas Franz2018-05-192-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for U2F Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add vendor library Add missing translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F support for Firefox, Chrome (Android) by introducing a custom JS library Add U2F error handling Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F login page to OAuth Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move U2F user settings to a separate file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for u2f model Renamed u2f table name Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by refactoring Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F documentation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove not needed console.log-s Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add default values to app.ini.sample Add FIDO U2F to comparison Signed-off-by: Jonas Franz <info@jonasfranz.software>
* Add swagger check (#3811)Antoine GIRARD2018-04-2010-123/+106
|
* Rework special link parsing in the post-processing of markup (#3354)Morgan Bazalgette2018-02-272-66/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Get rid of autolink * autolink in markdown * Replace email addresses with mailto links * better handling of links * Remove autolink.js from footer * Refactor entire html.go * fix some bugs * Make tests green, move what we can to html_internal_test, various other changes to processor logic * Make markdown tests work again This is just a description to allow me to force push in order to restart the drone build. * Fix failing markdown tests in routers/api/v1/misc * Add license headers, log errors, future-proof <body> * fix formatting
* Emoji Autocomplete (#3433)modmew82018-02-031-16/+3
| | | | | | | | | | | | * Implemented emoji autocomplete. * Changed emoji access url. * Reverted vendor css to default, moved all style changes to _tribute.less * Made no-results overwriteable, added missing autocomplete to edit issue field. Signed-off-by: modmew8 <modmew8@gmail.com>
* Mention completion for issue editor. (#3136)harry2017-12-112-0/+42
| | | | | | | | | | * new issue mention * Mention completion on new issue and view issue page. * Code format. * Require tribute in pull request page.
* Update gitgraph.js to fix blurry commit graph on HiDPI screens (#2957)Michael Kuhn2017-11-232-4/+21
|
* Move swagger-ui under /api/v1 (#2746)Antoine GIRARD2017-10-219-174/+130
| | | | | | | | | | | | * Move swagger interface under /api/v1 * Update swagger-ui * Add /api/swagger and prepare for multiple api version * Update test links * Fix footer link
* bug fixedLunny Xiao2017-09-041-1/+1
|
* Move themes to plugin directory. Fixes #2372 (#2375)Michael Lustfield2017-08-2415-0/+1335
|
* Moved vendored js/css into `public/vendor` and documented sources (#1484) ↵Michael Lustfield2017-08-231329-0/+122286
(#2241) * Cleaning up public/ and documenting js/css libs. This commit mostly addresses #1484 by moving vendor'ed plugins into a vendor/ directory and documenting their upstream source and license in vendor/librejs.html. This also proves gitea is using only open source js/css libraries which helps toward reaching #1524. * Removing unused css file. The version of this file in use is located at: vendor/plugins/highlight/github.css * Cleaned up librejs.html and added javascript header A SafeJS function was added to templates/helper.go to allow keeping comments inside of javascript. A javascript comment was added in the header of templates/base/head.tmpl to mark all non-inline source as free. The librejs.html file was updated to meet the current librejs spec. I have now verified that the librejs plugin detects most of the scripts included in gitea and suspect the non-free detections are the result of a bug in the plugin. I believe this commit is enough to meet the C0.0 requirement of #1534. * Updating SafeJS function per lint suggestion * Added VERSIONS file, per request