diff --git a/content/pages/wiki/g1-license.md b/content/pages/wiki/g1-license.md index 9b09596b480be4f46bb18b45cbde5c8e00dee0ac..411c437b2a21264f1acebd6fabdf483fc4918724 100644 --- a/content/pages/wiki/g1-license.md +++ b/content/pages/wiki/g1-license.md @@ -8,9 +8,9 @@ Authors: cgeek, galuel <center id = "license_g1"> [Download License Ğ1 (text format)](../../files/license_g1.txt)</center> -[//]: # (BeginLicense) +<iframe width="100%" height="300px" src="../files/license_g1.txt"></iframe> + -[//]: # (EndLicense) > Once the license is received, read and accepted, the process to become a member of the Ğ1 WoT goes through the creation of an ID (your identifier / nicname) and a pair (private key / public key) [if possible in a secure way] (https://forum.duniter.org/t/recommendations-of-security-before-creating-your-account-g1/1819). The public key becomes an account number that can only be used by the person who owns the private key, which is constructed by another pair (passphrase / password) = private key, which must be carefully kept for oneself. diff --git a/replace.py b/replace.py deleted file mode 100644 index 4aa329c6db7d0b3f4fa9b63a64e9b2f316d929f1..0000000000000000000000000000000000000000 --- a/replace.py +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- # - -import re - -def replace(original_file, placeholder_start, placeholder_end, - replace_file, target_file=None): - """ - This function will replace in original_file what is between starting - placeholder and ending placeholder by the - content of replace_file. It will save it as target_file if provided, or - in original_file otherwise. - No backslash must be used in the placeholders except in order to escape - Result will be put in triple backquotes. - :param original_file Source that must be modified: - :param placeholder_start String starting the position to replace: - :param placeholder_start String ending the position to replace: - :param replace_file File to include at placeholder position: - :param target_file Destination where the complete file must be stored. - Facultative, will be replaced by original_file if not provided: - :return: - """ - if target_file is None: - target_file = original_file - - with open(original_file, 'r') as my_original_file: - original_content = my_original_file.read() - - with open(replace_file, 'r') as my_replace_file: - #we keep placeholders to be able to replay the process several times - replace_content = placeholder_start.replace('\\','') + "\n\n\n" + my_replace_file.read() + "\n\n\n" + placeholder_end.replace('\\','') - - regex = placeholder_start + r'(.*)' + placeholder_end - new_content = re.sub(regex, replace_content, original_content, flags=re.DOTALL) - - with open(target_file, 'w') as my_target_file: - my_target_file.write(new_content) - -print("Will start replace") -replace('content/pages/wiki/g1-license.md', '\[//\]: # \(BeginLicense\)', '\[//\]: # \(EndLicense\)', 'content/files/license_g1.txt') -print("Replace completed")