pax_global_header 0000666 0000000 0000000 00000000064 14460075676 0014531 g ustar 00root root 0000000 0000000 52 comment=95a633ae20144bf2fda428f89f169d7c29c02cc3
lomiri-url-dispatcher-0.1.3/ 0000775 0000000 0000000 00000000000 14460075676 0015751 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/.gitignore 0000664 0000000 0000000 00000000057 14460075676 0017743 0 ustar 00root root 0000000 0000000 build
.settings
.project
.cproject
__pycache__
lomiri-url-dispatcher-0.1.3/AUTHORS 0000664 0000000 0000000 00000001130 14460075676 0017014 0 ustar 00root root 0000000 0000000 Alfred Neumayer
Allan Nordhøy
Andreas Pokorny
Andres Salomon
Brendan Donegan
Charles Kerr
Dan
Dan Chapman
Florian Boucault
Gallegonovato
Gnu-ewm
Guido Berhoerster
Hatato
Heimen Stoffels
Hosted Weblate
Ivan Semkin
Ivo Xavier
Jami Kettunen
Jesse Pullinen
J Lavoie
Jozef Mlich
Jussi Pakkanen
Ken VanDine
Larry Price
Leo Arias
Luca Weiss
Łukasz 'sil2100' Zemczak
Luna Jernberg
Marius Gripsgard
Michael Terry
Michal Hruby
Mike Gabriel
Muhammad
NPL
Phlostically
Ratchanan Srirattanamet
Rodney
Rodney Dawes
Rudra Harsh V Singh
Sergii Horichenko
Sylke Vicious
Ted Gould
Temuri Doghonadze
Timothy G
Weblate
lomiri-url-dispatcher-0.1.3/CMakeLists.txt 0000664 0000000 0000000 00000007655 14460075676 0020526 0 ustar 00root root 0000000 0000000 cmake_minimum_required(VERSION 3.5)
project(lomiri-url-dispatcher VERSION 0.1.3 LANGUAGES C CXX)
string(TOLOWER "${CMAKE_BUILD_TYPE}" cmake_build_type_lower) # Build types should always be lowercase but sometimes they are not.
if ("${cmake_build_type_lower}" STREQUAL "debug")
option (werror "Treat warnings as errors." FALSE)
else()
option (werror "Treat warnings as errors." TRUE)
endif()
enable_testing ()
option (enable_lcov "Generate Coverage Reports" ON)
option (enable_mirclient "Enable overlay using mirclient" ON)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}")
set(PACKAGE ${CMAKE_PROJECT_NAME})
set(GETTEXT_PACKAGE ${CMAKE_PROJECT_NAME})
set(DESKTOP_FILE ${PROJECT_NAME}-gui.desktop)
find_package(PkgConfig REQUIRED)
find_package(GDbus)
include(GNUInstallDirs)
include(CheckIncludeFile)
include(CheckFunctionExists)
include(UseGlibGeneration)
include(UseConstantBuilder)
# Workaround for libexecdir on debian
if (EXISTS "/etc/debian_version")
set(CMAKE_INSTALL_LIBEXECDIR ${CMAKE_INSTALL_LIBDIR})
set(CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
# https://bugzilla.gnome.org/show_bug.cgi?id=669355
# Since gdbus-codegen does not produce warning-free code
# and we use -Werror, only enable these warnings for debug
# builds. Drop this once the issue has been fixed and landed.
if ("${cmake_build_type_lower}" STREQUAL debug)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wpedantic")# -Wextra")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wpedantic -Wextra")
endif()
if (${werror})
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
endif()
pkg_check_modules(LOMIRI_APP_LAUNCH REQUIRED lomiri-app-launch-0>=0.1.3)
include_directories(${LOMIRI_APP_LAUNCH_INCLUDE_DIRS})
pkg_check_modules(GLIB2 REQUIRED glib-2.0)
include_directories(${GLIB2_INCLUDE_DIRS})
pkg_check_modules(GOBJECT2 REQUIRED gobject-2.0)
include_directories(${GOBJECT2_INCLUDE_DIRS})
pkg_check_modules(GIO2 REQUIRED gio-2.0)
include_directories(${GIO2_INCLUDE_DIRS})
pkg_check_modules(GIO_UNIX2 REQUIRED gio-unix-2.0)
include_directories(${GIO_UNIX2_INCLUDE_DIRS})
pkg_check_modules(JSONGLIB REQUIRED json-glib-1.0)
include_directories(${JSONGLIB_INCLUDE_DIRS})
pkg_check_modules(DBUSTEST REQUIRED dbustest-1>=14.04.0)
include_directories(${DBUSTEST_INCLUDE_DIRS})
pkg_check_modules(SQLITE REQUIRED sqlite3)
include_directories(${SQLITE_INCLUDE_DIRS})
pkg_check_modules(APPARMOR REQUIRED libapparmor)
include_directories(${APPARMOR_INCLUDE_DIRS})
if(${LOCAL_INSTALL})
set(DBUSSERVICEDIR "${CMAKE_INSTALL_DATADIR}/dbus-1/services/")
else()
EXEC_PROGRAM(${PKG_CONFIG_EXECUTABLE} ARGS dbus-1 --variable session_bus_services_dir OUTPUT_VARIABLE DBUSSERVICEDIR )
endif()
message("Installing DBus services to ${DBUSSERVICEDIR}")
if(${LOCAL_INSTALL})
set(DBUSIFACEDIR "${CMAKE_INSTALL_DATADIR}/dbus-1/interfaces/")
else()
EXEC_PROGRAM(${PKG_CONFIG_EXECUTABLE} ARGS dbus-1 --variable interfaces_dir OUTPUT_VARIABLE DBUSIFACEDIR )
endif()
message("Installing DBus interfaces to ${DBUSIFACEDIR}")
pkg_check_modules(SYSTEMD REQUIRED systemd)
pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemduserunitdir)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -fPIC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fPIC")
add_subdirectory(data)
add_subdirectory(service)
add_subdirectory(liblomiri-url-dispatcher)
add_subdirectory(tools)
add_subdirectory(gui)
add_subdirectory(po)
add_subdirectory(tests)
# coverage reporting
find_package(CoverageReport)
get_property(COVERAGE_TARGETS GLOBAL PROPERTY COVERAGE_TARGETS)
get_property(COVERAGE_TESTS GLOBAL PROPERTY COVERAGE_TESTS)
ENABLE_COVERAGE_REPORT(
TARGETS ${COVERAGE_TARGETS}
TESTS ${COVERAGE_TESTS}
FILTER /usr/include ${CMAKE_BINARY_DIR}/*
)
lomiri-url-dispatcher-0.1.3/COPYING 0000664 0000000 0000000 00000016743 14460075676 0017017 0 ustar 00root root 0000000 0000000 GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
lomiri-url-dispatcher-0.1.3/ChangeLog 0000664 0000000 0000000 00000207672 14460075676 0017541 0 ustar 00root root 0000000 0000000 2023-07-26 Marius Gripsgard
* Release 0.1.3 (HEAD -> main, tag: 0.1.3)
2023-06-30 Rudra Harsh V.Singh
* Translated using Weblate (Sanskrit) (59701fd)
2023-07-07 NPL
* Translated using Weblate (Japanese) (afa250f)
2023-06-30 Weblate
* Added translation using Weblate (Sanskrit) (9c203c6)
2023-06-27 Rudra Harsh V.Singh
* Translated using Weblate (English (Canada)) (0352d8b)
2023-06-26 Rudra Harsh V.Singh
* Translated using Weblate (Hindi) (0f67e5e)
2023-06-28 J. Lavoie
* Translated using Weblate (German) (a455047)
2023-04-11 Temuri Doghonadze
* Translated using Weblate (Georgian) (23c4235)
2023-04-04 gallegonovato
* Translated using Weblate (Spanish) (6be0adf)
2023-03-31 Sylke Vicious
* Translated using Weblate (Italian) (74766ae)
2023-03-31 Jozef Mlich
* Translated using Weblate (Czech) (ceec117)
2023-03-27 Jozef Mlich
* Translated using Weblate (Czech) (2b6328c)
2023-03-01 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (6164af4)
2023-02-26 Luna Jernberg
* Translated using Weblate (Swedish) (1315e28)
2023-02-21 Heimen Stoffels
* Translated using Weblate (Dutch) (9291c42)
2023-02-18 Sergii Horichenko
* Translated using Weblate (Russian) (befe723)
2023-02-16 phlostically
* Translated using Weblate (Esperanto) (9fd65c1)
2023-02-15 Mike Gabriel
* Merge branch 'c++17' into 'main' (2b74dfe)
2023-02-12 Luca Weiss
* Upgrade C++ standard to C++17 (7f41a2e)
2023-02-07 Ivo Xavier
* Translated using Weblate (Portuguese) (23c2172)
2023-02-06 Sergii Horichenko
* Translated using Weblate (Ukrainian) (f745bc2)
2023-02-05 gnu-ewm
* Translated using Weblate (Polish) (bc62743)
2023-02-05 Mike Gabriel
* po/url-dispatcher.pot: Drop file. Obsolete. (8450eb8)
* Release 0.1.2 (0f65184) (tag: 0.1.2)
2023-02-04 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (26b1194)
2023-02-04 Mike Gabriel
* Translated using Weblate (German) (0b3dceb)
2023-02-04 Hosted Weblate
* Update translation files (f7ceca3)
2023-02-04 Mike Gabriel
* po/lomiri-url-dispatcher.pot -m po/lomiri-url-dispatcher.pot:
No-change update of translation template. (c93689e)
2023-01-31 Guido Berhoerster
* Merge branch 'personal/sunweaver/modernize-i18n' into 'main'
(430964d)
2023-01-31 Mike Gabriel
* README.md: Add references to hosted Weblate about contributing
i18n. (3c5429d)
* README -> README.md (convert to markdown). (ab70131)
2023-01-30 Mike Gabriel
* lomiri-url-dispatcher: Modernize i18n. (7cfc392)
* CMake: Bump mininum version requirement to 3.5 (a2e47af)
* .gitignore: Don't ignore files in po/. (f7bca69)
2023-01-24 gnu-ewm
* Translated using Weblate (Polish) (0b7789e)
2023-01-16 Ivo Xavier
* Translated using Weblate (Portuguese) (086da1c)
2023-01-14 Dan
* Translated using Weblate (Ukrainian) (93cb64c)
2023-01-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (1b62418)
2023-01-13 Timothy G
* Translated using Weblate (French) (1e66c1c)
2023-01-13 Ivo Xavier
* Translated using Weblate (Portuguese) (0f27110)
2023-01-12 Sergii Horichenko
* Translated using Weblate (Russian) (34b54bc)
2023-01-09 Mike Gabriel
* Merge branch 'personal/mariogrip/lalver' into 'main' (5c5af3f)
2023-01-09 Marius Gripsgard
* Require lal version 0.1.3 (456b798)
2023-01-09 Mike Gabriel
* Merge branch 'personal/mariogrip/lal' into 'main' (ab6b3ac)
2023-01-03 Marius Gripsgard
* Support lal no mirclient build (cb2be28)
2023-01-05 Muhammad
* Translated using Weblate (Urdu) (5187481)
2023-01-05 Mike Gabriel
* Translated using Weblate (German) (d46ffb8)
2023-01-06 Guido Berhoerster
* Merge branch 'personal/sunweaver/ftbfs-fix-add-common-pkg' into
'main' (e2afef7)
2023-01-05 Mike Gabriel
* debian/: Introduce common:pkg containing locale files. (5014b75)
* po/: Rename Chinese translation files to _.po
pattern. (cd9087c)
* Revert "Deleted translation using Weblate (Chinese (Traditional,
Hong Kong))" (d94042e)
* Revert "Added translation using Weblate (Chinese (Traditional, Hong
Kong))" (9d15298)
2023-01-05 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (d7441ea)
2023-01-05 Mike Gabriel
* Merge branch 'kingu-main-patch-12571' into 'main' (e146103)
2023-01-05 Allan Nordhøy
* Spelling: Cannot open “%1” addresses. (acc43c9)
2023-01-04 Weblate
* Added translation using Weblate (Chinese (Traditional, Hong Kong))
(f000925)
2023-01-04 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (e992b07)
2023-01-04 Mike Gabriel
* Deleted translation using Weblate (Chinese (Traditional, Hong
Kong)) (752b6d2)
2023-01-04 Weblate
* Added translation using Weblate (Pampanga) (626d623)
* Added translation using Weblate (Chinese (Min Nan)) (6065b7d)
* Added translation using Weblate (Norwegian Bokmål) (da9dc48)
* Added translation using Weblate (Kurdish (Southern)) (fb6aca7)
* Added translation using Weblate (French (Switzerland)) (fbabde0)
* Added translation using Weblate (Kurdish (Northern)) (d62256d)
* Added translation using Weblate (Shan) (be5e50f)
* Added translation using Weblate (Bemba) (b891c00)
* Added translation using Weblate (Oromo) (1ddc774)
* Added translation using Weblate (Afar) (9dc5d80)
* Added translation using Weblate (Dhivehi) (a922107)
* Added translation using Weblate (Bengali (Bangladesh)) (94e2afe)
* Added translation using Weblate (Kabyle) (b48626d)
* Added translation using Weblate (Nyanja) (9024ca8)
* Added translation using Weblate (French (Canada)) (3b0ed8d)
* Added translation using Weblate (Chinese (Simplified)) (846d885)
* Added translation using Weblate (Chinese (Traditional)) (1802736)
* Added translation using Weblate (English (Canada)) (51299d3)
* Added translation using Weblate (English (Australia)) (d785181)
* Added translation using Weblate (Sindhi) (6fb3091)
* Added translation using Weblate (Burmese) (c69199d)
* Added translation using Weblate (Lojban) (c864d7c)
* Added translation using Weblate (Sardinian) (2568901)
* Added translation using Weblate (English (United States)) (2ac2736)
* Added translation using Weblate (Slovenian) (882daa0)
* Added translation using Weblate (Sinhala) (798bf1a)
* Added translation using Weblate (Slovak) (b2ba7ea)
* Added translation using Weblate (Khmer (Central)) (84fea54)
* Added translation using Weblate (Korean) (18deb5b)
* Added translation using Weblate (Albanian) (6770c9c)
* Added translation using Weblate (Serbian) (b57fc2d)
* Added translation using Weblate (Georgian) (cd0cb7e)
* Added translation using Weblate (Finnish) (dc9b5cb)
* Added translation using Weblate (Persian) (be1252b)
* Added translation using Weblate (Swedish) (984202f)
* Added translation using Weblate (French) (60d18f7)
* Added translation using Weblate (Spanish) (e6c4310)
* Added translation using Weblate (Dutch) (e22c62c)
* Added translation using Weblate (Indonesian) (6143843)
* Added translation using Weblate (Azerbaijani) (dc62c48)
* Added translation using Weblate (Arabic) (640b09f)
* Added translation using Weblate (Italian) (884026e)
* Added translation using Weblate (Amharic) (a7a9569)
* Added translation using Weblate (Uyghur) (7d4e415)
* Added translation using Weblate (Malay) (2ac9814)
* Added translation using Weblate (Polish) (eda4030)
* Added translation using Weblate (Macedonian) (d068d54)
* Added translation using Weblate (Maori) (8ffe04e)
* Added translation using Weblate (Malayalam) (49ba734)
* Added translation using Weblate (Friulian) (23d713f)
* Added translation using Weblate (Malagasy) (9a72ef5)
* Added translation using Weblate (Hebrew) (bee3c65)
* Added translation using Weblate (Hindi) (dd7c964)
* Added translation using Weblate (Hungarian) (cad3a53)
* Added translation using Weblate (Croatian) (a0f9770)
* Added translation using Weblate (Armenian) (6b1d7d3)
* Added translation using Weblate (English (United Kingdom))
(4fdc60d)
* Added translation using Weblate (Icelandic) (3b0ebd1)
* Added translation using Weblate (Punjabi) (025dfbe)
* Added translation using Weblate (Portuguese) (b966561)
* Added translation using Weblate (Pashto) (c4549ad)
* Added translation using Weblate (Czech) (bde0812)
* Added translation using Weblate (Welsh) (1ad90b1)
* Added translation using Weblate (Catalan) (9195343)
* Added translation using Weblate (Japanese) (b523180)
* Added translation using Weblate (Bosnian) (8459a53)
* Added translation using Weblate (Breton) (095b7d5)
* Added translation using Weblate (Asturian) (5639a72)
* Added translation using Weblate (Ukrainian) (5ebb732)
* Added translation using Weblate (Bulgarian) (53dc7be)
* Added translation using Weblate (Belarusian) (843bf69)
* Added translation using Weblate (Romanian) (a779978)
* Added translation using Weblate (Russian) (5d2e13b)
* Added translation using Weblate (Basque) (f966cde)
* Added translation using Weblate (Esperanto) (ebbf866)
* Added translation using Weblate (Greek) (af61fbd)
* Added translation using Weblate (Danish) (3e0a0d4)
* Added translation using Weblate (Portuguese (Brazil)) (b94a320)
* Added translation using Weblate (Chinese (Traditional, Hong Kong))
(3c0f38f)
* Added translation using Weblate (Tamil) (1c0f3ce)
* Added translation using Weblate (Telugu) (29ce971)
* Added translation using Weblate (Tajik) (dde4abb)
* Added translation using Weblate (Thai) (3621ead)
* Added translation using Weblate (Turkmen) (eb237eb)
* Added translation using Weblate (Lithuanian) (52dfa4b)
* Added translation using Weblate (Latvian) (bf94fc9)
* Added translation using Weblate (Turkish) (45fa0f1)
* Added translation using Weblate (Lao) (07f79f9)
* Added translation using Weblate (Lingala) (c542a9a)
* Added translation using Weblate (Luxembourgish) (081a809)
* Added translation using Weblate (Galician) (f3c152a)
* Added translation using Weblate (Gaelic) (4b63ab7)
* Added translation using Weblate (Valencian) (b5e7060)
* Added translation using Weblate (Gujarati) (6c5fec6)
2023-01-03 Weblate
* Added translation using Weblate (Urdu) (20d06b5)
* Added translation using Weblate (Tetum) (c9ff509)
* Added translation using Weblate (Ido) (0905012)
* Added translation using Weblate (Scots) (5c760ae)
* Added translation using Weblate (Franco-Provençal) (001e706)
2023-01-03 Mike Gabriel
* Added translation using Weblate (German) (5f97098)
2023-01-03 Marius Gripsgard
* Release 0.1.1 (699e549) (tag: 0.1.1)
2023-01-03 Mike Gabriel
* Merge branch 'personal/mariogrip/disablemirclient' into 'main'
(61b38e5)
2023-01-03 Marius Gripsgard
* Add option to disable mirclient overlay (efefbdf)
2022-12-23 Ratchanan Srirattanamet
* Merge branch 'hatato-master-patch-38554' into 'main' (1c4680a)
2020-10-28 Hatato
* Fix generic URL regex, add test for URL with path. (3a5b7bf)
2022-12-12 Marius Gripsgard
* Merge branch 'personal/fredldotme/clickurls' into 'main' (1749b75)
2022-12-12 Alfred Neumayer
* data & debian: Re-introduce click hook (3b13fd1)
2022-09-30 Mike Gabriel
* Merge branch 'array-build-fix' into 'main' (09ca481)
2022-09-29 Andres Salomon
* Fix build failure in Debian unstable (231a258)
2022-09-19 Ratchanan Srirattanamet
* Merge branch 'fix-bad-url-helper-app-id' into 'main' (8986d2e)
2022-09-19 Guido Berhoerster
* Rename app ID of the bad-url-helper to be consistent (3f57972)
2022-09-08 Ratchanan Srirattanamet
* Merge branch 'fix-startup' into 'main' (caac470)
2022-09-05 Guido Berhoerster
* Make OverlayTrackerMir connection handling more robust (85b26e7)
* Add ordering dependency on graphical-session.target (b169dd7)
2022-09-01 Ratchanan Srirattanamet
* Merge branch 'fix-sqlite-busy' into 'main' (57a0af1)
2022-09-01 Guido Berhoerster
* Fix concurrent sqlite DB access issues (dd332a5)
2022-08-01 Ratchanan Srirattanamet
* Merge branch 'fix-dbus-apparmor-check' into 'main' (45f2606)
2022-08-01 Guido Berhoerster
* Allow DBus activation by AppArmor-confined apps (cda8186)
2022-06-02 Guido Berhoerster
* Merge branch 'dbus-start-on-send' into 'main' (c71438a)
2022-06-01 Jami Kettunen
* Start com.lomiri.URLDispatcher D-Bus service if not running
(148b45b)
2022-05-16 Ratchanan Srirattanamet
* Merge branch 'update-directory' into 'main' (0da1bf8)
2022-04-28 Guido Berhoerster
* Watch URL files and update the database (94537b9)
2022-05-03 Ratchanan Srirattanamet
* Merge branch 'qml-fixes' into 'main' (6794ca1)
2022-04-25 Guido Berhoerster
* Add back dependencies for QML apps (c397c6d)
* Fix path of bad-url dialog (99e8790)
* Merge branch 'hatato-fix-bad-url-and-dump' into 'main' (3a52545)
2022-03-25 Ratchanan Srirattanamet
* Merge branch 'dbus-activation' into 'main' (8e3b764)
2022-03-22 Guido Berhoerster
* Start lomiri-url-dispatcher using DBus activation (4189423)
2022-01-20 Jesse Pullinen
* Use Lomiri components in bad-url (d7fa842)
* Fix lomiri-url-dispatcher-dump looking in the wrong directory
(2356c30)
2021-11-10 Marius Gripsgard
* Merge branch 'glib-extern' into 'main' (cce9e6e)
2021-05-31 Ratchanan Srirattanamet
* Merge branch 'ubports/glib-deprecation' into 'main' (849c18a)
2021-05-14 Rodney Dawes
* Fix main loop deprecation warnings too. (6f15e32)
* Rename the .bzrignore to .gitignore (078cb84)
* Stop using deprecated GTimeVal. (33d5b59)
2021-04-04 Luca Weiss
* Fix compile error with new glib versions (d355a02)
2021-03-23 Rodney
* Merge branch 'personal/peat-psuwit/start-building-master' into
'main' (ef11846)
2021-03-19 Marius Gripsgard
* Merge branch 'personal/peat-psuwit/sync-debian-pkg' into 'main'
(eca7beb)
2021-03-20 Ratchanan Srirattanamet
* Move Jenkinsfile to debian/ per the new guideline (3428397)
* Update Jenkinsfile to use shared library (7d95904)
* New Debian changelog entry; remove Debian revision number (5b3401e)
2021-01-29 Ratchanan Srirattanamet
* debian/*: Adopt DEB packaging from official Debian package where
appropriate (02d4975)
2020-09-28 Marius Gripsgard
* Merge branch 'mr/fix-missing-include-stdexcept' into 'master'
(558aa7d)
2020-09-27 Mike Gabriel
* service/bad-url/exec-tool.cpp: Fix missing include of
(for std::runtime_error()). (0205bff)
2020-05-28 Mike Gabriel
* gui/lomiri-url-dispatcher-gui.qml: Make placeholder text more
generic. (29c32df)
* gui/lomiri-url-dispatcher-gui.qml: Fix QML namespace of
Lomiri.Compoments. (4e4b57f)
* gui/lomiri-url-dispatcher-gui.desktop.in: Add Keywords= key.
(5b5298a)
* release 0.1.0 (5d33ebf) (tag: 0.1.0)
* NEWS: start with empty file (81ec4c1)
2020-05-27 Mike Gabriel
* tests/url_dispatcher_testability: Disable build time tests (they
require a systemd user session, it seems) and drop
test_fake_disptacher.py from installation path, it
contains build time cruft. (1e0b9f2)
* development file: Drop API_VERSION from file names and paths.
(c993efe)
* tests/url-db-test.cc: Don't hard-code DB_SCHEMA_VERSION. (aae06c3)
2020-05-20 Mike Gabriel
* Fork url-dispatcher as lomiri-url-dispatcher. (bba45cd)
2018-10-07 Rodney
* Remove scopes checker. (#6) (b9a83f5)
2018-06-12 Marius Gripsgard
* Merge pull request #3 from vanyasem/bionic (f7b7e00)
2018-06-11 Ivan Semkin
* Force rerun the CI (9a46599)
* Force rerun the CI (2e08ddb)
2018-06-08 Ivan Semkin
* Add missing -pthread flag (b3df852)
2018-06-04 Dan Chapman
* Merge pull request #1 from dobey/no-whoopsie (2b0df70)
2018-06-02 Rodney Dawes
* Add missing include. (e8cf0dc)
* Remove dependency on whoopsie. (0f806e7)
2018-02-13 Marius Gripsgard
* Release for bionic (679c9bf)
* Merge remote-tracking branch 'u8/master' into bionic (be23010)
2017-12-28 Marius Gripsgard
* Update Jenkinsfile (ca7eb5d)
2017-10-13 Marius Gripsgard
* Imported to UBports (7fab611)
2017-03-28 Bileto Bot
* Releasing 0.1+17.04.20170328-0ubuntu1 (809126e)
2017-03-28 Rodney Dawes
* Convert service main process and url-dispatcher tool code to C++.
(1d12c44)
* Use libwhoopsie for reporting recoverable problems. (5b86338)
* The unity8-dash interface is actually com.canonical.UnityDash.
(26cbec8)
* Fix deprecation warning in mir mock. (47108da)
2017-03-18 Bileto Bot
* Releasing 0.1+17.04.20170318-0ubuntu1 (decb1d7)
2017-03-18 Ted Gould
* Remove Upstart from the test suite and replace it with systemd
(e8ec068)
* Update bad-url exec tool to UAL C++ interface (010cb62)
2017-03-17 Ted Gould
* Remove tabs for dobey (5259653)
* Turn UAL up to 11 (432a135)
* Make return values clearer (f4efef6)
2017-03-16 Ted Gould
* Fix up the service test to not use Upstart (b3d42d3)
* This test no longer does anything useful (74ec78c)
* Make the icon have a white background for the U8 launcher (52fea44)
* Make the test GUI single instance (3ef6ffe)
* Simplify the exec tool with C++ UAL API (3d76545)
2017-03-15 Rodney Dawes
* Convert the service main process code to c++. (c29bbe8)
* Add test for calling url-dispatcher without args. (a8fa4dd)
2017-03-14 Rodney Dawes
* Convert the url-dispatcher tool to C++. (073e95e)
* Fix indentation. (97539bf)
* Fix deprecation warning in mir mock. (5ffa295)
* The unity8-dash interface is actually com.canonical.UnityDash.
(74438d6)
* Use libwhoopsie for reporting recoverable problems. (56fac2e)
2017-03-14 Bileto Bot
* Releasing 0.1+17.04.20170314-0ubuntu1 (66ba2e1)
2017-03-14 Rodney Dawes
* Remove unused gsettings cmake module. (24dd1e4)
* Use gdbus integration from cmake-extras. (c1d4cd0)
* Use cmake-extras intltool support. Enable langpack support.
(06fb2b6)
* Use the coverage support from cmake-extras. (b2f16e9)
* Use gmock module from cmake-extras. (fbcadbc)
* Remove click usage and support. (d71bd4d)
2017-03-14 Charles Kerr
* Honor XDG_CACHE_HOME in url-dispatcher-dump and url-dispatcher.conf
(f41cef9)
2017-03-14 Rodney Dawes
* Merge up changes from parents. (1910a11)
2017-03-13 Rodney Dawes
* Fix the conflict. (013ec5d)
2017-03-10 Rodney Dawes
* Remove a couple more references to click. (ec688cc)
* Override ubuntu_app_launch_triplet_to_app_id for the app id tests.
Remove the extraneous app-id tess which are testing ual,
not url-dispatcher. Put a few app id tests in dispatcher
tests to cover dispatcher_url_to_appid. (845a4aa)
2017-03-09 Rodney Dawes
* Merge trunk. (5d85a07)
2017-03-08 Bileto Bot
* Releasing 0.1+17.04.20170308.1-0ubuntu1 (211eb2c)
2017-03-08 Rodney Dawes
* Don't use upstart to get unity8 pid. (dabc07d)
* Fix more indentation. (76328d4)
* Fix indentation in dispatch_send_to_overlay (c09d463)
* Get the unity8 pid from dbus instead. (b15118b)
* Don't run initctl in the python test. (4e47f35)
* Fix indentation for one line in tab-infested code. (d2b85ec)
* Don't use upstart to get unity8 pid. (66d6f7e)
2017-03-06 Rodney Dawes
* Remove unused gsettings cmake module. (ac9aa7c)
* Use gdbus integration from cmake-extras. (93d3879)
* Merge up fix-coverage. (869ff24)
* Remove extraneous comment about coverage. (d508136)
2017-03-03 Rodney Dawes
* Use cmake-extras intltool support. Enable langpack support.
(5978d10)
* Oops, use the right variable for tests. (e59e2fa)
* Use the coverage support from cmake-extras. (7e44785)
* Use gmock module from cmake-extras. (54ffcc8)
2017-02-28 Rodney Dawes
* Remove click usage and support. (afc5cc4)
2017-02-27 Bileto Bot
* Releasing 0.1+17.04.20170227.2-0ubuntu1 (239ee4b)
2017-02-27 Rodney Dawes
* Remove tests that depend on libertine, as url-dispatcher has no
support for handlers in libertine anyway. (66b207d)
2017-02-27 Ken VanDine
* Handle UAL API bump (0519511)
2017-02-27 Rodney Dawes
* Actually, just remove the test, as url-dispatcher doesn't support
libertine. (0cc188f)
* Temporarily disable the tests which depend on libertine. (0ea1bc0)
2017-02-27 Ken VanDine
* Handle UAL API bump (6fb0117)
2016-12-06 Bileto Bot
* Releasing 0.1+17.04.20161206-0ubuntu1 (248b69f)
2016-12-06 Ted Gould
* Start after Unity8 so it has a chance to set the MIR_SOCKET
(6486c6c)
* Instead of sleeping make the refresh tasks low enough priority they
don't get in the way (LP: #1645793) (4a0d979)
2016-12-01 Ted Gould
* Stop on U8 as well (bf0f9a2)
2016-11-16 Ted Gould
* Make sure that U8 has set the proper MIR_SOCKET (7d86c79)
2016-11-10 Charles Kerr
* sync with trunk (1c09331)
2016-11-10 Ted Gould
* Instead of sleeping make the refresh tasks low enough priority they
don't get in the way (4f52f41)
2016-11-08 Bileto Bot
* Releasing 0.1+17.04.20161108-0ubuntu1 (c1ec36b)
2016-11-08 Michael Terry
* Support running inside a snap. (5570781)
* Merge from trunk (810cbba)
* Drop env var in 'start on' stanza -- doesn't work, and isn't needed
in snap mode anyway (df55821)
2016-11-07 Bileto Bot
* Releasing 0.1+17.04.20161107-0ubuntu1 (5d3c184)
* Crossbuilding Fixes; App ID should allow package names with
dots. (LP: #1591342) (LP: #1606498); Check versions of
appid:// urls to reduce the number of invalid appids we
send to UAL (LP: #1352656); Scope testing for the
scope:// URL and overlays that should be over the das.
Protect the dash from getting NULL urls (LP: #1476257.
Make sure URL Overlays are shutdown on exit; Remove the
wildcard that is confusing the update script (LP:
#1461496); Not using a message that isn't set properly
(LP: #1608009); Fixing tests to adjust for UAL change.
Add a small GUI helper tool for testing; Show error
dialog over apps that use Bad URLs (LP: #1370008)
(bd5b9bb)
2016-11-07 Ted Gould
* Be more specific so that the packages don't conflict (aba0d65)
2016-11-03 Ted Gould
* Fixes from review (b98bb99)
2016-11-02 Ted Gould
* Fixing multiple lookups (b652716)
* Fixing cast to be more C++-ish (4470879)
2016-09-23 Michael Terry
* Support snap paths if we're running in one (7bd2774)
2016-09-20 Ted Gould
* Forgot the container config (40935b3)
* Merge issues from trunk (85bbec6)
* Updating changelog to have all the branches in it (a1cf515)
* Fixing the environment for the appid test (706d753)
2016-08-30 Ted Gould
* Bad URL prompt (8357838)
* Merge lp:~ted/url-dispatcher/gui-tool/ (4ea4ea3)
* Merge lp:~ted/url-dispatcher/ual-snappy-autopkgtest/ (018eedf)
* Merge lp:~ted/url-dispatcher/lp1608009-no-message/ (ba82665)
* Merge lp:~larryprice/url-dispatcher/appid-with-dots (999808b)
* Merge lp:~ted/url-dispatcher/update-no-wildcard (84c984c)
* Merge lp:~ted/url-dispatcher/kill-helpers-on-exit (b2a9ed7)
* Merge lp:~ted/url-dispatcher/lp1476257-activate-dash-desktop
(0a1f2f8)
* Merge lp:~ted/url-dispatcher/is-scope-check (1102fd4)
* Merge lp:~ted/url-dispatcher/check-appid-urls (4886988)
* Merge lp:~fboucault/url-dispatcher/crossbuild_fixes (ca1bd7f)
* Grab the crossbuild branch to resolve conflicts (90737ea)
2016-08-26 Charles Kerr
* honor /tmp/charles-cache and /home/charles when referencing
urls-1.db (7dc0932)
2016-08-18 Ted Gould
* Adding some translation framework (30165ca)
2016-08-17 Ted Gould
* Make it so that we can get translations for these strings (4fa4e88)
* Make sure to only have the protocol in the error (60ab817)
* Add the GUI package (79a1bdd)
* Fix the prefix (f9f9e65)
* Adding a GUI tool for sending URLs (5e18db3)
2016-08-16 Ted Gould
* Installing the apparmor profile (c070eac)
* Fix the control file (50581a5)
* Move all the overlay management into common functions (aa5ad4f)
2016-08-16 Bileto Bot
* Releasing 0.1+16.10.20160816.1-0ubuntu1 (10348c8)
* No chnage rebuild for UAL migration; No change rebuild for
s390x. (7050020)
2016-08-16 Ted Gould
* No chnage rebuild for UAL migration (810484a)
* Catching up a version (d33c261)
2016-08-15 Ted Gould
* Grabbing the snappy test fix branch (3529c8b)
* Adding in apparmor config for the helper (2252b5a)
* Switch the AppID to be something defined staticly (b2bec40)
* Looks like a large rename, but I started this revision months ago
and just got back to it, not entirely sure (4c85d82)
* Fixing the service test (259fa10)
* Make the appid tests happy (456e64c)
* Not using a message that isn't set properly (5794273)
2016-08-10 Ted Gould
* Adding a TODO for using the GMock based mock (31d86d1)
* 2016 (f50cd45)
* Use the C99 bool type (df42f0c)
* Use default constructor/destructors (e7ceeb1)
* Learn real good like what year it is (58cc23d)
* Vertically compress code (6b8d83b)
* Fix build type check (20c1899)
* Merge trunk (da6e371)
2016-08-09 Ted Gould
* Update to trunk and resolve conflicts (1b00d39)
* Combine the checks on out_appid (f37afd3)
* Updating to current trunk (8691682)
2016-08-08 Ted Gould
* No change rebuild (61dd1ca)
2016-08-04 Larry Price
* Adding test (971d6aa)
* Accept '.' in appid for libertine apps (3edda49)
2016-07-19 Florian Boucault
* Crossbuilding fixes. (03974b9)
2015-11-10 CI Train Bot
* Releasing 0.1+16.04.20151110-0ubuntu1 (9f18bac)
2015-11-10 Ted Gould
* Remove the cache if the service fails to start. Fail to start if we
can't create the database.
Fixes: #1483854 Approved by: PS
Jenkins bot, Ken VanDine (4c71c44)
2015-11-06 Ted Gould
* Make sure to exit with the code from the service (50c8473)
* Use -ne (9c207ea)
* Attaching bug (577fa24)
* Test the status of URL dispatcher instead of relying on a fail from
Upstart (ee73f5f)
2015-09-04 Ted Gould
* Catch stopping instead of stopped (e1ab562)
* These aren't used because the refresh happens when the new instance
starts (88a9964)
* Adding in an extra job instead (20fff91)
2015-09-03 Ted Gould
* Make stopping with failure clean the cache and rebuild it (04c295c)
* Make it so that if DB creation fails we die (dd5e642)
2015-08-29 Ted Gould
* Getting a map in there (d022e75)
* Convert the overlays to using a structure (17cda01)
* Setting up Mir test for both types of TPS (4a04b91)
* Adding to Bad URL to the UAL signal stop tests (0c5f900)
2015-08-28 Ted Gould
* Fixes to make everything work again with the tests. (96293c3)
* Connect in the bad overlay dialog (d1a3576)
* Adding in the bad URL tracker (282dfa2)
2015-07-21 Ted Gould
* Protect the dash from getting NULL urls (68b9089)
2015-07-17 CI Train Bot
* Releasing 0.1+15.10.20150717-0ubuntu1 (7d5b02f)
2015-07-17 Andreas Pokorny
* unchagned for mir release 0.14.0 Approved by: PS Jenkins bot
(48e5f35)
2015-06-26 Ted Gould
* Forgot license headers (55542bc)
* Putting in a test that handles the case of overlaying on top of the
Dash (2a8eb7b)
* Sending a SIGTERM so that we can write out coverage results
(caa3c8b)
2015-06-25 Ted Gould
* Fix to use the memory we kept (7a367f3)
* Adding some bad testing and ensuring we're allowing underscores for
scopes (8af73da)
* Basic scope test (841d8ad)
* Scope metadata is a 0%)#$&!(#$ (b0f09bd)
* Only clear the data if there is a place to clear (223a8fd)
* Make it so we don't inherit from the shared_ptr (9786a8c)
* Make it so that the mock can take exceptions (b9e30f8)
* Made an insertable mock (78bcf40)
* Inserting a facade so that we can test this. So stupid. (96e3228)
2015-06-25 Andreas Pokorny
* unchanged for mir release 0.14.0 (74f358e)
2015-06-23 Ted Gould
* Trying to get some scope mocking in here (9518841)
2015-06-22 Ted Gould
* Don't leak memory (a342ac4)
* Warnings on bad parameters (6d544df)
* Sneaky Tabs (7f0763e)
* Don't need to protect delete from nullptr (b893a51)
* Warning if something other than NotFound (a36a021)
* Scope is now a keyword, let's avoid it. (e3912d1)
* Comment to help the next guy/gal (150b872)
* Support disabing scope checking for testing (09a82e7)
* It's C++, let's use that when we can. (39602f5)
* Steal getting a pid from an Upstart job from pay service and push
it into the scope detection (391e52b)
* Make sure to add it to debian as well (371aea5)
* Adding a PID check (678b46d)
* Change the tests to the new prototypes (7e9587b)
* Check the scope URL to ensure the App ID is correct (f27d932)
* Link in the scope checker (bcf7e7f)
* A connection to the Scopes Runtime (10cfa86)
* Adding Unity Scopes to the build (fe7c4ef)
2015-06-19 Ted Gould
* Ensure the URL dialog has what it needs (d8b51db)
* Make CMake happy having two exec-tools (bc02013)
* Adding an exec tool for bad-urls (dd7c25c)
* GPL it (819996c)
* Install the QML file (24c4ed6)
* Clean up the string and use an argument (c6792a0)
* Clean up text (daa2e93)
* Couple clean ups (2b7abf7)
* First pass at a dialog (a55f468)
* Attaching bug (acb705a)
* Add a check for handling bad versions (1b17dec)
* Check to ensure that a given app id is the current version
(4e2c8d4)
* Make sure to clean up untrusted helpers (52f2414)
* Remove the wildcard that is confusing the script (c93c6cb)
2015-06-12 CI Train Bot
* Releasing 0.1+15.10.20150612-0ubuntu1 (ba3aff9)
2015-06-12 Ted Gould
* Support URL Overlays of content in a trusted session without a
desktop file Approved by: PS Jenkins bot, Charles Kerr
(76e1896)
* Provide a small tool to dump the URL DB in a readable form Approved
by: PS Jenkins bot, Charles Kerr (ace3789)
* Add upstart build dep for tests on Wily Approved by: PS Jenkins
bot, Charles Kerr (197ea51)
* Clean up a couple of warnings (1d4a110)
2015-06-11 Ted Gould
* Making internal functions private (7f92e04)
* Remove (void) as a function prototype (e1c3c76)
* Switch linking option to not include the pthread library, but
instead ask for it directly (2d99dcf)
2015-06-08 Ted Gould
* Allow dir to be NULL (660782a)
* Fixing the dispatcher test to match the fixes in the exec tool test
(0aec676)
* Make the exec-tool test work with the directory feature (and test
it) (93d6e57)
* Fix CMake file to use PROGRAMS (da1e450)
* Grab Upstart dep (100b55c)
* Grab Upstart dep (6900fd8)
* Add upstart build dep for tests on Wily (ee44607)
2015-06-05 Ted Gould
* Add the libclick dev package (e2bd11d)
* Adding in directory support for the new UAL (06d8e33)
2015-05-20 Ted Gould
* Ensure Mir has pthread (785f1f9)
* Grab the exec tool too (2c2414e)
2015-05-19 Ted Gould
* Make the mir mock an ld preload for non-mir testing (45c64ee)
* Make it so that VIM can handle the comment syntax (8fbf15c)
* Adding copyright headers (bc64c00)
* Put a bad call in (6b3364b)
* Mir signal stops (6156b19)
* Signal a stop from UAL to make sure the Mir session gets cleaned up
(9edd88a)
2015-05-18 Ted Gould
* Add in some Mir mock checking and such (10b7b51)
* Testing adding a bunch of overlays (4fa37d9)
* Switch from a DBus Mock to a UAL mock (2dd036a)
* Making sure to remove not going back on the loop twice (dcbe7ca)
* Overlay test (8193586)
* Adding in a base for the overlay tracker testing (7e61e1c)
* Stealing the Mir mock (635809f)
* Matching the desktop file (5013287)
* Make sure the data hits the bus (4f6d0bf)
* Get a basic test going (c66d1a9)
* Allow directory overrides in the exec tool (3057b53)
* Move blocking the recoverable problems down the stack (2112e99)
* Add checking overlay tests (ea74753)
* Add in a first overlay test (a856abf)
* Add in support for test defined overlays (f0b638f)
2015-05-16 Ted Gould
* Unref a variant and realize a TODO (f5626be)
* Connect in the dispatcher and the tracker (da11a9b)
* Pass along the URL as well (46fc6a8)
* Add in some more error handling (d9ff2cb)
* Connect into the UAL events and handle them (d280f77)
* Clean up a bit (8ff5a20)
2015-05-15 Ted Gould
* Track AppID as well (9b6ad41)
* Setup a helper and start mir session tracking (7eca659)
* Get a mock in there (8f38326)
* Putting in the middle an interface to make it a little easier to
test. (21f9630)
* Start to flesh out the overlay tracker (1e086b8)
* Steal glib-thread from pay-service (2e4b16d)
* Add the overlay tracker into things (f934801)
* Make sure non-archive bugs to go the package in LP (da5ac79)
* Make the apport hook use the same tool (4b0db16)
* Install the dumper (7627c85)
* Install it (2047a12)
* A small shell script to dump the contents of the URL DB in a useful
way. (a84adbb)
* Don't use the C file, use the lib that we have (481cf2f)
* Determine whether something is an overlay (87d06f3)
* Insert the overlay code (cd851db)
* Connect in some recoverable problems (8e5c62f)
* Add in directory search support (bd38149)
2015-05-14 Ted Gould
* Building the tool (e20abc7)
* Steal exec tool from Pay Service (6165f3f)
* Make it so tht we have two click hooks, one for URLs and one for
overlays (bc06936)
2015-05-13 Ted Gould
* Require UAL 0.5 (a055c8c)
2015-01-23 CI Train Bot
* Releasing 0.1+15.04.20150123-0ubuntu1 (146964c)
2015-01-23 Ted Gould
* Special handling for intent URLs
Fixes: #1407709 Approved by:
Charles Kerr, PS Jenkins bot (afda3c0)
* Small fixes from rtm review (c5b71a7)
* Don't get the domain from the regular expression if we're not going
to use it. (6c5aab9)
* Makeing intent_domain static (12bf240)
2015-01-09 Ted Gould
* Update to trunk (110a540)
* Add an update directory test for intent input (f8ccecc)
* Block intents that don't have a domain specified (e09d4fc)
* Intent special case testing (62ad443)
2015-01-08 Ted Gould
* Special handle intent domains (00b935d)
2014-12-11 CI Train Bot
* Releasing 0.1+15.04.20141211-0ubuntu1 (35f3ae7)
2014-12-11 Ted Gould
* Fix domain handling in generic regular expression
Fixes: #1401612
Approved by: Charles Kerr (6ac6f46)
* Regex wack-a-mole (abc9832)
* Attching bug (6ffcee8)
* Adding a webapp subdomain test (7f2002b)
2014-10-31 CI bot
* Releasing 0.1+15.04.20141031-0ubuntu1 (d5f412a)
2014-10-31 Jussi Pakkanen
* Ensure that tables always exist. Approved by: Ted Gould, PS Jenkins
bot (f4c3010)
2014-10-31 Ted Gould
* Making generic regular expression more robust
Fixes: 1351222,
1384460 Approved by: Charles Kerr, PS Jenkins bot
(c53e908)
2014-10-31 Jussi Pakkanen
* Do a rollback when update operations fail so there are no dangling
transactions. Approved by: Ted Gould, PS Jenkins bot
(0c71ba9)
* General cleanups Approved by: Ted Gould, PS Jenkins bot (8a542d3)
2014-10-30 Jussi Pakkanen
* Dammit. (6544562)
* Created test for double creation. (ad500b7)
2014-10-29 Jussi Pakkanen
* Ensure tables always exist. (9c5b712)
2014-10-29 Ted Gould
* Adding a test for tel: with slashes (8f08afa)
2014-10-29 Jussi Pakkanen
* Do a rollback if transaction fails. (d378bb8)
2014-10-28 Jussi Pakkanen
* Made -Wpedantic off in non-debug builds to work around bug caused
by gdbus-codegen. (1930f8b)
* Generate python test file in build directory. (2651a61)
* A few dead assignment fixes from Clang static analyzer. (e1f2302)
* Created ignore file and populated it with common things. (456479a)
* Moved test configuration from command line options to a
configuration header. (04e5683)
2014-10-24 Jussi Pakkanen
* Fix header guards. (f86fbf6)
* Use nullptr in C++. (84ea7fd)
* Enable more warnings and fix issues raised. (633e69e)
2014-10-23 Ted Gould
* Attaching bug (e3feae5)
* Adding the test from the bug (6408782)
* Fixing the test (9640fda)
* A helpful debug name (b9ad98c)
* Check that we thing we got an app id (064c9cb)
* Adding a tel test (58d0840)
* Make the generic regular expression more general (ad8a9be)
2014-09-25 CI bot
* Releasing 0.1+14.10.20140925-0ubuntu1 (1ea218d)
2014-09-25 Ted Gould
* Update tests to work with new UAL requirements
Fixes: 1370735
Approved by: Charles Kerr, PS Jenkins bot (6a56441)
* Drop file based URLs for Music and Video
Fixes: 1340952 Approved
by: Charles Kerr (2731cb6)
2014-09-22 Ted Gould
* Changing variable name to be more descriptive (af06fe5)
* Updating to trunk (2ef2697)
2014-09-17 Ted Gould
* Attaching bug (45eb6ab)
* Adding a desktop file for lookup with the new UAL (a51b127)
2014-09-05 CI bot
* Releasing 0.1+14.10.20140905.1-0ubuntu1 (71ca09f)
2014-09-05 Ted Gould
* Throw a bad_url on the appid 'unconfined' Approved by: Charles
Kerr, PS Jenkins bot (58585e2)
2014-09-02 Ted Gould
* Make it so the bad-url errors are easier to find in Daisy (786c9c4)
* Throw a bad_url on the appid 'unconfined' (738e82b)
2014-08-27 CI bot
* Releasing 0.1+14.10.20140827-0ubuntu1 (012e752)
2014-08-27 Ted Gould
* Support for unity8-dash URLs even though it's not an application
Fixes: 1361349 Approved by: Michał Sawicz, Charles Kerr,
PS Jenkins bot (44f9ef7)
* Split update jobs into independent jobs Approved by: Charles Kerr,
PS Jenkins bot (47b90ea)
2014-08-26 Ted Gould
* Adding in a test for the focus signal (847dcd8)
* Check the parameters to ensure the URL is there (a455fce)
* Adding in a dash mock (a4531ee)
2014-08-25 Ted Gould
* Setting up the dispatching of the URL (cb63496)
* Add a URL db to the test (fc3c45c)
* Create a test with a dash mock (cf9cbf0)
* Dropping the scope regular expression in favor of having the dash
provide a url configuration file. (337705a)
* Add testing for the scope URI format (acff153)
* Actually send the Open request to the dash (0785f54)
* Match the scope regular expression (01eee5a)
* Add a function to send to the dash (1e67dee)
* Adding in a scope regular expression (cae34e4)
2014-08-20 Ted Gould
* Split the update into two different jobs (7ec366c)
* We don't use the utilities anymore, just the lib which will get
automatically grabbed (fb66629)
* Drop workaround for 1302117 (4f83418)
2014-08-19 CI bot
* Releasing 0.1+14.10.20140819.1-0ubuntu1 (c8772f5)
2014-08-19 Ted Gould
* Test replacing a timestamp Approved by: PS Jenkins bot, Rodney
Dawes (75dad66)
* Ensure send works even without a mainloop
Fixes: 1356077 Approved
by: Charles Kerr, PS Jenkins bot (db52f29)
* Use dbus-test-runner for the tests (8af7113)
* Don't start it, just wait (42dd2ef)
2014-08-18 Ted Gould
* Check to see if URL Dispatcher is running and then send status
(c8bb6c6)
2014-08-17 Ted Gould
* Just looking for the DB file (dfc6d3d)
* Test to ensure we can update with the same value (46b32a3)
* Ensuring that URL disptcher gets started before us (6750187)
2014-08-15 Ted Gould
* Attaching bug (6627e1d)
* Avoid getting the proxy so that we can just call one level of
indirection (60d18ad)
* Adding a test for using the lib without a mainloop (9e96052)
2014-08-14 Ted Gould
* Adding a test to ensure we can replace a timestamp (124fa00)
2014-07-24 CI bot
* Releasing 0.1+14.10.20140724-0ubuntu1 (1f9d4c0)
* Replaced 0replaceme with real versions. (006a8e0)
2014-07-24 Brendan Donegan
* Add url-dispatcher-testability binary package. Approved by: Ted
Gould, Leo Arias (764cbb0)
2014-07-24 Ted Gould
* Add a TestURL function to determine which AppID will be used for a
given URL Approved by: Charles Kerr, PS Jenkins bot
(64fcddc)
* Make the database handle multiple writers more robustly Approved
by: Charles Kerr, PS Jenkins bot (a51189b)
2014-07-23 Ted Gould
* Test the error case as well (866973f)
* Handle multiple URLs (4929890)
* Test the test url function on the service (ca183c5)
* Go throught the array with a counter (14df0dd)
2014-07-22 Leo Arias
* Added python3:Depends as suggested by Colin. (70df07c)
2014-07-22 Brendan Donegan
* Use .in file to set bin_dir (4a508ad)
2014-07-21 Brendan Donegan
* Add copyright header (3f5ac46)
* Update signature (d8757bf)
2014-07-20 Brendan Donegan
* CTest works now (8911bdd)
2014-07-17 Ted Gould
* Add documentation for return value (f838715)
2014-07-17 Brendan Donegan
* CMake changes to get url_dispatcher_testability tested with CMake
(b9c5d6d)
* Refactor fake dispatcher to split into two modules (5cab705)
2014-07-16 Ted Gould
* Add symbol (f679743)
* Test the restriction feature (8bc2d95)
* Pull the restriction logic into its own function so that we can
test it (1dc13e5)
* Ensure we're testing the restricted function as well (361f16a)
* Fix libtest for new API (da7ea35)
* Ensure we always send a string (4c90b0a)
2014-07-16 Brendan Donegan
* Add url-dispatcher-tools to control file (c6823b4)
2014-07-15 Ted Gould
* Send a formal error if we get restricted (8efa01f)
* Refactor to handle the case of the restricted package. (b095c8e)
* Send along the package information for restricted dispatch
(706600e)
* Add package to the dispatch URL method (7b8413f)
* Some documentation, which is a good thing (c3a1d0c)
* Add a dispatch restricted prototype (56ff6b8)
* Adjust test to new API (f5ba3b1)
2014-07-15 Brendan Donegan
* Add python3-fixtures to build-deps (a164bc5)
2014-07-15 Ted Gould
* Look through the URLs we're given (6332eaf)
* Changing API to be sets of strings (9e57a87)
2014-07-15 Brendan Donegan
* Add testtools as a build-dep (38b1eca)
2014-07-15 Ted Gould
* Attaching bug (2af4f0a)
* Dropping the file URL tests (5207156)
* Drop the file based URLs (ad174ff)
2014-07-15 Brendan Donegan
* Add url-dispatcher-testability which provides a fake URL dispatcher
for testing, and a test for the same. (7ec335d)
2014-07-14 Ted Gould
* Adding in new symbol (4cec94e)
* Adding a test for the TestURL library function (ca42f33)
* Access function for the URL test (e59caa4)
2014-07-12 Ted Gould
* Align to new API (b3c6b9b)
* Refactoring test to handle new API (05c4525)
* Rename function to make more sense (1c2cd5a)
* Rename the function to have it make more sense (fc94b0d)
2014-07-11 Ted Gould
* Adding a test URL handler (081cdba)
* Making dispatch_url a little more generic (e753052)
* Add a TestURL method (3bc1e72)
2014-07-09 Ted Gould
* Create the tables all at once in a transaction. h/t Pete and Michal
(af22c7a)
2014-07-07 Ted Gould
* Make it so that we try to ensure the updates all happen as
sequentially as possible so we don't get in fights over
the database (33ddd5b)
* Put the database into WAL mode for shared memory overlaping of
writes (7d9ed32)
2014-06-19 CI bot
* Releasing 0.1+14.10.20140619-0ubuntu1 (eb20a50)
2014-06-19 Ted Gould
* Improving error messages and collecting more data (4fae33d)
2014-06-06 Ted Gould
* Oops, Python (a072cf8)
* Adding in apport help from the cache (cef5f85)
* Better error messages through strings (ed966ef)
* Fix dir_search leak on error (a858e71)
2014-06-04 CI bot
* Releasing 0.1+14.10.20140604-0ubuntu1 (f7a5662)
2014-06-04 Ted Gould
* Recoverable errors on DB errors on update (afb2dd9)
* Merge and review policies (35aa2fc)
* Const our strings (bef5db6)
* Update to trunk (f1acfd3)
2014-06-01 CI bot
* Releasing 0.1+14.10.20140601-0ubuntu1 (03c4ac0)
2014-06-01 Ted Gould
* Changing to Ubuntu App Launch (cdc5cb1)
2014-05-27 Ted Gould
* Add error for unable to set the notification time as well (8701326)
* Add recoverable errors for database issues (d00434e)
* UAL rename (4dc4731)
2014-05-26 Ted Gould
* Missed a build variable (792bc3d)
* Changing to Ubuntu App Launch (b3e8b41)
2014-04-03 CI bot
* Releasing 0.1+14.04.20140403-0ubuntu1 (67948fe)
2014-04-03 Ted Gould
* Fix cache directory permissions if they got messed up
Fixes:
1290997 (ac631e9)
* Marking this as 'fixed' for url-dispatcher (338868d)
* Putting in umasks for now (e17db7e)
* Fixing the cache directory permissions if they're broke (c232d50)
2014-03-31 CI bot
* Releasing 0.1+14.04.20140331.1-0ubuntu1 (631d257)
2014-03-31 Ted Gould
* Migrate test suite to use libclick based libual (07f4f5c)
* Switch to using libupstart-app-launch for discovering AppIDs
(46db324)
* Make it so that URLs can be installed with configuration files.
(950a097)
* Add a timeout before tearing down the bus (6b84cf7)
2014-03-24 Ted Gould
* Make these tests work with the new scheme better (48121e7)
* Switch from a click command like to a click db based test (3391e95)
2014-03-14 Ted Gould
* Update to trunk (b69be32)
* Update to trunk (c1313b9)
* Free the fail string (cbf3bc8)
* Make a failure to close a recoverable problem (55e527a)
* Only check if a directory (c2be298)
* Change function name to match logic of return (42b8573)
* Error if protocol is NULL (442ec67)
* Make sure to free GError (d4482cb)
* Adding author notes in copyright headers (6b4a597)
2014-02-17 CI bot
* Releasing 0.1+14.04.20140217.1-0ubuntu1 (7005302)
2014-02-17 Ted Gould
* Update Upstart mock for the new UAL (7809355)
* Flushing trunk with a release (9cdd060)
2014-02-13 Ted Gould
* Don't remove the source here, do that when it gets removed below
(b392973)
* Update Upstart mock for the new UAL (e46c872)
2014-02-04 Ted Gould
* Adding some merge review policies (8044d31)
* Some manual tests (797afa5)
2014-01-30 Ted Gould
* Flushing trunk with a release (ad5c197)
2014-01-29 Ted Gould
* Drop runtime dep on click. UAL has one, but we don't. (d74ebc9)
* Drop the click exec variable we aren't using anyway (ba0c4e2)
2014-01-28 Ted Gould
* Getting the tests working with the new world order (22cdd0b)
* Switch to the UAL function for resolving the triplet (f156466)
2014-01-14 Ted Gould
* Forgot to add deps on sqlite3 (fc12991)
2014-01-13 Ted Gould
* Change home directory notation (1fb3695)
* Fixing the regular expression to make the / optional (bfa9b6f)
* Trying to work around a seeming Upstart bug (24a513b)
* Selecting files so we get less errors (314aa18)
* Print on removing files (c4059c3)
* Add a schema version to make our lives easier later (d4c2e30)
* Reshuffle so we only handle the case if we can make things better
(a71a0e1)
* Check out the directory and handle files (586396b)
* Fix warning (9b98d4c)
* Switching to events to be a little cleaner (b8cf531)
* Simplifying (9a3fc24)
* Include click in the packaging (4d34349)
* Add in a click hook for URLs (d6b346d)
* Switch to using the update job instead of calling the utility for
single instance per-directory (8443787)
* Switching to one job with a match instead of two jobs (cabb272)
* Update to all the new naming (9ee03a5)
* Add test to ensure we don't duplicate entries on files that haven't
been updated (3d2d946)
* Make sure to put the cache into a test directory (9fb0e22)
* We don't support that anymore (1d93009)
* Special casing the file URLs, we can't kill them :-( (fc45b2a)
* Dropping the alarm test, it's not testing anything new anymore
(c860062)
* Setup the URL database to have the test entries in it (5f30e58)
* Use the right match variable (bf69b03)
* Add a generic protocol regular expression to grab the db entries
(cd25bcb)
* Test to ensure removing a directory removes the entries for it
(b50f00b)
* Test to ensure removing a file removes the entiry in the DB
(dc48783)
* Switching so if a directory doesn't exist we'll remove all entries
that were for it in the database (9f6b5ee)
* Need a return (bea7e67)
* Handling removal of deleted files (69e661a)
* Splitting up the communcation to the database into multiple execs
(e4b1783)
* Test to ensure removal (fails) (bf86d6a)
* Add a test for a directory that isn't there (13117fa)
* Function to remove file data (53581ca)
* Fix a typo in the tests (697b18d)
* Build the search term in C (fda6931)
* Adding a test to find the files (8e6a954)
* Return the files that are in a directory (0e1445c)
2014-01-10 Ted Gould
* Add a compeating URL file (93d9b75)
* Make sure the lenght goes the right direction (6bf7095)
* Adding a test for suffix basics (cb8e309)
* Making sure to copy the memory right away (9c5596a)
* Making the SQL do our work and suffix and sort for us (2890606)
* Fixing up the test, making things work (15296af)
* Fixing the SQL (c00c6cc)
* Get the URL back in the test (c89ca52)
* Flsehing out how to get the url from the db (17ab155)
* Adding a function to find a URL (e65c9d8)
* Switch from having the hardcoded list of paterns to using the
database to look them up (bc4591f)
* Filter out extra noise from coverage (b62171c)
* Same URL from more files (bdfc7b0)
* Make sure the urls are unique (e5e031e)
* Check for duplicate entries in the same file (2c34541)
* Adding one with lots of different entries (7f4aad3)
* XML file to test (b445f7c)
* Make sure we know what suffixs we have (93db36c)
* Boot strapping the varried test (b0783aa)
* Moving the directory so we can have more (b38d652)
* Move the DB creation just to make sure we can have two connections
to the DB (c2fd315)
* Checking for a URL in the database as well (9fa8138)
* Check for a file in the DB (961ecbc)
* Make the full filename instead of just the file name in the
directory (c46c8e0)
* Adding a test for a simple single entry that is good (1f89a07)
* Flesh out the not existing test (33e3ed4)
* Adding a basic test for the directory update tool (7293513)
2014-01-09 Ted Gould
* Fixing out of tree builds (bf1a3f9)
* Insert a URL as well (726934f)
* Make sure to return false if we can't find any data (3ef10df)
* Check out the timestamps (a5fe642)
* Check the types of the columns to ensure everything is there
(dc9de8d)
* Setting up the URL db test framework (a99c9de)
* Putting the DB code into its own lib to make testing easier
(bbb7249)
* Fleshing out setting the timestamp (d85aa8e)
* Code to hopefully get the timestamp (be9903a)
* Fleshing out inserting a URL (ec8d2bb)
* Doing the per entry url handling (6ef4bda)
* Start parsing up the url discription file (5b2d585)
* Do the checks on file modification times (7065592)
* Fleshing out main (33095f6)
* Adding an update directory tool (e190b26)
* Copyright header (a8dafa9)
* Prototyping out some new functions (26b822d)
* Make a url-db header (e2640be)
* Change to url-db so we can throw other things there (f4b254d)
2014-01-08 Ted Gould
* Adding in some code to create a database all nice like (6c7e0b5)
* Get the constant builder templates (9cd7f18)
* Adding a create db sql list and along with a script to test it
(11ccee7)
2014-01-03 Ted Gould
* Adding in an architecture diagram (598fd0c)
2014-01-02 Ted Gould
* Adding in the refresh job (5f81bee)
* Adding watch upstart jobs (17f1ff3)
2013-12-10 Łukasz 'sil2100' Zemczak
* Merge back two distro release changelog entries (50be5da)
* We don't care for the arch change bits (28b35ec)
* Merge back two distro release changelog entries (46b3937)
2013-12-06 Ted Gould
* Upgrading to libupstart-app-launch v2. (ed00403)
* Upgrading to libupstart-app-launch v2 (31bc3bc)
2013-11-20 Ted Gould
* Add tests for the library and service as a binary. (91f2840)
* Grab dbusmock for the test suite (ee6fa83)
2013-11-08 Ted Gould
* Make sure there aren't two app ids and that we don't leak a string
(3670735)
* Make sure to let the environment go (2471d9a)
* Unref the test variant (779fef3)
2013-11-07 Ted Gould
* Make sure to TERM so we get the coverage results (721b6c6)
* Add a sigterm handler (4e0ceca)
* Make sure we have our env var for the session bus usage (87d4bdb)
* A test that actually runs the service (c2733bb)
* Better name (ce9944c)
* A bit more sane (3d4f93d)
* Fleshing out the test, but it's not right yet (e9d4a20)
* Setup our fixture (e5bbc82)
* Adding a dummy test for the lib (a4a4320)
* Depend on dbustest (8ebd68a)
2013-10-14 Automatic PS uploader
* Releasing 0.1+13.10.20131014.2-0ubuntu1 (revision 38 from
lp:url-dispatcher). (889cd5e)
* Releasing 0.1+13.10.20131014.2-0ubuntu1, based on r38 (169a943)
2013-10-14 Michal Hruby
* Revert the definition change for mediaplayer, it'll remain a
non-click app for now. (4c87993)
* Fix test (59c6513)
* Revert the mediaplayer change to click (d4e9401)
2013-10-09 Ted Gould
* Switching many core apps to Click App ID's. (5a569c9)
2013-10-08 Ted Gould
* Adding more tests with each format we want to ensure works
(53cf9a5)
* Adding in test data and hitting it (fa11673)
* Adding some test click manifests (c0282d7)
* Switching packages that are going to be clicks over to the
searchable app id (b3ee4e8)
* Make a #define for current version (5822513)
* Allow custom URIs to have variable based package specifications.
(6d7e8e8)
* Merge trunk to resolve conflicts (f49bf86)
* Use 'click info' to get the manifest.
Fixes:
https://bugs.launchpad.net/bugs/1232118. (e56cb8e)
* Adds the appid:// URL format. (2274055)
2013-10-05 Ted Gould
* Add built directories to the includes (25affdc)
2013-10-04 Ted Gould
* Update to trunk (930021e)
* Adding a test for a custom URI with wildcards (e60d90d)
* Making sure we get the test custom URI (fb2348e)
* Adding a custom URI that we can use for testing (e7b50d8)
* If we have no app id make sure to check our search version
(f853a3f)
* Make it so that we can have a triplet in the app structure
(837efcf)
* Make our click tester do info instead of pkgdir (3c158c8)
* Use 'click info' to get the manifest file (bf6f5d5)
* Make sure to note the runtime deps on click (314c86d)
* Attaching bug (e8ffc48)
2013-10-03 Automatic PS uploader
* Releasing 0.1+13.10.20131003-0ubuntu1 (revision 32 from
lp:url-dispatcher). (043afe3)
* Releasing 0.1+13.10.20131003-0ubuntu1, based on r32 (351dcd4)
2013-10-02 Ted Gould
* Adding the alarm URL pattern.
Fixes:
https://bugs.launchpad.net/bugs/1233176. (a121046)
2013-10-01 Ted Gould
* Again (80794b1)
* Using the right app (aee4bc2)
* Adding the alarm URL pattern (d5dd5fd)
2013-09-27 Ted Gould
* Adding a calendar URL.
Fixes:
https://bugs.launchpad.net/bugs/1231136. (64a1f01)
* Make dispatcher more testable and add some application:/// tests.
(7c386c5)
* Enfoce the ///.
Fixes: https://bugs.launchpad.net/bugs/1231444.
(046ae19)
* Adding calendar testing (14a85d3)
* Grab test harness (d17789b)
2013-09-26 Ted Gould
* Cherry pick r43 from the app-id-url branch to make cancelling
better (148c993)
* Make click error (0b63d9e)
* Test on a list of apps (3506213)
* Fixing cut-and-paste error (873ba55)
* Make it so that we can handle cancelling better (9650cbd)
* Add some wildcards into the mix (cdd6858)
* Getting soem flesh on them tests! (23388e3)
* Setup an environment we can beleive in (5911e7a)
* Adding in an app id test (27583e6)
* Merge testability branch (ac9f83f)
* Make sure to get gtest too (8d984cc)
* Make sure to cancel everything when we shutdown (b7be879)
* Need to allow the period character (baf3599)
* Adding some more format tests (ab20dca)
* Add negative tests (cf7aa1f)
* Make sure to set the variable to NULL as well (1ec2eb3)
* Forgot to add this to the VCS, learned the hard way (0c57bea)
* Oh, a real test! (de1075f)
* Copyright (cdc2035)
* Making it so we can pull values out of the mock (9df44a5)
* Set up the dispatcher and a bus to run it under (13f908c)
* Ensure our prototypes match (36e2ffa)
* Include the dispatcher header (77bbd16)
* Make it so that we can dispatch a URL externally without using the
dbus interface (f927d79)
* Mock'in away (542c173)
* Adding a stub test in (3e58425)
* Adding testing as a theory (36e80aa)
* Adding a base file for testing (d7cfbb8)
* Pull the core dispatcher stuff into a lib (be11798)
* Pulling the main out of dispatcher (e998e2e)
* Enfoce the /// (644628e)
* Make sure we have 3 / (e83dcfd)
* Adding a calendar URL (70764db)
2013-09-24 Automatic PS uploader
* Releasing 0.1+13.10.20130924.1-0ubuntu1 (revision 27 from
lp:url-dispatcher). (362d30b)
* Releasing 0.1+13.10.20130924.1-0ubuntu1, based on r27 (27ee082)
2013-09-20 Ted Gould
* Report a recoverable problem on Bad URLs. (a32748f)
2013-09-19 Automatic PS uploader
* Releasing 0.1+13.10.20130919.3-0ubuntu1 (revision 25 from
lp:url-dispatcher). (54bd1c5)
2013-09-19 Ted Gould
* Fix building the argument string to handle memory better (124fcc9)
2013-09-19 Automatic PS uploader
* Releasing 0.1+13.10.20130919.3-0ubuntu1, based on r25 (c0149ae)
2013-09-18 Ted Gould
* Add URLs for PIM apps. (b38c8e2)
* Add Messages (5e78526)
* Add address book (b8e2629)
* Fix the URI environment variable by properly using
libupstart-app-launch. (219bd33)
* Fix the name of the dialer-app. (30ea30d)
* Kill the TODO and use the lib (7d32e6b)
* Add in Upstart App Launch (284dca7)
2013-09-17 Ted Gould
* Adding in a good manifest (1fd804a)
* A little utility to 'emulate' click for us (f60e8ec)
* Small clean ups (cf96544)
* Adding C++ (0c73a03)
* Adding in Google Test (63fd897)
2013-09-18 Automatic PS uploader
* Releasing 0.1+13.10.20130917.1-0ubuntu1 (revision 21 from
lp:url-dispatcher). (cad9da6)
2013-09-17 Ted Gould
* Adding in a testing directory (a2909c6)
* Make it so that we can replace the click executable with an
environment variable (9815cc3)
* Missing that dot character, some people use it in URLs (05495e4)
* Discover the app name from the manifest (15c95af)
2013-09-17 Automatic PS uploader
* Releasing 0.1+13.10.20130917.1-0ubuntu1, based on r21 (5471f5b)
2013-09-17 Ted Gould
* Handle current version (5a3d385)
* Split out functions for using the manifest to determine the
results. (04877b6)
* Figure out the manifest file and parse it (b2e7d8d)
* Add in JSON GLib to the build (ed0c08e)
* Checking for precise versions and handling the easy case (66b6338)
* Send back a bad URL if we can't find the app (caf6102)
* Add in an App ID regular expresion handler (5ef9ca5)
2013-09-16 Ted Gould
* Make it a little clearer what is happening here (47f40cd)
* URLs for music and video application launching. (fcdff14)
* Switch the library relationship to the service to a Suggests.
(280663d)
* Reporting the issue to the bug tracker, take that! (a763f19)
* Set ourselves up to get the PID of the caller (d787f13)
* Call webbrowser for http/https URLs. (468952d)
* Stealing the recoverable problem code from URL dispatcher, trying
to make it a little more modular (aa99d8f)
* Adding TODOs for the file based URLs (7ed86c3)
* Change name of telephony app (e904a7e)
* Ted's rule of regular expressions: When in doubt, add extra
backslashes (714ad03)
* Pull the username part into a define (5c130cf)
* Add video (70a29d3)
* Adding some music URLs (908fbe1)
* Comments (a0216eb)
* Start the webbrowser on HTTP/HTTPS requests (5db0d09)
2013-09-15 Ted Gould
* Switch the library relationship to the service to a Suggests
(c2ac586)
2013-08-23 Automatic PS uploader
* Releasing 0.1+13.10.20130823-0ubuntu1 (revision 17 from
lp:url-dispatcher). (1f21336)
* Releasing 0.1+13.10.20130823-0ubuntu1, based on r17 (66a71f3)
2013-08-22 Ted Gould
* Adding a URL format for system settings. (5468246)
2013-08-21 Ted Gould
* Adding a URL for system settings (d3796da)
2013-07-26 Automatic PS uploader
* Releasing 0.1+13.10.20130726-0ubuntu1 (revision 15 from
lp:url-dispatcher). (4290731)
* Releasing 0.1+13.10.20130726-0ubuntu1, based on r15 (273d5f5)
2013-07-25 Łukasz 'sil2100' Zemczak
* Add symbols file, modify the package's short descriptions.
(c23d162)
* Missed pre-depends (23e2102)
* Add symbols file, modify the package's short descriptions (ec7b08b)
2013-07-25 Automatic PS uploader
* Releasing 0.1+13.10.20130725.1-0ubuntu1 (revision 13 from
lp:url-dispatcher). (0663b01)
* Releasing 0.1+13.10.20130725.1-0ubuntu1, based on r13 (c8a8de5)
2013-07-18 Łukasz 'sil2100' Zemczak
* Additional packaging changes, since some things got missed last
time. (71085d8)
2013-07-16 Łukasz 'sil2100' Zemczak
* Argh, we need gdbus-codegen, so libglib2.0-dev is needed (along
with python) (0b1d6df)
* Change the order, missing Pre-Depends: in one package (cf925d9)
* Additional packaging changes, since some things got missed last
time (537edba)
2013-07-10 Łukasz 'sil2100' Zemczak
* Modifications related to compliance with our packaging standards.
(132fc57)
* Modifications related to compliance with our packaging standards
(4d2a927)
2013-07-10 Ted Gould
* Flesh out the service. (5ec0ca1)
* Flesh out the library. (fc0bb58)
2013-07-09 Ted Gould
* Protecting from symbol theives (23b5b43)
* Print g_spawn error (547be1f)
* Make sure to use the return value of bad_url() (be37a29)
* Make sure to not keep a ref to the bus (12c6919)
* Use G_DEFINE_QUARK to save some code (83bfe31)
* Make sure to free the generated command line (7dda97a)
* Freeing the match info even on non-match (dd585da)
* Make sure to unref the proxy (9622350)
2013-07-08 Ted Gould
* Setting up a table of URLS to look to try and match others
(73f61d3)
* Fixing match and added debug info (1147306)
* Flesh out a pre-libupstart version of the signal emitting (1272871)
* Handle the application URLs (21a303a)
* Generate an error on a bad URL (262028f)
* Get the name, and handle loss (69ddf31)
* Connecting in the interface skeleton (c82ebae)
* Getting the dbus connection (8659b09)
* Got a main loop, let's get started (44bf769)
2013-07-03 Ted Gould
* Handling the URL being dispatched out there (9488b72)
* Fleshing out the proxy getting (10b2c8a)
* Getting the proxy callback setup (831ee8b)
* Adding the generated headers into the build (283789f)
2013-06-28 Ted Gould
* Packaging (a51df66)
* A build system (924cd83)
* A package config file (b5dbd55)
* Adding in the base service (a36aefe)
* Making the naming consistent (c72a417)
* A little command line utility using the lib (a906f91)
* Adding in some basis for a library (c395694)
2013-06-27 Ted Gould
* Basic data stuff we need (728415d)
* Discussing the point of the project (fbc0e4b)
lomiri-url-dispatcher-0.1.3/MERGE-REVIEW 0000664 0000000 0000000 00000001020 14460075676 0017523 0 ustar 00root root 0000000 0000000
This documents the expections that the project has on what both submitters
and reviewers should ensure that they've done for a merge into the project.
== Submitter Responsibilities ==
* Ensure the project compiles and the test suite executes without error
* Ensure that non-obvious code has comments explaining it
== Reviewer Responsibilities ==
* Did the Jenkins build compile? Pass? Run unit tests successfully?
* Are there appropriate tests to cover any new functionality?
* Run all the appropriate manual tests
lomiri-url-dispatcher-0.1.3/NEWS 0000664 0000000 0000000 00000002544 14460075676 0016455 0 ustar 00root root 0000000 0000000 Overview of changes in lomiri-url-dispatcher 0.1.3
- Upgrade C++ standard to C++17 (fixes build with googletest 1.13.0)
Overview of changes in lomiri-url-dispatcher 0.1.2
- Support lomiri-app-launch's no-mirclient-build.
- Require lomiri-app-launch >= 0.1.3.
- CMake: Bump mininum version requirement to 3.5.
- Modernize i18n.
- Localization files (gettext) added.
- Translation updates.
Overview of changes in lomiri-url-dispatcher 0.1.1
- service/bad-url/exec-tool.cpp: Fix missing include of (for std::runtime_error()).
- debian/*: Adopt DEB packaging from official Debian package where appropriate
- Fix compile error with new glib versions
- Stop using deprecated GTimeVal.
- Start lomiri-url-dispatcher using DBus activation
- Use Lomiri components in bad-url and correct db path in -dump
- Fix QML dialog
- Watch URL files and update the database
- Start com.lomiri.URLDispatcher D-Bus service if not running
- Allow DBus activation by AppArmor-confined apps
- Fix concurrent sqlite DB access issues
- Add ordering dependency and make lomiri-url-service more robust
- Rename app ID of the bad-url-helper to be consistent
- Re-introduce click hook
- Fix generic URL regex.
- Add option to disable mirclient overlay
Overview of changes in lomiri-url-dispatcher 0.1.0
- Fork / renamed from url-dispatcher.
.
lomiri-url-dispatcher-0.1.3/README.md 0000664 0000000 0000000 00000001545 14460075676 0017235 0 ustar 00root root 0000000 0000000 # Lomiri URL Dispatcher
## Introduction
This is a small handler to take URLs and do what is appropriate with them.
That could be anything from launching a web browser to just starting an
application. This is done over DBus because application confinement doesn't
allow for doing it from a confined application otherwise. It's important
the that applications can't know about each other, so this is a fire and forget
type operation.
## i18n: Translating Lomiri URL Dispatcher into your Language
You can easily contribute to the localization of this project (i.e. the
translation into your language) by visiting (and signing up with) the
Hosted Weblate service:
https://hosted.weblate.org/projects/lomiri/lomiri-url-dispatcher
The localization platform of this project is sponsored by Hosted Weblate
via their free hosting plan for Libre and Open Source Projects.
lomiri-url-dispatcher-0.1.3/cmake/ 0000775 0000000 0000000 00000000000 14460075676 0017031 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/cmake/ConstantBuilderTemplates.cmake 0000664 0000000 0000000 00000000732 14460075676 0025014 0 ustar 00root root 0000000 0000000 file(READ "${input}" input_contents)
string(REGEX REPLACE "\n" " " input_on_one_line "${input_contents}")
set(new_contents
"\#include \"${name}.h\"\nconst char * ${const_name} = \"${input_on_one_line}\";\n")
if (EXISTS "${file_target}")
file(READ "${file_target}" old_contents)
if(NOT new_contents EQUAL old_contents)
file(WRITE "${file_target}" "${new_contents}")
endif()
else()
file(WRITE "${file_target}" "${new_contents}")
endif()
lomiri-url-dispatcher-0.1.3/cmake/UseConstantBuilder.cmake 0000664 0000000 0000000 00000001232 14460075676 0023606 0 ustar 00root root 0000000 0000000 cmake_minimum_required(VERSION 3.5)
if(POLICY CMP0011)
cmake_policy(SET CMP0011 NEW)
endif(POLICY CMP0011)
macro(add_constant_template outfiles name const_name input)
set(file_target "${CMAKE_CURRENT_BINARY_DIR}/${name}.c")
add_custom_command(
OUTPUT ${file_target}
COMMAND ${CMAKE_COMMAND}
"-Dname=${name}"
"-Dfile_target=${file_target}"
"-Dconst_name=${const_name}"
"-Dinput=${input}"
-P "${CMAKE_SOURCE_DIR}/cmake/ConstantBuilderTemplates.cmake"
DEPENDS "${CMAKE_SOURCE_DIR}/cmake/ConstantBuilderTemplates.cmake" "${input}"
)
list(APPEND ${outfiles} "${file_target}")
endmacro(add_constant_template)
lomiri-url-dispatcher-0.1.3/cmake/UseGlibGeneration.cmake 0000664 0000000 0000000 00000005445 14460075676 0023411 0 ustar 00root root 0000000 0000000 cmake_minimum_required(VERSION 3.5)
if(POLICY CMP0011)
cmake_policy(SET CMP0011 NEW)
endif(POLICY CMP0011)
find_program(GLIB_MKENUMS glib-mkenums)
find_program(GLIB_GENMARSHAL glib-genmarshal)
macro(add_glib_marshal outfiles name prefix otherinclude)
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
COMMAND ${GLIB_GENMARSHAL} --header "--prefix=${prefix}"
"${CMAKE_CURRENT_SOURCE_DIR}/${name}.list"
> "${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list"
)
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
COMMAND echo "\\#include \\\"${otherinclude}\\\"" > "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
COMMAND echo "\\#include \\\"glib-object.h\\\"" >> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
COMMAND echo "\\#include \\\"${name}.h\\\"" >> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
COMMAND ${GLIB_GENMARSHAL} --body "--prefix=${prefix}"
"${CMAKE_CURRENT_SOURCE_DIR}/${name}.list"
>> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list"
"${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
)
list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c")
endmacro(add_glib_marshal)
macro(add_glib_enumtypes_t outfiles name htemplate ctemplate)
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
COMMAND ${GLIB_MKENUMS}
--template "${htemplate}"
${ARGN} > "${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS ${ARGN} "${htemplate}"
)
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
COMMAND ${GLIB_MKENUMS}
--template "${ctemplate}"
${ARGN} > "${CMAKE_CURRENT_BINARY_DIR}/${name}.c"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS ${ARGN} ${ctemplate}
"${CMAKE_CURRENT_BINARY_DIR}/${name}.h"
)
list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c")
endmacro(add_glib_enumtypes_t)
macro(add_glib_enumtypes outfiles name namespace includeguard)
set(htemplate "${CMAKE_CURRENT_BINARY_DIR}/${name}.h.template")
set(ctemplate "${CMAKE_CURRENT_BINARY_DIR}/${name}.c.template")
# Write the .h template
add_custom_command(
OUTPUT ${htemplate} ${ctemplate}
COMMAND ${CMAKE_COMMAND}
"-Dctemplate=${ctemplate}"
"-Dhtemplate=${htemplate}"
"-Dname=${name}"
"-Dnamespace=${namespace}"
"-Dincludeguard=${includeguard}"
"\"-Dheaders=${ARGN}\""
-P "${CMAKE_SOURCE_DIR}/cmake/GlibGenerationTemplates.cmake"
DEPENDS "${CMAKE_SOURCE_DIR}/cmake/GlibGenerationTemplates.cmake" ${headers}
)
add_glib_enumtypes_t(${outfiles} ${name} ${htemplate} ${ctemplate} ${ARGN})
endmacro(add_glib_enumtypes)
lomiri-url-dispatcher-0.1.3/data/ 0000775 0000000 0000000 00000000000 14460075676 0016662 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/data/CMakeLists.txt 0000664 0000000 0000000 00000003775 14460075676 0021436 0 ustar 00root root 0000000 0000000
###########################
# Set stuff
###########################
set(pkglibexecdir "${CMAKE_INSTALL_FULL_LIBEXECDIR}/lomiri-url-dispatcher")
set(datadir "${CMAKE_INSTALL_FULL_DATADIR}")
###########################
# DBus Interfaces, Service
###########################
configure_file(
com.lomiri.URLDispatcher.service.in
${CMAKE_CURRENT_BINARY_DIR}/com.lomiri.URLDispatcher.service
)
install(
FILES
${CMAKE_CURRENT_BINARY_DIR}/com.lomiri.URLDispatcher.service
DESTINATION ${DBUSSERVICEDIR}
)
install(
FILES
com.lomiri.URLDispatcher.xml
DESTINATION ${DBUSIFACEDIR}
)
###########################
# systemd
###########################
configure_file(
lomiri-url-dispatcher.service.in
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher.service
)
configure_file(
lomiri-url-dispatcher-update-system-dir.path.in
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-system-dir.path
)
configure_file(
lomiri-url-dispatcher-update-system-dir.service.in
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-system-dir.service
)
configure_file(
lomiri-url-dispatcher-update-user-dir.path.in
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-user-dir.path
)
configure_file(
lomiri-url-dispatcher-update-user-dir.service.in
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-user-dir.service
)
install(
FILES
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher.service
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-system-dir.path
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-system-dir.service
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-user-dir.path
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-update-user-dir.service
DESTINATION ${SYSTEMD_USER_UNIT_DIR}
)
###########################
# Click Hook
###########################
configure_file("lomiri-url-dispatcher.hook.in"
"${CMAKE_SOURCE_DIR}/debian/lomiri-url-dispatcher.hook"
@ONLY
)
###########################
# QML
###########################
install(
FILES
bad-url.qml
DESTINATION ${datadir}/lomiri-url-dispatcher
)
lomiri-url-dispatcher-0.1.3/data/bad-url.qml 0000664 0000000 0000000 00000002264 14460075676 0020727 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
import QtQuick 2.0
import Lomiri.Components 1.0
import Lomiri.Components.Popups 1.0
MainView {
applicationName: "com.lomiri.url-dispatcher.bad-url-prompt"
automaticOrientation: true
backgroundColor: "transparent"
anchors.fill: parent
Component {
id: dialog
Dialog {
title: i18n.tr("Unrecognized Address")
text: i18n.tr("Cannot open “%1” addresses.").arg(Qt.application.arguments[2].split(':')[0])
Button {
text: i18n.tr("OK")
color: LomiriColors.orange
onClicked: Qt.quit()
}
}
}
Component.onCompleted: PopupUtils.open(dialog)
}
lomiri-url-dispatcher-0.1.3/data/com.lomiri.URLDispatcher.service.in 0000664 0000000 0000000 00000000314 14460075676 0025367 0 ustar 00root root 0000000 0000000 [D-BUS Service]
Name=com.lomiri.URLDispatcher
Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/lomiri-url-dispatcher/lomiri-url-dispatcher
SystemdService=lomiri-url-dispatcher.service
AssumedAppArmorLabel=unconfined
lomiri-url-dispatcher-0.1.3/data/com.lomiri.URLDispatcher.xml 0000664 0000000 0000000 00000000604 14460075676 0024124 0 ustar 00root root 0000000 0000000
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher-update-system-dir.path.in 0000664 0000000 0000000 00000000271 14460075676 0027742 0 ustar 00root root 0000000 0000000 [Unit]
Description=Lomiri URL dispatcher directory watcher
[Path]
PathChanged=@CMAKE_INSTALL_FULL_DATAROOTDIR@/lomiri-url-dispatcher/urls/
[Install]
WantedBy=graphical-session.target
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher-update-system-dir.service.in 0000664 0000000 0000000 00000000434 14460075676 0030447 0 ustar 00root root 0000000 0000000 [Unit]
Description=Lomiri URL dispatcher system directory updater
[Service]
Type=oneshot
ExecStart=@CMAKE_INSTALL_FULL_LIBEXECDIR@/lomiri-url-dispatcher/lomiri-update-directory @CMAKE_INSTALL_FULL_DATAROOTDIR@/lomiri-url-dispatcher/urls/
[Install]
WantedBy=graphical-session.target
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher-update-user-dir.path.in 0000664 0000000 0000000 00000000243 14460075676 0027373 0 ustar 00root root 0000000 0000000 [Unit]
Description=Lomiri URL dispatcher directory watcher
[Path]
PathChanged=%h/.config/lomiri-url-dispatcher/urls/
[Install]
WantedBy=graphical-session.target
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher-update-user-dir.service.in 0000664 0000000 0000000 00000000404 14460075676 0030076 0 ustar 00root root 0000000 0000000 [Unit]
Description=Lomiri URL dispatcher user directory updater
[Service]
Type=oneshot
ExecStart=@CMAKE_INSTALL_FULL_LIBEXECDIR@/lomiri-url-dispatcher/lomiri-update-directory %h/.config/lomiri-url-dispatcher/urls/
[Install]
WantedBy=graphical-session.target
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher.hook.in 0000664 0000000 0000000 00000000277 14460075676 0024376 0 ustar 00root root 0000000 0000000 Pattern: ${home}/.cache/lomiri-url-dispatcher/urls/${id}.url-dispatcher
Exec: @pkglibexecdir@/lomiri-update-directory $HOME/.cache/lomiri-url-dispatcher/urls/
User-Level: yes
Hook-Name: urls
lomiri-url-dispatcher-0.1.3/data/lomiri-url-dispatcher.service.in 0000664 0000000 0000000 00000000324 14460075676 0025067 0 ustar 00root root 0000000 0000000 [Unit]
Description=Lomiri URL dispatcher
After=graphical-session.target
[Service]
Type=dbus
BusName=com.lomiri.URLDispatcher
ExecStart=@CMAKE_INSTALL_FULL_LIBEXECDIR@/lomiri-url-dispatcher/lomiri-url-dispatcher
lomiri-url-dispatcher-0.1.3/debian/ 0000775 0000000 0000000 00000000000 14460075676 0017173 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/debian/Jenkinsfile 0000664 0000000 0000000 00000000651 14460075676 0021361 0 ustar 00root root 0000000 0000000 @Library('ubports-build-tools') _
buildAndProvideDebianPackage()
// Or if the package consists entirely of arch-independent packages:
// (optional optimization, will confuse BlueOcean's live view at build stage)
// buildAndProvideDebianPackage(/* isArchIndependent */ true)
// Optionally, to skip building on some architectures (amd64 is always built):
// buildAndProvideDebianPackage(false, /* ignoredArchs */ ['arm64'])
lomiri-url-dispatcher-0.1.3/debian/apparmor/ 0000775 0000000 0000000 00000000000 14460075676 0021014 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/debian/apparmor/lomiri-url-dispatcher-bad-url-helper 0000664 0000000 0000000 00000000475 14460075676 0027765 0 ustar 00root root 0000000 0000000 # vim:syntax=apparmor
#include
# Mostly unconfined. Don't allow capability or any mount rules. Also ensure that
# exec inherits from this profile
profile lomiri-url-dispatcher-bad-url-helper (attach_disconnected) {
network,
/ rwkl,
/** rwlkm,
/** pix,
dbus,
signal,
ptrace,
unix,
}
lomiri-url-dispatcher-0.1.3/debian/changelog 0000664 0000000 0000000 00000032277 14460075676 0021060 0 ustar 00root root 0000000 0000000 lomiri-url-dispatcher (0.1.3) unstable; urgency=medium
* Upstream-provided Debian package for lomiri-url-dispatcher. See
upstream ChangeLog for recent changes.
-- UBports developers Wed, 26 Jul 2023 03:49:50 +0200
lomiri-url-dispatcher (0.1.2) unstable; urgency=medium
* Upstream-provided Debian package for lomiri-url-dispatcher. See
upstream ChangeLog for recent changes.
-- UBports developers Sun, 05 Feb 2023 01:37:53 +0100
lomiri-url-dispatcher (0.1.1) unstable; urgency=medium
[ UBports developers ]
* Upstream-provided Debian package for lomiri-url-dispatcher. See
upstream ChangeLog for recent changes.
-- UBports developers Tue, 03 Jan 2023 09:19:33 +0100
lomiri-url-dispatcher (0.1.0-0) unstable; urgency=medium
* Upstream-provided Debian package for lomiri-url-dispatcher.
See upstream ChangeLog for recent changes.
-- Mike Gabriel Thu, 28 May 2020 07:57:14 +0200
url-dispatcher (0.2+ubports) bionic; urgency=medium
* Imported to UBports
-- UBports auto importer Fri, 13 Oct 2017 19:54:36 +0200
url-dispatcher (0.1+17.04.20170328-0ubuntu1) zesty; urgency=medium
* Fix deprecation warning in mir mock.
* The unity8-dash interface is actually com.canonical.UnityDash.
* Use libwhoopsie for reporting recoverable problems.
* Convert service main process and url-dispatcher tool code to C++.
-- Rodney Dawes Tue, 28 Mar 2017 18:29:07 +0000
url-dispatcher (0.1+17.04.20170318-0ubuntu1) zesty; urgency=medium
* Update bad-url exec tool to UAL C++ interface
* Remove Upstart from the test suite and replace it with systemd
-- Ted Gould Sat, 18 Mar 2017 19:59:26 +0000
url-dispatcher (0.1+17.04.20170314-0ubuntu1) zesty; urgency=medium
[ Charles Kerr ]
* Honor XDG_CACHE_HOME in url-dispatcher-dump and url-dispatcher.conf
[ Rodney Dawes ]
* Remove click usage and support.
* Use gmock module from cmake-extras.
* Use the coverage support from cmake-extras.
* Use cmake-extras intltool support.
* Use gdbus integration from cmake-extras.
* Remove unused gsettings cmake module.
-- Rodney Dawes Tue, 14 Mar 2017 14:35:03 +0000
url-dispatcher (0.1+17.04.20170308.1-0ubuntu1) zesty; urgency=medium
* Don't use upstart to get unity8 pid.
-- Rodney Dawes Wed, 08 Mar 2017 20:43:30 +0000
url-dispatcher (0.1+17.04.20170227.2-0ubuntu1) zesty; urgency=medium
[ Ken VanDine ]
* Handle UAL API bump
[ Rodney Dawes ]
* Remove tests that depend on libertine, as url-dispatcher has no
support for handlers in libertine anyway.
-- Rodney Dawes Mon, 27 Feb 2017 19:07:50 +0000
url-dispatcher (0.1+17.04.20161206-0ubuntu1) zesty; urgency=medium
[ Ted Gould ]
* Instead of sleeping make the refresh tasks low enough priority they
don't get in the way (LP: #1645793)
* Start after Unity8 so it has a chance to set the MIR_SOCKET
-- Michael Terry Tue, 06 Dec 2016 14:38:17 +0000
url-dispatcher (0.1+17.04.20161108-0ubuntu1) zesty; urgency=medium
* Support running inside a snap.
-- Michael Terry Tue, 08 Nov 2016 22:16:56 +0000
url-dispatcher (0.1+17.04.20161107-0ubuntu1) zesty; urgency=medium
[ Florian Boucault ]
* Crossbuilding Fixes
[ Larry Price ]
* App ID should allow package names with dots. (LP: #1591342) (LP: #1606498)
[ Ted Gould ]
* Check versions of appid:// urls to reduce the number of invalid appids
we send to UAL (LP: #1352656)
* Scope testing for the scope:// URL and overlays that should be over
the dash
* Protect the dash from getting NULL urls (LP: #1476257)
* Make sure URL Overlays are shutdown on exit
* Remove the wildcard that is confusing the update script (LP: #1461496)
* Not using a message that isn't set properly (LP: #1608009)
* Fixing tests to adjust for UAL changes
* Add a small GUI helper tool for testing
* Show error dialog over apps that use Bad URLs (LP: #1370008)
-- Ted Gould Mon, 07 Nov 2016 16:33:15 +0000
url-dispatcher (0.1+16.10.20160816.1-0ubuntu1) yakkety; urgency=medium
* No chnage rebuild for UAL migration
-- Ted Gould Tue, 16 Aug 2016 15:20:27 +0000
url-dispatcher (0.1+16.04.20151110-0ubuntu2) xenial; urgency=high
* No change rebuild for s390x.
-- Dimitri John Ledkov Fri, 11 Dec 2015 01:30:51 +0000
url-dispatcher (0.1+16.04.20151110-0ubuntu1) xenial; urgency=medium
[ CI Train Bot ]
* New rebuild forced.
[ Ted Gould ]
* Remove the cache if the service fails to start. Fail to start if we
can't create the database. (LP: #1483854)
-- Bill Filler Tue, 10 Nov 2015 14:37:07 +0000
url-dispatcher (0.1+15.10.20150717-0ubuntu1) wily; urgency=medium
[ Andreas Pokorny ]
* unchagned for mir release 0.14.0
-- CI Train Bot Fri, 17 Jul 2015 12:37:44 +0000
url-dispatcher (0.1+15.10.20150612-0ubuntu1) wily; urgency=medium
[ Ted Gould ]
* Add upstart build dep for tests on Wily
* Provide a small tool to dump the URL DB in a readable form
* Support URL Overlays of content in a trusted session without a
desktop file
-- CI Train Bot Fri, 12 Jun 2015 16:00:40 +0000
url-dispatcher (0.1+15.04.20150123-0ubuntu1) vivid; urgency=low
[ Ted Gould ]
* Special handling for intent URLs (LP: #1407709)
-- Ubuntu daily release Fri, 23 Jan 2015 15:19:33 +0000
url-dispatcher (0.1+15.04.20141211-0ubuntu1) vivid; urgency=low
[ Ted Gould ]
* Fix domain handling in generic regular expression (LP: #1401612)
-- Ubuntu daily release Thu, 11 Dec 2014 19:43:40 +0000
url-dispatcher (0.1+15.04.20141031-0ubuntu1) vivid; urgency=low
[ Ted Gould ]
* Making generic regular expression more robust (LP: #1351222)
[ Jussi Pakkanen ]
* General cleanups
* Do a rollback when update operations fail so there are no dangling
transactions.
* Ensure that tables always exist.
-- Ubuntu daily release Fri, 31 Oct 2014 15:51:36 +0000
url-dispatcher (0.1+14.10.20140925-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Drop file based URLs for Music and Video (LP: #1340952)
* Update tests to work with new UAL requirements (LP: #1370735)
-- Ubuntu daily release Thu, 25 Sep 2014 13:29:40 +0000
url-dispatcher (0.1+14.10.20140905.1-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Throw a bad_url on the appid 'unconfined'
-- Ubuntu daily release Fri, 05 Sep 2014 03:40:44 +0000
url-dispatcher (0.1+14.10.20140827-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Split update jobs into independent jobs
* Support for unity8-dash URLs even though it's not an application
(LP: #1361349)
-- Ubuntu daily release Wed, 27 Aug 2014 02:10:21 +0000
url-dispatcher (0.1+14.10.20140819.1-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Ensure send works even without a mainloop (LP: #1356077)
* Test replacing a timestamp
-- Ubuntu daily release Tue, 19 Aug 2014 21:01:10 +0000
url-dispatcher (0.1+14.10.20140724-0ubuntu1) utopic; urgency=low
[ Ubuntu daily release ]
* debian/liburl-dispatcher1.symbols: auto-update to released version
[ Ted Gould ]
* Make the database handle multiple writers more robustly
* Add a TestURL function to determine which AppID will be used for a
given URL
[ Leo Arias ]
* Add url-dispatcher-testability binary package.
[ Brendan Donegan ]
* Add url-dispatcher-testability binary package.
-- Ubuntu daily release Thu, 24 Jul 2014 17:10:14 +0000
url-dispatcher (0.1+14.10.20140619-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Improving error messages and collecting more data
-- Ubuntu daily release Thu, 19 Jun 2014 02:43:30 +0000
url-dispatcher (0.1+14.10.20140604-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Merge and review policies
* Recoverable errors on DB errors on update
-- Ubuntu daily release Wed, 04 Jun 2014 19:07:02 +0000
url-dispatcher (0.1+14.10.20140601-0ubuntu1) utopic; urgency=low
[ Ted Gould ]
* Changing to Ubuntu App Launch
-- Ubuntu daily release Sun, 01 Jun 2014 20:53:35 +0000
url-dispatcher (0.1+14.04.20140403-0ubuntu1) trusty; urgency=low
[ Ted Gould ]
* Fix cache directory permissions if they got messed up (LP: #1290997)
-- Ubuntu daily release Thu, 03 Apr 2014 21:17:00 +0000
url-dispatcher (0.1+14.04.20140331.1-0ubuntu1) trusty; urgency=low
[ Ted Gould ]
* Make it so that URLs can be installed with configuration files.
* Switch to using libupstart-app-launch for discovering AppIDs
* Migrate test suite to use libclick based libual
-- Ubuntu daily release Mon, 31 Mar 2014 17:18:43 +0000
url-dispatcher (0.1+14.04.20140217.1-0ubuntu1) trusty; urgency=low
[ Ted Gould ]
* Add tests for the library and service as a binary.
* Upgrading to libupstart-app-launch v2.
* Flushing trunk with a release
* Update Upstart mock for the new UAL
-- Ubuntu daily release Mon, 17 Feb 2014 17:58:44 +0000
url-dispatcher (0.1+14.04.20131209.1-0ubuntu2) trusty; urgency=low
* Restrict on which arch we build url-dispatcher due to the ust build-dep
-- Didier Roche Mon, 09 Dec 2013 13:41:41 +0100
url-dispatcher (0.1+14.04.20131209.1-0ubuntu1) trusty; urgency=low
* Cherry-pick libupstart-app-launch API/ABI bump from trunk
-- Łukasz 'sil2100' Zemczak Fri, 06 Dec 2013 14:32:26 +0100
url-dispatcher (0.1+13.10.20131014.2-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Revert the definition change for mediaplayer, it'll remain a non-
click app for now.
[ Ted Gould ]
* Adds the appid:// URL format.
* Use 'click info' to get the manifest. (LP: #1232118)
* Allow custom URIs to have variable based package specifications.
* Switching many core apps to Click App ID's.
[ Ubuntu daily release ]
* Automatic snapshot from revision 38
-- Ubuntu daily release Mon, 14 Oct 2013 18:07:27 +0000
url-dispatcher (0.1+13.10.20131003-0ubuntu1) saucy; urgency=low
[ Ted Gould ]
* Enfoce the ///. (LP: #1231444)
* Make dispatcher more testable and add some application:/// tests.
* Adding a calendar URL. (LP: #1231136)
* Adding the alarm URL pattern. (LP: #1233176)
[ Ubuntu daily release ]
* Automatic snapshot from revision 32
-- Ubuntu daily release Thu, 03 Oct 2013 02:08:19 +0000
url-dispatcher (0.1+13.10.20130924.1-0ubuntu1) saucy; urgency=low
[ Ted Gould ]
* Report a recoverable problem on Bad URLs.
[ Ubuntu daily release ]
* Automatic snapshot from revision 27
-- Ubuntu daily release Tue, 24 Sep 2013 06:09:10 +0000
url-dispatcher (0.1+13.10.20130919.3-0ubuntu1) saucy; urgency=low
[ Ted Gould ]
* Fix the name of the dialer-app.
* Fix the URI environment variable by properly using libupstart-app-
launch.
* Add URLs for PIM apps.
[ Ubuntu daily release ]
* Automatic snapshot from revision 25
-- Ubuntu daily release Thu, 19 Sep 2013 14:05:04 +0000
url-dispatcher (0.1+13.10.20130917.1-0ubuntu1) saucy; urgency=low
[ Ted Gould ]
* Call webbrowser for http/https URLs.
* Switch the library relationship to the service to a Suggests.
* URLs for music and video application launching.
[ Ubuntu daily release ]
* Automatic snapshot from revision 21
-- Ubuntu daily release Tue, 17 Sep 2013 22:11:05 +0000
url-dispatcher (0.1+13.10.20130823-0ubuntu1) saucy; urgency=low
[ Ted Gould ]
* Adding a URL format for system settings.
[ Ubuntu daily release ]
* Automatic snapshot from revision 17
-- Ubuntu daily release Fri, 23 Aug 2013 02:06:01 +0000
url-dispatcher (0.1+13.10.20130726-0ubuntu1) saucy; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* Add symbols file, modify the package's short descriptions.
[ Ubuntu daily release ]
* Automatic snapshot from revision 15
-- Ubuntu daily release Fri, 26 Jul 2013 00:02:46 +0000
url-dispatcher (0.1+13.10.20130725.1-0ubuntu1) saucy; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* Remove debian/watch
* debian/control:
- Modifications related to compliance with our packaging standards
* Add copyright info to the source code
* Automatic snapshot from revision 11 (bootstrap)
* Additional packaging changes, since some things got missed last
time.
[ Ubuntu daily release ]
* Automatic snapshot from revision 13
-- Ubuntu daily release Thu, 25 Jul 2013 07:52:47 +0000
url-dispatcher (0.1-0ubuntu1) saucy; urgency=low
* Start
-- Ted Gould Thu, 27 Jun 2013 11:36:18 -0500
lomiri-url-dispatcher-0.1.3/debian/control 0000664 0000000 0000000 00000011623 14460075676 0020601 0 ustar 00root root 0000000 0000000 Source: lomiri-url-dispatcher
Section: gnome
Priority: optional
Maintainer: UBports developers
Build-Depends: cmake,
cmake-extras (>= 1.2),
dbus-test-runner,
debhelper-compat (= 12),
dh-apparmor,
dh-python,
gcovr,
googletest,
intltool,
lcov,
libapparmor-dev,
libdbus-1-dev,
libdbustest1-dev (>= 14.04.0),
libglib2.0-dev,
libgtest-dev,
libjson-glib-dev,
libsqlite3-dev,
liblomiri-app-launch-dev (>= 0.1.3),
python3,
python3-dbusmock,
python3-fixtures,
python3-nose,
python3-testtools,
sqlite3,
systemd,
Standards-Version: 4.5.1
Rules-Requires-Root: no
Homepage: https://gitlab.com/ubports/core/lomiri-url-dispatcher
Package: lomiri-url-dispatcher
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends},
Depends: ${misc:Depends},
${shlibs:Depends},
lomiri-url-dispatcher-common (>= ${source:Version}),
# For the bad URL dialog
qtchooser,
qml-module-lomiri-components,
Description: Lomiri Operating Environment service for requesting URLs to be opened
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package provides a service for the Lomiri URL Dispatcher
Package: lomiri-url-dispatcher-common
Architecture: all
Multi-Arch: foreign
Pre-Depends: ${misc:Pre-Depends},
Depends: ${misc:Depends},
Description: Lomiri Operating Environment service for requesting URLs to be opened (common files)
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package provides arch-indep files for Lomiri URL Dispatcher server
and client (esp. locale files).
Package: lomiri-url-dispatcher-tools
Architecture: any
Depends: lomiri-url-dispatcher (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Tools for working with the Lomiri URL Dispatcher
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package provides tools for working with the Lomiri URL Dispatcher.
Package: lomiri-url-dispatcher-tools-gui
Architecture: any
Depends: lomiri-url-dispatcher (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
qtchooser,
qml-module-lomiri-components-labs,
Description: GUI tools for working with the Lomiri URL Dispatcher
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package provides GUI tools for working with the Lomiri URL Dispatcher.
Package: liblomiri-url-dispatcher0
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends},
Depends: ${misc:Depends},
${shlibs:Depends},
lomiri-url-dispatcher-common (>= ${source:Version}),
Suggests: lomiri-url-dispatcher (= ${binary:Version}),
Description: Library for sending requests to the Lomiri URL Dispatcher
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package contains shared libraries to be used by applications.
Package: liblomiri-url-dispatcher-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends},
Depends: libglib2.0-dev,
liblomiri-url-dispatcher0 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Development files for consumers of the Lomiri URL Dispatcher
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package contains files that are needed to build applications.
Package: lomiri-url-dispatcher-testability
Architecture: all
Depends: ${misc:Depends},
python3,
python3-dbusmock,
python3-dbus,
Description: Fake Lomiri URL Dispatcher for use in testing
Allows applications to request a URL to be opened and handled by another
process without seeing the list of other applications on the system or
starting them inside its own Application Confinement.
.
This package contains a fake Lomiri URL Dispatcher for use in testing.
lomiri-url-dispatcher-0.1.3/debian/copyright 0000664 0000000 0000000 00000012665 14460075676 0021140 0 ustar 00root root 0000000 0000000 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: URL Dispatcher
Upstream-Contact: Marius Gripsgard
Source: https://gitlab.com/ubports/core/lomiri-url-dispatcher
Files: .bzrignore
CMakeLists.txt
ChangeLog
Jenkinsfile
MERGE-REVIEW
NEWS
README
cmake/ConstantBuilderTemplates.cmake
cmake/UseConstantBuilder.cmake
cmake/UseGlibGeneration.cmake
data/CMakeLists.txt
data/com.lomiri.URLDispatcher.xml
docs/URL*Dispatcher*Architecture.svg
gui/CMakeLists.txt
gui/lomiri-url-dispatcher-gui.desktop.in
gui/lomiri-url-dispatcher-gui.qml
gui/lomiri-url-dispatcher-gui.svg
liblomiri-url-dispatcher/lomiri-url-dispatcher.pc.in
po/CMakeLists.txt
po/genpotfiles.sh
po/url-dispatcher.pot
service/CMakeLists.txt
service/bad-url/CMakeLists.txt
service/create-db-sql.h
service/create-db.sql
service/url-overlay/CMakeLists.txt
tests/CMakeLists.txt
tests/manual
tests/overlay-dir/com.test.good_application_1.2.3.desktop
tests/test-config.h.in
tests/test-sql.sh
tests/test-urls-intent/intent-mixed.url-dispatcher
tests/test-urls-intent/intent-no-good.url-dispatcher
tests/test-urls-intent/intent-single.url-dispatcher
tests/test-urls-simple/single-good.url-dispatcher
tests/test-urls-varied/bad-filename-suffix.url-launcher
tests/test-urls-varied/dup-file-1.url-dispatcher
tests/test-urls-varied/dup-file-2.url-dispatcher
tests/test-urls-varied/duplicate.url-dispatcher
tests/test-urls-varied/lots-o-entries.url-dispatcher
tests/test-urls-varied/not-json.url-dispatcher
tests/test-urls-varied/object-base.url-dispatcher
tests/ual-link-farm/com.test.good_app1_1.2.3.desktop
tests/ual-link-farm/com.test.multiple_app-first_1.2.3.desktop
tests/url_dispatcher_testability/CMakeLists.txt
tests/url_dispatcher_testability/__init__.py
tests/xdg-cache/libertine-container/container-id/rootfs/usr/share/applications/org.canonical.app1.desktop
tests/xdg-data/applications/foo-bar.desktop
tests/xdg-data/libertine/ContainersConfig.json
tools/CMakeLists.txt
tools/lomiri-url-dispatcher-dump
Copyright: 2013-2017, Canonical, Ltd.
License: LGPL-3
Comment:
No license headers in files. Assuming license and copyright holders
from other project files (and the COPYING file).
Files: liblomiri-url-dispatcher/lomiri-url-dispatcher.c
liblomiri-url-dispatcher/lomiri-url-dispatcher.h
service/dispatcher.c
service/dispatcher.h
service/service.cpp
service/update-directory.c
service/url-db.c
service/url-db.h
tests/apparmor-mock.c
tests/apparmor-mock.h
tests/directory-update-test.cc
tests/dispatcher-test.cc
tests/lib-test-no-main.c
tests/lib-test.cc
tests/lomiri-app-launch-mock.c
tests/lomiri-app-launch-mock.h
tests/service-test.cc
tests/url-db-test.cc
tools/url-dispatcher.cpp
Copyright: 2013, Canonical, Ltd.
2013-2017, Canonical, Ltd.
2014, Canonical, Ltd.
2015, Canonical, Ltd.
2017, Canonical, Ltd.
License: LGPL-3
Files: data/bad-url.qml
service/bad-url/exec-tool.cpp
service/glib-thread.cpp
service/glib-thread.h
service/overlay-tracker-iface.h
service/overlay-tracker-mir.cpp
service/overlay-tracker-mir.h
service/overlay-tracker.cpp
service/overlay-tracker.h
service/url-overlay/exec-tool.c
tests/systemd-mock.h
Copyright: 2014, Canonical Ltd.
2015, Canonical Ltd.
2017, Canonical Ltd.
License: GPL-3
Files: tests/mir-mock.cpp
tests/mir-mock.h
tests/overlay-tracker-mock.h
tests/overlay-tracker-test.cpp
Copyright: 2015, Canonical, Ltd.
License: GPL-3
Files: tests/url_dispatcher_testability/fake_dispatcher.py
tests/url_dispatcher_testability/fixture_setup.py
tests/url_dispatcher_testability/test_fake_dispatcher.py.in
Copyright: 2014, Canonical Ltd.
License: LGPL-3
Files: liblomiri-url-dispatcher/CMakeLists.txt
Copyright: 2013-2017, Canonical Ltd.
License: LGPL-3
Comment:
Generated file.
.
No license headers in files. Assuming license and copyright holders
from other project files (and the COPYING file).
Files: debian/*
Copyright: 2013-2017, Canonical, Ltd.
2020, Mike Gabriel
License: LGPL-3
License: LGPL-3
This package is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; version 3 of
the License.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
.
On Debian systems, the complete text of the GNU Lesser General
Public License can be found in "/usr/share/common-licenses/LGPL-3".
License: GPL-3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3 of the License.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
.
On Debian systems, the full text of the GNU General Public License
version 3 can be found in the file /usr/share/common-licenses/GPL-3.
lomiri-url-dispatcher-0.1.3/debian/liblomiri-url-dispatcher-dev.install 0000664 0000000 0000000 00000000172 14460075676 0026245 0 ustar 00root root 0000000 0000000 usr/include/liblomiri-url-dispatcher/*
usr/lib/*/liblomiri-url-dispatcher.so
usr/lib/*/pkgconfig/lomiri-url-dispatcher.pc
lomiri-url-dispatcher-0.1.3/debian/liblomiri-url-dispatcher0.install 0000664 0000000 0000000 00000000051 14460075676 0025545 0 ustar 00root root 0000000 0000000 usr/lib/*/liblomiri-url-dispatcher.so.0*
lomiri-url-dispatcher-0.1.3/debian/liblomiri-url-dispatcher0.symbols 0000664 0000000 0000000 00000000365 14460075676 0025577 0 ustar 00root root 0000000 0000000 liblomiri-url-dispatcher.so.0 liblomiri-url-dispatcher0 #MINVER#
*Build-Depends-Package: liblomiri-url-dispatcher-dev
lomiri_url_dispatch_send@Base 0.1.1
lomiri_url_dispatch_send_restricted@Base 0.1.1
lomiri_url_dispatch_url_appid@Base 0.1.1
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-common.install 0000664 0000000 0000000 00000000021 14460075676 0026261 0 ustar 00root root 0000000 0000000 usr/share/locale/ lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-testability.install 0000664 0000000 0000000 00000000102 14460075676 0027326 0 ustar 00root root 0000000 0000000 usr/lib/python*/dist-packages/lomiri_url_dispatcher_testability/*
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-tools-gui.install 0000664 0000000 0000000 00000000075 14460075676 0026724 0 ustar 00root root 0000000 0000000 usr/share/applications/
usr/share/lomiri-url-dispatcher/gui/
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-tools-gui.lintian-overrides 0000664 0000000 0000000 00000000272 14460075676 0030713 0 ustar 00root root 0000000 0000000 # we launch a QML/QtQuick application, so this is ok...
lomiri-url-dispatcher-tools-gui: desktop-command-not-in-package usr/share/applications/lomiri-url-dispatcher-gui.desktop qmlscene
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-tools.install 0000664 0000000 0000000 00000000036 14460075676 0026137 0 ustar 00root root 0000000 0000000 usr/bin/lomiri-url-dispatcher
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher-tools.lintian-overrides 0000664 0000000 0000000 00000000232 14460075676 0030125 0 ustar 00root root 0000000 0000000 # WIP: https://gitlab.com/ubports/core/lomiri-url-dispatcher/-/issues/1
lomiri-url-dispatcher-tools: binary-without-manpage usr/bin/lomiri-url-dispatcher
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher.install 0000664 0000000 0000000 00000000561 14460075676 0025004 0 ustar 00root root 0000000 0000000 usr/lib/*/lomiri-url-dispatcher
usr/lib/*/lomiri-app-launch/url-overlay/exec-tool
usr/lib/*/lomiri-app-launch/bad-url/exec-tool
usr/share/dbus-1
usr/lib/systemd/user
usr/share/lomiri-url-dispatcher/bad-url.qml
usr/bin/lomiri-url-dispatcher-dump
debian/apparmor/lomiri-url-dispatcher-bad-url-helper etc/apparmor.d
debian/lomiri-url-dispatcher.hook usr/share/click/hooks
lomiri-url-dispatcher-0.1.3/debian/lomiri-url-dispatcher.lintian-overrides 0000664 0000000 0000000 00000000231 14460075676 0026766 0 ustar 00root root 0000000 0000000 # WIP: https://gitlab.com/ubports/core/lomiri-url-dispatcher/-/issues/1
lomiri-url-dispatcher: binary-without-manpage usr/bin/lomiri-url-dispatcher-dump
lomiri-url-dispatcher-0.1.3/debian/rules 0000775 0000000 0000000 00000001223 14460075676 0020251 0 ustar 00root root 0000000 0000000 #!/usr/bin/make -f
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
export G_MESSAGES_DEBUG=all
export URL_DISPATCHER_DISABLE_RECOVERABLE_ERROR=1
ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
export DEB_BUILD_PROFILES := cross
endif
include /usr/share/dpkg/buildflags.mk
# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE=debug
override_dh_missing:
dh_missing --fail-missing
override_dh_apparmor:
dh_apparmor --profile-name=lomiri-url-dispatcher-bad-url-helper -p lomiri-url-dispatcher
override_dh_auto_test:
dh_auto_test --no-parallel
lomiri-url-dispatcher-0.1.3/debian/source/ 0000775 0000000 0000000 00000000000 14460075676 0020473 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/debian/source/format 0000664 0000000 0000000 00000000004 14460075676 0021700 0 ustar 00root root 0000000 0000000 1.0
lomiri-url-dispatcher-0.1.3/docs/ 0000775 0000000 0000000 00000000000 14460075676 0016701 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/docs/URL Dispatcher Architecture.svg 0000664 0000000 0000000 00000045110 14460075676 0024537 0 ustar 00root root 0000000 0000000
lomiri-url-dispatcher-0.1.3/gui/ 0000775 0000000 0000000 00000000000 14460075676 0016535 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/gui/CMakeLists.txt 0000664 0000000 0000000 00000001205 14460075676 0021273 0 ustar 00root root 0000000 0000000 include(FindGettext)
install(FILES
lomiri-url-dispatcher-gui.qml
lomiri-url-dispatcher-gui.svg
DESTINATION "${CMAKE_INSTALL_DATADIR}/lomiri-url-dispatcher/gui/")
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/lomiri-url-dispatcher-gui.desktop
DESTINATION "${CMAKE_INSTALL_DATADIR}/applications/")
configure_file(${DESKTOP_FILE}.in.in ${DESKTOP_FILE}.in)
add_custom_target(${DESKTOP_FILE} ALL
COMMENT "Merging translations into ${DESKTOP_FILE}..."
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE}
--desktop --template=${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}.in
-o ${DESKTOP_FILE}
-d ${CMAKE_SOURCE_DIR}/po
)
lomiri-url-dispatcher-0.1.3/gui/lomiri-url-dispatcher-gui.desktop.in.in 0000664 0000000 0000000 00000000614 14460075676 0026144 0 ustar 00root root 0000000 0000000 [Desktop Entry]
Name=Lomiri URL Dispatcher GUI
Icon=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_DATADIR@/lomiri-url-dispatcher/gui/lomiri-url-dispatcher-gui.svg
Type=Application
Exec=qmlscene @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_DATADIR@/lomiri-url-dispatcher/gui/lomiri-url-dispatcher-gui.qml
Keywords=Lomiri;URL;dispatcher;request;open;application;
X-Ubuntu-Touch=true
X-Ubuntu-Single-Instance=true
lomiri-url-dispatcher-0.1.3/gui/lomiri-url-dispatcher-gui.qml 0000664 0000000 0000000 00000002025 14460075676 0024250 0 ustar 00root root 0000000 0000000 import QtQuick 2.4
import Lomiri.Components 1.3
import Lomiri.Components.ListItems 1.3
MainView {
applicationName: "lomiri-url-dispatcher-gui"
Page {
header: PageHeader {
title: i18n.tr("URL Dispatcher GUI")
flickable: flickme
}
Flickable {
id: flickme
anchors.fill: parent
Column {
anchors.fill: parent
ListItem {
contentItem.anchors {
leftMargin: units.gu(2)
rightMargin: units.gu(2)
topMargin: units.gu(1)
bottomMargin: units.gu(1)
}
TextField {
id: textbox
anchors.fill: parent
placeholderText: i18n.tr("URL (e.g. 'https://example.com')")
}
}
ListItem {
contentItem.anchors {
leftMargin: units.gu(2)
rightMargin: units.gu(2)
topMargin: units.gu(1)
bottomMargin: units.gu(1)
}
Button {
anchors.fill: parent
text: i18n.tr("Send URL")
onClicked: {
console.log("Sending URL: " + textbox.text)
Qt.openUrlExternally(textbox.text)
}
}
}
}
}
}
}
lomiri-url-dispatcher-0.1.3/gui/lomiri-url-dispatcher-gui.svg 0000664 0000000 0000000 00000040102 14460075676 0024254 0 ustar 00root root 0000000 0000000
lomiri-url-dispatcher-0.1.3/liblomiri-url-dispatcher/ 0000775 0000000 0000000 00000000000 14460075676 0022657 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/liblomiri-url-dispatcher/CMakeLists.txt 0000664 0000000 0000000 00000003060 14460075676 0025416 0 ustar 00root root 0000000 0000000
###########################
# Version Information
###########################
set(API_VERSION 0)
set(ABI_VERSION 0)
###########################
# Lib
###########################
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden")
include_directories(${CMAKE_CURRENT_BINARY_DIR})
set(DISPATCHER_HEADERS
lomiri-url-dispatcher.h
)
set(DISPATCHER_SOURCES
lomiri-url-dispatcher.c
)
add_library(dispatcher SHARED ${DISPATCHER_SOURCES})
set_target_properties(dispatcher PROPERTIES
VERSION ${API_VERSION}.0.0
SOVERSION ${ABI_VERSION}
OUTPUT_NAME "lomiri-url-dispatcher"
)
target_link_libraries(dispatcher
service-generated
${GLIB2_LIBRARIES}
${GOBJECT2_LIBRARIES}
-Wl,--no-undefined
)
###########################
# Coverage
###########################
set_property(GLOBAL APPEND PROPERTY COVERAGE_TARGETS dispatcher)
###########################
# Pkg Config
###########################
set(DISPATCHER_PC "lomiri-url-dispatcher.pc")
set(apiversion "${API_VERSION}")
set(libdir "${CMAKE_INSTALL_FULL_LIBDIR}")
set(includedir "${CMAKE_INSTALL_FULL_INCLUDEDIR}")
set(VERSION "${ABI_VERSION}")
configure_file("lomiri-url-dispatcher.pc.in" "${CMAKE_CURRENT_BINARY_DIR}/${DISPATCHER_PC}" @ONLY)
###########################
# Installation
###########################
install(
FILES ${DISPATCHER_HEADERS}
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/liblomiri-url-dispatcher"
)
install(
FILES "${CMAKE_CURRENT_BINARY_DIR}/${DISPATCHER_PC}"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
)
install(
TARGETS dispatcher
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
)
lomiri-url-dispatcher-0.1.3/liblomiri-url-dispatcher/lomiri-url-dispatcher.c 0000664 0000000 0000000 00000010643 14460075676 0027246 0 ustar 00root root 0000000 0000000 /**
* Copyright (C) 2013 Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
*/
#include "lomiri-url-dispatcher.h"
#include
typedef struct _dispatch_data_t dispatch_data_t;
struct _dispatch_data_t {
LomiriURLDispatchCallback cb;
gpointer user_data;
gchar * url;
gchar * package;
};
static void
lomiri_url_dispatched (GObject * obj, GAsyncResult * res, gpointer user_data)
{
GError * error = NULL;
dispatch_data_t * dispatch_data = (dispatch_data_t *)user_data;
g_dbus_connection_call_finish(
G_DBUS_CONNECTION(obj),
res,
&error);
if (error != NULL) {
g_warning("Unable to dispatch url '%s':%s", dispatch_data->url, error->message);
g_error_free(error);
if (dispatch_data->cb != NULL) {
dispatch_data->cb(dispatch_data->url, FALSE, dispatch_data->user_data);
}
} else {
if (dispatch_data->cb != NULL) {
dispatch_data->cb(dispatch_data->url, TRUE, dispatch_data->user_data);
}
}
g_free(dispatch_data->url);
g_free(dispatch_data->package);
g_free(dispatch_data);
return;
}
void
lomiri_url_dispatch_send (const gchar * url, LomiriURLDispatchCallback cb, gpointer user_data)
{
lomiri_url_dispatch_send_restricted(url, NULL, cb, user_data);
}
void
lomiri_url_dispatch_send_restricted (const gchar * url, const gchar * package, LomiriURLDispatchCallback cb, gpointer user_data)
{
GError * error = NULL;
GDBusConnection * bus = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
if (error != NULL) {
g_warning("Unable to get session bus: %s", error->message);
g_error_free(error);
return;
}
dispatch_data_t * dispatch_data = NULL;
if (cb != NULL) {
dispatch_data = g_new0(dispatch_data_t, 1);
dispatch_data->cb = cb;
dispatch_data->user_data = user_data;
dispatch_data->url = g_strdup(url);
dispatch_data->package = g_strdup(package);
}
g_dbus_connection_call(bus,
"com.lomiri.URLDispatcher",
"/com/lomiri/URLDispatcher",
"com.lomiri.URLDispatcher",
"DispatchURL",
g_variant_new("(ss)", url, package ? package : ""),
NULL,
G_DBUS_CALL_FLAGS_NONE,
-1, /* timeout */
NULL, /* cancelable */
cb != NULL ? lomiri_url_dispatched : NULL,
dispatch_data);
if (cb == NULL) {
g_dbus_connection_flush_sync(bus, NULL, NULL);
}
g_object_unref(bus);
return;
}
gchar **
lomiri_url_dispatch_url_appid (const gchar ** urls)
{
GError * error = NULL;
GDBusConnection * bus = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
if (error != NULL) {
g_warning("Unable to get session bus: %s", error->message);
g_error_free(error);
return NULL;
}
GVariant * vurls = g_variant_new_strv(urls, -1);
GVariant * vparam = g_variant_new_tuple(&vurls, 1);
GVariant * retval = NULL;
retval = g_dbus_connection_call_sync(bus,
"com.lomiri.URLDispatcher",
"/com/lomiri/URLDispatcher",
"com.lomiri.URLDispatcher",
"TestURL",
vparam,
G_VARIANT_TYPE("(as)"),
G_DBUS_CALL_FLAGS_NONE,
-1, /* timeout */
NULL, /* cancelable */
&error);
if (error != NULL) {
g_warning("Unable to test URL with URL Dispatcher: %s", error->message);
g_error_free(error);
g_object_unref(bus);
return NULL;
}
GVariant * varstr = g_variant_get_child_value(retval, 0);
gchar ** appids = g_variant_dup_strv(varstr, NULL);
g_variant_unref(varstr);
g_variant_unref(retval);
g_object_unref(bus);
return appids;
}
lomiri-url-dispatcher-0.1.3/liblomiri-url-dispatcher/lomiri-url-dispatcher.h 0000664 0000000 0000000 00000006101 14460075676 0027245 0 ustar 00root root 0000000 0000000 /**
* Copyright (C) 2013 Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
*/
#include
#ifndef LOMIRI_URL_DISPATCH_H
#define LOMIRI_URL_DISPATCH_H 1
#pragma GCC visibility push(default)
G_BEGIN_DECLS
typedef void (*LomiriURLDispatchCallback) (const gchar * url, gboolean success, gpointer user_data);
/**
* lomiri_url_dispatch_send:
* @url: URL to send to the dispatcher
* @cb: Function to call with the result of the URL processing
* @user_data: data pointer for @cb
*
* Sends a URL to the dispatcher for processing. Most of the time,
* things will work out and that URL will result in an application
* being opened with the URL as requested. In some cases the URL
* may not have a valid handler and an error will be returned. In
* that case a bug will be filled on this package.
*/
void lomiri_url_dispatch_send (const gchar * url,
LomiriURLDispatchCallback cb,
gpointer user_data);
/**
* lomiri_url_dispatch_send_restricted:
* @url: URL to send to the dispatcher
* @cb: Function to call with the result of the URL processing
* @user_data: data pointer for @cb
*
* Very much like lomiri_url_dispatch_send() except that it also says which
* package is allowed to have the URL. This should be checked with the
* lomiri_url_dispatch_url_appid() function ahead of time, but is used to avoid
* races that can occur between the test and the processing.
*/
void lomiri_url_dispatch_send_restricted (const gchar * url,
const gchar * package,
LomiriURLDispatchCallback cb,
gpointer user_data);
/**
* lomiri_url_dispatch_url_appid:
* @urls: URLs to check the AppIDs for
*
* Takes a list of URLs and return which AppIDs will be launched to
* handle those URLs.
*
* NOTE: This function is *not* available for confined applications and
* only for trusted helpers. It could result in discovery of which
* applications are installed on the system if exposed.
*
* Return value: (transfer full): Returns the AppIDs that match the
* same order as @urls. Full transfer, free with g_strfreev().
*/
gchar ** lomiri_url_dispatch_url_appid (const gchar ** urls);
G_END_DECLS
#pragma GCC visibility pop
#endif /* LOMIRI_URL_DISPATCH_H */
lomiri-url-dispatcher-0.1.3/liblomiri-url-dispatcher/lomiri-url-dispatcher.pc.in 0000664 0000000 0000000 00000000450 14460075676 0030026 0 ustar 00root root 0000000 0000000 libdir=@libdir@
includedir=@includedir@
Cflags: -I${includedir}/liblomiri-url-dispatcher
Requires: glib-2.0 gio-2.0
Libs: -L${libdir} -llomiri-url-dispatcher
Name: liblomiri-url-dispatcher
Description: A Lomiri Operating Environment library for requesting a URL to be opened
Version: @VERSION@
lomiri-url-dispatcher-0.1.3/po/ 0000775 0000000 0000000 00000000000 14460075676 0016367 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/po/CMakeLists.txt 0000664 0000000 0000000 00000003744 14460075676 0021137 0 ustar 00root root 0000000 0000000 include(FindGettext)
find_program(GETTEXT_XGETTEXT_EXECUTABLE xgettext)
if("${GETTEXT_XGETTEXT_EXECUTABLE}" STREQUAL "GETTEXT_XGETTEXT_EXECUTABLE-NOTFOUND")
message(FATAL_ERROR "Could not find xgettext")
endif()
set(DOMAIN ${PROJECT_NAME})
set(POT_FILE ${DOMAIN}.pot)
file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/LINGUAS LINGUAS
REGEX "^[^#].*")
string(REGEX MATCHALL "[^ \t]+" LANGS "${LINGUAS}")
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/POTFILES.in
${CMAKE_CURRENT_BINARY_DIR}/POTFILES COPYONLY)
add_custom_target(${POT_FILE} ALL
COMMENT "Generating translation template"
COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE}
--from-code=UTF-8
--language=Desktop
--package-name='${PROJECT_NAME}'
--copyright-holder='Canonical Ltd.'
-D ${CMAKE_BINARY_DIR}
gui/${DESKTOP_FILE}.in
COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE}
-D ${CMAKE_SOURCE_DIR}
-D ${CMAKE_CURRENT_SOURCE_DIR}
-D ${CMAKE_CURRENT_BINARY_DIR}
--from-code=UTF-8
--c++
--qt
--add-comments=TRANSLATORS
--keyword=_ --keyword=tr --keyword=tr:1,2
--package-name='${PROJECT_NAME}'
--copyright-holder='Canonical Ltd.'
--join-existing --files-from=${CMAKE_CURRENT_BINARY_DIR}/POTFILES)
foreach(LANG ${LANGS})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${LANG}.po
${CMAKE_CURRENT_BINARY_DIR}/${LANG}.po
COPYONLY)
endforeach(LANG)
gettext_process_pot_file(${POT_FILE} ALL
INSTALL_DESTINATION ${CMAKE_INSTALL_LOCALEDIR}
LANGUAGES ${LANGS})
lomiri-url-dispatcher-0.1.3/po/LINGUAS 0000664 0000000 0000000 00000000546 14460075676 0017421 0 ustar 00root root 0000000 0000000 aa
am
ar
ast
az
be
bem
bg
bn_BD
br
bs
ca
ca@valencia
cs
cy
da
de
dv
el
en_AU
en_CA
en_GB
en_US
eo
es
eu
fa
fi
fr
fr_CA
fr_CH
frp
fur
gd
gl
gu
he
hi
hr
hu
hy
id
io
is
it
ja
jbo
ka
kab
km
kmr
ko
lb
ln
lo
lt
lv
mg
mi
mk
ml
ms
my
nan
nb_NO
nl
ny
om
pa
pam
pl
ps
pt
pt_BR
ro
ru
sc
sco
sd
sdh
shn
si
sk
sl
sq
sr
sv
ta
te
tet
tg
th
tk
tr
ug
uk
ur
zh_CN
zh_HK
zh_TW
lomiri-url-dispatcher-0.1.3/po/POTFILES.in 0000664 0000000 0000000 00000000740 14460075676 0020145 0 ustar 00root root 0000000 0000000 data/bad-url.qml
gui/lomiri-url-dispatcher-gui.qml
liblomiri-url-dispatcher/lomiri-url-dispatcher.c
liblomiri-url-dispatcher/lomiri-url-dispatcher.h
service/bad-url/exec-tool.cpp
service/create-db-sql.h
service/dispatcher.h
service/glib-thread.cpp
service/glib-thread.h
service/overlay-tracker.cpp
service/overlay-tracker.h
service/overlay-tracker-iface.h
service/overlay-tracker-mir.cpp
service/overlay-tracker-mir.h
service/service.cpp
service/url-db.h
tools/url-dispatcher.cpp
lomiri-url-dispatcher-0.1.3/po/aa.po 0000664 0000000 0000000 00000002230 14460075676 0017305 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: aa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/am.po 0000664 0000000 0000000 00000002230 14460075676 0017321 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ar.po 0000664 0000000 0000000 00000002230 14460075676 0017326 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ast.po 0000664 0000000 0000000 00000002231 14460075676 0017514 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/az.po 0000664 0000000 0000000 00000002230 14460075676 0017336 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/be.po 0000664 0000000 0000000 00000002230 14460075676 0017312 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/bem.po 0000664 0000000 0000000 00000002231 14460075676 0017470 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: bem\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/bg.po 0000664 0000000 0000000 00000002230 14460075676 0017314 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/bn_BD.po 0000664 0000000 0000000 00000002233 14460075676 0017673 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: bn_BD\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/br.po 0000664 0000000 0000000 00000002230 14460075676 0017327 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/bs.po 0000664 0000000 0000000 00000002230 14460075676 0017330 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ca.po 0000664 0000000 0000000 00000002230 14460075676 0017307 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ca@valencia.po 0000664 0000000 0000000 00000002241 14460075676 0021114 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ca@valencia\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/cs.po 0000664 0000000 0000000 00000003057 14460075676 0017341 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-04-02 03:46+0000\n"
"Last-Translator: Jozef Mlich \n"
"Language-Team: Czech \n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.17-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "GUI pro odesílání URL v Lomiri"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;odesílatel;požadavek;otevřít;aplikace;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Nerozpoznaná adresa"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Nelze otevřít adresu „%1“."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "GUI pro odesílání URL"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (například 'https://neběží.cz')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Odeslat URL"
lomiri-url-dispatcher-0.1.3/po/cy.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/da.po 0000664 0000000 0000000 00000002230 14460075676 0017310 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/de.po 0000664 0000000 0000000 00000002766 14460075676 0017332 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-06-28 04:34+0000\n"
"Last-Translator: \"J. Lavoie\" \n"
"Language-Team: German \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18.1\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Lomiri URL-Zuweiser GUI"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;zuweisen;anfordern;öffnen;Anwendung;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Nicht erkannte Adresse"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Kann Adresse \"%1\" nicht öffnen."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "URL-Zuweiser GUI"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (z.B. 'https://beispiel.com')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Sende URL"
lomiri-url-dispatcher-0.1.3/po/dv.po 0000664 0000000 0000000 00000002230 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: dv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/el.po 0000664 0000000 0000000 00000002230 14460075676 0017324 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/en_AU.po 0000664 0000000 0000000 00000002233 14460075676 0017716 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en_AU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/en_CA.po 0000664 0000000 0000000 00000002534 14460075676 0017700 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-06-28 04:34+0000\n"
"Last-Translator: \"Rudra Harsh V.Singh\" \n"
"Language-Team: English (Canada) \n"
"Language: en_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18.1\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/en_GB.po 0000664 0000000 0000000 00000002233 14460075676 0017701 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/en_US.po 0000664 0000000 0000000 00000002233 14460075676 0017740 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/eo.po 0000664 0000000 0000000 00000002515 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-16 22:38+0000\n"
"Last-Translator: phlostically \n"
"Language-Team: Esperanto \n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "Bone"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/es.po 0000664 0000000 0000000 00000003132 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-04-06 21:55+0000\n"
"Last-Translator: gallegonovato \n"
"Language-Team: Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Interfaz gráfica del usuario para Lomiri URL Dispatcher"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;despachador;solicitud;abrir;aplicación;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Dirección desconocida"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "No se pueden abrir las direcciones \"%1\"."
#: data/bad-url.qml:35
msgid "OK"
msgstr "De acuerdo"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Interfaz gráfica de usuario del asignador de URL"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (por ejemplo, 'https://example.com')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Enviar URL"
lomiri-url-dispatcher-0.1.3/po/eu.po 0000664 0000000 0000000 00000002230 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/fa.po 0000664 0000000 0000000 00000002230 14460075676 0017312 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/fi.po 0000664 0000000 0000000 00000002230 14460075676 0017322 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/fr.po 0000664 0000000 0000000 00000002747 14460075676 0017350 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-01-14 17:50+0000\n"
"Last-Translator: Timothy G. <22472919+GTimothy@users.noreply.github.com>\n"
"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.15.1-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Adresse non reconnue"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "Ubuntu ne peut pas ouvrir des adresses du type \"%1\"."
lomiri-url-dispatcher-0.1.3/po/fr_CA.po 0000664 0000000 0000000 00000002233 14460075676 0017701 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/fr_CH.po 0000664 0000000 0000000 00000002233 14460075676 0017710 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: fr_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/frp.po 0000664 0000000 0000000 00000002231 14460075676 0017514 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: frp\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/fur.po 0000664 0000000 0000000 00000002231 14460075676 0017521 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: fur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/gd.po 0000664 0000000 0000000 00000002230 14460075676 0017316 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/genpotfiles.sh 0000775 0000000 0000000 00000000167 14460075676 0021251 0 ustar 00root root 0000000 0000000 #!/bin/sh
sed '/^#/d
s/^[[].*] *//
/^[ ]*$/d' \
"`dirname ${0}`/POTFILES.in" | sed '$!s/$/ \\/' > POTFILES
lomiri-url-dispatcher-0.1.3/po/gl.po 0000664 0000000 0000000 00000002230 14460075676 0017326 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/gu.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/he.po 0000664 0000000 0000000 00000002230 14460075676 0017320 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/hi.po 0000664 0000000 0000000 00000002521 14460075676 0017327 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-06-28 04:34+0000\n"
"Last-Translator: \"Rudra Harsh V.Singh\" \n"
"Language-Team: Hindi \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.18.1\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "ठीक"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/hr.po 0000664 0000000 0000000 00000002230 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/hu.po 0000664 0000000 0000000 00000002230 14460075676 0017340 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/hy.po 0000664 0000000 0000000 00000002230 14460075676 0017344 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: hy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/id.po 0000664 0000000 0000000 00000002230 14460075676 0017320 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/io.po 0000664 0000000 0000000 00000002230 14460075676 0017333 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: io\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/is.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/it.po 0000664 0000000 0000000 00000003063 14460075676 0017345 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-04-02 03:46+0000\n"
"Last-Translator: Sylke Vicious \n"
"Language-Team: Italian \n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Interfaccia grafica del dispatcher URL di Lomiri"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;dispatcher;richiesta;apri;applicazione;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Indirizzo non Riconosciuto"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Impossibile aprire “%1” indirizzi."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Interfaccia grafica del dispatcher URL"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (es. 'https://example.com')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Invia URL"
lomiri-url-dispatcher-0.1.3/po/ja.po 0000664 0000000 0000000 00000002466 14460075676 0017331 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-07-14 02:23+0000\n"
"Last-Translator: NPL \n"
"Language-Team: Japanese \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.0-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/jbo.po 0000664 0000000 0000000 00000002231 14460075676 0017477 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: jbo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ka.po 0000664 0000000 0000000 00000002531 14460075676 0017323 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-04-11 20:27+0000\n"
"Last-Translator: Temuri Doghonadze \n"
"Language-Team: Georgian \n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "დიახ"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/kab.po 0000664 0000000 0000000 00000002231 14460075676 0017462 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/km.po 0000664 0000000 0000000 00000002230 14460075676 0017333 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: km\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/kmr.po 0000664 0000000 0000000 00000002231 14460075676 0017516 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: kmr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ko.po 0000664 0000000 0000000 00000002230 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/lb.po 0000664 0000000 0000000 00000002230 14460075676 0017321 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: lb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ln.po 0000664 0000000 0000000 00000002230 14460075676 0017335 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ln\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/lo.po 0000664 0000000 0000000 00000002230 14460075676 0017336 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: lo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/lomiri-url-dispatcher.pot 0000664 0000000 0000000 00000002305 14460075676 0023332 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the lomiri-url-dispatcher package.
# FIRST AUTHOR , YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: lomiri-url-dispatcher\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/lt.po 0000664 0000000 0000000 00000002230 14460075676 0017343 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/lv.po 0000664 0000000 0000000 00000002230 14460075676 0017345 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/mg.po 0000664 0000000 0000000 00000002230 14460075676 0017327 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: mg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/mi.po 0000664 0000000 0000000 00000002230 14460075676 0017331 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: mi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/mk.po 0000664 0000000 0000000 00000002230 14460075676 0017333 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ml.po 0000664 0000000 0000000 00000002230 14460075676 0017334 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ms.po 0000664 0000000 0000000 00000002230 14460075676 0017343 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/my.po 0000664 0000000 0000000 00000002230 14460075676 0017351 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/nan.po 0000664 0000000 0000000 00000002231 14460075676 0017501 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: nan\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/nb_NO.po 0000664 0000000 0000000 00000003302 14460075676 0017720 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-03-02 14:39+0000\n"
"Last-Translator: Allan Nordhøy \n"
"Language-Team: Norwegian Bokmål \n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.16.2-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Lomiri-nettadresseavhendingsgrensesnitt"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;nettadresse;avhender;forespørsel;åpen;program;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Ugjenkjent adresse"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Kan ikke åpne «%1»-adresser."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Nettadresseavhendingsgrensesnitt"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "Nettadresse (f.eks. «https://eksempel.no»)"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Send nettadresse"
#, fuzzy
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "Ubuntu kan ikke åpne adresser av typen «%1»."
lomiri-url-dispatcher-0.1.3/po/nl.po 0000664 0000000 0000000 00000003001 14460075676 0017332 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-22 13:39+0000\n"
"Last-Translator: Heimen Stoffels \n"
"Language-Team: Dutch \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Lomiri Url-verwerkingsapp"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;url;verwerking;verzoek;openen;app;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Niet-herkend adres"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "‘%1’ kan niet worden geopend."
#: data/bad-url.qml:35
msgid "OK"
msgstr "Oké"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Url-verwerkingsapp"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "Url (bijv. ‘https://voorbeeld.nl’)"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Url versturen"
lomiri-url-dispatcher-0.1.3/po/ny.po 0000664 0000000 0000000 00000002230 14460075676 0017352 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ny\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/om.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/pa.po 0000664 0000000 0000000 00000002230 14460075676 0017324 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/pam.po 0000664 0000000 0000000 00000002231 14460075676 0017502 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pam\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/pl.po 0000664 0000000 0000000 00000003226 14460075676 0017345 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-06 03:01+0000\n"
"Last-Translator: gnu-ewm \n"
"Language-Team: Polish \n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;dispatcher;zapytanie;otwórz;aplikacja;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Nierozpoznany adres"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Nie można otworzyć adresów \"%1\"."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "Adres URL (np. „https://example.com”)"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Wyślij adres URL"
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "Ubuntu nie może otworzyć adresów typu \"%1\"."
lomiri-url-dispatcher-0.1.3/po/ps.po 0000664 0000000 0000000 00000002230 14460075676 0017346 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ps\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/pt.po 0000664 0000000 0000000 00000003232 14460075676 0017352 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-07 21:41+0000\n"
"Last-Translator: Ivo Xavier \n"
"Language-Team: Portuguese \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "GUI do Lomiri URL Dispatcher"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr "Lomiri;URL;dispatcher;pedido;abrir;aplicação;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Endereço não reconhecido"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Não é possível abrir endereços “%1”."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "GUI do URL Dispatcher"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (por exemplo, 'https://example.com')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Enviar URL"
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "O Lomiri não pode abrir endereços do tipo “%1”."
lomiri-url-dispatcher-0.1.3/po/pt_BR.po 0000664 0000000 0000000 00000002233 14460075676 0017735 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ro.po 0000664 0000000 0000000 00000002230 14460075676 0017344 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ru.po 0000664 0000000 0000000 00000003746 14460075676 0017367 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-18 17:33+0000\n"
"Last-Translator: Sergii Horichenko \n"
"Language-Team: Russian \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Графический интерфейс диспетчера URL-адресов Lomiri"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
"Lomiri;URL;dispatcher;request;open;application;приложение;программа;диспетчер"
";запрос;открыть;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Нераспознанный адрес"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Не удается открыть адреса \"%1\"."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Графический интерфейс диспетчера URL-адресов"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (напр. \"https://example.com\")"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Отправить URL"
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "Ubuntu не может открывать адреса типа \"%1\"."
lomiri-url-dispatcher-0.1.3/po/sa.po 0000664 0000000 0000000 00000002601 14460075676 0017331 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the lomiri-url-dispatcher package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: lomiri-url-dispatcher\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-07-14 02:23+0000\n"
"Last-Translator: \"Rudra Harsh V.Singh\" \n"
"Language-Team: Sanskrit \n"
"Language: sa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Generator: Weblate 5.0-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "अस्तु"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sc.po 0000664 0000000 0000000 00000002230 14460075676 0017331 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sc\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sco.po 0000664 0000000 0000000 00000002231 14460075676 0017511 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sco\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sd.po 0000664 0000000 0000000 00000002230 14460075676 0017332 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sdh.po 0000664 0000000 0000000 00000002231 14460075676 0017503 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sdh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/shn.po 0000664 0000000 0000000 00000002231 14460075676 0017515 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: shn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/si.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sk.po 0000664 0000000 0000000 00000002230 14460075676 0017341 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sl.po 0000664 0000000 0000000 00000002230 14460075676 0017342 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sq.po 0000664 0000000 0000000 00000002230 14460075676 0017347 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sr.po 0000664 0000000 0000000 00000002230 14460075676 0017350 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/sv.po 0000664 0000000 0000000 00000002641 14460075676 0017362 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-27 18:36+0000\n"
"Last-Translator: Luna Jernberg \n"
"Language-Team: Swedish \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Oigenkänd adress"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Kan inte öppna “%1” adresser."
#: data/bad-url.qml:35
msgid "OK"
msgstr "OK"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (e.g. 'https://exempel.com')"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Skicka URL"
lomiri-url-dispatcher-0.1.3/po/ta.po 0000664 0000000 0000000 00000002230 14460075676 0017330 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/te.po 0000664 0000000 0000000 00000002230 14460075676 0017334 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/tet.po 0000664 0000000 0000000 00000002231 14460075676 0017521 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: tet\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/tg.po 0000664 0000000 0000000 00000002230 14460075676 0017336 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: tg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/th.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/tk.po 0000664 0000000 0000000 00000002230 14460075676 0017342 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: tk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/tr.po 0000664 0000000 0000000 00000002230 14460075676 0017351 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/ug.po 0000664 0000000 0000000 00000002230 14460075676 0017337 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/uk.po 0000664 0000000 0000000 00000003703 14460075676 0017351 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-02-06 17:51+0000\n"
"Last-Translator: Sergii Horichenko \n"
"Language-Team: Ukrainian \n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.16-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr "Графічний інтерфейс диспетчера URL-адрес Lomiri"
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
"Lomiri;URL;диспетчер;запит;відкрити;програма;dispatcher;request;open;applicat"
"ion;"
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "Невизначена адреса"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr "Не вдається відкрити адреси \"%1\"."
#: data/bad-url.qml:35
msgid "OK"
msgstr "ОК"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr "Графічний інтерфейс диспетчера URL-адрес"
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr "URL (напр. \"https://example.com\")"
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr "Надіслати URL"
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "Ubuntu не може відкривати адреси типу «%1»."
lomiri-url-dispatcher-0.1.3/po/ur.po 0000664 0000000 0000000 00000003001 14460075676 0017347 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: 2023-01-06 18:49+0000\n"
"Last-Translator: Muhammad \n"
"Language-Team: Urdu \n"
"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.15.1-dev\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr "ناقابل شناخت پتہ"
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr "ٹھیک ہے"
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
#~ msgid "Ubuntu can't open addresses of type “%1”."
#~ msgstr "اوبنٹو \"%1\" کے طرح کے اڈریس نہیں کھول سکتا۔"
lomiri-url-dispatcher-0.1.3/po/zh_CN.po 0000664 0000000 0000000 00000002235 14460075676 0017732 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: zh_Hans\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/zh_HK.po 0000664 0000000 0000000 00000002240 14460075676 0017730 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: zh_Hant_HK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/po/zh_TW.po 0000664 0000000 0000000 00000002235 14460075676 0017764 0 ustar 00root root 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-02-04 17:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: zh_Hant\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gui/lomiri-url-dispatcher-gui.desktop.in:3
msgid "Lomiri URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.desktop.in:7
msgid "Lomiri;URL;dispatcher;request;open;application;"
msgstr ""
#: data/bad-url.qml:31
msgid "Unrecognized Address"
msgstr ""
#: data/bad-url.qml:32
#, qt-format
msgid "Cannot open “%1” addresses."
msgstr ""
#: data/bad-url.qml:35
msgid "OK"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:10
msgid "URL Dispatcher GUI"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:32
msgid "URL (e.g. 'https://example.com')"
msgstr ""
#: gui/lomiri-url-dispatcher-gui.qml:46
msgid "Send URL"
msgstr ""
lomiri-url-dispatcher-0.1.3/service/ 0000775 0000000 0000000 00000000000 14460075676 0017411 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/service/CMakeLists.txt 0000664 0000000 0000000 00000005261 14460075676 0022155 0 ustar 00root root 0000000 0000000
include(UseConstantBuilder)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_definitions( -DOVERLAY_SYSTEM_DIRECTORY="${CMAKE_INSTALL_FULL_DATADIR}/lomiri-url-dispatcher/url-overlays" )
###########################
# Generated Lib
###########################
add_gdbus_codegen(
SERVICE_GENERATED
service-iface
com.lomiri.URLDispatcher.
${CMAKE_SOURCE_DIR}/data/com.lomiri.URLDispatcher.xml
NAMESPACE ServiceIface
)
add_library(service-generated STATIC ${SERVICE_GENERATED_SOURCES})
target_link_libraries(service-generated
${GLIB2_LIBRARIES}
${GOBJECT2_LIBRARIES}
${GIO2_LIBRARIES}
)
###########################
# Dispatcher Lib
###########################
if(enable_mirclient)
set(OVERLAY_MIR_SOURCES
overlay-tracker-mir.h
overlay-tracker-mir.cpp
)
add_definitions(-DUSE_MIRCLIENT=1)
endif()
add_library(dispatcher-lib STATIC
dispatcher.h
dispatcher.c
glib-thread.h
glib-thread.cpp
overlay-tracker.h
overlay-tracker.cpp
overlay-tracker-iface.h
${OVERLAY_MIR_SOURCES}
)
target_link_libraries(dispatcher-lib
url-db-lib
service-generated
-pthread
${APPARMOR_LIBRARIES}
${GLIB2_LIBRARIES}
${GOBJECT2_LIBRARIES}
${GIO2_LIBRARIES}
${SQLITE_LIBRARIES}
${LOMIRI_APP_LAUNCH_LIBRARIES}
)
###########################
# URL DB Lib
###########################
set(URL_DB_SOURCES
url-db.c
url-db.h
create-db-sql.h
)
add_constant_template(URL_DB_SOURCES
create-db-sql
create_db_sql
"${CMAKE_CURRENT_SOURCE_DIR}/create-db.sql"
)
add_library(url-db-lib STATIC
${URL_DB_SOURCES}
)
target_link_libraries(url-db-lib
${GLIB2_LIBRARIES}
${SQLITE_LIBRARIES}
)
###########################
# Service Executable
###########################
include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_executable(service-exec service.cpp)
set_target_properties(service-exec PROPERTIES OUTPUT_NAME "lomiri-url-dispatcher")
target_link_libraries(service-exec dispatcher-lib)
###########################
# Update Directory
###########################
add_executable(update-directory update-directory.c)
set_target_properties(update-directory PROPERTIES OUTPUT_NAME "lomiri-update-directory")
target_link_libraries(update-directory ${GIO2_LIBRARIES} ${JSONGLIB_LIBRARIES} url-db-lib)
###########################
# Coverage
###########################
set_property(
GLOBAL
APPEND
PROPERTY
COVERAGE_TARGETS dispatcher-lib url-db-lib service-exec update-directory)
###########################
# Installation
###########################
install(
TARGETS service-exec update-directory
RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/lomiri-url-dispatcher"
)
###########################
# Exec Tools
###########################
add_subdirectory(url-overlay)
add_subdirectory(bad-url)
lomiri-url-dispatcher-0.1.3/service/bad-url/ 0000775 0000000 0000000 00000000000 14460075676 0020737 5 ustar 00root root 0000000 0000000 lomiri-url-dispatcher-0.1.3/service/bad-url/CMakeLists.txt 0000664 0000000 0000000 00000001002 14460075676 0023470 0 ustar 00root root 0000000 0000000 ###########################
# Bad URL Exec Tool
###########################
add_definitions( -DQML_BAD_URL="${CMAKE_INSTALL_FULL_DATADIR}/lomiri-url-dispatcher/bad-url.qml" )
add_executable(bad-url-exec-tool exec-tool.cpp)
set_target_properties(bad-url-exec-tool PROPERTIES OUTPUT_NAME "exec-tool")
target_link_libraries(bad-url-exec-tool ${GIO2_LIBRARIES} ${LOMIRI_APP_LAUNCH_LIBRARIES})
install(
TARGETS bad-url-exec-tool
RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/lomiri-app-launch/bad-url"
)
lomiri-url-dispatcher-0.1.3/service/bad-url/exec-tool.cpp 0000664 0000000 0000000 00000002225 14460075676 0023343 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#include
#include
#include
int
main (int argc, char * argv[])
{
try {
lomiri::app_launch::Helper::setExec({"qmlscene", QML_BAD_URL});
return EXIT_SUCCESS;
} catch (std::runtime_error &e) {
g_warning("Unable to set helper: %s", e.what());
return EXIT_FAILURE;
} catch (...) {
g_warning("Unknown failure setting exec line");
return EXIT_FAILURE;
}
}
lomiri-url-dispatcher-0.1.3/service/create-db-sql.h 0000664 0000000 0000000 00000000062 14460075676 0022203 0 ustar 00root root 0000000 0000000 #pragma once
extern const char * create_db_sql;
lomiri-url-dispatcher-0.1.3/service/create-db.sql 0000664 0000000 0000000 00000000502 14460075676 0021755 0 ustar 00root root 0000000 0000000 pragma journal_mode = WAL;
begin transaction;
create table if not exists configfiles (name text unique, timestamp bigint);
create table if not exists urls (sourcefile integer, protocol text, domainsuffix text);
create unique index if not exists urls_index on urls (sourcefile, protocol, domainsuffix);
commit transaction;
lomiri-url-dispatcher-0.1.3/service/dispatcher.c 0000664 0000000 0000000 00000040251 14460075676 0021705 0 ustar 00root root 0000000 0000000 /**
* Copyright (C) 2013-2017 Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
* Author: Ted Gould
*
*/
#include
#include
#include "dispatcher.h"
#include "service-iface.h"
#include "url-db.h"
/* Globals */
static OverlayTracker * tracker = NULL;
static GCancellable * cancellable = NULL;
static ServiceIfaceComLomiriURLDispatcher * skel = NULL;
static GRegex * applicationre = NULL;
static GRegex * appidre = NULL;
static GRegex * genericre = NULL;
static GRegex * intentre = NULL;
static sqlite3 * urldb = NULL;
/* Errors */
enum {
ERROR_BAD_URL,
ERROR_RESTRICTED_URL
};
G_DEFINE_QUARK(url_dispatcher, url_dispatcher_error)
/* Register our errors */
static void
register_dbus_errors ()
{
g_dbus_error_register_error(url_dispatcher_error_quark(), ERROR_BAD_URL, "com.lomiri.URLDispatcher.BadURL");
g_dbus_error_register_error(url_dispatcher_error_quark(), ERROR_RESTRICTED_URL, "com.lomiri.URLDispatcher.RestrictedURL");
return;
}
/* We should have the PID now so we can make sure to file the
problem on the right package. */
static void
recoverable_problem_file (GObject * obj, GAsyncResult * res, gpointer user_data)
{
gchar * badurl = (gchar *)user_data;
GVariant * pid_tuple = NULL;
GError * error = NULL;
pid_tuple = g_dbus_connection_call_finish(G_DBUS_CONNECTION(obj), res, &error);
if (error != NULL) {
g_warning("Unable to get PID for calling program with URL '%s': %s", badurl, error->message);
g_free(badurl);
g_error_free(error);
return;
}
guint32 pid = 0;
g_variant_get(pid_tuple, "(u)", &pid);
g_variant_unref(pid_tuple);
/* Popup the bad url dialog */
overlay_tracker_badurl(tracker, pid, badurl);
/* Log the bad url request */
g_warning("Unable to open url '%s' requested from pid '%u'.", badurl, pid);
g_free(badurl);
return;
}
/* Error based on the fact that we're using a restricted launch but the package
doesn't match */
/* NOTE: Only sending back the data we were given. We don't want people to be
able to parse the error as an info leak */
static gboolean
restricted_appid (GDBusMethodInvocation * invocation, const gchar * url, const gchar * package)
{
g_dbus_method_invocation_return_error(invocation,
url_dispatcher_error_quark(),
ERROR_RESTRICTED_URL,
"URL '%s' does not have a handler in package '%s'",
url, package);
return TRUE;
}
/* Say that we have a bad URL and report a recoverable error on the process that
sent it to us. */
static gboolean
bad_url (GDBusMethodInvocation * invocation, const gchar * url)
{
const gchar * sender = g_dbus_method_invocation_get_sender(invocation);
GDBusConnection * conn = g_dbus_method_invocation_get_connection(invocation); /* transfer: none */
g_dbus_connection_call(conn,
"org.freedesktop.DBus",
"/",
"org.freedesktop.DBus",
"GetConnectionUnixProcessID",
g_variant_new("(s)", sender),
G_VARIANT_TYPE("(u)"),
G_DBUS_CALL_FLAGS_NONE,
-1, /* timeout */
NULL, /* cancellable */
recoverable_problem_file,
g_strdup(url));
g_dbus_method_invocation_return_error(invocation,
url_dispatcher_error_quark(),
ERROR_BAD_URL,
"URL '%s' is not handleable by the URL Dispatcher",
url);
return TRUE;
}
/* Print an error if we get one */
static void
send_open_cb (GObject * object, GAsyncResult * res, gpointer user_data)
{
GError * error = NULL;
g_dbus_connection_call_finish(G_DBUS_CONNECTION(object), res, &error);
if (error != NULL) {
/* Mostly just to free the error, but printing for debugging */
g_warning("Unable to send Open to dash: %s", error->message);
g_error_free(error);
}
}
/* Sends the URL to the dash, which isn't an app, but just on the bus generally. */
gboolean
send_to_dash (const gchar * url)
{
if (url == NULL) {
g_warning("Can not send nothing to the dash");
return FALSE;
}
GDBusConnection * bus = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, NULL);
g_return_val_if_fail(bus != NULL, FALSE);
/* Kinda sucks that we need to do this, should probably find it's way into
the libUAL API if it's needed outside */
g_dbus_connection_emit_signal(bus,
NULL, /* destination */
"/", /* path */
"com.lomiri.LomiriAppLaunch", /* interface */
"LomiriFocusRequest", /* signal */
g_variant_new("(s)", "lomiri-dash"),
NULL);
GVariantBuilder opendata;
g_variant_builder_init(&opendata, G_VARIANT_TYPE_TUPLE);
g_variant_builder_open(&opendata, G_VARIANT_TYPE_ARRAY);
g_variant_builder_add_value(&opendata, g_variant_new_string(url));
g_variant_builder_close(&opendata);
g_variant_builder_add_value(&opendata, g_variant_new_array(G_VARIANT_TYPE("{sv}"), NULL, 0));
/* Using the FD.o Application interface */
g_dbus_connection_call(bus,
"com.lomiri.LomiriDash",
"/lomiri_2ddash",
"org.freedesktop.Application",
"Open",
g_variant_builder_end(&opendata),
NULL,
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
send_open_cb, NULL);
g_object_unref(bus);
return TRUE;
}
/* Handles taking an application and an URL and sending them to Upstart */
gboolean
dispatcher_send_to_app (const gchar * app_id, const gchar * url)
{
g_debug("Emitting 'application-start' for APP_ID='%s' and URLS='%s'", app_id, url);
if (g_strcmp0(app_id, "lomiri-dash") == 0) {
return send_to_dash(url);
}
const gchar * urls[2] = {
url,
NULL
};
if (!lomiri_app_launch_start_application(app_id, urls)) {
g_warning("Unable to start application '%s' with URL '%s'", app_id, url);
}
return TRUE;
}
unsigned int _get_pid_from_dbus(GDBusConnection * conn, const gchar * sender)
{
GError * error = NULL;
unsigned int pid = 0;
GVariant * callret = g_dbus_connection_call_sync(conn,
"org.freedesktop.DBus",
"/",
"org.freedesktop.DBus",
"GetConnectionUnixProcessID",
g_variant_new("(s)", sender),
G_VARIANT_TYPE("(u)"),
G_DBUS_CALL_FLAGS_NONE,
-1, /* timeout */
NULL, /* cancellable */
&error);
if (error != NULL) {
g_warning("Unable to get PID for '%s' from dbus: %s",
sender, error->message);
g_clear_error(&error);
} else {
g_variant_get_child(callret, 0, "u", &pid);
g_variant_unref(callret);
}
return pid;
}
/* Handles setting up the overlay with the URL */
gboolean
dispatcher_send_to_overlay (const gchar * app_id, const gchar * url, GDBusConnection * conn, const gchar * sender)
{
unsigned int pid = _get_pid_from_dbus(conn, sender);
if (pid == 0) {
return FALSE;
}
return overlay_tracker_add(tracker, app_id, pid, url);
}
/* Check to see if this is an overlay AppID */
gboolean
dispatcher_is_overlay (const gchar * appid)
{
const gchar * systemdir = NULL;
gboolean found = FALSE;
gchar * desktopname = g_strdup_printf("%s.desktop", appid);
/* First time, check the environment */
if (G_UNLIKELY(systemdir == NULL)) {
systemdir = g_getenv("URL_DISPATCHER_OVERLAY_DIR");
if (systemdir == NULL) {
systemdir = OVERLAY_SYSTEM_DIRECTORY;
}
}
/* Check system dir */
if (!found) {
gchar * sysdir = g_build_filename(systemdir, desktopname, NULL);
found = g_file_test(sysdir, G_FILE_TEST_EXISTS);
g_free(sysdir);
}
g_free(desktopname);
return found;
}
/* Whether we should restrict this appid based on the package name */
gboolean
dispatcher_appid_restrict (const gchar * appid, const gchar * package)
{
if (package == NULL || package[0] == '\0') {
return FALSE;
}
gchar * appackage = NULL;
gboolean match = FALSE;
if (lomiri_app_launch_app_id_parse(appid, &appackage, NULL, NULL)) {
/* Click application */
match = (g_strcmp0(package, appackage) == 0);
} else {
/* Legacy application */
match = (g_strcmp0(package, appid) == 0);
}
g_free(appackage);
return !match;
}
/* Get a URL off of the bus */
static gboolean
dispatch_url_cb (GObject * skel, GDBusMethodInvocation * invocation, const gchar * url, const gchar * package, gpointer user_data)
{
/* Nice debugging message depending on whether the @package variable
is valid from DBus */
if (package == NULL || package[0] == '\0') {
g_debug("Dispatching URL: %s", url);
} else {
g_debug("Dispatching Restricted URL: %s", url);
g_debug("Package restriction: %s", package);
}
/* Check to ensure the URL is valid coming from DBus */
if (url == NULL || url[0] == '\0') {
return bad_url(invocation, url);
}
/* Actually do it */
gchar * appid = NULL;
const gchar * outurl = NULL;
/* Discover the AppID */
if (!dispatcher_url_to_appid(url, &appid, &outurl)) {
return bad_url(invocation, url);
}
/* Check for the 'unconfined' app id which is causing problems */
if (g_strcmp0(appid, "unconfined") == 0) {
g_free(appid);
return bad_url(invocation, url);
}
/* Check to see if we're allowed to use it */
if (dispatcher_appid_restrict(appid, package)) {
g_free(appid);
return restricted_appid(invocation, url, package);
}
/* We're cleared to continue */
gboolean sent = FALSE;
if (!dispatcher_is_overlay(appid)) {
sent = dispatcher_send_to_app(appid, outurl);
} else {
sent = dispatcher_send_to_overlay(
appid,
outurl,
g_dbus_method_invocation_get_connection(invocation),
g_dbus_method_invocation_get_sender(invocation));
}
g_free(appid);
if (sent) {
g_dbus_method_invocation_return_value(invocation, NULL);
} else {
bad_url(invocation, url);
}
return sent;
}
/* Test a URL to find it's AppID */
static gboolean
test_url_cb (GObject * skel, GDBusMethodInvocation * invocation, const gchar * const * urls, gpointer user_data)
{
if (urls == NULL || urls[0] == NULL || urls[0][0] == '\0') {
/* Right off the bat, let's deal with these */
return bad_url(invocation, NULL);
}
GVariantBuilder builder;
g_variant_builder_init(&builder, G_VARIANT_TYPE_ARRAY);
int i;
for (i = 0; urls[i] != NULL; i++) {
const gchar * url = urls[i];
g_debug("Testing URL: %s", url);
if (url == NULL || url[0] == '\0') {
g_variant_builder_clear(&builder);
return bad_url(invocation, url);
}
gchar * appid = NULL;
const gchar * outurl = NULL;
if (dispatcher_url_to_appid(url, &appid, &outurl)) {
GVariant * vappid = g_variant_new_take_string(appid);
g_variant_builder_add_value(&builder, vappid);
} else {
g_variant_builder_clear(&builder);
return bad_url(invocation, url);
}
}
GVariant * varray = g_variant_builder_end(&builder);
GVariant * tuple = g_variant_new_tuple(&varray, 1);
g_dbus_method_invocation_return_value(invocation, tuple);
return TRUE;
}
/* Determine the domain for an intent using the package variable */
static gchar *
intent_domain (const gchar * url)
{
gchar * domain = NULL;
GMatchInfo * intentmatch = NULL;
if (g_regex_match(intentre, url, 0, &intentmatch)) {
domain = g_match_info_fetch(intentmatch, 1);
g_match_info_free(intentmatch);
}
return domain;
}
/* The core of the URL handling */
gboolean
dispatcher_url_to_appid (const gchar * url, gchar ** out_appid, const gchar ** out_url)
{
g_return_val_if_fail(url != NULL, FALSE);
g_return_val_if_fail(out_appid != NULL, FALSE);
/* Special case the app id */
GMatchInfo * appidmatch = NULL;
if (g_regex_match(appidre, url, 0, &appidmatch)) {
gchar * package = g_match_info_fetch(appidmatch, 1);
gchar * app = g_match_info_fetch(appidmatch, 2);
gchar * version = g_match_info_fetch(appidmatch, 3);
gboolean retval = FALSE;
*out_appid = lomiri_app_launch_triplet_to_app_id(package, app, version);
if (*out_appid != NULL) {
/* Look at the current version of the app and ensure
we're not asking for an older version */
gchar * testappid = lomiri_app_launch_triplet_to_app_id(package, app, NULL);
if (g_strcmp0(*out_appid, testappid) != 0) {
retval = FALSE;
g_clear_pointer(out_appid, g_free);
} else {
retval = TRUE;
}
g_free(testappid);
}
g_free(package);
g_free(app);
g_free(version);
g_match_info_free(appidmatch);
return retval;
}
/* Special case the application URL */
GMatchInfo * appmatch = NULL;
if (g_regex_match(applicationre, url, 0, &appmatch)) {
*out_appid = g_match_info_fetch(appmatch, 1);
g_match_info_free(appmatch);
return TRUE;
}
g_match_info_free(appmatch);
/* Check the URL db */
GMatchInfo * genericmatch = NULL;
if (g_regex_match(genericre, url, 0, &genericmatch)) {
gboolean found = FALSE;
gchar * protocol = g_match_info_fetch(genericmatch, 1);
gchar * domain = NULL;
/* We special case the intent domain (further comment there) */
if (g_strcmp0(protocol, "intent") == 0) {
domain = intent_domain(url);
} else {
domain = g_match_info_fetch(genericmatch, 2);
}
*out_appid = url_db_find_url(urldb, protocol, domain);
g_debug("Protocol '%s' for domain '%s' resulting in app id '%s'", protocol, domain, *out_appid);
if (*out_appid != NULL) {
found = TRUE;
if (out_url != NULL) {
*out_url = url;
}
}
g_free(protocol);
g_free(domain);
g_match_info_free(genericmatch);
return found;
}
g_match_info_free(genericmatch);
return FALSE;
}
/* We're goin' down cap'n */
static void
name_lost (GDBusConnection * con, const gchar * name, gpointer user_data)
{
GMainLoop * mainloop = (GMainLoop *)user_data;
g_warning("Unable to get name '%s'", name);
g_main_loop_quit(mainloop);
return;
}
/* Callback when we're connected to dbus */
static void
bus_got (GObject * obj, GAsyncResult * res, gpointer user_data)
{
GMainLoop * mainloop = (GMainLoop *)user_data;
GDBusConnection * bus = NULL;
GError * error = NULL;
bus = g_bus_get_finish(res, &error);
if (error != NULL) {
if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
g_error("Unable to connect to D-Bus");
g_main_loop_quit(mainloop);
}
g_error_free(error);
return;
}
register_dbus_errors();
g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(skel), bus, "/com/lomiri/URLDispatcher", &error);
if (error != NULL) {
g_error("Unable to export interface skeleton: %s", error->message);
g_main_loop_quit(mainloop);
return;
}
g_bus_own_name_on_connection(bus,
"com.lomiri.URLDispatcher",
G_BUS_NAME_OWNER_FLAGS_NONE, /* flags */
NULL, /* name acquired */
name_lost,
user_data, NULL); /* user data */
g_object_unref(bus);
return;
}
/* Initialize all the globals */
gboolean
dispatcher_init (GMainLoop * mainloop, OverlayTracker * intracker)
{
tracker = intracker;
cancellable = g_cancellable_new();
urldb = url_db_create_database();
g_return_val_if_fail(urldb != NULL, FALSE);
applicationre = g_regex_new("^application:///([a-zA-Z0-9_\\.-]*)\\.desktop$", 0, 0, NULL);
appidre = g_regex_new("^appid://([a-z0-9\\.-]*)/([a-zA-Z0-9-\\.]*)/([a-zA-Z0-9\\.-]*)$", 0, 0, NULL);
genericre = g_regex_new("^([a-z][a-z0-9]*):(?://(?:.*@)?([a-zA-Z0-9\\.\\-_]*)(?::[0-9]*)?/?)?(.*)?$", 0, 0, NULL);
intentre = g_regex_new("^intent://.*package=([a-zA-Z0-9\\.]*);.*$", 0, 0, NULL);
g_bus_get(G_BUS_TYPE_SESSION, cancellable, bus_got, mainloop);
skel = service_iface_com_lomiri_urldispatcher_skeleton_new();
g_signal_connect(skel, "handle-dispatch-url", G_CALLBACK(dispatch_url_cb), NULL);
g_signal_connect(skel, "handle-test-url", G_CALLBACK(test_url_cb), NULL);
return TRUE;
}
/* Clean up all the globals */
gboolean
dispatcher_shutdown ()
{
g_cancellable_cancel(cancellable);
g_object_unref(cancellable);
g_object_unref(skel);
g_regex_unref(applicationre);
g_regex_unref(appidre);
g_regex_unref(genericre);
g_regex_unref(intentre);
sqlite3_close(urldb);
return TRUE;
}
lomiri-url-dispatcher-0.1.3/service/dispatcher.h 0000664 0000000 0000000 00000002610 14460075676 0021707 0 ustar 00root root 0000000 0000000 /**
* Copyright (C) 2013 Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
* Author: Ted Gould
*
*/
#ifndef DISPATCHER_H
#define DISPATCHER_H 1
#include
#include "overlay-tracker.h"
G_BEGIN_DECLS
gboolean dispatcher_init (GMainLoop * mainloop, OverlayTracker * tracker);
gboolean dispatcher_shutdown ();
gboolean dispatcher_url_to_appid (const gchar * url, gchar ** out_appid, const gchar ** out_url);
gboolean dispatcher_appid_restrict (const gchar * appid, const gchar * package);
gboolean dispatcher_is_overlay (const gchar * appid);
gboolean dispatcher_send_to_app (const gchar * appid, const gchar * url);
gboolean dispatcher_send_to_overlay (const gchar * app_id, const gchar * url, GDBusConnection * conn, const gchar * sender);
G_END_DECLS
#endif /* DISPATCHER_H */
lomiri-url-dispatcher-0.1.3/service/glib-thread.cpp 0000664 0000000 0000000 00000012447 14460075676 0022307 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#include "glib-thread.h"
namespace GLib
{
ContextThread::ContextThread (std::function beforeLoop, std::function afterLoop)
: _context(nullptr)
, _loop(nullptr)
{
_cancel = std::shared_ptr(g_cancellable_new(), [](GCancellable * cancel)
{
if (cancel != nullptr)
{
g_cancellable_cancel(cancel);
g_object_unref(cancel);
}
});
std::promise, std::shared_ptr>> context_promise;
/* NOTE: We copy afterLoop but reference beforeLoop. We're blocking so we
know that beforeLoop will stay valid long enough, but we can't say the
same for afterLoop */
_thread = std::thread([&context_promise, &beforeLoop, afterLoop, this]() -> void
{
/* Build up the context and loop for the async events and a place
for GDBus to send its events back to */
auto context = std::shared_ptr(g_main_context_new(), [](GMainContext * context)
{
g_clear_pointer(&context, g_main_context_unref);
});
auto loop = std::shared_ptr(g_main_loop_new(context.get(), FALSE), [](GMainLoop * loop)
{
g_clear_pointer(&loop, g_main_loop_unref);
});
g_main_context_push_thread_default(context.get());
beforeLoop();
/* Free's the constructor to continue */
auto pair = std::pair, std::shared_ptr>(context, loop);
context_promise.set_value(pair);
if (!g_cancellable_is_cancelled(_cancel.get()))
{
g_main_loop_run(loop.get());
}
afterLoop();
});
/* We need to have the context and the mainloop ready before
other functions on this object can work properly. So we wait
for them and set them on this thread. */
auto context_future = context_promise.get_future();
context_future.wait();
auto context_value = context_future.get();
_context = context_value.first;
_loop = context_value.second;
if (_context == nullptr || _loop == nullptr)
{
throw std::runtime_error("Unable to create GLib Thread");
}
}
ContextThread::~ContextThread ()
{
quit();
}
void ContextThread::quit ()
{
g_cancellable_cancel(_cancel.get()); /* Force the cancellation on ongoing tasks */
if (_loop != nullptr)
{
g_main_loop_quit(_loop.get()); /* Quit the loop */
}
/* Joining here because we want to ensure that the final afterLoop()
function is run before returning */
if (std::this_thread::get_id() != _thread.get_id())
{
if (_thread.joinable())
{
_thread.join();
}
}
}
bool ContextThread::isCancelled ()
{
return g_cancellable_is_cancelled(_cancel.get()) == TRUE;
}
std::shared_ptr ContextThread::getCancellable ()
{
return _cancel;
}
void ContextThread::simpleSource (std::function srcBuilder, std::function work)
{
if (isCancelled())
{
throw std::runtime_error("Trying to execute work on a GLib thread that is shutting down.");
}
/* Copy the work so that we can reuse it */
/* Lifecycle is handled with the source pointer when we attach
it to the context. */
auto heapWork = new std::function(work);
auto source = std::shared_ptr(srcBuilder(),
[](GSource * src)
{
g_clear_pointer(&src, g_source_unref);
}
);
g_source_set_callback(source.get(),
[](gpointer data) -> gboolean
{
std::function* heapWork = reinterpret_cast *>(data);
(*heapWork)();
return G_SOURCE_REMOVE;
}, heapWork,
[](gpointer data)
{
std::function* heapWork = reinterpret_cast *>(data);
delete heapWork;
});
g_source_attach(source.get(), _context.get());
}
void ContextThread::executeOnThread (std::function work)
{
simpleSource(g_idle_source_new, work);
}
void ContextThread::timeout (const std::chrono::milliseconds& length,
std::function work)
{
simpleSource([length]()
{
return g_timeout_source_new(length.count());
}, work);
}
void ContextThread::timeoutSeconds (const std::chrono::seconds& length,
std::function work)
{
simpleSource([length]()
{
return g_timeout_source_new_seconds(length.count());
}, work);
}
} // ns GLib
lomiri-url-dispatcher-0.1.3/service/glib-thread.h 0000664 0000000 0000000 00000005155 14460075676 0021752 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#include
#include
#include
namespace GLib
{
class ContextThread
{
std::thread _thread;
std::shared_ptr _context;
std::shared_ptr _loop;
std::shared_ptr _cancel;
public:
ContextThread (std::function beforeLoop = [] {}, std::function afterLoop = [] {});
~ContextThread ();
void quit ();
bool isCancelled ();
std::shared_ptr getCancellable ();
void executeOnThread (std::function work);
template auto executeOnThread (std::function work) -> T
{
if (std::this_thread::get_id() == _thread.get_id())
{
/* Don't block if we're on the same thread */
return work();
}
std::promise promise;
std::function magicFunc = [&promise, &work] () -> void {
promise.set_value(work());
};
executeOnThread(magicFunc);
auto future = promise.get_future();
future.wait();
return future.get();
}
void timeout (const std::chrono::milliseconds& length, std::function work);
template void timeout (const std::chrono::duration& length,
std::function work)
{
return timeout(std::chrono::duration_cast(length), work);
}
void timeoutSeconds (const std::chrono::seconds& length, std::function work);
template void timeoutSeconds (const std::chrono::duration& length,
std::function work)
{
return timeoutSeconds(std::chrono::duration_cast(length), work);
}
private:
void simpleSource (std::function srcBuilder, std::function work);
};
}
lomiri-url-dispatcher-0.1.3/service/overlay-tracker-iface.h 0000664 0000000 0000000 00000001676 14460075676 0023753 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#pragma once
class OverlayTrackerIface {
public:
virtual ~OverlayTrackerIface() = default;
virtual bool addOverlay (const char * appid, unsigned long pid, const char * url) = 0;
virtual bool badUrl (unsigned long pid, const char * url) = 0;
};
lomiri-url-dispatcher-0.1.3/service/overlay-tracker-mir.cpp 0000664 0000000 0000000 00000014302 14460075676 0024014 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#include
#include "overlay-tracker-mir.h"
#include
static const char * OVERLAY_HELPER_TYPE = "url-overlay";
static const char * BAD_URL_HELPER_TYPE = "bad-url";
static const char * BAD_URL_APP_ID = "lomiri-url-dispatcher-bad-url-helper";
OverlayTrackerMir::OverlayTrackerMir ()
: thread([this] {
/* Setup Helper Observer */
lomiri_app_launch_observer_add_helper_stop(overlayHelperStoppedStatic, OVERLAY_HELPER_TYPE, this);
lomiri_app_launch_observer_add_helper_stop(overlayHelperStoppedStatic, BAD_URL_HELPER_TYPE, this);
},
[this] {
/* Remove Helper Observer */
lomiri_app_launch_observer_delete_helper_stop(overlayHelperStoppedStatic, OVERLAY_HELPER_TYPE, this);
lomiri_app_launch_observer_delete_helper_stop(overlayHelperStoppedStatic, BAD_URL_HELPER_TYPE, this);
})
{
mir = std::shared_ptr([] {
gchar * path = g_build_filename(g_get_user_runtime_dir(), "mir_socket_trusted", NULL);
MirConnection * con = mir_connect_sync(path, "url-dispatcher");
g_free(path);
return con;
}(),
[] (MirConnection * connection) {
if (connection != nullptr)
mir_connection_release(connection);
});
if (!mir || !mir_connection_is_valid(mir.get())) {
throw std::runtime_error("Unable to connect to Mir");
}
}
/* Enforce a shutdown order, sessions before connection */
OverlayTrackerMir::~OverlayTrackerMir ()
{
thread.executeOnThread([this] {
for (auto& sessionType : ongoingSessions) {
while (!sessionType.second.empty()) {
removeSession(sessionType.first, sessionType.second.begin()->session.get());
}
}
return true;
});
mir.reset();
}
bool
OverlayTrackerMir::addOverlay (const char * appid, unsigned long pid, const char * url)
{
return addOverlayCore(OVERLAY_HELPER_TYPE, appid, pid, url, overlaySessionStateChangedStatic);
}
bool
OverlayTrackerMir::addOverlayCore (const char * helper_id, const char * appid, unsigned long pid, const char * url, void (*stateChangedFunction) (MirPromptSession*, MirPromptSessionState, void *))
{
OverlayData data;
data.appid = appid;
std::string surl(url);
return thread.executeOnThread([this, helper_id, &data, pid, surl, stateChangedFunction] {
g_debug("Setting up over lay for PID %d with '%s'", int(pid), data.appid.c_str());
data.session = std::shared_ptr(
mir_connection_create_prompt_session_sync(mir.get(), pid, stateChangedFunction, this),
[] (MirPromptSession * session) { if (session) mir_prompt_session_release_sync(session); });
if (!data.session) {
g_critical("Unable to create trusted prompt session for %d with appid '%s'", (int)pid, data.appid.c_str());
return false;
}
std::array urls { surl.c_str(), nullptr };
auto instance = lomiri_app_launch_start_session_helper(helper_id, data.session.get(), data.appid.c_str(), urls.data());
if (instance == nullptr) {
g_critical("Unable to start helper for %d with appid '%s'", int(pid), data.appid.c_str());
return false;
}
data.instanceid = instance;
ongoingSessions[helper_id].push_back(data);
g_free(instance);
return true;
});
}
bool
OverlayTrackerMir::badUrl (unsigned long pid, const char * url)
{
return addOverlayCore(BAD_URL_HELPER_TYPE, BAD_URL_APP_ID, pid, url, badUrlSessionStateChangedStatic);
}
void
OverlayTrackerMir::overlaySessionStateChangedStatic (MirPromptSession * session, MirPromptSessionState state, void * user_data)
{
reinterpret_cast(user_data)->sessionStateChanged(session, state, OVERLAY_HELPER_TYPE);
}
void
OverlayTrackerMir::badUrlSessionStateChangedStatic (MirPromptSession * session, MirPromptSessionState state, void * user_data)
{
reinterpret_cast(user_data)->sessionStateChanged(session, state, BAD_URL_HELPER_TYPE);
}
void
OverlayTrackerMir::removeSession (const std::string &type, MirPromptSession * session)
{
g_debug("Removing session: %p", (void*)session);
auto& sessions = ongoingSessions[type];
for (auto it = sessions.begin(); it != sessions.end(); it++) {
if (it->session.get() == session) {
lomiri_app_launch_stop_multiple_helper(type.c_str(), it->appid.c_str(), it->instanceid.c_str());
sessions.erase(it);
break;
}
}
}
void
OverlayTrackerMir::sessionStateChanged (MirPromptSession * session, MirPromptSessionState state, const std::string &type)
{
if (state != mir_prompt_session_state_stopped) {
/* We only care about the stopped state */
return;
}
/* Executing on the Mir thread, which is nice and all, but we
want to get back on our thread */
thread.executeOnThread([this, type, session]() {
removeSession(type, session);
});
}
void
OverlayTrackerMir::overlayHelperStoppedStatic (const gchar * appid, const gchar * instanceid, const gchar * helpertype, gpointer user_data)
{
reinterpret_cast(user_data)->overlayHelperStopped(appid, instanceid, helpertype);
}
void
OverlayTrackerMir::overlayHelperStopped(const gchar * appid, const gchar * instanceid, const gchar * helpertype)
{
/* This callback will happen on our thread already, we don't need
to proxy it on */
if (g_strcmp0(helpertype, OVERLAY_HELPER_TYPE) != 0
&& g_strcmp0(helpertype, BAD_URL_HELPER_TYPE) != 0) {
return;
}
/* Making the code in the loop easier to read by using std::string outside */
std::string sappid(appid);
std::string sinstanceid(instanceid);
for (auto it = ongoingSessions[helpertype].begin(); it != ongoingSessions[helpertype].end(); it++) {
if (it->appid == sappid && it->instanceid == sinstanceid) {
ongoingSessions[helpertype].erase(it);
break;
}
}
}
lomiri-url-dispatcher-0.1.3/service/overlay-tracker-mir.h 0000664 0000000 0000000 00000004435 14460075676 0023467 0 ustar 00root root 0000000 0000000 /*
* Copyright © 2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see .
*
* Authors:
* Ted Gould
*/
#pragma once
#include