tis-navigateur-sirap
84.4.0.7-17
the web browser SIRAP is a web browser for business applications based on the new Next platform that does away with Flash technology and its shutdown.
1104 downloads
Download
See build result See VirusTotal scan

- package : tis-navigateur-sirap
- name : Navigateur SIRAP
- version : 84.4.0.7-17
- categories : Internet,Office
- maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
- editor : SIRAP
- licence : Commercial
- locale : all
- target_os : windows
- impacted_process : Navigateur.SIRAP.exe,firefox.exe,iexplore.exe,opera.exe,chrome.exe
- architecture : x64
- signature_date : 2022-08-03 02:47
- size : 141.70 Mo
- installed_size : 228.61 Mo
- homepage : https://www.sirap.fr/
package : tis-navigateur-sirap
version : 84.4.0.7-17
architecture : x64
section : base
priority : optional
name : Navigateur SIRAP
categories : Internet,Office
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : the web browser SIRAP is a web browser for business applications based on the new Next platform that does away with Flash technology and its shutdown.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.sirap.fr/navigateur-sirap.html
installed_size : 228610048
impacted_process : Navigateur.SIRAP.exe,firefox.exe,iexplore.exe,opera.exe,chrome.exe
description_fr : le navigateur SIRAP est un navigateur web pour applications métier basée sur la nouvelle plateforme Next qui s'affranchit de la technologie Flash et de son arrêt
description_pl : przeglądarka internetowa SIRAP to przeglądarka dla aplikacji biznesowych oparta na nowej platformie Next, która rezygnuje z technologii Flash i jej wyłączenia
description_de : Der Webbrowser SIRAP ist ein Webbrowser für Geschäftsanwendungen, der auf der neuen Next-Plattform basiert und auf die Flash-Technologie und deren Abschaltung verzichtet
description_es : el navegador web SIRAP es un navegador web para aplicaciones empresariales basado en la nueva plataforma Next que prescinde de la tecnología Flash y de su cierre
description_pt : o navegador web SIRAP é um navegador web para aplicações empresariais baseado na nova plataforma Next, que elimina a tecnologia Flash e o seu encerramento
description_it : il browser web SIRAP è un browser web per applicazioni aziendali basato sulla nuova piattaforma Next che elimina la tecnologia Flash e la sua chiusura
description_nl : de webbrowser SIRAP is een webbrowser voor zakelijke toepassingen, gebaseerd op het nieuwe Next-platform dat een einde maakt aan Flash-technologie en de uitschakeling daarvan
description_ru : веб-браузер SIRAP - это веб-браузер для бизнес-приложений, основанный на новой платформе Next, которая отказывается от технологии Flash и ее отключения
audit_schedule :
editor : SIRAP
keywords : flash,web,browser,application,business
licence : Commercial
homepage : https://www.sirap.fr/
package_uuid : e83eff05-f215-4622-abd7-9b5522b73845
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 24ec2c28b590683e9caea513fdc8d109377d30d68839ce0872cf3f2c9d3284ed
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : PmdFEGeGFeOmRAkFu6hSjMu8xlUusf+I9l2hOFV9JQVNzPepfsxNVcRPZaLbfn2sSG/5eCDwrao/OxC27WS25FSzeowRSy0ONFbevlBOuTfMtSg1ty+ruMYIU7gtdhPT2EG55yzcOHkNO5+v4blETlwuanojn3UFTD0qoRAxEz2WZ253iL92nak0hSDMYVPFGnl1Z7LMSf5pHi4gzXTGdvcRKbxyvauwXU82gKE2cDU4qUhQphoWiiNsEQCZjL813kWLdRm/KCXGd2re/o+W/9gWb+QunkFHnntcjU+UW2/v/HssB8pbjNgd4u1OpSvzobPva5jHBSpohM8RtTEzQQ==
signature_date : 2022-08-03T02:47:07.886956
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
# -*- coding: utf-8 -*-
from setuphelpers import *
# Defining variables
bin_name = "NavigateurSIRAP.setup.exe"
silent_args = "/VERYSILENT /NORESTART"
app_uninstallkey = "{6CA7FECF-438B-4FC2-87B0-C38C5139D48B}_is1"
conf_file = "parametres.csv"
processes_to_kill = ["firefox.exe", "iexplore.exe", "opera.exe", "chrome.exe"] # Installation won't start if these processes are running...
force = False
def install():
# Installing SIRAP
package_version = control.version.split("-")[0]
""" if not installed_softwares(name='Adobe Flash Player 32 PPAPI') and not installed_softwares(name='Adobe Flash Player 32 NPAPI'):
force = True """
# Installing the package
if force:
print("Force installing: %s" % bin_name)
install_exe_if_needed(bin_name, silentflags=silent_args, key=app_uninstallkey, killbefore=processes_to_kill, force=True)
else:
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name, silentflags=silent_args, key=app_uninstallkey, min_version=package_version, killbefore=processes_to_kill, force=False
)
# -*- coding: utf-8 -*-
from setuphelpers import *
# Defining variables
bin_name = "NavigateurSIRAP.setup.exe"
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
latest_bin = bin_name
url_dl = "https://warehouse.sirap.fr/Navigateur.SIRAP/setup/NavigateurSIRAP.setup.exe"
# Downloading latest binaries
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
version = get_file_properties(latest_bin)["ProductVersion"]
control.version = "%s-%s" % (version, int(control.version.split("-")[-1]) + 1)
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
6a4ad023ee6c9b4158d45d52becd7ab0921c180a583c50f5fbb2eac846aadd33 : setup.py
af8fb905feae84b858caa09c65616da55086c0fbffb3f02e365e01fa4140d050 : NavigateurSIRAP.setup.exe
a0402398226556e9d979fcbd48cd5af14981a963262e37548d919a4fdf94bca1 : update_package.py
7a029e7e1db16a829d1b96218d39ba3c86efa8338bc063a83e0607bd0acced1f : parametres.csv
24ec2c28b590683e9caea513fdc8d109377d30d68839ce0872cf3f2c9d3284ed : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
d18b4b562ccdebd9e5290223b8359b68435beeef4b2730e8fe1871517ceafc5c : luti.json
9cffb8da6b27b500aac78d92c03496794153fe77f5b9fca0774c09f6865fd085 : WAPT/control