]> source.dussan.org Git - nextcloud-server.git/commitdiff
Change files_versions namespace to OCA\Files_Versions
authorBart Visscher <bartv@thisnet.nl>
Wed, 19 Sep 2012 18:59:57 +0000 (20:59 +0200)
committerBart Visscher <bartv@thisnet.nl>
Tue, 5 Feb 2013 16:46:39 +0000 (17:46 +0100)
apps/files_versions/ajax/getVersions.php
apps/files_versions/ajax/rollbackVersion.php
apps/files_versions/appinfo/app.php
apps/files_versions/history.php
apps/files_versions/lib/hooks.php
apps/files_versions/lib/versions.php

index 600e69cf798054bca6f9fe63a140c0e2c0cb0eca..53fc04625c652ebaf27289b8a5c73ddbfa53399c 100644 (file)
@@ -5,7 +5,7 @@ $userDirectory = "/".OCP\USER::getUser()."/files";
 $source = $_GET['source'];
 
 $count = 5; //show the newest revisions
-if( ($versions = OCA_Versions\Storage::getVersions( $source, $count)) ) {
+if( ($versions = OCA\Files_Versions\Storage::getVersions( $source, $count)) ) {
 
        $versionsFormatted = array();
 
index f2c211d9c1ec944247c0469c5d1ca654e8331f13..dc5a59cb4af626961652496c85f22b1bb16d6a78 100644 (file)
@@ -8,7 +8,7 @@ $userDirectory = "/".OCP\USER::getUser()."/files";
 $file = $_GET['file'];
 $revision=(int)$_GET['revision'];
 
-if(OCA_Versions\Storage::rollback( $file, $revision )) {
+if(OCA\Files_Versions\Storage::rollback( $file, $revision )) {
        OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file )));
 }else{
        OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file )));
index edd0a2f70226a5c5cfb1c0a05362342830d2f2be..f7c6989ce2dc3bca084e3c693fe4962850f865ef 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 
 //require_once 'files_versions/versions.php';
-OC::$CLASSPATH['OCA_Versions\Storage'] = 'apps/files_versions/lib/versions.php';
-OC::$CLASSPATH['OCA_Versions\Hooks'] = 'apps/files_versions/lib/hooks.php';
+OC::$CLASSPATH['OCA\Files_Versions\Storage'] = 'apps/files_versions/lib/versions.php';
+OC::$CLASSPATH['OCA\Files_Versions\Hooks'] = 'apps/files_versions/lib/hooks.php';
 
 OCP\App::registerAdmin('files_versions', 'settings');
 OCP\App::registerPersonal('files_versions', 'settings-personal');
@@ -10,7 +10,7 @@ OCP\App::registerPersonal('files_versions', 'settings-personal');
 OCP\Util::addscript('files_versions', 'versions');
 
 // Listen to write signals
-OCP\Util::connectHook('OC_Filesystem', 'write', "OCA_Versions\Hooks", "write_hook");
+OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "write_hook");
 // Listen to delete and rename signals
-OCP\Util::connectHook('OC_Filesystem', 'post-delete', "OCA_Versions\Hooks", "remove_hook");
-OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA_Versions\Hooks", "rename_hook");
\ No newline at end of file
+OCP\Util::connectHook('OC_Filesystem', 'post-delete', "OCA\Files_Versions\Hooks", "remove_hook");
+OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA\Files_Versions\Hooks", "rename_hook");
index 6071240e58320c9572742a6185efc1f224885d52..1bd5cde44bec45d9a1616af143f9385c6a3ef737 100644 (file)
@@ -29,7 +29,7 @@ if ( isset( $_GET['path'] ) ) {
 
        $path = $_GET['path'];
        $tmpl->assign( 'path', $path );
-       $versions = new OCA_Versions\Storage();
+       $versions = new OCA\Files_Versions\Storage();
 
        // roll back to old version if button clicked
        if( isset( $_GET['revert'] ) ) {
@@ -52,7 +52,7 @@ if ( isset( $_GET['path'] ) ) {
 
        // show the history only if there is something to show
        $count = 999; //show the newest revisions
-       if( ($versions = OCA_Versions\Storage::getVersions( $path, $count)) ) {
+       if( ($versions = OCA\Files_Versions\Storage::getVersions( $path, $count)) ) {
 
                $tmpl->assign( 'versions', array_reverse( $versions ) );
 
index 5cefc532895e4db4fdc6e6f804e506195ebbe502..dc02c605c44ce51877a807dd7ffa4572c47550a6 100644 (file)
@@ -10,7 +10,7 @@
  * This class contains all hooks.
  */
 
-namespace OCA_Versions;
+namespace OCA\Files_Versions;
 
 class Hooks {
 
index 003d548d2b28d65fe37dbcb14c0d7345066d8b04..1db0a8fef89dd1a36df2a1dfc12760f2a400bf93 100644 (file)
@@ -13,7 +13,7 @@
  * A class to handle the versioning of files.
  */
 
-namespace OCA_Versions;
+namespace OCA\Files_Versions;
 
 class Storage {