aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ModelPdo.php
AgeCommit message (Collapse)Author
2016-07-30Update MySQL to utf8mb4 (full unicode) đŸ”„Gravatar Alexandre Alapetite
* Requires MySQL 5.5.3+ (drop support for MySQL 5.0) * Requires PHP 5.3.3+ (drop support for PHP 5.3.0) https://github.com/FreshRSS/FreshRSS/issues/789#issuecomment-73878076
2015-06-03PDO config issetGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/868
2015-06-03PDO options for e.g. SSLGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/868
2015-05-11More SQLite compatibilityGravatar Alexandre Alapetite
Additional changes to add compatibility with SQLite for the new hash/lastSeen mode of updating articles.
2015-01-05New configuration system (not working yet)Gravatar Marien Fressinaud
- Use only Minz_Configuration - register() method to load a new configuration file - get() to get a configuration - new exceptions related to configuration - fix a list configuration calls to have FRSS working Current problems to resolve: - How to handle configuration param verifications (i.e. check auth_type is a value from none, http_auth, persona or form) - We must use $conf = Minz_Configuration::get('system'); $general_conf = $conf->general; to access global system configuration which is quite annoying. How to change that? See https://github.com/FreshRSS/FreshRSS/issues/730
2014-12-21BREAKING FEATURE: move user dataGravatar Marien Fressinaud
- Create ./data/users/ folder - Move user configuration to ./data/users/username/config.php - Move sqlite db to ./data/users/username/db.sqlite - Move user logs to ./data/users/username/log.txt See https://github.com/FreshRSS/FreshRSS/issues/729
2014-10-30Fix bug size with SQLiteGravatar Marien Fressinaud
2014-10-17Fix a bug to get size of user (SQLite)Gravatar Marien Fressinaud
2014-10-05Fix a bug (has_transaction)Gravatar Marien Fressinaud
Introduced by the last commit.
2014-10-05Refactor feedControllerGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-09-16Fix sqlite bug ON DELETE CASCADEGravatar Marien Fressinaud
Foreign key constraints are not enabled by default. See https://github.com/marienfressinaud/FreshRSS/issues/579 See http://stackoverflow.com/questions/13534040/sqlite3-foreign-keys-on-pdo
2014-08-09SQLite: Bug creation new usersGravatar Alexandre Alapetite
Not tested much yet. Some MySQL parts changed a bit too to double-check. https://github.com/marienfressinaud/FreshRSS/issues/574
2014-07-05Add support for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100 Warning: MySQL has been changed too, so bugs may have been introduced
2014-07-03Preparation for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100
2014-01-02actualize_script compatible multi-utilisateurGravatar Alexandre Alapetite
* Messages plus verbeux dans actualize_script * Ajout d'un message syslog lorsque SimplePie fait une requĂȘte HTTP * Minz_Session ne fermait pas les sessions complĂštement. * Nouvelle option dans Minz_Dispatcher et Minz_FrontController pour ne pas utiliser ob_gzhandler. Contribue Ă  https://github.com/marienfressinaud/FreshRSS/issues/126
2013-12-31Multi-utilisateur fonctionnel en HTTP AuthGravatar Alexandre Alapetite
+ Possibilité d'ajout / suppression d'utilisateur (seulement par l'administrateur) + Divers changements pour le mode multi-utilisateur https://github.com/marienfressinaud/FreshRSS/issues/126 + Minz : Renomme "sel_application" en "salt'
2013-12-30Cache HTTP compatible multi-utilisateurGravatar Alexandre Alapetite
Contribue Ă  https://github.com/marienfressinaud/FreshRSS/issues/126
2013-12-15Grosse refactorisation pour permettre le chargement automatique des classesGravatar Alexandre Alapetite
C'est parti de changements pour https://github.com/marienfressinaud/FreshRSS/issues/255 et finalement j'ai continuĂ© la refactorisation... Ajout de prĂ©fixes FreshRSS_ et Minz_ sur le modĂšle de SimplePie_. Toutes les classes sont maintenant en chargement automatique (devrait amĂ©liorer les performances en Ă©vitant de charger plein de classes inutilisĂ©es, et faciliter la maintenance). Suppression de set_include_path(). Si souhaitĂ©, certaines classes de Minz pourraient ĂȘtre dĂ©placĂ©es dans un sous-rĂ©pertoire, par exemple les exceptions. Tests et relecture nĂ©cessaires.