Update repository links to point to codeberg. Framagit can still be used for as long as the server keeps running.

This commit is contained in:
zotlabs 2020-06-28 16:37:21 -07:00
parent f3031e0515
commit e663267843
8 changed files with 12 additions and 12 deletions

View file

@ -25,7 +25,7 @@ Software
- apt-get install git - apt-get install git
- mkdir -p /var/www - mkdir -p /var/www
- cd /var/www - cd /var/www
- git clone https://framagit.org/zot/zap.git html - git clone https://codeberg.org/zot/zap.git html
- cd html/.homeinstall - cd html/.homeinstall
- cp hubzilla-config.txt.template hubzilla-config.txt - cp hubzilla-config.txt.template hubzilla-config.txt
- nano hubzilla-config.txt - nano hubzilla-config.txt

View file

@ -455,7 +455,7 @@ function install_hubzilla {
elif git remote -v | grep -i "origin.*zap.*" elif git remote -v | grep -i "origin.*zap.*"
then then
print_info "zap" print_info "zap"
util/add_addon_repo https://framagit.org/zot/zap-addons.git zaddons util/add_addon_repo https://codeberg.org/zot/zap-addons.git zaddons
else else
die "neither zap nor hubzilla repository > did not install addons or zap/hubzilla" die "neither zap nor hubzilla repository > did not install addons or zap/hubzilla"
fi fi

View file

@ -74,7 +74,7 @@ class System {
static public function get_project_srclink() { static public function get_project_srclink() {
if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['project_srclink']) if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['project_srclink'])
return App::$config['system']['project_srclink']; return App::$config['system']['project_srclink'];
return 'https://framagit.org/zot/zap'; return 'https://codeberg.org/zot/zap';
} }
static public function get_server_role() { static public function get_server_role() {

View file

@ -10,7 +10,7 @@
"ZOT", "ZOT",
"ZOT6" "ZOT6"
], ],
"homepage" : "http://framagit.org/zot/zap/", "homepage" : "http://codeberg.org/zot/zap/",
"license" : "MIT", "license" : "MIT",
"authors" : [{ "authors" : [{
"name" : "Mike Macgirvin", "name" : "Mike Macgirvin",
@ -18,8 +18,8 @@
} }
], ],
"support" : { "support" : {
"issues" : "https://framagit.org/zot/zap/issues", "issues" : "https://codeberg.org/zot/zap/issues",
"source" : "https://framagit.org/zot/zap/" "source" : "https://codeberg.org/zot/zap/"
}, },
"require" : { "require" : {
"php" : ">=7.0", "php" : ">=7.0",

View file

@ -99,7 +99,7 @@ function get_feed_for($channel, $observer_hash, $params) {
$atom .= replace_macros($feed_template, array( $atom .= replace_macros($feed_template, array(
'$version' => xmlify(Zotlabs\Lib\System::get_project_version()), '$version' => xmlify(Zotlabs\Lib\System::get_project_version()),
'$generator' => xmlify(Zotlabs\Lib\System::get_platform_name()), '$generator' => xmlify(Zotlabs\Lib\System::get_platform_name()),
'$generator_uri' => 'https://framagit.org/zot/zap', '$generator_uri' => 'https://codeberg.org/zot/zap',
'$feed_id' => xmlify($channel['xchan_url']), '$feed_id' => xmlify($channel['xchan_url']),
'$feed_title' => xmlify($channel['channel_name']), '$feed_title' => xmlify($channel['channel_name']),
'$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now', ATOM_TIME)), '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now', ATOM_TIME)),

View file

@ -1426,7 +1426,7 @@ function deliverable_singleton($channel_id,$xchan) {
function get_repository_version($branch = 'release') { function get_repository_version($branch = 'release') {
$path = "https://framagit.org/zot/zap/raw/$branch/boot.php"; $path = "https://codeberg.org/zot/zap/raw/$branch/boot.php";
$x = z_fetch_url($path); $x = z_fetch_url($path);
if($x['success']) { if($x['success']) {

View file

@ -17,7 +17,7 @@ requirements and confirm these with your hosting provider prior to
installation. (And preferably before entering into a long-term contract.) installation. (And preferably before entering into a long-term contract.)
If you encounter installation issues, please let us know via the issue If you encounter installation issues, please let us know via the issue
tracker at https://framagit.org/zot/zap where you downloaded the software. tracker at https://codeberg.org/zot/zap where you downloaded the software.
Please be as clear as you can about your operating environment and provide as Please be as clear as you can about your operating environment and provide as
much detail as possible about any error messages you may see, so that we can much detail as possible about any error messages you may see, so that we can
prevent it from happening in the future. Due to the large variety of operating prevent it from happening in the future. Due to the large variety of operating
@ -99,7 +99,7 @@ web server platforms.
software much easier to update. The Linux command to clone the repository software much easier to update. The Linux command to clone the repository
into a directory "mywebsite" would be into a directory "mywebsite" would be
git clone https://framagit.org/zot/zap.git mywebsite git clone https://codeberg.org/zot/zap.git mywebsite
- and then you can pick up the latest changes at any time with - and then you can pick up the latest changes at any time with
@ -131,7 +131,7 @@ web server platforms.
a nickname of 'zaddons'. You can pull in other addon repositories by a nickname of 'zaddons'. You can pull in other addon repositories by
giving them different nicknames. giving them different nicknames.
util/add_addon_repo https://framagit.org/zot/zap-addons.git zaddons util/add_addon_repo https://codeberg.org/zot/zap-addons.git zaddons
- For keeping the addon tree updated, you should be on your top level website - For keeping the addon tree updated, you should be on your top level website
directory and issue an update command for that repository. directory and issue an update command for that repository.

View file

@ -8,7 +8,7 @@ Earlier revisions of the zot protocol dealt with the creation of nomadic identit
Zot/6 builds on those concepts and streamlines many of the interactions, applying lessons learned over decades of building decentralised systems. Zot/6 builds on those concepts and streamlines many of the interactions, applying lessons learned over decades of building decentralised systems.
A reference implementation (a social media app) is provided at https://framagit.org/zot/zap ; the reference implementation is not yet 100% spec compliant or complete but may be used for basic compatibility testing and development purposes. A reference implementation (a social media app) is provided at https://codeberg.org/zot/zap ; the reference implementation is not yet 100% spec compliant or complete but may be used for basic compatibility testing and development purposes.
### Differences from earlier Zot versions ### Differences from earlier Zot versions