#!/usr/bin/env python3 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # import configparser import platform import argparse import requests def main(): parser = argparse.ArgumentParser() parser.add_argument('symbols_zip_file') parser.add_argument('credentials_file') parser.add_argument('version') group = parser.add_mutually_exclusive_group() group.add_argument('--system', action='store_true') group.add_argument('--platform', choices=('Windows', 'Linux')) args = parser.parse_args() base_url = "https://crashreport.libreoffice.org/" upload_url = base_url + "upload/" login_url = base_url + "accounts/login/" config = configparser.ConfigParser() config.read(args.credentials_file) user = config["CrashReport"]["User"] password = config["CrashReport"]["Password"] files = {'symbols': open(args.symbols_zip_file, 'rb')} data = {'version': args.version, 'system': args.system, 'platform': platform.system() if args.platform is None else args.platform} session = requests.session() session.get(login_url) csrftoken = session.cookies['csrftoken'] login_data = {'username': user, 'password': password, 'csrfmiddlewaretoken': csrftoken} headers = {"Referer": base_url} session.post(login_url, headers=headers, data=login_data) data['csrfmiddlewaretoken'] = csrftoken response = session.post(upload_url, headers=headers, files=files, data=data) if response.ok: print("Symbols uploaded successfully") else: print(response.text) if __name__ == "__main__": main() # vim: set shiftwidth=4 softtabstop=4 expandtab: eoffice-6-4'>distro/cib/libreoffice-6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/ximpcustomshape.cxx
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2024-12-19 13:22:59 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2024-12-22 22:41:19 +0100
commit2559f6329dd285b3e0e27f6a26091a47326b328d (patch)
treee1282fc2981ad76106dc3f2579facfb9d0cf946d /xmloff/source/draw/ximpcustomshape.cxx
parent70978cecc68328498530488d3674e5b7bf439b9d (diff)
sc: move these to slowcheck