aboutsummaryrefslogtreecommitdiffstats
path: root/DCO
diff options
context:
space:
mode:
authorRafael <git@rafael.ovh>2024-04-10 18:49:57 +0100
committerGitHub <noreply@github.com>2024-04-10 17:49:57 +0000
commitc1f76aea45f11e1d5ae22c047cf3bda9c681de8d (patch)
treeebf837b7b527c2eb79a27dbb08803a1c696f930b /DCO
parent50099d7af436785daf66a3a9f27bd5c009f90684 (diff)
downloadgitea-c1f76aea45f11e1d5ae22c047cf3bda9c681de8d.tar.gz
gitea-c1f76aea45f11e1d5ae22c047cf3bda9c681de8d.zip
Use raw Wiki links for non-renderable Wiki files (#30273)
In Wiki pages, short-links created to local Wiki files were always expanded as regular Wiki Links. In particular, if a link wanted to point to a file that Gitea doesn't know how to render (e.g, a .zip file), a user following the link would be silently redirected to the Wiki's home page. This change makes short-links* in Wiki pages be expanded to raw wiki links, so these local wiki files may be accessed without manually accessing their URL. * only short-links ending in a file extension that isn't renderable are affected. Closes #27121. Signed-off-by: Rafael GirĂ£o <rafael.s.girao@tecnico.ulisboa.pt> Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'DCO')
0 files changed, 0 insertions, 0 deletions
oid/stable25-update-code-signing-crl Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Storage/Wrapper/WrapperTest.php
blob: b9bb54e09b2dbdc7d37555083c31e2660b71bfd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace Test\Files\Storage\Wrapper;

class WrapperTest extends \Test\Files\Storage\Storage {
	/**
	 * @var string tmpDir
	 */
	private $tmpDir;

	protected function setUp(): void {
		parent::setUp();

		$this->tmpDir = \OC::$server->getTempManager()->getTemporaryFolder();
		$storage = new \OC\Files\Storage\Local(['datadir' => $this->tmpDir]);
		$this->instance = new \OC\Files\Storage\Wrapper\Wrapper(['storage' => $storage]);
	}

	protected function tearDown(): void {
		\OC_Helper::rmdirr($this->tmpDir);
		parent::tearDown();
	}

	public function testInstanceOfStorageWrapper() {
		$this->assertTrue($this->instance->instanceOfStorage('\OC\Files\Storage\Local'));
		$this->assertTrue($this->instance->instanceOfStorage('\OC\Files\Storage\Wrapper\Wrapper'));
	}
}