aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/repair.php
Commit message (Collapse)AuthorAgeFilesLines
* Move more from \OC to PSR-4Roeland Jago Douma2016-04-291-231/+0
| | | | | | | | | | | | | | | | | | | | | | * \OC\OCSClient * \OC\Preview * \OC\PreviewManager * \OC\Repair * \OC\RepairException * \OC\Search * \OC\ServerContainer * \OC\ServerNotAvailableException * \OC\ServiceUnavailableException * \OC\Setup * \OC\Streamer * \OC\SubAdmin * \OC\SystemConfig * \OC\TagManager * \OC\Tags * \OC\TempManager * \OC\TemplateLayout * \OC\URLGenerator * \OC\Updater
* Adding progress to web upgradeThomas Müller2016-04-281-4/+8
|
* Remove emitter from class RepairThomas Müller2016-04-281-4/+4
|
* Introduce OCP\Migration\IRepairStep and adopt all repair steps to this new ↵Thomas Müller2016-04-251-10/+49
| | | | interface - refs #24198
* Adding pre- and post-migration repair stepsThomas Müller2016-04-221-10/+30
|
* remove old share propagation entries from appconfigRobin Appelman2016-03-151-0/+2
|
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* Remove OC_DB::getConnectionMorris Jobke2016-01-071-2/+3
|
* Remove unused repair stepsLukas Reschke2015-12-081-5/+2
| | | | These ones are not necessary anymore for the new major release.
* Add a repair step that checks for group membership on sharesJoas Schilling2015-10-291-0/+13
|
* Repair step to remove bogus expiration dates from non-link sharesVincent Petry2015-10-011-0/+2
|
* Repair mime types only when upgrading from OC 8.0Vincent Petry2015-09-231-1/+1
|
* Add repair step for outdated OCS IDsLukas Reschke2015-09-181-2/+4
| | | | | | There is the case where OCs IDs might become outdated such as it has been with the calendar and contacts app which refer to the old dummy entry. This means that users with the old OCS id can't update updates as well will receive invalid state flags. (e.g. "experimental" instead of "approved") To allow instances to properly update the applications in the future we need to migrate the OCS IDs for now manually.
* Use the public interface and our method instead of the doctrine thingJoas Schilling2015-07-211-5/+5
|
* Merge pull request #15569 from owncloud/remove-getetag-propertiesMorris Jobke2015-07-011-0/+2
|\ | | | | Remove unneeded getetag entries in properties table
| * Remove unneeded getetag entries in properties tableMorris Jobke2015-06-251-0/+2
| | | | | | | | * fixes #13281
* | update license headers and authorsMorris Jobke2015-06-251-0/+1
|/
* more hintsRobin Appelman2015-06-021-1/+1
|
* add repair steps to get rid of old background jobsArthur Schiwon2015-05-121-0/+2
|
* Merge pull request #14665 from owncloud/fileid-incrementMorris Jobke2015-03-261-0/+2
|\ | | | | SQLite autoincrement test
| * Add repair step to fix SQLite autoincrementVincent Petry2015-03-261-0/+2
| | | | | | | | | | Force Doctrine to generate alter table SQL statements for SQLite to make sure the code from OCSqlitePlatform is triggered.
* | Update license headersJenkins for ownCloud2015-03-261-4/+23
|/
* Add a repair step to delete old tablesJoas Schilling2015-03-021-0/+2
|
* Revert "Updating license headers"Morris Jobke2015-02-261-22/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+22
|
* Revert "enabled disabled files app in repair step"Morris Jobke2015-02-031-2/+0
| | | | This reverts commit d70160c6077ca017d6cb7d61f066fe33e3b1e081.
* enabled disabled files app in repair stepMorris Jobke2015-02-031-0/+2
|
* Add a repair step to clean up orphan tags and tag entriesJoas Schilling2015-01-141-1/+3
|
* Adding repair step to fix missing etags - fixes #12172Thomas Müller2015-01-121-1/+3
|
* delete old previewsGeorg Ehrke2014-11-251-1/+1
|
* Add repair steps for legacy config filesLukas Reschke2014-11-181-1/+2
| | | | | | | | Remove all ports from the trusted domains Conflicts: lib/private/repair.php lib/repair/repairconfig.php
* adding cssmin and jssmin(minify)Thomas Müller2014-10-171-9/+17
| | | | | | adding argument deleteSelf to rmdirr() - if false the directory itself will not be deleted only it's content adding repair step to clean the asset cache after upgrade + coding style adjustments
* delete old previewsGeorg Ehrke2014-09-211-1/+11
|
* repair search lucene before installingJörn Friedrich Dreyer2014-09-101-1/+2
|
* Add some security utilitiesLukas Reschke2014-08-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | This adds some security utilities to core including: - A library for basic crypto operations (e.g. to encrypt passwords) - A better library for cryptographic actions which allows you to specify the charset - A library for secure string comparisions Remove .htaccess Remove .htaccess Fix typo Add public API Use timing constant comparision Remove CBC constant Adjust code Remove confusing $this
* Added repair step for legacy storagesVincent Petry2014-08-201-1/+2
|
* Add repair step to set MySQL collation to utf8_binRobin Appelman2014-07-081-1/+2
| | | | | Set default collation of mysql connection to utf8_bin Set utf_bin as default collation for new tables
* MySQL: adding repair step to convert MyIsam tables to InnoDBThomas Müller2014-07-071-0/+1
|
* Merge pull request #9215 from owncloud/officemimetypesupdatefixVincent Petry2014-06-271-2/+5
|\ | | | | Office mime types update fix
| * Moved office mimetype update to a repair stepVincent Petry2014-06-251-2/+5
| |
* | Redeclared as public to allow invocation from within the closure in php 5.3Thomas Müller2014-06-261-1/+10
|/
* Fixed instanceof to use interface instead of classVincent Petry2014-06-121-1/+2
|
* Added RepairStep interface and default repair step listsVincent Petry2014-06-121-23/+44
| | | | | | | | | | | The updater is using "before update" repair steps and "regular" repair steps. The "regular" repair steps are also used by the CLI tool. Currently no steps exist but can be added later in the static methods in the \OC\Repair class. Added unit test to test messaging, error and exception cases.
* Add support for repair step classesVincent Petry2014-06-121-3/+43
| | | | | This also makes it possible to unit test each repair step class individually
* Add a (currently) empty system for running common repair stepsRobin Appelman2013-11-261-0/+21