Bez popisu

CodingJellyfish 9f06b9537f Fix news list showing in index page před 1 měsícem
api 276d1c5515 [S] Add current ai count to server list před 2 roky
assets 2f66e0fe75 [D] Use HTML5 History API, removing History.js před 3 roky
bugs dc9366c0a5 Move URL related methods to URL class před 7 roky
cron 15dcebd08e [S] Update for new ranking system před 4 roky
dl 1968684f1d Rename upload directory to dl před 10 roky
docker-tools a8d2d959f7 dockerized před 6 roky
include 9f06b9537f Fix news list showing in index page před 1 měsícem
install 276d1c5515 [S] Add current ai count to server list před 2 roky
json a9779fa2b9 added phpcs před 6 roky
locale 40d4949f9f Update translations před 8 roky
phpcs a3633813b3 [C] Fixed config to generate old and new server xml files před 6 roky
phpstan 4df0709fa6 Fix phpstan před 6 roky
stats 1c51da8856 Use script mode for the default example config and stats před 7 roky
tests ab5cdbe89c Fix phpstan/phpcs/phpunit warnings and errors před 6 roky
tools e21664625c Fix python warning před 4 roky
tpl 765ba21447 Update terms and conditions for account creation (#110) před 2 roky
.dockerignore 689b3d9979 [D] Update docker files to actually work před 6 roky
.gitattributes a8d2d959f7 dockerized před 6 roky
.gitignore 19cfe2cefb [C][D] Update compose and yarn packages | Add tools před 6 roky
.travis.yml a3633813b3 [C] Fixed config to generate old and new server xml files před 6 roky
.yarnrc ba36c228cb bower migrated to yarn před 6 roky
COPYING 0f2fda96f0 (stkaddons) Adding stkaddons' code před 15 roky
CREDITS 03ba2991df Rewrite README file před 10 roky
Dockerfile 19cfe2cefb [C][D] Update compose and yarn packages | Add tools před 6 roky
Dockerfile-db-init 689b3d9979 [D] Update docker files to actually work před 6 roky
INSTALL.md 19cfe2cefb [C][D] Update compose and yarn packages | Add tools před 6 roky
README.md 19cfe2cefb [C][D] Update compose and yarn packages | Add tools před 6 roky
about.php e387491581 Move all file sytem related functionality inside the FileSystem class před 8 roky
addons-menu.php 9af55d2f72 Calculate menu and pagination without missing addons (#160) před 2 roky
addons-panel.php d99dc8a084 Add GPL license header to test files před 8 roky
addons.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
composer.json 3748b45595 [D] Update compose packages před 3 roky
composer.lock 8b5038998c Bump smarty/smarty from 3.1.47 to 3.1.48 (#155) před 2 roky
docker-compose.dev.yml 689b3d9979 [D] Update docker files to actually work před 6 roky
docker-compose.yml 689b3d9979 [D] Update docker files to actually work před 6 roky
download.php 453b4f8aa7 Only take news.xml into account for a more correct stats před 4 roky
downloads c478f64e58 Make download script work with new configuration. před 10 roky
error.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
favicon.ico 8973031e80 Add favicons for all modern browsers or displays. před 9 roky
image.php 4d8d1234f8 Rename SImage to StkImage před 7 roky
index.php a9779fa2b9 added phpcs před 6 roky
login.php dc9366c0a5 Move URL related methods to URL class před 7 roky
manage-panel.php a9779fa2b9 added phpcs před 6 roky
manage.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
music.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
package.json bcec2558af [D] Update yarn packages před 3 roky
password-reset.php d99dc8a084 Add GPL license header to test files před 8 roky
phpunit.xml 7a1f1c7797 Try to fix travis build. před 10 roky
privacy.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
rankings.php 15dcebd08e [S] Update for new ranking system před 4 roky
register.php d99dc8a084 Add GPL license header to test files před 8 roky
upload.php a9779fa2b9 added phpcs před 6 roky
users-menu.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
users-panel.php 7270c7c7d6 [S] Add option to also delete addons when deleting user account před 6 roky
users.php b15a3ae5f3 Change GPL license header to use modern english and proper punctuation před 8 roky
yarn.lock bcec2558af [D] Update yarn packages před 3 roky

README.md

STK Addons Website

This is the source code for the SuperTuxKart asset sharing and distribution platform. The official location of the production website is https://online.supertuxkart.net/.

Build Status

Build Status

Branches

The master branch contains the latest code, not stable or production ready.

The production branch contains stable code that is ready for production (the live addons server is based on this branch).

Installation

The whole installation procedure can be seen in the INSTALL.md file.

Common Problems

Permissions

A common problem on Linux are the permissions for the assets/cache and dl directories. There are several ways to solve this problem:

  • Change the permission of the directories with chmod 775 (not recommended)
  • Add yourself to the owner group of these directories and give the group read & write access, or change the owner of those directories to the user under which your webserver is running (usually www-data). The latter can be achieved using: sudo chown -R www-data:www-data <directory>

Class not found after creating a new class

Example:

Error: Class 'Debug' not found in /stk-addons/index.php on line 0

This is due to composer not knowing about it. To fix it update composer with composer dump-autoload.

Testing

The project uses PHPUnit for unit testing (it's installed automatically by composer if you have enabled the developer dependencies)

Run tests from the root of the project with (it will use the default phpunit.xml found in the root directory):

./vendor/bin/phpunit

If you want to give it a custom configuration use the --configuration flag, like this:

./vendor/bin/phpunit --configuration custom.xml

Translation and locales generation

To generate all locales supported (system wide), run the script in locale/locale-gen.sh.

After that, update the translations.pot files by running the locale/update-pot.sh script.

Then after getting the updated translate po files from https://www.transifex.com/supertuxkart/supertuxkart/ run the locale/generate-mo.sh script.

Contributing

All contributions are welcome: ideas, patches, documentation, bug reports, complaints, etc!

Git message conventions

Some messages include the prefix [tag] at the beginning of the commit message, if present these mean that you need to make manual modifications to your code/infrastructure for it to work with that commit.

  • [C] - modified the config file, update your config.php file accordingly
  • [D] - updated the composer/yarn dependencies, run the appropriate yarn/composer update commands
  • [S] - updated the SQL schema, modify your SQL schema accordingly

PHP

The PHP coding standard is heavily based on PSR-2, with some modifications:

  • The line limit is 120 characters.
  • Opening braces for control structures MUST go on the next line, and closing braces MUST go on the next line after the body. php if ($a === 42) { bar(); } else { foo(); }

Other

For JavaScript, CSS, and SQL you should use 4 spaces, not tabs. The JavaScript coding standard is based on http://javascript.crockford.com/code.html and the CSS coding standard is based on http://make.wordpress.org/core/handbook/coding-standards/css/.

The JavaScript and CSS coding standards are modified to use the same line limit as PHP.

License

STK Addons Website is licensed under GPL version 3. See COPYING for the full license text.

Contact