Skip to content

Commit ef30531

Browse files
authored
markdownify remaining docs (#9955)
* markdownify remaining docs [skip ci] * add docs folder [skip ci] * update paths in makefile [skip ci] * futureproof docs cleanup * revert makefile changes
1 parent bdbfbd9 commit ef30531

File tree

12 files changed

+868
-862
lines changed

12 files changed

+868
-862
lines changed

LICENSE

Lines changed: 0 additions & 674 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ roundcubemail-git: buildtools
6969
(cd roundcubemail-git; find . -name '.gitignore' | xargs rm -f)
7070
(cd roundcubemail-git; find . -name '.travis.yml' | xargs rm -f)
7171
(cd roundcubemail-git; rm -rf tests plugins/*/tests .git* .tx* .ci* .editorconfig* index-test.php Dockerfile Makefile package.json package-lock.json node_modules)
72-
(cd roundcubemail-git; rm -f .eslintrc.js .php-cs-fixer.dist.php phpstan.neon.dist CODE_OF_CONDUCT.md SOCIAL_WORK_GUIDELINES.md)
72+
(cd roundcubemail-git; rm -f .eslintrc.js .php-cs-fixer.dist.php phpstan.neon.dist)
7373
(cd roundcubemail-git; $(SEDI) 's/1.7-git/$(VERSION)/' program/include/iniset.php program/lib/Roundcube/bootstrap.php)
7474
(cd roundcubemail-git; $(SEDI) 's/# Unreleased/# Release $(VERSION)'/ CHANGELOG.md)
7575

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Roundcube Webmail is a browser-based multilingual IMAP client with an
1818
application-like user interface. It provides full functionality you expect
1919
from an email client, including MIME support, address book, folder management,
2020
message searching and spell checking. Roundcube Webmail is written in PHP and
21-
requires the MariaDB, MySQL, PostgreSQL or SQLite database. With its plugin API it
21+
requires the MariaDB, MySQL, PostgreSQL or SQLite database. With its plugin API it
2222
is easily extendable and the user interface is fully customizable using skins.
2323

2424
The code designed to run on a webserver is mainly written in PHP and Javascript.
@@ -29,17 +29,17 @@ and requires a set of external libraries (see composer.json and jsdeps.json file
2929
RELEASES
3030
--------
3131

32-
Roundcubemail follows the semantic versioning rules for releases. For more details please read [the RELEASE_MANAGEMENT
33-
file](RELEASE_MANAGEMENT.md).
32+
Roundcubemail follows the semantic versioning rules for releases. For more details please read
33+
[the RELEASE_MANAGEMENT file](docs/RELEASE_MANAGEMENT.md).
3434

3535

3636
INSTALLATION
3737
------------
3838
For detailed instructions on how to install Roundcube webmail on your server,
39-
please refer to the INSTALL document in the same directory as this document.
39+
please refer to the [INSTALL.md](docs/INSTALL.md) document in the same directory as this document.
4040

4141
If you're updating an older version of Roundcube please follow the steps
42-
described in the UPGRADING file.
42+
described in the [UPGRADING.md](docs/UPGRADING.md) file.
4343

4444

4545
BROWSER SUPPORT

UPGRADING

Lines changed: 0 additions & 103 deletions
This file was deleted.

bin/installto.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (strtolower($input) == 'y') {
5858
echo 'Copying files to target location...';
5959

6060
$adds = [];
61-
$dirs = ['bin', 'SQL', 'plugins', 'skins', 'program'];
61+
$dirs = ['bin', 'SQL', 'plugins', 'skins', 'program', 'docs'];
6262

6363
if (is_dir(INSTALL_PATH . 'vendor') && (!is_file("{$target_dir}/composer.json") || rcmail_install::vendor_dir_untouched($target_dir))) {
6464
$dirs[] = 'vendor';
@@ -83,9 +83,6 @@ if (strtolower($input) == 'y') {
8383
'index.php',
8484
'CHANGELOG.md',
8585
'README.md',
86-
'UPGRADING',
87-
'LICENSE',
88-
'INSTALL',
8986
'public_html/index.php',
9087
'public_html/installer.php',
9188
'public_html/static.php',
File renamed without changes.

0 commit comments

Comments
 (0)