aboutsummaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2021-03-04Merge pull request #135 from n-peugnet/fix-remove-media-classVincent Peugnet
fix(render): remove added media class
2021-03-04fix(render): remove added media classn-peugnet
This class is IMO not usefull as we already have the img selector to select all the medias in the page (or we can even select img and a). On the other hand, adding the class overrides the ones we can add with markdown extra's syntax: {.custom-class}.
2021-03-04fix: init config scriptn-peugnet
- update default values returned by get_class_vars, otherwise domain is never correctly set - use more robust scheme detection
2020-12-19run phpcbf and add fix target to Makefilen-peugnet
2020-08-12disable javascript config option, close #114vincent-peugnet
2020-08-12close #119 config param to disable md hard wrapvincent-peugnet
2020-08-12close #124 display video and audio in gallery viewvincent-peugnet
2020-08-11Merge branch 'master' of https://github.com/vincent-peugnet/wcmsvincent-peugnet
2020-08-11fix #123 media video code generator bugvincent-peugnet
2020-05-31fix(render): css was strtolower-edn-peugnet
html classes or ids can contain uppercase characters
2020-05-25viewportvincent-peugnet
2020-05-25add page specific password protection close #118vincent-peugnet
2020-05-25add /login and /logout close #117vincent-peugnet
2020-05-18Merge branch 'master' of https://github.com/vincent-peugnet/wcmsvincent-peugnet
2020-05-18file :show max upload sizevincent-peugnet
fix #101
2020-05-18Merge pull request #113 from vincent-peugnet/tests-multiple-osVincent Peugnet
Tests multiple os
2020-05-18Merge branch 'master' of https://github.com/vincent-peugnet/wcmsvincent-peugnet
2020-05-18upgrade user password managementvincent-peugnet
- add confirm password option - remove maxlength - add dedicated flash messages
2020-05-15new cookie session systemvincent-peugnet
composer require JWT user stores sessions
2020-05-11fix: log file was not closedn-peugnet
2020-05-08fix: </textarea> closing tag bugn-peugnet
- escape the value in php templates - clean edittab template by the way @vincent-peugnet, you should never use echo in a template Fixes #112
2020-04-29fix default thumbnail and lewline errorsvincent-peugnet
2020-04-29fix bookmark construction in uservincent-peugnet
fix colortag file creation by fixing fn access media
2020-04-29Merge pull request #108 from vincent-peugnet/add-whoopsVincent Peugnet
Add whoops
2020-04-29feature : rename media fix #82vincent-peugnet
2020-04-28fix: never catch LogicExceptions except in indexn-peugnet
2020-04-28fix page secure outputvincent-peugnet
2020-04-28chore: add whoops for a better dev environmentn-peugnet
2020-04-28listen to brother Stan and clean some thingsvincent-peugnet
2020-04-28add session as controller varvincent-peugnet
2020-04-28fix password max sizevincent-peugnet
add error in hydrate
2020-04-28move fonts into mediavincent-peugnet
move global css into media
2020-04-28tests: phpstan adjustments + 3 phpstan fixesn-peugnet
- force exclude templates and vendor directories @vincent-peugnet: this should stop the phpstan-vscode extension to report errors in templates. - fix errors that were only reported on github because of php 7.3: - Missing @throws JsonException annotation - Regex pattern is invalid: Compilation failed: invalid range in character class at offset 16 in pattern: %(src|href)="([\w-_]+(\/([\w-_])+)*\.[a-z0-9]{1,5})"% the regex expected a range beacause the `-` char was placed in between two others. + `\w` includes `_` - plus one last easy error: PHPDoc tag @param references unknown parameter: $authorcompare
2020-04-28fix: error codes on error pagesn-peugnet
- 404 on page not exist - 500 on unknown internal error Fixes #90
2020-04-28feat: select all for code inputsn-peugnet
This enable the "select all" feature for `input.select-all` element. input elements are used because these are the only one with the `select()` method. To obtain the same rendering as before the readonly attribute and the class `code` have been added to these elements. @vincent-peugnet: make sure to use this element for future select-all Closes #107
2020-04-26add bookmarks to mediavincent-peugnet
2020-04-26user bookmarks use new objectvincent-peugnet
+ shortcuts visible in backtopbar
2020-04-25Merge branch master with implement-exceptionvincent-peugnet
2020-04-25fix: most of PHPStan errorsn-peugnet
2020-04-25feat: warning, info & debug directly a throwablen-peugnet
2020-04-25fix: Logger::exception didn't print the error positionn-peugnet
2020-04-22colors refactor with exceptionsvincent-peugnet
2020-04-21correct warning psr 12 : 120 characters linesvincent-peugnet
2020-04-21feat: Logger throws Exceptions instead of dien-peugnet
added FilesTests for future files related tests
2020-04-21feat: add Logger class to log catched errorsn-peugnet
Previously, if Sentry was not enabled, the Exceptions weren't logged anywhere. I expect you to use this class in the future @vincent-peugnet !
2020-04-21refactor: error handling uncatched LogicException exn-peugnet
2020-04-21tests: add exception phpstan extensionsn-peugnet
2020-04-19finish PSR 12 error cleaningvincent-peugnet
2020-04-17apply psr 12 part 2vincent-peugnet
2020-04-17apply psr12vincent-peugnet