mirror of https://gitlab.com/bashrc2/epicyon
Snake case
parent
b8d460b496
commit
b92450770d
|
@ -3342,7 +3342,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
base_dir,
|
base_dir,
|
||||||
http_prefix,
|
http_prefix,
|
||||||
searchStr,
|
searchStr,
|
||||||
self.server.instanceOnlySkillsSearch,
|
self.server.instance_only_skills_search,
|
||||||
64)
|
64)
|
||||||
if skillStr:
|
if skillStr:
|
||||||
msg = skillStr.encode('utf-8')
|
msg = skillStr.encode('utf-8')
|
||||||
|
@ -18481,7 +18481,7 @@ def runDaemon(content_license_url: str,
|
||||||
account_max_posts_per_day: int = 864,
|
account_max_posts_per_day: int = 864,
|
||||||
allow_deletion: bool = False,
|
allow_deletion: bool = False,
|
||||||
debug: bool = False, unit_test: bool = False,
|
debug: bool = False, unit_test: bool = False,
|
||||||
instanceOnlySkillsSearch: bool = False,
|
instance_only_skills_search: bool = False,
|
||||||
sendThreads: [] = [],
|
sendThreads: [] = [],
|
||||||
manualFollowerApproval: bool = True) -> None:
|
manualFollowerApproval: bool = True) -> None:
|
||||||
if len(domain) == 0:
|
if len(domain) == 0:
|
||||||
|
@ -18761,7 +18761,7 @@ def runDaemon(content_license_url: str,
|
||||||
httpd.tokens = {}
|
httpd.tokens = {}
|
||||||
httpd.tokensLookup = {}
|
httpd.tokensLookup = {}
|
||||||
loadTokens(base_dir, httpd.tokens, httpd.tokensLookup)
|
loadTokens(base_dir, httpd.tokens, httpd.tokensLookup)
|
||||||
httpd.instanceOnlySkillsSearch = instanceOnlySkillsSearch
|
httpd.instance_only_skills_search = instance_only_skills_search
|
||||||
# contains threads used to send posts to followers
|
# contains threads used to send posts to followers
|
||||||
httpd.followersThreads = []
|
httpd.followersThreads = []
|
||||||
|
|
||||||
|
|
|
@ -433,7 +433,7 @@ parser.add_argument("--secure_mode", type=str2bool, nargs='?',
|
||||||
help="Requires all GET requests to be signed, " +
|
help="Requires all GET requests to be signed, " +
|
||||||
"so that the sender can be identifies and " +
|
"so that the sender can be identifies and " +
|
||||||
"blocked if neccessary")
|
"blocked if neccessary")
|
||||||
parser.add_argument("--instanceOnlySkillsSearch", type=str2bool, nargs='?',
|
parser.add_argument("--instance_only_skills_search", type=str2bool, nargs='?',
|
||||||
const=True, default=False,
|
const=True, default=False,
|
||||||
help="Skills searches only return " +
|
help="Skills searches only return " +
|
||||||
"results from this instance")
|
"results from this instance")
|
||||||
|
@ -3257,5 +3257,5 @@ if __name__ == "__main__":
|
||||||
args.domain_max_posts_per_day,
|
args.domain_max_posts_per_day,
|
||||||
args.account_max_posts_per_day,
|
args.account_max_posts_per_day,
|
||||||
args.allowdeletion, debug, False,
|
args.allowdeletion, debug, False,
|
||||||
args.instanceOnlySkillsSearch, [],
|
args.instance_only_skills_search, [],
|
||||||
not args.noapproval)
|
not args.noapproval)
|
||||||
|
|
Loading…
Reference in New Issue