aboutsummaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
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
2020-04-17fix bugs detected by sentryvincent-peugnet
2020-04-14finish flashmessages implementationvincent-peugnet
+ clean css
2020-04-13first arrival of flash messages close #85vincent-peugnet
2020-04-11codemirror style and editor cleanupvincent-peugnet
2020-04-10user manage password close #69vincent-peugnet
users can change their passwords themself
2020-04-09connect using user and password close #70vincent-peugnet
2020-04-09feature : cookie session managementvincent-peugnet
2020-04-09Merge branch 'master' of https://github.com/vincent-peugnet/wcmsvincent-peugnet
2020-04-09remember me with hash comparaison close #68vincent-peugnet
2020-04-08simple cookies storagevincent-peugnet
using flywheel autogerated ID
2020-04-08Merge pull request #86 from n-peugnet/fix-summary-renderingVincent Peugnet
Fix summary rendering
2020-04-08fix: SUMMARY does not work with custom header Idsn-peugnet
Fixes #80
2020-04-08fix and clean Optvincent-peugnet
2020-04-08fix: SUMMARY produces invalid HTML coden-peugnet
- add new Header class to pass clean data structures. - store all headers in the same array. (not anymore grouped by element) - modify sumparser to produce valid HTML. Fixes #81
2020-04-07refactor LIST fix #74vincent-peugnet
2020-04-07model page,render refactorvincent-peugnet
getlister > pagelist optlist now generate html
2020-04-07apply nazi-id-string-filter to tagsvincent-peugnet
fix #83
2020-04-07query : keep tags, authors filters if not existingvincent-peugnet
fix #84
2020-04-06fix underscore match rendering errorvincent-peugnet
2020-04-03render : elements header-id param close #63vincent-peugnet
2020-04-03summary inclusion min & max settingvincent-peugnet
2020-03-26add id in deepsearchbar optionsvincent-peugnet
2020-03-26media add user and permissions datavincent-peugnet
2020-03-26sort media by date and ext fix #67vincent-peugnet
2020-03-26media date displayvincent-peugnet
2020-03-26Merge branch 'master' of https://github.com/vincent-peugnet/wcmsvincent-peugnet
2020-03-26fix double search barvincent-peugnet
2020-03-26Merge branch 'implement-cytoscape.js'vincent-peugnet