Elliptic Curve Crypto:About: Difference between revisions

From Elliptic Curve Crypto
move getting-started links
m →‎Getting started: user's guide
Line 50: Line 50:
</syntaxhighlight>
</syntaxhighlight>
== Getting started ==
== Getting started ==
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]

Revision as of 06:26, 28 December 2024

The mark or logo for Elliptic Curve Crypto on the net is the capital letter ‘E’ from the QT Arabian font, navy blue on a transparent background.

The software stack that currently runs this site

Configuration for short publishable URLs

Caddyfile

Something like this seems to be required.

   rewrite         {path}  /index.php?title={path}

MediaWiki Local Settings

This catches and translates most of the URLs with long gobbledegook query strings.

$actions = [
        'edit',
        'watch',
        'unwatch',
        'delete',
        'revert',
        'rollback',
        'protect',
        'unprotect',
        'markpatrolled',
        'render',
        'submit',
        'history',
        'purge',
        'info',
];
foreach ( $actions as $action ) {
  $wgActionPaths[$action] = "/$1/$action";
}
$wgActionPaths['edit'] = "/$1/editsource";
$wgActionPaths['view'] = "/$1";
$wgArticlePath = $wgActionPaths['view'];

Getting started

Consult the User's Guide for information on using the wiki software.