aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/backend.php
Commit message (Collapse)AuthorAge
* Add htmlesc againHEADmasterLaria Carolin Chabowski2021-01-01
| | | | Some plugins use that function :(.
* Get rid of db.php and include config directly in entry pointsLaria Carolin Chabowski2020-11-08
|
* Make SITE_BASE_PATH a method of EnvLaria Carolin Chabowski2020-11-08
| | | | This allows us to get rid of utils.php
* Remove intcmp()Laria Carolin Chabowski2020-11-08
|
* Move article status consts into Article classLaria Carolin Chabowski2020-11-08
|
* Plugin: Fix creating plugin database recordsLaria Carolin Chabowski2020-11-08
| | | | | Newer MySQL / MariaDB versions are a bit more strict when omitting values on insert which made the old Plugin::create() not work any more.
* Use password_hash() and friends to hash and verify passwordsLaria Carolin Chabowski2020-09-25
| | | | | | | | | | | | Previously I rolled my own password hashing function. While it at least used some sort of salt, it's still a terrible idea. The newly created class PasswordHash wraps the password_hash() family of functions but can also check the old password hash format (to distinguish them, the new password hashes are prefixed with a '!'). In PasswordHash::needsRehash we then always report an hash of the old format as being in need of a rehash. That way, these old hashes will be replaced the next time the user successfully logs in.
* Fix some broken references to the \ste namespaceLaria Carolin Chabowski2020-09-25
| | | | Should be \r7r\ste now
* Refactor textprocessorsLaria Carolin Chabowski2020-09-25
| | | | | They are now managed by TextprocessorRepository and are instances of Textprocessor. This replaces the global $textprocessors variable.
* Deprecate htmlesc for Esc::escLaria Carolin Chabowski2020-09-25
| | | | "Stole" this class from another project of mine (micropoly)
* Code cleanupLaria Carolin Chabowski2020-09-21
| | | | | | | | | | - Remove unused variables - Remove unused utility functions - Asserting presence and typehinting global variables - Remove unused variables - Add missing global - Add parameter type constraint - Fix some references to nonexisting variables
* Turn global function defined in a function to a closureLaria Carolin Chabowski2020-09-21
| | | | Yikes! What was younger me thinking?
* Automatic code formattingLaria Carolin Chabowski2020-04-26
|
* Some simple code formattingLaria Carolin Chabowski2020-04-26
| | | | | | - Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags
* Expand tabs and remove trailing whitespaceLaria Carolin Chabowski2020-04-26
|
* Fix some php7 bugs. Also new name and new repository urlsLaria Carolin Chabowski2016-08-15
|
* Fixed referencing and constants.Kevin Chabowski2013-10-03
| | | | | * Creating a varaible reference at call time is not possbile any more. * When defining a constant, we pass the name as a string now.
* Merge branch 'hotfix' into developKevin Chabowski2012-07-09
|\
| * Fixed language loading bugs and removed debug code.Kevin Chabowski2012-07-09
| | | | | | | | | | | | | | * User language was not loaded directly after logging in. * Default language was not loaded directly after logging out. * Removed stupid debug code. Was there since 2011-Oct-5. Unnoticed. *sigh*
* | Style::test_name implemented.feature-move-data-checking-to-modelsKevin Chabowski2012-06-08
| |
* | Section::test_name implemented.Kevin Chabowski2012-06-08
| |
* | Article::test_status implementedKevin Chabowski2012-06-08
| |
* | Tag::test_name implemented.Kevin Chabowski2012-06-08
| |
* | Article::test_urlname implemented.Kevin Chabowski2012-06-08
| |
* | Better(?) tag editor.Kevin Chabowski2012-05-26
| | | | | | | | | | | | | | * Look&Feel of the Tag editor now matches better with the rest of the backend. * Deleted templates, functions and translations that are not longer needed.
* | Plugins can now hook into the Article editor.feature-plugin-articledataKevin Chabowski2012-05-20
|/ | | | | | | * Plugins can display additional fields in the article editor. * Plugins can perform actions when saving an article and even veto the saving. * Plugins can get their ArticleExtradata objects.
* Allow comment setting was not saved correctly. Fixed.Kevin Chabowski2012-03-03
| | | | | | | Also fixed the Heading of CONTRIBUTORS. Copy&Paste is not always a good idea... Beta 4
* Debug now toggleable in backend; used new STE features.Kevin Chabowski2012-03-01
| | | | | | | * If __DEBUG__ is true, STE will be in a more verbose mode. * Ratatöskr's frontend STETags now uses the \ste\RuntimeError exception This will also be Beta 3
* Added embedding code generator for STE code.Kevin Chabowski2012-02-18
| | | | | Also fixed a bug that the pagetitle of the embedding code generator page was not displayed.
* Incompatible plugins will now get disabled.Kevin Chabowski2012-02-18
|
* Fixed date/time interpretation.Kevin Chabowski2012-02-03
|
* Plugin deletion can now be enforced.Kevin Chabowski2012-02-01
| | | | | | This will skip the RatatoeskrPlugin::delete() part and will not load the plugin before deletion, so you can delete a plugin if it contained syntax errors without disabling plugins in config.php
* Fixed article editor. Again.Kevin Chabowski2012-01-31
| | | | | | * Fixed last bugfix -.- * <option name...> --> <option value...> I don't know how this had worked at all before...
* Fixed a bug in the article editor.Kevin Chabowski2012-01-29
| | | | | when editing a already existing article, the status was always set to visible.
* Made paths to systemtemplates absolute.Kevin Chabowski2012-01-21
|
* Fixed a bug in the article editor.Kevin Chabowski2012-01-17
| | | | | If an article had content only in a language that is not the user's language, Ratatöskr had crashed.
* We can now change the language of a user.Kevin Chabowski2012-01-14
|
* Fixed some plugin related bugs.Kevin Chabowski2012-01-08
| | | | | * Plugin backend pages did not work. * Plugin author was not transferred to database.
* Repo administration and indtall from repo added.Kevin Chabowski2012-01-08
|
* Article::by_multi improved and frontend modifications.Kevin Chabowski2011-12-27
| | | | | | | * Article::by_multi now has more criterias and can perform sorting, paging and limiting. Also only generates full articles when needed. * In the frontend there are now some "hidden" __obj STE variables, so some objects do not need to be created multiple times.
* Article now has get/set_tags() and get/set_section()Kevin Chabowski2011-12-27
|
* Section's Styles are nowonlyavailable by a getter.Kevin Chabowski2011-12-27
| | | | | Also fixed many MySQL Queries. These SELECT ... WHERE foo = (SELECT...) have not worked as expected, so now there are many ugly joins...
* Added plugin management to bakend and fixed db models.Kevin Chabowski2011-12-23
|
* User management added to backend.Kevin Chabowski2011-12-03
|
* Fixed potential bug in login process.Kevin Chabowski2011-12-01
|
* Added a settings page to the backend.Kevin Chabowski2011-11-26
|
* Renamed ratatoeskr/backend/main.php to ratatoeskr/backend.phpKevin Chabowski2011-11-23
We do not need an own directory for this.