pax_global_header 0000666 0000000 0000000 00000000064 14561211576 0014522 g ustar 00root root 0000000 0000000 52 comment=7dc775ce1ce67e1df0955494c3ff509ab9ae9b40 content-hub-1.1.1/ 0000775 0000000 0000000 00000000000 14561211576 0013750 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/.gitignore 0000664 0000000 0000000 00000000762 14561211576 0015745 0 ustar 00root root 0000000 0000000 # Created by https://www.toptal.com/developers/gitignore/api/cmake # Edit at https://www.toptal.com/developers/gitignore?templates=cmake ### CMake ### CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps CMakeUserPresets.json ### CMake Patch ### # External projects *-prefix/ # End of https://www.toptal.com/developers/gitignore/api/cmake # common build dirs build/ build-*/ obj-*/ content-hub-1.1.1/AUTHORS 0000664 0000000 0000000 00000001533 14561211576 0015022 0 ustar 00root root 0000000 0000000 Adolfo Jayme Barrientos Alberto Mardegan Alexandre Abreu Allan Nordhøy Anonymous Bittin1ddc447d824349b2 Dalton Durst Dan Daniel D'Andrada Daniel Frost Dimitri John Ledkov Florian Boucault Gallegonovato Gnu-ewm Guenter Schwann Guido Berhoerster Heimen Stoffels Hosted Weblate Ivan Semkin Ivo Xavier Jami Kettunen Javier Collado Joan CiberSheep Jozef Mlich Ken VanDine Kugi Eusebio Lionel Duboeuf Loïc Minier Luca Weiss Łukasz 'sil2100' Zemczak Luna Jernberg Lu Xu Marius Gripsgard Michael Sheldon Michael Terry Mike Gabriel Milan Korecky Muhammad Phlostically Ratchanan Srirattanamet Renato Araujo Oliveira Filho Ricardo Salveti De Araujo Robert Ancell Robert Bruce Park Robert Tari Rodney Rudra Harsh V Singh Sebastien Bacher Sergey Chupligin Sergii Horichenko Sylke Vicious Ted Gould Temuri Doghonadze Thomas Voß Timothy G Vlad Nirky Weblate William Hua content-hub-1.1.1/CMakeLists.txt 0000664 0000000 0000000 00000012337 14561211576 0016516 0 ustar 00root root 0000000 0000000 # Copyright © 2013 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 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 . # # Authored by: Thomas Voss cmake_minimum_required(VERSION 3.5) project(content-hub VERSION 1.1.1) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) option(ENABLE_TESTS "Build tests" ON) option(ENABLE_DOC "Build documentation" ON) option(ENABLE_UBUNTU_COMPAT "Enable Ubuntu.Content QML compatibility layer" OFF) include (GNUInstallDirs) find_package(GSettings) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -pthread") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fno-strict-aliasing -fPIC -pthread -Wno-unused-function -Wall -Wextra -pedantic") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") option(Werror "Treat warnings as errors" ON) if (Werror) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") endif() # 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(pkglibexecdir "${CMAKE_INSTALL_FULL_LIBEXECDIR}") set(CMAKE_INCLUDE_CURRENT_DIR ON) find_package(Qt5Core) find_package(Qt5DBus) find_package(Qt5Gui) find_package(PkgConfig REQUIRED) pkg_check_modules(GLIB REQUIRED glib-2.0) pkg_check_modules(GIO REQUIRED gio-unix-2.0) pkg_check_modules(LOMIRI_LAUNCH REQUIRED lomiri-app-launch-0) pkg_check_modules(GSETTINGS REQUIRED gsettings-qt) pkg_check_modules(LOMIRI_API REQUIRED liblomiri-api) pkg_check_modules(DBUS REQUIRED dbus-1) pkg_check_modules(LOMIRI_DOWNLOAD_MANAGER REQUIRED lomiri-download-manager-client) pkg_check_modules(NOTIFY REQUIRED libnotify) pkg_check_modules(APPARMOR REQUIRED libapparmor) pkg_check_modules(LIBERTINE libertine) if(LIBERTINE_FOUND) message("Building with libertine support") else() message(WARNING "Building without libertine support") endif() add_definitions(-DDEBUG_ENABLED) set(GETTEXT_PACKAGE "content-hub") add_definitions(-DI18N_DOMAIN="${GETTEXT_PACKAGE}") set(CONTENT_HUB_VERSION_MAJOR 1) set(CONTENT_HUB_VERSION_MINOR 1) set(CONTENT_HUB_VERSION_PATCH 0) set(CONTENT_HUB_VERSION "${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH}") set(QML_API_VERSION_MAJOR 1) include_directories(include) # for dh_translations to extract the domain # (regarding syntax consistency, see http://pad.lv/1181187) set (GETTEXT_PACKAGE "content-hub") if (${ENABLE_DOC}) add_subdirectory(doc) endif() add_subdirectory(po) add_subdirectory(src) add_subdirectory(import) add_subdirectory(examples) add_subdirectory(tools) install(DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX}) # Build and install a pkg-config file set(prefix ${CMAKE_INSTALL_PREFIX}) set(exec_prefix ${prefix}/bin) set(libdir ${prefix}/${CMAKE_INSTALL_LIBDIR}) set(pkg-name "libcontent-hub") set(glib-pkg-name "libcontent-hub-glib") configure_file(libcontent-hub.pc.in libcontent-hub.pc @ONLY) configure_file(libcontent-hub-glib.pc.in libcontent-hub-glib.pc @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libcontent-hub.pc ${CMAKE_CURRENT_BINARY_DIR}/libcontent-hub-glib.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig ) if (${ENABLE_TESTS}) enable_testing() find_package(CoverageReport) ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov # Usage: # * Switch build type to coverage (use ccmake or cmake-gui) # * Invoke make, make test, make coverage # * Find html report in subdir coveragereport # * Find xml report feasible for jenkins in coverage.xml ##################################################################### IF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) ENDIF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) add_subdirectory(tests) # There's no nice way to format this. Thanks CMake. add_test(LGPL-required /bin/sh -c "! grep -rl 'GNU General' ${PROJECT_SOURCE_DIR}/src/client ${PROJECT_SOURCE_DIR}/include/client ${PROJECT_SOURCE_DIR}/src/shared ${PROJECT_SOURCE_DIR}/include/shared" ) add_test(GPL-required /bin/sh -c "! grep -rl 'GNU Lesser' ${PROJECT_SOURCE_DIR}/src/server ${PROJECT_SOURCE_DIR}/include/server ${PROJECT_SOURCE_DIR}/include/test ${PROJECT_SOURCE_DIR}/tests ${PROJECT_SOURCE_DIR}/examples" ) endif() content-hub-1.1.1/COPYING.GPL 0000664 0000000 0000000 00000104374 14561211576 0015435 0 ustar 00root root 0000000 0000000 GNU 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. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU 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 Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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, either version 3 of the License, or (at your option) any later version. 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 . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . content-hub-1.1.1/COPYING.LGPL 0000664 0000000 0000000 00000016743 14561211576 0015553 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. content-hub-1.1.1/ChangeLog 0000664 0000000 0000000 00000411611 14561211576 0015526 0 ustar 00root root 0000000 0000000 2024-02-08 Mike Gabriel * Release 1.1.1 (HEAD -> main, tag: 1.1.1) 2024-02-08 Ratchanan Srirattanamet * Merge branch 'personal/peat-psuwit/20-stub-more-functions' into 'main' (d8ebfe0) * src: add missing symbols in GLib compatibility layer (3fecd73) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/20 2024-01-25 Vlad Nirky * Translated using Weblate (French) (90d9ee8) 2023-12-31 phlostically * Translated using Weblate (Esperanto) (1ed1f30) 2023-12-27 Weblate * Added translation using Weblate (Chinese (Simplified) (zh_LATN@pinyin)) (a9932b8) * Added translation using Weblate (Tamil (Sri Lanka)) (387fada) * Added translation using Weblate (German (Walser)) (6663c9a) * Added translation using Weblate (Meadow Mari) (496eaca) * Added translation using Weblate (Crimean Tatar) (79c2d44) * Added translation using Weblate (Chuvash) (a9df2ee) * Added translation using Weblate (Silesian) (948cacc) * Added translation using Weblate (Latin) (6d23f4a) * Added translation using Weblate (Venetian) (fad8be4) * Added translation using Weblate (Ossetian) (68ca95f) * Added translation using Weblate (Sami (Northern)) (2e6ef7f) * Added translation using Weblate (Greenlandic) (4c7b9f6) * Added translation using Weblate (Assamese) (79ae4f7) * Added translation using Weblate (Haitian) (878147c) * Added translation using Weblate (Cornish) (2c5ccf6) * Added translation using Weblate (Frisian) (dae609e) * Added translation using Weblate (Kashubian) (d2d1f62) * Added translation using Weblate (Aragonese) (43003c0) * Added translation using Weblate (Tibetan) (ae7b715) * Added translation using Weblate (Filipino) (b2fb2bc) * Added translation using Weblate (Tigrinya) (3dbd226) * Added translation using Weblate (Tatar) (36bcaad) 2023-12-26 Weblate * Added translation using Weblate (Italian (it_CARES)) (1bd76b0) 2023-11-29 bittin1ddc447d824349b2 * Translated using Weblate (Swedish) (9edf846) 2023-10-17 Weblate * Added translation using Weblate (Xhosa) (6c23720) * Added translation using Weblate (Manx) (57e50b3) * Added translation using Weblate (Corsican) (a2451ef) * Added translation using Weblate (Chechen) (dbea6e6) * Added translation using Weblate (Wolof) (87edff3) * Added translation using Weblate (Kurdish (Central)) (9a17fa4) * Added translation using Weblate (Uzbek) (2ca8a6b) * Added translation using Weblate (Kyrgyz) (4e5c86a) * Added translation using Weblate (Kurdish) (41887f1) * Added translation using Weblate (Sotho (Southern)) (6e0d8ab) * Added translation using Weblate (Norwegian Nynorsk) (47078e8) * Added translation using Weblate (Swahili) (8baa083) * Added translation using Weblate (Afrikaans) (e9c883c) * Added translation using Weblate (Marathi) (7b9e39d) * Added translation using Weblate (Odia) (ee680ee) * Added translation using Weblate (Bengali) (8d648fe) 2023-10-11 phlostically * Translated using Weblate (Esperanto) (1973973) 2023-10-15 Mike Gabriel * Release 1.1.0 (d3c42fb) (tag: 1.1.0) 2023-09-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/17-content-store' into 'main' (0ac5130) * src/com/lomiri/content/transfer.cpp: Grammar fixes in comments, don't use emojis in code. (cbcd439) * tests/acceptance-tests/app_hub_communication_store_migration.cpp: White-space clean-up. (406989c) 2023-09-12 Ratchanan Srirattanamet * debian/control: fix Depends of glib library dev pkg (2b82781) * src: fix compatibility of glib library (0f99327) 2023-09-07 Ratchanan Srirattanamet * CMakeLists.txt, debian/changelog: bump minor version for new API (08c712a) * Make content-hub service specify the store path, not the client (d954707) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/17 Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/18 Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/1 2023-08-31 Ratchanan Srirattanamet * detail/service: prevent app ID spoofing (f95be69) 2023-08-20 Milan Korecky * Translated using Weblate (Czech) (f5b3698) 2023-07-28 Milan Korecky * Translated using Weblate (Czech) (1c380af) 2023-06-30 Rudra Harsh V.Singh * Translated using Weblate (Sanskrit) (c1f3e5d) 2023-06-30 Weblate * Added translation using Weblate (Sanskrit) (b22161e) 2023-06-27 Rudra Harsh V.Singh * Translated using Weblate (English (Canada)) (1239b2c) * Translated using Weblate (Hindi) (5a12c33) 2023-06-02 Ratchanan Srirattanamet * Merge branch 'personal/gberh/doc-cleanup' into 'main' (2214fad) 2023-03-21 Guido Berhoerster * Check whether qdoc actually works (9821277) * Replace link to Launchpad with one to the project page (9af55fa) * Replace obsolete qdoc markup (a3e7281) 2023-04-16 Lu Xu * Translated using Weblate (Chinese (Simplified)) (484579f) 2023-04-11 Temuri Doghonadze * Translated using Weblate (Georgian) (9e48b0a) * Translated using Weblate (Georgian) (f0ebd5a) 2023-04-04 gallegonovato * Translated using Weblate (Spanish) (c1b271d) 2023-03-30 Sylke Vicious * Translated using Weblate (Italian) (608e0c6) 2023-03-30 Jozef Mlich * Translated using Weblate (Czech) (8e4ecbb) 2023-03-30 Sylke Vicious * Translated using Weblate (Italian) (38197a1) 2023-02-28 Luna Jernberg * Translated using Weblate (Swedish) (6fdcf79) 2023-02-26 Luna Jernberg * Translated using Weblate (Swedish) (d2f7720) 2023-02-20 Sergii Horichenko * Translated using Weblate (Ukrainian) (c6d06e3) 2023-02-21 Heimen Stoffels * Translated using Weblate (Dutch) (a22caa7) 2023-02-14 Mike Gabriel * Release 1.0.2 (529644e) (tag: 1.0.2) 2023-02-13 Adolfo Jayme Barrientos * Translated using Weblate (Spanish) (8a1b56e) 2023-02-13 Jami Kettunen * Merge branch 'personal/peat-psuwit/ubuntu-compat-symlink-method' into 'main' (a5b87e4) 2023-02-13 Ratchanan Srirattanamet * tests/qml-tests: adjust test to catch usage of var type in compat mode (27126ae) * import: switch compat layer to use symlink-to-main-plugin method (ef8c3f0) Fixes: https://gitlab.com/ubports/development/core/content-hub/-/issues/13 2023-02-13 Mike Gabriel * Merge branch 'personal/peat-psuwit/default-peer-gallery' into 'main' (bddf364) 2023-02-14 Ratchanan Srirattanamet * gschema: fix default peer (Gallery)'s app id (7459b23) 2023-02-11 Sergii Horichenko * Translated using Weblate (Ukrainian) (985e39e) 2023-02-05 Mike Gabriel * Release 1.0.1 (56e4d78) (tag: 1.0.1) * d/changelog: Mark as released, this was forgotten during previous release. (27a8093) 2023-02-03 Sergii Horichenko * Translated using Weblate (Ukrainian) (4d4ecc5) 2023-01-31 Mike Gabriel * Translated using Weblate (German) (6343f47) 2023-01-30 Ivo Xavier * Translated using Weblate (Portuguese) (f0bf0a1) 2023-01-29 gnu-ewm * Translated using Weblate (Polish) (1be90a2) 2023-01-30 Mike Gabriel * Merge branch 'personal/gberh/dh-12' into 'main' (c4d00c5) 2023-01-30 Guido Berhoerster * Update to dh version 12 (70040dc) 2023-01-17 Daniel Frost * Translated using Weblate (German) (29adf6e) 2023-01-14 Dan * Translated using Weblate (Ukrainian) (8bcb4d4) 2023-01-13 Sergii Horichenko * Translated using Weblate (Russian) (b79fb56) 2023-01-13 Ivo Xavier * Translated using Weblate (Portuguese) (6fc8420) 2023-01-13 Timothy G * Translated using Weblate (French) (fea442f) 2023-01-12 Ratchanan Srirattanamet * Merge branch 'main_-_addcopy' into 'main' (3563de0) 2022-12-21 Lionel Duboeuf * Expose copy() method, mark move() method deprecated (311e35d) * Bump std c++ version to 17. (d472f25) 2023-01-11 Dan * Translated using Weblate (Ukrainian) (037f747) 2023-01-09 Mike Gabriel * Merge branch 'deprecations' into 'main' (e9e1556) 2023-01-07 Luca Weiss * Replace deprecated QRegExp with QRegularExpression (54c2558) * Replace deprecated QStandardPaths::DataLocation (35cb908) 2023-01-06 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (058c0a7) 2023-01-05 Hosted Weblate * Update translation files (1b9aec5) 2023-01-05 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (86dcb1e) 2023-01-05 Guido Berhoerster * Merge branch 'personal/sunweaver/modernize-i18n' into 'main' (3119974) 2023-01-04 Mike Gabriel * po/: Modernize i18n. (f8c1edb) 2023-01-04 Anonymous * Translated using Weblate (Chinese (Min Nan)) (a9a40c8) * Translated using Weblate (Kurdish (Southern)) (1a9da3e) * Translated using Weblate (Kurdish (Northern)) (1279d17) * Translated using Weblate (Shan) (aff3358) * Translated using Weblate (Bemba) (73e3b4e) * Translated using Weblate (Dhivehi) (a06ab41) * Translated using Weblate (Nyanja) (065d86a) * Translated using Weblate (Macedonian) (e526aa2) * Translated using Weblate (Maori) (9d40635) * Translated using Weblate (Malayalam) (55a9d10) * Translated using Weblate (Friulian) (f525008) * Translated using Weblate (Pashto) (91f7ef0) * Translated using Weblate (Telugu) (f6f48ee) * Translated using Weblate (Turkmen) (5bbe273) * Translated using Weblate (Lao) (e2b1166) * Translated using Weblate (Tetum) (d1ec682) * Translated using Weblate (Ido) (6cb52b5) * Translated using Weblate (Scots) (0f3261f) * Translated using Weblate (Franco-Provençal) (a2594a4) * Translated using Weblate (Sindhi) (711c91e) * Translated using Weblate (Pampanga) (7ad2f84) * Translated using Weblate (Malagasy) (b7b86c8) * Translated using Weblate (Kabyle) (b7fde2c) * Translated using Weblate (Luxembourgish) (2d3e82d) * Translated using Weblate (Lojban) (62e3947) * Translated using Weblate (French (Switzerland)) (3f680b7) * Translated using Weblate (Tajik) (2dc4bb1) * Translated using Weblate (Oromo) (11e4523) * Translated using Weblate (Nepali) (b5a1492) * Translated using Weblate (Burmese) (7d5a98d) * Translated using Weblate (Lingala) (10723d6) * Translated using Weblate (Icelandic) (3a68f72) * Translated using Weblate (Estonian) (246ff8a) * Translated using Weblate (Bulgarian) (3b3b33b) 2023-01-04 Mike Gabriel * README.md: Add reference to hosted.weblate.org. (bdb3550) * README -> README.md (convert to markdown). (72f4930) * Revert "Deleted translation using Weblate (Chinese (Traditional, Hong Kong))" (98e79b0) * Revert "Added translation using Weblate (Chinese (Traditional, Hong Kong))" (2efea82) 2023-01-04 Weblate * Added translation using Weblate (Chinese (Traditional, Hong Kong)) (9ec8da1) 2023-01-04 Mike Gabriel * Deleted translation using Weblate (Chinese (Traditional, Hong Kong)) (f9a2cca) 2023-01-04 Weblate * Added translation using Weblate (Chinese (Min Nan)) (066ea45) * Added translation using Weblate (Kurdish (Southern)) (ce8d624) * Added translation using Weblate (Kurdish (Northern)) (d379d4f) * Added translation using Weblate (Shan) (dcaa6fd) * Added translation using Weblate (Bemba) (a73ff26) * Added translation using Weblate (Dhivehi) (4aa480e) * Added translation using Weblate (Bengali (Bangladesh)) (5f01158) * Added translation using Weblate (Nyanja) (e533a6c) * Added translation using Weblate (English (Canada)) (8d0a4e8) * Added translation using Weblate (Sardinian) (c435a9c) * Added translation using Weblate (English (United States)) (c9616e0) * Added translation using Weblate (Georgian) (ae3904b) * Added translation using Weblate (Macedonian) (9ce194e) * Added translation using Weblate (Maori) (014626c) * Added translation using Weblate (Malayalam) (6d8801f) * Added translation using Weblate (Friulian) (52311e3) * Added translation using Weblate (Hindi) (c4823aa) * Added translation using Weblate (Armenian) (5dfaf64) * Added translation using Weblate (Pashto) (d1eb47c) * Added translation using Weblate (Telugu) (9791c20) * Added translation using Weblate (Turkmen) (bb0dafa) * Added translation using Weblate (Lithuanian) (690fafc) * Added translation using Weblate (Lao) (244dc10) * Added translation using Weblate (Gujarati) (83716c3) 2023-01-03 Muhammad * Translated using Weblate (Urdu) (a75042d) 2023-01-03 Weblate * Added translation using Weblate (Urdu) (103a045) * Added translation using Weblate (Tetum) (e657d92) * Added translation using Weblate (Ido) (5fad621) * Added translation using Weblate (Scots) (6666cfb) * Added translation using Weblate (Franco-Provençal) (d924e98) * Added translation using Weblate (Sindhi) (4ebc382) * Added translation using Weblate (Pampanga) (1d17003) * Added translation using Weblate (Malagasy) (fcbd713) * Added translation using Weblate (Kabyle) (56cbcb7) * Added translation using Weblate (Luxembourgish) (1d6c5ac) * Added translation using Weblate (French (Switzerland)) (0ea82d3) * Added translation using Weblate (Lojban) (70d6b1f) * Added translation using Weblate (Tajik) (b68b46d) 2023-01-03 Hosted Weblate * Update translation files (232b24d) 2022-11-23 Ratchanan Srirattanamet * Merge branch 'click-support' into 'main' (cda9c65) 2022-11-22 Guido Berhoerster * Add back click hook (b0dba19) 2022-10-27 Mike Gabriel * Merge branch 'fix_build' into 'main' (0d90df2) 2022-09-25 Sergey Chupligin * Fixup build on Qt 5.15 (561ec6f) 2022-08-01 Ratchanan Srirattanamet * Merge branch 'fix-dbus-apparmor-check' into 'main' (a35cd75) 2022-08-01 Guido Berhoerster * Allow DBus activation by AppArmor-confined apps (4ed728c) 2022-07-19 Mike Gabriel * Merge branch 'personal/peat-psuwit/ubuntu-compat-import' into 'main' (667a2aa) 2022-06-03 Ratchanan Srirattanamet * import: add deprecation warning for Ubuntu.* (5f9b784) 2022-04-28 Ratchanan Srirattanamet * import/, tests/: add Ubuntu.Content compatibility layer (b0ea7af) Fixes: https://gitlab.com/ubports/core/content-hub/-/issues/6 2022-06-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/relpath-in-API-docs' into 'main' (0dacf3d) 2022-05-03 Ratchanan Srirattanamet * Merge branch 'fix-url-dispatcher-path' into 'main' (3f6cfa4) 2022-05-03 Guido Berhoerster * Install URL schema file to lomiri-url-dispatcher path (12c1aca) 2022-02-21 Ratchanan Srirattanamet * Merge branch 'focusinfo-rename' into 'main' (ae86962) 2022-02-14 Guido Berhoerster * Add missing build dependency on graphviz (2c2b5ad) * Rename com.canonical.Unity.FocusInfo to com.lomiri.Shell.FocusInfo (823a326) 2022-02-02 Ratchanan Srirattanamet * doc/Doxyfile: make docs reproducible & nicer (89fee74) * Merge branch 'mr/add-dummy-keywords-key-to-desktop-files' into 'main' (df3b836) 2022-02-02 Mike Gabriel * Silence lintian, add dummy Keywords= key. (ceade0c) 2021-12-22 Dalton Durst * Merge branch 'personal/mariogrip/sync-quit' into 'main' (231c081) 2021-12-17 Marius Gripsgard * hub: Make service->quit() synchronous (e9006bc) 2021-12-02 Dalton Durst * Merge branch 'personal/peat-psuwit/gitignore-obj' into 'main' (bdc1da4) (tag: 1.0.0) * Merge branch 'personal/peat-psuwit/Wignored-qualifiers' into 'main' (6ee4e98) 2021-12-02 Ratchanan Srirattanamet * .gitignore: ignore obj-*/ (8b477c2) * Remove -Wignored-qualifiers exception after fixing lal (33d9297) 2021-11-24 Marius Gripsgard * Merge branch 'pr/x-canonical-to-x-ayatana' into 'main' (0c826e2) 2021-10-26 Robert Tari * Renaname x-canonical properties (90903ae) 2021-05-26 Rodney * Merge branch 'mr/clean-up-bzr-cruft' into 'main' (977b750) 2021-05-26 Mike Gabriel * .bzr-builddeb/default.conf: Drop Bazaar cruft, not required anymore. (15ed8ae) 2021-05-15 Rodney * Merge branch 'personal/peat-psuwit/fix-libcontent-hub0' into 'main' (0c1ba2d) 2021-05-15 Ratchanan Srirattanamet * d/control: fix libcontent-hub0 dependencies (26ee958) 2021-05-01 Marius Gripsgard * Merge branch 'personal/mariogrip/focal_-_lomiri-rename' into 'main' (b4fc11a) 2021-04-16 Marius Gripsgard * Release: v1.0.0 (5b55a89) 2021-05-01 Marius Gripsgard * tests: Change exit to _exit (b52212e) * docs: Add back copyright and add ubports copyright (0134d5f) 2021-04-16 Marius Gripsgard * Build without libertine for now (e85ff82) 2021-04-27 Ratchanan Srirattanamet * d/*: add a migration script for renamed gsettings (a2ea63a) * d/*: rename the qml-module package to be consistent with the guideline (498e8a4) 2021-04-17 Marius Gripsgard * apparmor: Return unconfined on error when trying to find appid using aa (4a71cc7) 2021-04-16 Marius Gripsgard * tests: Skip some tests that fails (18808c5) * tests: Fix incorrect expected states (b930c08) * test: Don't quit hub service before test is done (d9e7aeb) 2021-04-27 Ratchanan Srirattanamet * tests: signal readiness after the event loop has started (e0cab46) 2021-04-16 Marius Gripsgard * hub: Print a warning if we have dbus errors (7832e53) * tests: Make sure to report failure from child process (10a7103) * Debian: don't run tests in parallel, dbus-test-runner does not like it (ab8aa1d) * Debian: Add libgtest-dev as dep (91393a6) * Debian: Build in parallel (14ee9b2) * Debian: Add missing dep (libdbus-1-dev) (dfe4b00) * Debian: Use default test function provided by cmake (7a44b12) * git: Add gitignore (9d9dc83) * debian: Move jenkinsfile to debian folder (bbfd091) * qml: Don't crash if we dont have a valid transfer pointer (1dedd87) * build: Enable -Wall -Wextra -pedantic and fix issues it found (75c4ffd) * Replace nih-dbus with lomiri-api (f72ff5a) * cmake: Move enable_testing to root cmakefile (3e0c439) * po: Rename po files (4f8f9f4) * tests: X-Ubuntu-Touch has been renamed to X-Lomiri-Touch (7cca8bf) * examples: qml: UbuntuShape has been renamed to LomiriShape (8283c66) * debian: Cleanup control file and switch urls and maintainer to ubports (b456721) * debian: Switch to lomiri ui toolkit (cbca371) * debian: Switch to lomiri download manager (ebe7917) * debian: Switch to lomiri app launch (50fba1b) * src: Rename namespace and headers to lomiri (9c1a972) * gsetting: Rename gsettings (b30dd98) * dbus: Rename dbus interface to lomiri namespace (3468c6e) * qml: Inital rename to lomiri of qml part (0967efa) 2021-04-17 Marius Gripsgard * Merge remote-tracking branch 'old-origin' into HEAD (7083064) 2021-04-06 Marius Gripsgard * Merge branch 'lomiri-main' into 'main' (5b8cac5) 2021-04-05 Luca Weiss * Rename to Lomiri (4630d79) 2020-10-07 Marius Gripsgard * Add option to build without libertine (#14) (676639a) 2019-01-29 Luca Weiss * Migrate to cmake-extras (#9) (6616c1f) 2018-10-04 Luca Weiss * Move find Gtest/GMock into tests CMake file (#7) (73d9f6f) 2018-06-09 Ivan Semkin * Fix build with Qt 5.11_beta3 (dropping qt5_use_modules) (af2ce86) 2021-02-05 Kugi Eusebio * Fixed TypeError errors (#17) (a610450) 2021-01-07 Rodney * Fixes for Qt 5.12 (#16) (9a56dc8) 2020-10-07 Marius Gripsgard * Add option to build without libertine (#14) (7554e67) 2017-03-15 Ken VanDine * Install an empty dir for the snap interface hook to install peers. (1d54c20) * removed unused filed (0ad1572) * Added /var/cache/content-hub/peers/ to the list of directories watched for peers. The snap interface hook will install them there. (ad130b7) 2017-03-08 Ken VanDine * Rename the Hook class to RegistryUpdater (8cd915f) * Removed some debugging (f3e0803) * Removed click usage in the helper and dropped the depends (472a932) * Fixed packaging to deal with the removal of the click hook (188b640) * Added QFileWatcher to watch for peers to be installed/removed (8552df9) 2017-03-07 Ken VanDine * Don't quit after refreshing registry (d62e95a) * Removed the click hook and check for registered peers on service startup (5e021b6) 2019-12-16 Alberto Mardegan * Build: allow building with crossbuilder (642f453) 2019-01-11 Joan CiberSheep * App Grid Centered (#12) (f0d91e8) 2018-11-18 Joan CiberSheep * Bumped import versions (#8) (7482bb8) 2018-06-16 Marius Gripsgard * Merge pull request #6 from ubports/xenial_-_test6 (2eb1e90) 2017-03-09 William Hua * Prevent crash when creating a paste with a bogus app id (LP: #1655105) (aedd975) 2017-12-28 Marius Gripsgard * Update Jenkinsfile (19614fc) 2017-10-13 Marius Gripsgard * Imported to UBports (114abe8) 2016-12-01 Bileto Bot * Releasing 0.2+17.04.20161201.1-0ubuntu1 (dd19978) 2016-12-01 William Hua * Add GLib bindings (LP: #1624437) (LP: #1624437) (18004f3) * Group the commands better (7ae24f0) * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) (f37ae14) 2016-12-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (555dc45) 2016-11-28 Bileto Bot * Releasing 0.2+17.04.20161128-0ubuntu1 (def66c2) 2016-11-28 Ken VanDine * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) (ced71ee) * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (f709b82) 2016-11-23 William Hua * Merge lp:content-hub (09614f0) 2016-11-23 Ken VanDine * Use dbus-test-runner for tests by default (d6a1a30) 2016-11-21 William Hua * Merge lp:~attente/content-hub/content-hub-glib (cf1cb03) * Merge lp:~ken-vandine/content-hub/dbus_test_runner (82ba1a8) 2016-11-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (7722b88) 2016-11-10 William Hua * Use test harness (abd7132) 2016-11-09 William Hua * Remove g_assert_cmpmem (6a83339) * glib_test.c -> glib_test.cpp (eda67e8) * Define g_assert_cmpmem () if it doesn't exist (GLib < 2.46) (8184c53) * Include gio/gio.h in test (c3e2c8d) 2016-11-07 Bileto Bot * Releasing 0.2+17.04.20161107-0ubuntu1 (cccf53f) 2016-11-07 Ken VanDine * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL (06a32d0) * Catch the exception through creating the ual::Application (2aa67a2) 2016-11-04 Ken VanDine * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL (3faf9cf) 2016-11-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (bf74a37) 2016-11-02 William Hua * Remove autocleanup generation (doesn't exist on Xenial) (dfe4c4e) * Add GLib and GIO include directories (33a97a4) * Merge trunk (cfa2742) 2016-10-31 William Hua * Add tests for GLib bindings (64ab9ce) 2016-10-30 William Hua * Add GLib bindings (LP: #1624437) (8b66a05) 2016-10-26 Bileto Bot * Releasing 0.2+17.04.20161026-0ubuntu1 (0e00a31) 2016-10-26 Ken VanDine * Use UAL to get iconPath instead of parsing the desktop file ourselves (d1983cd) * Use aboutToQuit to handle taking down the interface (ce2bea8) * fixed bad merge (ab2e6d6) 2016-10-25 Ken VanDine * Merged trunk (c460978) 2016-10-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (98a4004) 2016-09-23 Ken VanDine * Fixed logging (49e385a) * Use UAL to set the peer name property (83bdd81) * Don't attempt to build the iconPath when run with CONTENT_HUB_TESTING set (1275381) 2016-09-22 Ken VanDine * dropped legacy property (1777c06) * Use UAL to get iconPath instead of parsing the desktop file ourselves (d836397) 2016-09-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d0a6c00) 2016-09-14 Bileto Bot * Releasing 0.2+16.10.20160914-0ubuntu1 (75316f6) 2016-09-14 Ken VanDine * Build with hardening=+all (LP: #1597453) (b4c1106) * Build with hardening=+all (e0bd50f) 2016-09-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3467545) 2016-09-02 Bileto Bot * Resync trunk. (d1750d2) 2016-09-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (408dcde) 2016-08-30 Bileto Bot * Releasing 0.2+16.10.20160830-0ubuntu1 (de8b40f) 2016-08-30 Florian Boucault * Fixes for crossbuilding. (69bdc59) 2016-08-30 Bileto Bot * Pasteboard implementation (548de1c) 2016-08-25 Ken VanDine * Daniel d'Andrada 2016-08-24 Improve PasteFormatsChanged (e2d5f8b) 2016-08-25 Bileto Bot * Releasing 0.1+16.10.20160825-0ubuntu1 (aa31278) 2016-08-25 Ken VanDine * Added isolation-machine to test restrictions as these tests need a working upstart user session. (c7275f8) * Disable the autopkgtests until we figure out how to run an upstart user session (4bfa0c2) 2016-08-25 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (91bdbc8) 2016-08-24 Daniel d'Andrada * Improve PasteFormatsChanged (db6fd1b) 2016-08-24 Bileto Bot * Resync trunk. (28a3491) 2016-08-24 Ken VanDine * Added isolation-machine to test restrictions as these tests need a working upstart user session. (57c59f0) * Daniel d'Andrada 2016-08-23 Authenticate using surface ids instead of process ids (419f11c) * merged trunk (33b4332) 2016-08-23 Daniel d'Andrada * Authenticate using surface ids instead of process ids (d6301f3) 2016-08-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2ab78a9) 2016-08-22 Bileto Bot * Releasing 0.1+16.10.20160822-0ubuntu1 (8db4a48) 2016-08-22 Ted Gould * No change rebuild for UAL ABI change (fef830e) 2016-08-19 Florian Boucault * Merged from trunk (dbfea58) * Better conditional plugins.qmltypes (c91160e) 2016-08-09 Bileto Bot * Releasing 0.1+16.10.20160809-0ubuntu1 (9d8118f) 2016-08-09 Ken VanDine * build dep on qttools5-dev-tools for qdoc (20b033c) 2016-08-08 Ted Gould * No change rebuild (e91b727) 2016-08-03 Ken VanDine * Make app_id matches non-fatal for CreatePaste (dfa6fda) * Ported MimeDataSerialization from qtmir (d373bb5) 2016-08-02 Ken VanDine * Updated version (f41ff6b) 2016-08-01 Daniel d'Andrada * Some changes and clean up around the requestors' app_id (961d915) * merge lp:~ken-vandine/content-hub/pasteboard (20968ad) 2016-08-01 Ken VanDine * removed unneeded handle_pastes (d5854c0) * Return a bool from CreatePaste and don't register object path during CreatePaste (8429290) * Don't register Paste object path when requesting a paste, we control access to that via isPidFocus from Unity8 (85b0eeb) * Don't check isPidFocused from Unity8 while under testing (f824aad) * Remove public API state from Paste (4fda3fe) 2016-07-29 Ken VanDine * Limit stack size to 5 (a43e90c) 2016-07-29 Daniel d'Andrada * Keep only the most recent pastes (674691a) 2016-07-29 Ken VanDine * Only send paste to an app that is currently focused, thanks to Daniel d'Andrada (685f2bd) * spelling (8b81606) 2016-07-29 Daniel d'Andrada * Only send paste to an app that is currently focused (337d684) * merge lp:~ken-vandine/content-hub/pasteboard (500478e) 2016-07-29 Ken VanDine * Only check if the appId matches for creating pastes (1c5773c) 2016-07-28 Ken VanDine * Fix app_id_matches() (92b6276) 2016-07-28 Daniel d'Andrada * Fix app_id_matches() (79dfbea) 2016-07-28 Ken VanDine * build dep on qttools5-dev-tools for qdoc (95e95ed) 2016-07-28 Daniel d'Andrada * merge lp:~ken-vandine/content-hub/pasteboard (7b1f855) 2016-07-27 Ken VanDine * explicitly build dep on qtbase5-dev-tools for qdoc (f42a00a) * Version bump to reflect Pasteboard implemention (9b00e66) * Merged fixes from dandrader (ef84609) 2016-07-26 Daniel d'Andrada * Fix unnecessary round trip and memory leak when creating a paste (d3f2ee5) 2016-07-25 Daniel d'Andrada * merge lp:~ken-vandine/content-hub/pasteboard (d505d8e) 2016-07-25 Ken VanDine * Added pasteboardChanged signal emitted when the stack has changed (1fbc9fe) * merged trunk (4a89364) 2016-07-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (51fe763) 2016-07-21 Ken VanDine * Fix from Daniel d'Andrada for memory leak in cuc::Hub::createPaste (508059d) 2016-07-21 Daniel d'Andrada * Fix memory leak in cuc::Hub::createPaste (62bc6df) 2016-07-21 Ken VanDine * Merged API improvements from Daniel d'Andrada, including making createPaste async (120ed89) * merged trunk (e339b1f) 2016-07-21 Daniel d'Andrada * Document data format used in serialization (387836f) * Make cuc::Hub::createPaste async and rename methods to Qt coding style (camelCase) (ad7a188) * WIP (52df987) * merge lp:~ken-vandine/content-hub/pasteboard (8b5f417) 2016-07-21 Ken VanDine * Added Hub::pasteFormats property which contains a list of mimetypes available to paste from the pasteboard (9eb85bc) * Dropped the Q_INVOKABLE from the new function (c4413c5) * removed unused PasteAdded signal (e7ce03f) * Added Hub::pasteFormats property which contains a list of mimetypes available to paste from the pasteboard (5f503e9) * removed unused uuid (35ece9c) * Verify app_id_matches for CreatePaste as well (71be230) * refactored a bit to include the mimeData when calling CreatePaste, cuts down a dbus round trip (fb6dc01) 2016-07-18 Ken VanDine * removed commented out line (daa486b) * Use QMimeData for the Paste payload (be4b864) 2016-07-15 Bileto Bot * Releasing 0.1+16.10.20160715-0ubuntu1 (dc7e44b) 2016-07-15 Ken VanDine * Filter current app out of the peer model (LP: #1603508) (65f59f3) * Filter current app out of the peer model (066d492) 2016-07-08 Ken VanDine * Don't warn on empty pasteboard (7cc238a) * Don't block on returning paste if it doesn't exist (b379d0a) 2016-07-06 Florian Boucault * remove condition (8d8d35d) * do not remove condition (aab135f) 2016-07-05 Florian Boucault * Fixes for crossbuilding. (b11689a) 2016-07-05 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (73b26d6) 2016-06-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1d57dcd) 2016-06-10 Bileto Bot * Releasing 0.1+16.10.20160610.2-0ubuntu1 (6846baa) 2016-06-10 Ken VanDine * Ensure all the properties are set when the url is set on a ContentItem (LP: #1571361) (e57283f) * Ensure all the properties are set when the url is set on a ContentItem (dc916b5) 2016-06-10 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1c86a00) 2016-06-09 Ken VanDine * default to running the file copy test except during package build (76aebaa) * Work around issue of charging the transfer when run under sbuild (3988245) * build dep on xvfb for qmltests (c5fab2b) * Use xvfb-run to run qml-tests (fd51c15) 2016-06-07 Ken VanDine * UAL build fixes (25b5859) * Use UAL to ensure the app_id is correct (049b945) 2016-06-02 Ken VanDine * Don't run dbus-test-runner from the package build, the test target does that for us now. (11f4a19) * improved test to use dbus-test-runner via make test (4d6af44) 2016-06-02 Bileto Bot * Releasing 0.1+16.10.20160602-0ubuntu1 (9cf18a6) 2016-06-02 Ken VanDine * Call qmlplugindump with -noinstantiate (098a631) * Removed unused code (216d046) * fixed header (91c8ef1) * Added tests for pasteboard (1547748) * improved logging (b0ee075) * improved logging (b4d5124) 2016-06-01 Ken VanDine * Mangle paste object path based on destination app, this will let us restrict access based on apparmor profile. (8092342) 2016-05-31 Ken VanDine * Drop copy and paste handlers, we don't need them (8301748) 2016-05-26 Ken VanDine * improved pasteboard examples (2701345) * Added paste_buf_by_id (76aad25) * Added GetLatestPaste and GetPaste (29c2274) * Added copy and paste examples for the pasteboard (ae4ed80) * Fixes for the pasteboard API (fe60be5) 2016-05-25 Ken VanDine * Added Paste dbus backend to the hub client API (4814994) 2016-05-23 Ken VanDine * Added Paste class (f277da9) 2016-05-18 Ken VanDine * Call qmlplugindump with -noinstantiate (4d5ce81) * merged trunk (58b8075) * Added paste handler (9e7a812) * Call qmlplugindump with -noinstantiate (5ae5958) 2016-04-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (70a0041) 2016-03-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d0df9ea) 2016-03-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (816bacc) 2016-03-09 CI Train Bot * Releasing 0.1+16.04.20160309-0ubuntu1 (0b36f8f) 2016-03-09 Michael Sheldon * Fix documentation for toDataURI method Fixes: #1555116 Approved by: Ken VanDine (1f68c50) * Fix documentation for toDataURI method (8197bd2) 2016-03-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (a77bc93) 2016-02-06 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d16ab8b) 2016-01-29 CI Train Bot * Releasing 0.1+16.04.20160129.1-0ubuntu1 (ba4a955) 2016-01-29 Ken VanDine * Combine share and import peers Fixes: #1539674 Approved by: PS Jenkins bot (4fb33d5) * all isn't valid for shares (43e47e5) * define peers (6575bbc) * Revert consolidating share and export but add type "all" and legacy apps to share peers (2311527) * Tagged bug (9c1acfb) * Combine share and import peers (d46439c) 2016-01-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (437044c) 2015-12-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (9976767) 2015-12-16 CI Train Bot * Releasing 0.1+16.04.20151216.1-0ubuntu1 (d6aaa51) 2015-12-16 Michael Sheldon * Set destination app-id as download metadata Approved by: Ken VanDine, PS Jenkins bot (e22c990) 2015-12-08 Michael Sheldon * Add build dependency on qtdeclarative5-ubuntu-ui-toolkit-plugin (96938a9) 2015-12-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (60ef793) 2015-11-24 CI Train Bot * Releasing 0.1+16.04.20151124-0ubuntu1 (ad7345b) 2015-11-24 Ken VanDine * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter (cc8d54c) 2015-11-17 Ken VanDine * added music to registered types (fc28020) 2015-11-12 Ken VanDine * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter (45cde33) 2015-11-06 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (39c57c6) 2015-10-29 CI Train Bot * Releasing 0.1+16.04.20151029.1-0ubuntu1 (51e6d72) 2015-10-29 Ken VanDine * Use libertine to query for apps installed in containers Approved by: PS Jenkins bot (39a0ea8) * use ubuntu_app_launch_application_info to get the dir and filename for desktop files (59bb6b1) * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 (296f5f1) * Cleaned up usage of appinfo (0b9dea2) * Fixed icon handling (ca1ec4d) 2015-10-28 Ken VanDine * improved icon handling (8e8406e) * handle using the dir for iconName (c087e4d) * Handle charging downloads when dismissed, just don't invoke the app. This is useful when handling legacy apps. (2a52db1) 2015-10-27 Ken VanDine * added debugging log for peer icons (747b466) 2015-10-23 Ken VanDine * fixed FTBFS (cdebd35) * Transfer content destined for legacy apps to ~/shared inside the container (ed18d6a) * Removed whitespace (5fd28bc) * removed debug output (16beee1) 2015-10-21 Ken VanDine * Don't include the legacy apps as sources (c8f49ad) * Avoid file name conflicts when copying data for transfer to legacy apps (8b4c801) 2015-10-20 Ken VanDine * added peer_is_legacy to mocks (c5ec594) * Added legacy peer handling, work in progress (d766d34) 2015-10-16 Ken VanDine * use a default xorg icon for legacy apps (1f6f111) * fallback iconName without leading dir (983c353) * set legacy peer when in a libertine container and use a generic icon for now (01162d2) * added legacy property to peer (9cdd8ed) 2015-10-15 Ken VanDine * added debug output for iconPaths (415888b) 2015-10-14 Ken VanDine * merged appinfo branch (3e119a2) * used defines for keys (de42dc9) * used defines for keys (b927a2b) * Added FIXME for nodisplay and shownin (21300c4) * use a g_key_file for looking up mimetype (fa21a2e) * added more debug output (334ae51) * set the themeSearchPath to include the libertine containers (9dfd4f5) 2015-09-30 Ken VanDine * Merged appinfo branch (9027bf3) 2015-09-29 Ken VanDine * Fallback to loading the desktop file as a g_key_file if we fail to get a valid GAppInfo.; Added dbus API for creating a peer to properly marshal metadata and icon (ddcbabd) 2015-09-25 Ken VanDine * added more logging to peer (9eb1ec6) 2015-09-24 Ken VanDine * Ensure we don't query for appinfo on the client side (42033c6) * merged picker_wordwrap (4ebe94f) * Increase the delegateHeight to allow for 2 lines of text (4b28be7) * merged appinfo_peers (c470493) * merged picker_wordwrap (2e37f72) * wrapMode: Text.Word and added maximumLineCount of 2 (6cb1298) * merged picker_wordwrap (7b6d49a) * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 (d7d67a2) * merged trunk (7e46a92) * merged trunk (d18aa9c) * Removed debug output and special handling for the firefox icon (4dad1c7) 2015-09-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (91d6f9b) 2015-09-24 CI Train Bot * Resync trunk. (bc89b03) 2015-09-23 Ken VanDine * Set themeSearchPaths for QIcon (9f29bd5) 2015-09-23 Michael Sheldon * Merge from trunk (c65a7da) 2015-09-23 Ken VanDine * Use libertine to query for apps installed in containers. Also build with QT_NO_KEYWORDS, to fix build issues when including libertine.h (d266575) 2015-09-23 Michael Sheldon * Set correct key for DownloadManager metadata app id (f2baaae) 2015-09-22 Ken VanDine * use ubuntu_app_launch_application_info to get the dir and filename for desktop files (b83394b) 2015-09-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (5f4a134) 2015-09-22 CI Train Bot * Releasing 0.1+15.10.20150922-0ubuntu1 (b9306a9) 2015-09-22 Ken VanDine * Added ContentPeerPicker13.qml for 1.3 imports (8e3dd8a) 2015-09-21 Ken VanDine * removed hardcoded color (99b623c) * Major version bump (6d3c1b6) * merged trunk (fa31232) * Updated for UbuntuShape deprecations (1d30a1c) * dropped the title property added in the previous commit (c771af9) 2015-09-18 Michael Sheldon * Set destination app-id as download metadata (12d7c5c) 2015-09-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (26aeb7d) 2015-09-15 Ken VanDine * Added a read-only property to ContentPeerPicker to expose the title (441ef25) 2015-09-14 Ken VanDine * Added ContentPageHeader (copied from webbrowser-app) to provide our own header (a7dacbc) * merged trunk (8f97a70) 2015-09-09 CI Train Bot * Releasing 0.0+15.10.20150909-0ubuntu1 (06cf276) 2015-09-09 Robert Ancell * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used. Approved by: PS Jenkins bot, Ken VanDine (f9ea498) 2015-09-09 Ken VanDine * Fixed crash when the service is passed an invalid type via dbus Fixes: #1472026 Approved by: PS Jenkins bot, Michael Sheldon (f99da83) 2015-09-09 Michael Sheldon * Add an "Undefined" content type to QML bindings so we can avoid making unnecessary peer look ups when the content type hasn't yet been set now that peers can register for Unknown. Approved by: PS Jenkins bot, Ken VanDine (ad3250c) 2015-09-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (db309f4) 2015-09-04 Ken VanDine * Added ContentPeerPicker13.qml for 1.3 imports (4e12465) 2015-09-02 Michael Sheldon * Don't perform a peer look up from QML if the content type hasn't been set yet (350810a) 2015-09-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (05ac974) 2015-08-28 Ken VanDine * Fixed crash when the service is passed an invalid type via dbus (9261656) 2015-08-28 Robert Ancell * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used (a711992) 2015-08-21 CI Train Bot * Releasing 0.0+15.10.20150821.2-0ubuntu1 (fbeabf6) 2015-08-21 Ken VanDine * Don't swallow QEvent::ApplicationDeactivate Fixes: #1485222 Approved by: PS Jenkins bot, Sebastien Bacher, Michael Sheldon (2abf3f7) * generate plugins.qmltypes Fixes: #1483626 Approved by: PS Jenkins bot, Michael Sheldon (9c5bd7b) * added hasPending property on ContentHub Fixes: #1487073 Approved by: PS Jenkins bot, Renato Araujo Oliveira Filho (2245b8a) * warn when we don't call the handler (31bf9b7) * Don't swallow QEvent::ApplicationDeactivate (ffc3d77) * mark hasPending as internal (b31b9a6) * added docstring for hasPending (9df752a) 2015-08-20 Ken VanDine * Added test for has_pending (6969483) * added hasPending property on ContentHub (188a0d3) 2015-08-19 Ken VanDine * build depend on qtdeclarative5-dev-tools for qmlplugindump (456d4b1) * generate plugins.qmltypes (715d66c) 2015-08-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (553ece9) 2015-08-13 CI Train Bot * Releasing 0.0+15.10.20150813-0ubuntu1 (e1cda36) 2015-08-13 Ken VanDine * Fixed property errors in example code Fixes: #1484198 Approved by: Sebastien Bacher, PS Jenkins bot (4fbd2be) * create the local content-hub directory if needed when the hook is run Fixes: #1484184 Approved by: Didier Roche, Sebastien Bacher, PS Jenkins bot (75cb4c9) 2015-08-12 Ken VanDine * merged trunk (cd3cf39) * merged trunk (8a7b40f) * No-change test rebuild for g++5 ABI transition (6770746) * Fixed property errors in docs (950794b) * create the local content-hub directory if needed when the hook is run (95e9ad2) 2015-08-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (b31fed0) 2015-07-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (9a6b4c4) 2015-07-24 CI Train Bot * Releasing 0.0+15.10.20150724-0ubuntu1 (51d5fb8) 2015-07-24 Ken VanDine * No change rebuild for ubuntu-download-manager Approved by: PS Jenkins bot (4b14a43) 2015-07-23 Ken VanDine * No change rebuild for ubuntu-download-manager (60e950e) 2015-07-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8884e49) 2015-07-09 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8429b2a) 2015-07-03 CI Train Bot * Releasing 0.0+15.10.20150703-0ubuntu1 (eaeb49c) 2015-07-03 Ken VanDine * Added ContentType.Events; Added tests for the well known types Fixes: #1464244 Approved by: Michael Sheldon, PS Jenkins bot (4eec9f2) 2015-07-01 CI Train Bot * Releasing 0.0+15.10.20150701-0ubuntu1 (b8cdc0a) 2015-07-01 Renato Araujo Oliveira Filho * Fixed header divider color for ContentPeerPicker11. Fixes: #1470557 Approved by: PS Jenkins bot (f077200) * Fixed header divider color for ContentPeerPicker11. (ada4d2d) 2015-07-01 Ken VanDine * fixed copyright date in new file (931642b) 2015-07-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (04ed80c) 2015-06-29 Ken VanDine * merged trunk (10247d2) * added tests for well known types (e00c5e1) 2015-06-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (492aa27) 2015-06-24 Ken VanDine * Added ContentType.Events (9798659) 2015-06-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (4516eb3) 2015-06-19 CI Train Bot * Resync trunk. (88d0a59) 2015-06-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e4d6bfc) 2015-06-15 CI Train Bot * Releasing 0.0+15.10.20150615.3-0ubuntu1 (a605503) 2015-06-15 Ken VanDine * Added support for registering a source or destination as handlers for Type::all (caaa0ad) * Don't look for default sources for unknown types (e1f1400) * Added != operator for cuc::Type and ensure we don't check gsettings for unknown (6e3d513) * Don't ignore unknown types for source and destinations (010d1e3) * Include ContentType::Unknown in the ContentPeerModel (7de578e) 2015-06-10 Ken VanDine * Moved Type::Known::all to Type::all, it's not a well known type (8d8a97b) * Fixed typo (fcce574) 2015-06-08 CI Train Bot * Releasing 0.0+15.10.20150608-0ubuntu1 (1f1b5b2) 2015-06-08 Ken VanDine * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. Approved by: PS Jenkins bot (881349d) * Added support for registering a source or destination as handlers for Type::all. (1883a5c) 2015-06-05 Ken VanDine * Added autopkgtest to verify that file uris are rejected from url-dispatcher (26f35c6) 2015-06-04 Ken VanDine * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. (1546ae5) 2015-06-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (7cb4f5a) 2015-06-03 CI Train Bot * Releasing 0.0+15.10.20150603-0ubuntu1 (29b2ab6) 2015-06-03 Ken VanDine * SECURITY UPDATE: file disclosure via unchecked AppArmor profile (LP: #1456628) - Don't allow exporting of files that aren't allowed by the source apparmor profile - CVE-2015-1327 Fixes: #1456628 Approved by: Michael Sheldon (f05533c) 2015-06-02 Ken VanDine * removed redundant check for unconfined (4cd1f87) 2015-06-01 Ken VanDine * dropped needs-recommends from the autopkgtest restrictions (4cd4854) * Fixes for the autopkgtests running under dbus (5ad0094) * Added autopkgtest for testing with the apparmor profile (ad4adea) * Added apparmor profile for testing (548613b) 2015-05-29 Ken VanDine * Make the testability exporter peer more useful by adding optional args for url and profile. If the profile is included, the peer will run under that apparmor profile. (50590aa) * Dropped the unit tests for check_profile_read, they aren't very useful and don't behave as expected in a chroot (d162820) 2015-05-28 Ken VanDine * build depend on libapparmor-dev (1584ecb) 2015-05-27 Ken VanDine * better name for bad profile (c5c64dc) * Added unit tests for check_profile_read (5e0ad6d) * Dropped helper for apparmor check, use the aa_query_label API (d11e618) * Dropped profile property from cucd::Transfer and make cucd::Transfer inherit from QDBusContext to get access to message() (bf9c190) 2015-05-26 Ken VanDine * Verify the source app has read access to local files being transferred (66fe722) 2015-05-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6b44481) 2015-05-18 CI Train Bot * Releasing 0.0+15.10.20150518-0ubuntu1 (1b087db) 2015-05-18 Ken VanDine * Added url-dispatcher integration. This allows export and share requests to be initiated by opening a url. Approved by: PS Jenkins bot, Michael Sheldon (e3ea9b6) 2015-05-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (66417da) 2015-05-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (f47900b) 2015-05-15 Ken VanDine * Don't support file transfers via url-dispatcher (5d0170d) 2015-05-14 Ken VanDine * white space cleanup (0fa9982) * Cleaned up appId creation and all text to be set (976701d) 2015-05-13 Ken VanDine * merged trunk (be92519) * tidy up a bit (16ad2cf) * Cleaned up logging to use the same log helper as the service (6ef4828) 2015-05-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (8fa6175) 2015-05-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (f02fccb) 2015-05-04 Ken VanDine * merged latest trunk (486e9f5) 2015-04-30 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (41c6d79) 2015-04-22 CI Train Bot * Releasing 0.0+15.04.20150422-0ubuntu1 (025f1b0) 2015-04-22 Ken VanDine * Don't use a unicode apostrophe in the docs Approved by: Michael Sheldon, PS Jenkins bot (4c47a8c) * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals Approved by: Michael Sheldon, PS Jenkins bot (f42ad64) * Added ContentType.Text as a well known type Added ContentItem.text property for serialized content Fixes: #1430460 Approved by: Michael Sheldon, PS Jenkins bot (8483432) * merged trunk (1985830) * don't split url-dispatcher handling into a separate package (b5e47ec) 2015-04-21 Ken VanDine * merged trunk (dccb538) * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals (c9bc056) * Don't create a new Item to for the copied file, just change the url. (44e470c) * ensure the ContentItem.text property gets set when copying/linking files (a783745) * Don't force streamType to x-url when the url is set, this lets a link shared include text as well. (6069ee2) 2015-04-20 Ken VanDine * hide desktop file (eb4fa3b) * Experimental url-dispatcher integration (536466c) 2015-04-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (43635ee) 2015-04-19 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6f43964) 2015-04-14 Ken VanDine * Added more debug output to the test peers (8c015b3) 2015-04-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (564b61a) 2015-04-03 Ken VanDine * Updated the importer and exporter examples to demonstrate serialized content in the transfer (4280fbc) * Don't try to copy files when they aren't needed (ad1c24f) * Changed the data property to stream of type QByteArray.; Added streamType property to identify the mime-type of the content stored in the stream property.; Added convienence getter/setter for text, which stores a string in stream and sets the streamType to "plain/text" (3806e25) 2015-04-02 Ken VanDine * merged text_data branch (e9f6028) 2015-03-31 CI Train Bot * Releasing 0.0+15.04.20150331-0ubuntu1 (cb8391b) 2015-03-31 Ken VanDine * When requesting an import from an unknown peer, abort the transfer. This is most likely to occur when requesting the default peer for a ContentType that has no default registered. Fixes: #1429695 Approved by: Michael Sheldon, PS Jenkins bot (ae176a0) 2015-03-30 Ken VanDine * merged trunk (c3a6870) 2015-03-27 Ken VanDine * Abort transfers requested for unknown peers. (6058192) 2015-03-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e17d44a) 2015-03-19 CI Train Bot * Releasing 0.0+15.04.20150319-0ubuntu1 (2841844) 2015-03-19 Ken VanDine * Abort transfers when a file already exists matching the requested name and ContentStore. Fixes: #1429687 Approved by: Michael Sheldon, PS Jenkins bot (e1f30b7) 2015-03-18 Ken VanDine * use QTemporaryDir to create the store path (1e1f8c4) * if any items fail to copy because a file exists, abort (394c059) 2015-03-17 Ken VanDine * removed unused include (fcff4a7) * Added test for condition where a file already exists in the store, it should get aborted (b9b35cc) 2015-03-16 Ken VanDine * Abort transfers when a file already exists matching the requested name and ContentStore. (77be5da) 2015-03-11 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3780eba) 2015-03-10 Ken VanDine * Added QmlTest for text data transfer (b6472e7) * Added ContentItem.data for text contents (d8902d1) * Fixed missing Text enum (412ca27) * Added ContentItem.Text as a well known type (55a7bb5) 2015-03-01 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (17e646c) 2015-02-24 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2de4167) 2015-02-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1056f67) 2015-02-21 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (92e8320) 2015-02-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (ce9c0f7) 2015-02-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (5403a8b) 2015-02-07 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (e110060) 2015-01-27 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (84e555f) 2015-01-26 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (0174ad4) 2015-01-23 CI Train Bot * Releasing 0.0+15.04.20150123-0ubuntu1 (42aabaf) 2015-01-23 Michael Sheldon * Use the theme background so that fonts are visible with dark apps Fixes: #1384490 Approved by: Ken VanDine, PS Jenkins bot (da42641) 2015-01-22 Michael Sheldon * Use the theme background so that fonts are visible with dark apps (8443d80) 2015-01-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (53b6686) 2014-12-17 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (a7431e6) 2014-12-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (2de82bd) 2014-12-04 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (c0204c7) 2014-12-02 CI bot * Releasing 0.0+15.04.20141202-0ubuntu1 (a0a15b0) 2014-12-02 Michael Sheldon * Handle content peer model loading asynchronously Fixes: #1390096 Approved by: Ken VanDine, PS Jenkins bot (7d9da4a) 2014-12-01 Michael Sheldon * Use asynchronous loaders instead of processing events when loading a content peer model (daf50b8) 2014-11-26 CI bot * Releasing 0.0+15.04.20141126-0ubuntu1 (b92b9ff) 2014-11-26 Ken VanDine * Added test peers for automated testing of export, import and shares. (6ba51bc) 2014-11-25 Ken VanDine * dropped X-Ubuntu-Application-ID from the test peer desktop files (10f7e13) * Added ebooks to test peers (82ce168) 2014-11-24 Ken VanDine * merged trunk (0e66498) 2014-11-21 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (caffd65) 2014-11-20 CI bot * Resync trunk (91dc018) 2014-11-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (b56b5f2) 2014-11-20 CI bot * Releasing 0.0+15.04.20141120-0ubuntu1 (902ffe9) 2014-11-20 Ken VanDine * Fixed conflict with nih-dbus and our own i18n wrapper Fixes: 1394211 Approved by: Michael Sheldon, PS Jenkins bot (b6c8ae9) 2014-11-19 Ken VanDine * Fixed conflict with nih-dbus and our own i18n wrapper (d030ab4) 2014-11-19 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (d1653f3) 2014-11-18 Ken VanDine * merged trunk (bc7dc3d) 2014-11-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (6e1c0ee) 2014-11-10 CI bot * Releasing 0.0+15.04.20141110-0ubuntu1 (d6b4b4f) 2014-11-10 Michael Sheldon * Update click hook wrapper to account for change in dbus-session file. Fixes: 1390095 Approved by: Ken VanDine, PS Jenkins bot, Oliver Grawert (a31d628) * Set the caller on the ContentTransferHint dialog to allow it to be destroyed safely when its parent is destroyed. Fixes: 1377334 Approved by: Ken VanDine, PS Jenkins bot (9d55e0d) 2014-11-10 Ken VanDine * Added EBooks to well known types Fixes: 1383732 Approved by: Michael Sheldon, PS Jenkins bot (2a70933) 2014-11-10 Michael Sheldon * Remove dbus-launch fallback (6d52975) 2014-11-07 Michael Sheldon * Use 'id -u' to find userid, as package kit removes UID environment variable (395805e) * Add dbus-x11 dependency (required for dbus-launch, used by click hook wrapper) (7807d7a) * Update location of dbus-session file (f0ef2f3) 2014-11-07 Ken VanDine * Don't use the unicode apostrophe in the docs (bef017f) 2014-11-03 Ken VanDine * Added EBooks to well known types (f4ea2dd) 2014-11-03 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (fed3326) 2014-11-02 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (74d16fc) 2014-10-23 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (aa19a02) 2014-10-22 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (cfde938) 2014-10-20 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (687cb27) 2014-10-18 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (877e6a5) 2014-10-17 Michael Sheldon * Merge from trunk (1708304) 2014-10-17 CI bot * Resync trunk (f196b01) 2014-10-17 Michael Sheldon * Set caller on ContentTransferHint's dialog so that it can be destroyed correctly alongside the parent (4494dbc) 2014-10-16 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (0734d36) 2014-10-15 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (94a7b32) 2014-10-14 CI bot * Releasing 0.0+14.10.20141014-0ubuntu1 (524faa0) 2014-10-14 Michael Sheldon * Add support for receiving directories of unzipped files from download manager. Fixes: 1365993 Approved by: Ken VanDine, PS Jenkins bot (02779bd) * Merge from trunk (61748ef) 2014-10-14 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3fe5089) 2014-10-13 CI bot * Resync trunk (78fa1a3) 2014-10-13 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (ed8cc0d) 2014-10-12 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (4c20311) 2014-10-11 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (56efac9) 2014-10-10 CI bot * Releasing 0.0+14.10.20141010-0ubuntu1 (09ad2d7) 2014-10-10 Sebastien Bacher * Include missing sources in the translation template, use the custom rule to update it and load the translations from the correct domain Approved by: Ken VanDine (f3ec10c) * don't copy back the pot, it's not needed (0c1ca4f) * it's building out of srcdir (bef2837) * Load the translations from the content-hub domain (17274f6) * run custom template update command (e33ff17) * Update the list of files to translate (96c1cbd) 2014-10-10 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (1003b81) 2014-10-09 Michael Sheldon * Merge from trunk (8a535d7) 2014-10-09 CI bot * Releasing 0.0+14.10.20141009-0ubuntu1 (eaac150) 2014-10-09 Michael Sheldon * Fix packaging for translations. Approved by: Ken VanDine, PS Jenkins bot (c77d009) 2014-10-09 Ken VanDine * Fall back to a copy if move fails Fixes: 1373086 Approved by: Andrew Hayzen, PS Jenkins bot, Michael Sheldon (497b4db) 2014-10-09 Michael Sheldon * Include .mo files in packaging (69ddeae) * Include .mo files in packaging (16ca795) * Merge from trunk (37371a2) 2014-10-09 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (3c88506) 2014-10-08 Ken VanDine * merged trunk (4be3733) 2014-10-08 Launchpad Translations on behalf of phablet-team * Launchpad automatic translations update. (298ab68) 2014-10-07 Ken VanDine * Fall back to a copy if move fails (a2d4a66) 2014-10-07 CI bot * Releasing 0.0+14.10.20141007-0ubuntu1 (f040172) 2014-10-07 Sebastien Bacher * use X-Ubuntu-Use-Langpack so translations are imported Fixes: 1378324 Approved by: Ken VanDine, PS Jenkins bot (dbd24e6) 2014-09-29 Sebastien Bacher * use X-Ubuntu-Use-Langpack so translations are imported (f5400ed) 2014-09-26 Michael Sheldon * Allow download manager to send us the path to a directory containing unzipped files and add the contents to a content transfer (32ad097) 2014-09-19 CI bot * Releasing 0.0+14.10.20140919-0ubuntu1 (3b6e9aa) 2014-09-19 Ken VanDine * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) Fixes: 1368770 Approved by: Michael Sheldon, PS Jenkins bot (51e889d) 2014-09-18 Ken VanDine * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) (9a314e2) 2014-09-15 CI bot * Releasing 0.0+14.10.20140915-0ubuntu1 (f81159c) 2014-09-15 Ken VanDine * Improved uncreatable message for ContentTransfer (05b05c3) * Build with dh_translations (LP: #1359166) Fixes: 1359166 Approved by: Sebastien Bacher, PS Jenkins bot (377024b) 2014-09-14 Ken VanDine * Build with dh_translations (LP: #1359166) (fb26e95) 2014-09-03 Ken VanDine * Imported uncreatable message for ContentTransfer (b14702e) 2014-08-28 CI bot * Releasing 0.0+14.10.20140828-0ubuntu1 (fc21475) 2014-08-28 Michael Sheldon * Expose the source and destination app IDs on transfers. Approved by: Ken VanDine, PS Jenkins bot (5e9a8b2) 2014-08-27 Michael Sheldon * Expose source and destination properties for transfers (fe12d77) 2014-08-15 CI bot * Releasing 0.0+14.10.20140815-0ubuntu1 (d64b35d) 2014-08-15 Michael Sheldon * Add a cancel button to the ContentTransferHint. Approved by: PS Jenkins bot (32de709) 2014-08-14 Michael Sheldon * Fix translation infrastructure to extract strings from both QML and CPP code and update POT file (b189db5) 2014-08-13 Michael Sheldon * Add 'Transfer in progress' title to ContentTransferHint dialog (6b82c86) 2014-08-08 Ken VanDine * cleaned up changelog (2c68606) * merged trunk (5e7dea1) 2014-08-08 Michael Sheldon * Merge from trunk (5ecb226) 2014-08-07 Ken VanDine * register the sharer and importer for all types (c09d50a) * include the importer in the build (e00f3ee) * Added auto importer test peer (fbdd85f) * Added icons for the test peers (0620cf2) * [content-hub-test-exporter] * added export for contacts (b8c070c) * merged add_type_to_transfer branch (20c9cb7) * merged trunk (c18cfcd) 2014-08-07 Michael Sheldon * Add cancel button to ContentTransferHint (610d73b) * Merge from trunk (02b1e5f) 2014-08-06 CI bot * Releasing 0.0+14.10.20140806.2-0ubuntu1 (26c23c1) 2014-08-06 Ken VanDine * Add contentType property to Transfer Approved by: Michael Sheldon (609bb99) * Added test for transfer::contentType (100690a) 2014-08-05 Ken VanDine * Added Videos and Links to All; Check for duplicates when looking for All peers (a40f04f) * cleaned up white space and docstrings (54ca031) 2014-08-04 Ken VanDine * Added support for contentType property on ContentTransfer (443dc8d) * Allow optional setting of contentType on the transfer object (f2b0d86) * Added type property to the backend Transfer object, exposes the ContentType.Id (486b678) 2014-08-01 CI bot * Releasing 0.0+14.10.20140801.4-0ubuntu1 (5e7df69) 2014-08-01 Ken VanDine * Renamed the binary package for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 Approved by: Sebastien Bacher, PS Jenkins bot (c4c5ddf) 2014-08-01 Michael Sheldon * Make the ContentPeerPicker's header text customisable and replace the bottom cancel button with new header style cancel. Approved by: Ken VanDine, PS Jenkins bot (1fadea8) * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere. Approved by: Ken VanDine, PS Jenkins bot (b7f0c48) * Transfer entire content Item objects over dbus, instead of just their URL component. Adds name property to C++ backend and connects to existing QML property. Approved by: Ken VanDine, PS Jenkins bot (631b151) * Remove the Ubuntu shape from the save icon in the download snap decision. Fixes: 1350281 Approved by: Ken VanDine, PS Jenkins bot (15c9d41) 2014-08-01 Ken VanDine * Don't install plugin in a versioned dir, it provides 0.x and 1.x (7147476) 2014-08-01 Michael Sheldon * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere (4c379bf) 2014-07-23 Ken VanDine * Added versions for breaks and replaces (eaa32fc) * Added Breaks too (4b9a001) 2014-07-23 Michael Sheldon * Use non-shaped icon for download snap decision (2298ca5) 2014-07-22 Ken VanDine * Renamed the binary package for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 (39dbaab) 2014-07-22 Michael Sheldon * Fix documentation for separate versions of ContentPeerPicker (d2b3185) 2014-07-21 Michael Sheldon * Separate new ContentPeerPicker into new QML API version and duplicate existing 0.1 elements as 1.0 (ab72c7c) * Replace bottom cancel button with new header style cancel button (0618095) * Make peer picker's header text customisable (5829997) 2014-07-15 Michael Sheldon * Register Item with dbus in Service object constructor (fca9dd2) * Update tests to set names on items (377d881) * Include name in content item comparison (5bda377) 2014-07-14 Ken VanDine * include some test images to transfer in the autoexporter (1f1cfc7) 2014-07-14 Michael Sheldon * Merge from trunk (8e07df5) * Transfer content item objects via dbus instead of just their URLs and connect QML name property to backend (0ea02bc) 2014-07-10 CI bot * Releasing 0.0+14.10.20140710-0ubuntu1 (21341d5) 2014-07-10 Ken VanDine * Added ContentItem.move function to allow pure QML apps to relocate local files collected. Approved by: Andrew Hayzen, PS Jenkins bot (136c26c) * Added new binary content-hub-testability which provides files and utilities for automated testing of content-hub (3a2ded0) * merged trunk (84e839c) * Added optional arg to ContentItem.move to allow renaming the file as well as moving it. (90e36fb) 2014-07-09 CI bot * Releasing 0.0+14.10.20140709-0ubuntu1 (89e08e4) 2014-07-09 Michael Sheldon * Don't make the peer picker explicitly invisible, provide a background for the peer picker and anchor the bottom of the app view appropriately rather than calculating height. Approved by: PS Jenkins bot, Ken VanDine (3e27929) * Don't close/switch applications after an export has been finalized. Approved by: PS Jenkins bot, Ken VanDine (08787b7) 2014-07-09 Ken VanDine * Added ContentItem.move function to allow pure QML apps to relocate local files collected. (a16d27b) 2014-07-09 Michael Sheldon * Anchor apps view to appropriate components (7aa8e03) * Don't make peer picker explicitly invisible (454dee4) * Add background to peer picker (ea6d5d8) 2014-07-07 Michael Sheldon * Merge from trunk (566f086) * Don't close/switch applications after an export has been finalized (61fd3ca) 2014-07-04 CI bot * Releasing 0.0+14.10.20140704-0ubuntu1 (0f58c45) 2014-07-04 Michael Sheldon * Update theme used for resolving system icons (e.g. as used by Debian packages) to use "suru" theme. (d8f361f) * Update theme used for resolving system icons (e.g. those used by debian packages) (adab5b8) 2014-07-03 CI bot * Releasing 0.0+14.10.20140703-0ubuntu1 (cd3a7a5) 2014-07-03 Michael Sheldon * Add Debian friendly locations to content-hub-peer-hooks search locations (ee73dca) 2014-06-25 Michael Sheldon * Search /usr/share/content-hub/peers/ and /usr/share/local/content-hub/peers/ for potential peer description files in addition to the ~/.local/share/content-hub/ to allow debian packages to install their files (6c559a0) 2014-06-18 CI bot * Releasing 0.0+14.10.20140618-0ubuntu1 (35a65cd) 2014-06-18 Ken VanDine * Added toDataURI to ContentItem (bae5a5f) * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multiple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) (1245076) * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful for autopilot tests. (1f41ae8) * added docstring for toDataURI (0c6a47e) 2014-06-17 Ken VanDine * fixed isEmpty check in ContentItem.toDataURI (9cbfc49) 2014-06-10 Ken VanDine * Added some error handling to ContentItem.toDataUri (57767bb) * merged latest trunk (9576ff9) 2014-06-09 Ken VanDine * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multuple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) (e7ed231) 2014-06-05 Ken VanDine * Make cancel button text translatable (35039d3) * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful in autopilot tests. (02a19ff) 2014-06-04 CI bot * Releasing 0.0+14.10.20140604-0ubuntu1 (e59ae64) 2014-06-04 Michael Sheldon * Show a message in the peer picker when no apps are available for the specified content type. (da76834) 2014-06-04 Ken VanDine * Added new well known types for videos and links. Set gallery as default for videos. (24e143a) * Use an EventFilter to get ApplicationActivate events, to notify the service when a handler gains focus. This is useful to charge completed downloads that have been dismissed in the snap decision. (1208922) * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) Fixes: 1324969 (d94f444) * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. (0eeda8c) 2014-06-04 Michael Sheldon * Display errors reported by download manager as notifications (904e784) 2014-06-03 Ken VanDine * ensure we delete the Hook and Registry to make sure the QGSettings destructor gets called. (ae3b9dc) 2014-06-02 Ken VanDine * fixed install target for hook wrapper (75aefbc) * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) (4498ce8) 2014-06-01 CI bot * Releasing 0.0+14.10.20140601-0ubuntu1 (0402c81) 2014-06-01 Ted Gould * Name change for UAL (627683d) 2014-05-30 Ken VanDine * removed unneeded include for QGuiApplication (6c1c55c) * the eventFilter will work as long as qApp exists, so we don't need to check for QApplication (613d4ba) * Use and eventFilter instead of listening for applicationStatusChanged, the status never gets set to hidden or suspended on the device. (ea7fc6d) * charge downloaded transfers when app becomes active (0d52581) * merged the charge-downloaded branch (17e37e9) * If qApp is a QApplication, connect to applicateStateChanged signal in the hub instance to tell the service when the application becomes active. (b38f291) 2014-05-28 Michael Sheldon * Remove unused header include (d4beed6) * Remove unnecessary entry in POTFILES.in (1556075) 2014-05-27 Michael Sheldon * Update translatable strings (9b1350c) * Show message when no apps are available that handle the requested content type (17e57d1) 2014-05-26 Ted Gould * Name change for UAL (7deafea) 2014-05-23 Ken VanDine * Remove qDebug (b59d7b8) * added toDataURI to ContentItem (e37f011) 2014-05-22 Ken VanDine * merged trunk (3117112) 2014-05-22 Michael Sheldon * Display errors from download manager via a notification (748a6d4) 2014-05-22 Ken VanDine * Added gsettings schema for new types and set gallery as default destination for videos (268d44c) * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. (3f650ae) 2014-05-21 Ken VanDine * Added videos and links well known types (6cfa26a) 2014-05-21 CI bot * Releasing 0.0+14.10.20140521.1-0ubuntu1 (402a200) 2014-05-21 Michael Sheldon * Remove aliases for GridView properties that no longer exist. (8a12860) 2014-05-21 Ken VanDine * reorder virtual functions added with download support, to fix abi compatibility. Fixes: 1321304 (363143a) 2014-05-21 Michael Sheldon * Remove aliases for removed gridview properties (b8693b0) 2014-05-21 Ken VanDine * reorder virtual functions added with download support, to fix abi compatibility. (38e3631) 2014-05-15 CI bot * Releasing 0.0+14.10.20140515.1-0ubuntu1 (3ec3769) 2014-05-15 Ken VanDine * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. (3304ced) 2014-05-05 Ken VanDine * Updated pot file to drop "Save" from the translated string. (96bb321) * Fixed creation of the snap decision, needs to specify the "save" icon. (f7e0569) 2014-05-01 Ken VanDine * Make strings used in the snap decision translatable (3050890) 2014-04-30 Ken VanDine * Merged latest changes (f84792c) * Merged latest trunk (69f7079) 2014-04-30 Michael Sheldon * Merge from trunk (47fc1cb) 2014-04-15 CI bot * Releasing 0.0+14.04.20140415-0ubuntu1 (8835b62) 2014-04-15 Michael Sheldon * Excludes ResponsiveGridView from documentation creation and provides additional summaries for QML components. (0406f17) * Fixes the clipping setting on the ResponsiveGridView when being used with dynamically loaded ContentPeerModels. (01eedf4) 2014-04-14 Ricardo Salveti de Araujo * releasing package content-hub version 0.0+14.04.20140402-0ubuntu2 (cc3650e) 2014-04-10 Michael Sheldon * Add summaries to all qml components (4a3aec4) * Exclude ResponsiveGridView.qml from qdoc generation (dff416c) 2014-04-08 Michael Sheldon * Modify ResponsiveGridView to handle dynamically loaded models (86becc7) 2014-04-08 Ken VanDine * merged snap decision fixes from Michael Sheldon (d915575) 2014-04-07 Michael Sheldon * Add save icon to snap decision (79aafc7) * Apply styling to snap decision button (36ce9da) * Make snap decision notification compatible with unity8 (887f2a6) 2014-04-03 Ken VanDine * Use libnotify to send a snap decision with an Open action for downloads. (e4b9e94) 2014-04-03 Michael Sheldon * Update to match new download-manager API (0f97eca) * Merge from trunk (dd403f5) * Add 'Downloading' and 'Downloaded' states and use these when performing download operations instead of 'Charged' (1c9e112) 2014-04-02 CI bot * Releasing 0.0+14.04.20140402-0ubuntu1 (68a50f3) 2014-04-02 Michael Sheldon * Fixes version number of import statements in QML documentation. (4881dcb) 2014-04-02 Ken VanDine * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. (094facb) * Ensure m_defaultSources is a StringList before attempting to use it as a list (9c27ea1) * Don't unref the g_icon, the value belongs to app (389cb78) 2014-04-02 Michael Sheldon * Make qdoc based documentation compatible with the Qt 5.2 version of qdoc. (78e52b1) 2014-04-02 Ken VanDine * Replace a couple missed qDebug lines for logging (4895b17) 2014-04-02 Michael Sheldon * Fixes updating of the ContentPeerModel when using Loader and changing ContentType or ContentHandler dynamically and ensures that ContentPeerModel Loader doesn't begin loading the model until the peer picker becomes visible (avoiding delaying app start-up time). (e2fa1c7) 2014-04-02 Ken VanDine * protect against queries for Type::unknown Fixes: 1293463 (4867ee3) 2014-04-02 Dimitri John Ledkov * Exit quicker, if there is nothing to do. (LP: #1287674) Fixes: 1287674 (70f80db) 2014-04-02 Loïc Minier * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. (40274d6) 2014-04-02 Javier Collado * Added README file Fixes: 1274899 (dd7dcf1) 2014-04-02 Michael Sheldon * Fix import statements in documentation (qdoc now ignores any version specified with \inqmlmodule in favour of the version given by \qmlmodule) (5d2624c) * Fix typo in documentation example (621969f) 2014-04-01 Michael Sheldon * Integrate with download manager (2e8e9fd) 2014-03-31 Dimitri John Ledkov * Fix FTBFS (6a92ce9) 2014-03-31 Ken VanDine * ContentPeerPicker: hide the devices section until we have a way to populate it (a16780d) * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. (a0abf3f) 2014-03-31 Dimitri John Ledkov * Merge trunk (9d42bc5) 2014-03-31 Ken VanDine * merged speed-up-no-op branch from xnox (830ad00) 2014-03-28 Michael Sheldon * Merge from loader_fixes (3d495ee) 2014-03-27 Ken VanDine * Ensure m_defaultSources is a StringList before attempting to use it as a list (b285f83) * Don't list defaults on startup (0a9075f) * Don't unref the g_icon, the value belongs to app (37c621e) 2014-03-27 Michael Sheldon * Merge from trunk (301ce66) * Use relative paths for qdoc generation (qdoc in Qt 5.2 currently fails with absolute paths) (b68283a) 2014-03-26 Michael Sheldon * Make it possible to set a download id from download manager on a ContentTransfer (37c285b) * Change 'Export to' header to 'Open with' (ae00f48) * Process findPeers immediately upon component completion, rather than adding it to the end of the event queue (5b8ffa8) 2014-03-24 Ken VanDine * Fixed a qDebug statement that was missed in the criss-cross merges (881ac9c) 2014-03-24 Michael Sheldon * Merge from trunk (27f13ca) * Don't query for unknown type when fetching all content types (d11e86f) 2014-03-23 Michael Sheldon * Don't reload peer list if handler and contentType haven't changed (4e65dae) * Clear grid view when changing properties (e2bba6e) 2014-03-22 Michael Sheldon * Update properties on peer model loader and ensure loading doesn't start until the page becomes visible (854b552) 2014-03-21 Ken VanDine * protect against queries for Type::unknown (09883aa) 2014-03-21 CI bot * Releasing 0.0+14.04.20140321-0ubuntu1 (765bc55) 2014-03-21 Ken VanDine * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. (8df8d75) * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. (f6056ef) * Make debugging output optional based on CONTENT_HUB_LOGGING_LEVEL env variable. (93dd9e7) * Adds support for multiple handler types: source, destination and share. (860731f) 2014-03-20 Ken VanDine * merged fix_pending_check (ae838de) * merged (26a7c48) * merged (e4e617d) * merged peer_picker_ui (cf38e99) * merged peer_details branch (fcabbf3) * merged more_handlers branch (3dc6462) 2014-03-20 Michael Sheldon * Update documentation (c435fad) * Add documentation to ContentTransferHint and ContentPeerPicker elements (bf59784) 2014-03-19 Ken VanDine * merged trunk (53a6b6d) * merged trunk (c5414e1) * merged trunk (f5f740d) * merged trunk (63166fc) * merged trunk (a2cd328) 2014-03-19 Michael Sheldon * Merge changes from trunk (b6251e5) 2014-03-18 Ken VanDine * merged fix_pending_check branch (e545904) * merged latest hardlink_and_fallback_to_copy branch (8d72b8e) * merged from peer_picker_ui_quiet_logging (05c878d) * merged from latest peer_picker_ui_quiet_logging branch (3583cad) * merged from latest peer_picker_ui branch (82e4a0c) * Fixed checking for pending transfers during abort (7b65e62) 2014-03-18 Michael Sheldon * Make it possible to use an external ContentPeerModel in the ContentPeerPicker via a Loader (8cc13d6) 2014-03-17 Michael Sheldon * Use ResponsiveGridView to better mimic icon display from the launcher (f07a789) * Rename defaultPeer to isDefaultPeer (c0e92cb) * Remove unnecessary timers (93417e4) * Make ContentPeer's setContentType method behave in a more expected way when not being used declaratively (55c9f4e) 2014-03-16 Michael Sheldon * Make peer picker icons match launcher icons more closely (5d443cd) * Make picker example more complete (eeb8877) 2014-03-15 Michael Sheldon * Remove default peer testing statement (be6c02e) * Merge changes from signal-find-peer-completion (fd6c7da) 2014-03-15 Alexandre Abreu * remove additional sethandler (305f14b) 2014-03-14 Alexandre Abreu * add fixes (96d36c5) * add small check (242d7ce) * add signal when the peer search has been completed in the peermodel (8f69f79) 2014-03-14 Michael Sheldon * Fix overwritten export example (410e8f7) 2014-03-14 Ken VanDine * changed default source for contacts to the legacy APP_ID for address-book-app (b980832) * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. (b1cea8e) 2014-03-14 Michael Sheldon * Add defaultPeer property to show if a peer is the default for the requested type (2d4e1fe) * Remove icon property from peer (replaced with iconData property) (9f8166d) 2014-03-13 Michael Sheldon * Merge from peer_details (5b5623a) * Merge changes from more_handlers (61a140c) * Send unprocessed icon file contents over dbus to avoid conversions for non-png icons (f8c6c8c) 2014-03-13 Ken VanDine * Cherry picked from Michael Sheldon's peer_picker_ui branch, set the address-book-app as the default source for contacts. (cce41b6) * merged latest more_handlers branch (61f4577) * cherry picked fix for pkg-config file from Michael Sheldon's peer_picker_ui branch (d944266) * ensure we only return peers from the default settings if it isn't empty (9cde15f) * uncomment out connection for onExportRequested in the app-exporter example (e0313f8) 2014-03-12 Michael Sheldon * Set address book as default source for contacts (d9f3a07) 2014-03-11 Michael Sheldon * Don't repeat default peers (72edcdc) * Merge from peer_picker_ui_updated (4b6d40e) 2014-03-10 Ken VanDine * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. This is still a work in progress, and shouldn't be used without updating the apparmor policy for content_exchange to deny write access to HubIncoming. Something like this: (1852736) 2014-03-07 Ken VanDine * Merge qml-test fixes (839f557) * Merged (3861226) * test fixes to match qml API changes (a66423d) * merged from peer_details branch (d13bdb3) * removed commented out code (630875d) * merged from more_handlers branch (b5dc15e) * Clean up (0dbf738) * Removed the untrusted helper, it isn't used (3e63636) 2014-03-07 Michael Sheldon * Don't perform unnecessary peer look ups whilst still populating ContentPeerModel's properties (252c16a) * Only show valid peers (c4dc4db) * Merge from peer_details (e8241ae) 2014-03-07 Ken VanDine * merged latest trunk (f9d4583) * merged trunk (04ee34c) 2014-03-07 Michael Sheldon * Load peers after UI is visible and process UI events whilst loading (a04c61f) 2014-03-07 Dimitri John Ledkov * Merge trunk (408c96a) * invert comparison (7d03c8e) 2014-03-07 Michael Sheldon * Fix pkg-config data (7fee4c3) 2014-03-07 CI bot * Releasing 0.0+14.04.20140307-0ubuntu1 (e23242c) * No change rebuild against Qt 5.2.1. (4493d37) 2014-03-06 Ken VanDine * Fixes for the merged changes to defaults (f82e89a) * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist.; Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. (0d0bf32) 2014-03-06 CI bot * Releasing 0.0+14.04.20140306-0ubuntu1 (aa902a0) 2014-03-06 Ken VanDine * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. (b8f545d) * merged peer_picker_ui branch (c87e1b7) 2014-03-06 Michael Sheldon * Show default peers first in ContentPeerModel (43fc2c3) 2014-03-05 Ken VanDine * added missing include (6b31911) * Added logging setup to the hook too (d593357) * releasing ppa version (765c61c) 2014-03-05 Michael Sheldon * Add haptic feedback when selecting a peer (1195b8e) * Add cancel button to ContentPeerPicker (3ace1dc) 2014-03-04 Ken VanDine * Clean up critical output (99f0ba7) * Borrow some logging logic from signon-ui, quiets down all the debug output. You can get more debug output by setting CONTENT_HUB_LOGGING_LEVEL=2 (577d782) * Support for more handler types, including sharing; Marshal peer details like name and icon from the service, so confined apps can show them.; Improved QML bindings; New ContentPeerPicker QML component (77f9754) * merged peer_details branch (ccd379b) * merged more_handlers branch (6908786) * Don't return peers with type unknown (2d8b04c) * Ensure default sources are also registered as available sources (0eab3bb) * added a convience function to list known types (4199397) 2014-03-04 Dimitri John Ledkov * Exit quicker, if there is nothing to do. (LP: #1287674) (9c2b30c) 2014-03-04 Michael Sheldon * Fix overflow from flickable when displaying a large number of peers, tweak spacing (e365571) * Convert ContentPeerPicker to being a StyleItem for more flexible embedding and make the title optional (16e4f81) 2014-02-28 Michael Sheldon * Merge from Ken's peer_picker_ui branch (cbd46a8) * Bring peer picker UI closer to design appearance (fc9b3e4) 2014-02-27 Ken VanDine * ContentPeer.request should get the ContentTransfer from ContentHub, to ensure the ContentHub instance is keeping track of active transfers, needed to match the transfer to the registered ImportExportHandler. (f71aaf3) * Theme lookups fail in confined apps without setting the themeName and themeSearchPath, set those when the plugin loads. (d58f145) * merged latest peer_details branch (c356df4) * load the themed icon from iconName if icon is NULL (316173d) * Added iconName to Peer to handle themed icons, the qml bindings will load the icon from the iconName if icon is NULL. (81e3c1a) * rename params to be clearer (aacefc8) 2014-02-27 Michael Sheldon * Merge from new_qml_api branch (adfcfe2) * Give ContentPeerModel the ability to display peers for all ContentTypes (39c72a8) * Merge from new_qml_api (d0b3d7a) * Change the usage of ContentStore to allow it to be set when creating a request instead of as a property of a peer (75db657) 2014-02-26 Michael Sheldon * Improve grid spacing in ContentPeerPicker (655c910) * Add ContentPeerPicker to qmldir definitions (fd09dab) * Add image provider to display peer icons in QML (5445aaa) 2014-02-25 Ken VanDine * expose icons for share and destinations (7651d2e) 2014-02-25 Michael Sheldon * Merge peer_details branch (cbe2cdb) 2014-02-25 Ken VanDine * Added icon property to Peer and provide it from the hub to allow access from confined apps (8e66879) 2014-02-25 Michael Sheldon * Merge recent changes from new_qml_api (7264aae) * Add rough implementation of ContentPeerPicker UI component (1537914) * Remove old API functions (d494aac) * Update button labels in documentation to reflect what they really do (e445b3b) * Update ContentHub documentation to give new API example (4432900) * Add ContentPeer, ContentPeerModel and ContentStore as top level documentation items (7827abf) * Stop buttons in example overlapping (81ca14c) * Make documentation indents more consistent (00f1350) * Only set a valid store on transfer objects (c25343d) 2014-02-24 Michael Sheldon * Make use of store property when its set, and ensure it gets updated to reflect changes in scope/content type (8a387fa) * Use enums more consistently in QML bindings (868aa06) * Make it possible to set the selection type declaratively on a ContentPeer (5262915) * Update picture import example in documentation to new QML API (7a129f0) * Fix indentation in app-exporter example (0f03e27) * Don't override the peer if an appId has been set explicitly (3a957d6) * Create correct transfer type based on handler property (f75d6f6) * Set transfer state in app-exporter example (83adc5e) 2014-02-21 Ken VanDine * Marshal the Peer over DBus (6fbc07d) * Register cuc::Peer so it can be used over DBus (ed1d8a8) 2014-02-21 Loïc Minier * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. (b9e7f1e) 2014-02-21 Michael Sheldon * Update app-exporter example to handle minor changes in new QML API (388b54c) * Remove extra } in export example (0a92968) * Update import example to include minor changes in new API (941d312) * Merge new QML examples from qml_api_ideas (6c369b8) * Add scope property to ContentStore (3d10c37) * Remove duplicate semi-colon (2822379) * Add store property to ContentPeer (7cbe0a8) * Add ContentScope enum (f45c018) * Reset to default peer when content type is changed (f5f9763) * Add ability to request a transfer directly from ContentPeer (7bf84c4) * Add contentType property to ContentPeer (f70f127) * Rename ContentPeerModel's type property to contentType (380ab5e) 2014-02-20 Ken VanDine * fixed up the enumeration of peers to handle more types (51a01fb) 2014-02-20 Michael Sheldon * Merge from more_handlers branch (91532e7) 2014-02-20 Ken VanDine * added install_destination_for_type and install_share_for_type (40a1f94) * Added gsettings schema for tracking destination and share peers (cb9d3af) * Simplified the source installation (ab5aba3) * Make the Hook class a friend so the click hook can better handle install for types (939f197) * renamed tests to match the s/peers/sources/ rename (b7126ea) * Rename all functions referring to sources as peers. This is necessary to handle other peer types, such as destination and share. (046c4f5) * Fixed logic in determining if there are transfers waiting when the handler registers. (ac81a57) 2014-02-20 Michael Sheldon * Add handler property to ContentPeer (1e4d5ff) * Add ContentHandler enums to QML API (65d2bf2) * Add ContentPeerModel (18e3b39) * Merge from more_hanlders (69ed07b) * Add ContentPeerModel to QML API (91b739b) * Enable declarative creation of ContentStore (2948681) * Rename ContentImportHint to ContentTransferHint (27c5a2e) 2014-02-19 Ken VanDine * Fix up share flow in the qml bindings (2b896c0) * shares need start too (497cfaf) * refactored a bit to reduce duplicated code (a55cdcd) * Added Direction property to the transfer object and use it for determining which handlers to call (5786366) * WIP export and share (3851607) 2014-02-14 Ken VanDine * added a FIXME for differentiating between an import or share on handler registration (83aad8a) * WIP implementation of the QML bindings for export and share (c5f5d6f) * hook up more of the plumbing for export and share (8ae5ef4) 2014-02-13 Ken VanDine * added share creation and hooked up the transfers (82a9a4e) * added support fore creating an export (1a2ab75) * Removed unused InstanceId tracking and UriHandler (6c4f112) * Added tests to verify there is only a single transfer active at a time for any peer. If a second transfer is requested from a peer with an active transfer, the previous transfer is aborted. (38df1ef) 2014-02-12 Ken VanDine * added examples based on a potential future QML API (f523ccf) * added examples based on a potential future QML API (bb02bac) 2014-02-12 Javier Collado * Added suggestions from Ken (7c62870) 2014-02-10 Ken VanDine * dropped the UriHandler and ensure transfers are unique to the handler in the service (056baab) 2014-02-06 Ken VanDine * cancel existing transfers when a new one is created (b732066) 2014-02-05 Ken VanDine * Added UCUriHandler to get signals for app opening (1380375) 2014-02-04 Ken VanDine * Added WasSourceStartedByContentHub back (a20138d) * pass path with ual (1bee23d) 2014-02-03 Ken VanDine * don't use the untrusted helper yet (0e98cbc) 2014-01-31 Javier Collado * Fixed typo (85fa38f) * Added README file (6ff94e7) 2014-01-29 Ken VanDine * fix the path to the helper (3bc9d14) * Added includes for upstart-app-launch (ff57c31) * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev to >= 0.3+14.04.20140129 needed for converting the triplet to an appid. (ab6098a) 2014-01-28 Ken VanDine * switch back to dest when ready (15d14a1) * keep using the appid for destination (55e4a11) * Support multiple instances of handlers (bb163a9) 2013-12-12 Ken VanDine * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. (1571cff) 2013-12-10 Ken VanDine * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. (b90dbdf) 2013-12-09 Automatic PS uploader * Releasing 0.0+14.04.20131209.1-0ubuntu1 (revision 69 from lp:content-hub). (d46e8bb) * Releasing 0.0+14.04.20131209.1-0ubuntu1, based on r69 (a76baa5) 2013-12-09 Ted Gould * Upgrading to libupstart-app-launch v2. (b3c4d78) 2013-12-06 Ted Gould * Adding the upstart include directory (a71858e) * Change to remove the versioned directory (aef6edc) * Upgrading to libupstart-app-launch v2 (87114c7) 2013-11-18 Ken VanDine * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. (8455032) 2013-11-15 Ken VanDine * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. (642e57e) 2013-11-15 Alexandre Abreu * fix small documentation nit (21229e9) 2013-11-15 Ken VanDine * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. (8d74d71) 2013-11-12 Alexandre Abreu * fix small documentation nit (5b307fd) * fix small documentation nit (55c2e1f) 2013-11-08 Ken VanDine * added an example to the docs for ContentHub.knownSourcesForType (74ee58c) * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. (342ba4c) 2013-11-07 Ken VanDine * Filled in the missing docstrings for the QML bindings . (ea1e93f) * Filled in the missing docstrings for the QML bindings (5b00025) 2013-10-25 Automatic PS uploader * Releasing 0.0+14.04.20131025-0ubuntu1 (revision 63 from lp:content-hub). (ce67984) * Releasing 0.0+14.04.20131025-0ubuntu1, based on r63 (ff656e6) 2013-10-23 Ken VanDine * Added qdoc docs for QML bindings. (1f2f178) * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932). Fixes: https://bugs.launchpad.net/bugs/1236932. (dd01baf) * Fixed annotations for overloaded importContent method (27605a4) * merged id rename (3dd16ac) * revert changelog entry (cf20398) * Renamed id to appId to avoid colliding with QML's id property (163cf05) 2013-10-22 Ken VanDine * Merged QML bindings fixes (63dbf02) * Updated doc strings (95df6c8) * marked finishedImports and restoreImports as \internal to exclude from qdoc. (9f1ba32) * Added introduction, architecture overview, examples and definitions to the QML docs (c399512) * removed the "type" property from ContentPeer, it isn't used and com::ubuntu::content::Peer doesn't provide a type either. (905df1d) * emit idChanged on setPeer (e6f70d9) * removed FIXME (1f00cfd) * cleanup example (d816bbd) * Updated import example to include peer list (0a62476) * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932) (502cefa) * Added id() and return name for name() instead of id (5071887) 2013-10-21 Ken VanDine * syntax fix for mainpage (06112b0) * added toplevel doc (100a745) * fixed build (d8a3715) * Tweaks for qdoc docs (c0d983e) * Added qdoc docs for QML bindings (89f344e) 2013-10-11 Automatic PS uploader * Releasing 0.0+13.10.20131011-0ubuntu1 (revision 60 from lp:content-hub). (aa66e51) * Releasing 0.0+13.10.20131011-0ubuntu1, based on r60 (36a4dc7) 2013-10-10 Guenter Schwann * Quit the source app on charged/abort when it was started by the content hub. (69750c6) * Quit the source app on charged/abort when it was started by the content hub (81d0684) 2013-10-09 Ken VanDine * Added a click hook, which iterates installed known peers, removing them when they are no longer installed and adding peers when needed. (848de2b) * invoke the destination when the transfer is charged . (18b5734) * Make libcontent-hub0 recommend content-hub . (d319d8b) * Make libcontent-hub0 recommend content-hub (2f85139) * invoke the destination when the transfer is charged (bf40917) 2013-10-08 Guenter Schwann * New component for the importer to indicate an ongoing transfer. (7a7d209) 2013-10-07 Automatic PS uploader * Releasing 0.0+13.10.20131007-0ubuntu1 (revision 54 from lp:content-hub). (0eaded8) * Releasing 0.0+13.10.20131007-0ubuntu1, based on r54 (a7e66cc) 2013-10-04 Ken VanDine * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. (a7c069b) 2013-10-01 Guenter Schwann * Merged trunk (5c74eb3) 2013-10-01 Ken VanDine * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. (90a4a68) * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 . (ee59dac) 2013-10-01 Automatic PS uploader * Releasing 0.0+13.10.20131001-0ubuntu1 (revision 51 from lp:content-hub). (e7c31b8) * Releasing 0.0+13.10.20131001-0ubuntu1, based on r51 (35af122) * Releasing 0.0+13.10.20130930-0ubuntu1 (revision 49 from lp:content-hub). (d9ecd48) 2013-10-01 Ken VanDine * Added basic pkgconfig file . (d638333) 2013-09-30 Ken VanDine * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 (7f58167) * Added basic pkgconfig file (f2340fe) 2013-09-30 Automatic PS uploader * Releasing 0.0+13.10.20130930-0ubuntu1, based on r49 (a1f26a0) 2013-09-30 Ken VanDine * Pulled back in all the changes that were reverted in rev 47. Bug (LP: #1231368) seemed to be caused by gallery-app needing a rebuild against this version of content-hub. (794b1ac) * Pulled back in all the changes that were reverted in rev 47. (6b15259) 2013-09-27 Guenter Schwann * Ne component for the importer to indicate an ongoing transfer (d8a8d4a) 2013-09-27 Automatic PS uploader * Releasing 0.0+13.10.20130927-0ubuntu1 (revision 47 from lp:content-hub). (6232dbe) * Releasing 0.0+13.10.20130927-0ubuntu1, based on r47 (255a56b) 2013-09-26 Robert Bruce Park * Revert previous revert because it didn't solve the regression. (3ddf076) 2013-09-26 Sebastien Bacher * Revert previous upload since it's buggy (lp: #1231368) (756fe09) 2013-09-25 Automatic PS uploader * Releasing 0.0+13.10.20130925-0ubuntu1 (revision 45 from lp:content-hub). (8b9ae7d) * Releasing 0.0+13.10.20130925-0ubuntu1, based on r45 (f58c688) 2013-09-24 Ken VanDine * Mock PeerRegistry instead of Registry, fixes test_hook when the gsettings schema isn't installed. (7bd6236) * Added a name property to Peer using GAppInfo to get a friendly name. (c8f745d) * Added a comment with example JSON (f703df8) * rename function in the hook (17b660c) * Removed unused function (288e0ae) * Added tests for the click hook (556a50b) * fixed typo in Type enum. (2fabc49) * merged trunk (cf3830b) * unref for GDesktopAppInfo (b039d8c) * merged trunk (2e0c107) * Added GIO (23c2659) * Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "HubIncoming/${id}". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. (9177f70) * use GAppInfo to get the display name for a peer (b746bc5) 2013-09-23 Ken VanDine * added --with click (f046cf5) * fixed pattern (c9e9e9a) * hook: ensure we return 0 (827ebcf) * removed some noise, no need to call updateStore and updateSelectionType after they are set, the signal will do that. (7f53d09) 2013-09-20 Ken VanDine * Install the click hook (12e0a3f) * click hook, iterate installed known hooks and remove them when they are no longer installed (c139cc1) * Added enumerate_known_peers and remove_peer functions (1b7f28f) * Added tests for utils (b6f7b47) * merged trunk (10da7cc) * Added commented out example of setting a persistent store on the transfer (0dfc742) * Check to see if the Store should be persistent, and only purge if it isn't (e1ac6ec) 2013-09-20 Automatic PS uploader * Releasing 0.0+13.10.20130920-0ubuntu1 (revision 41 from lp:content-hub). (70173b2) * Releasing 0.0+13.10.20130920-0ubuntu1, based on r41 (f3ee313) 2013-09-19 Ken VanDine * expose the ContentStore to QML (78e9711) * fixed typo in Type enum (9683488) * updated example to use finalize and use a MainView (b808f59) * Updated qml bindings for the new finalized state in Transfer (5aae196) * Added a new transfer state, finalized. When the destination is done with the transfer, it should call finalize() on the transfer to cleanup the cached files. (37fd36a) 2013-09-18 Ken VanDine * removed extra whitespace (094e310) * merged trunk (289ac49) * create test files at build time to use in the transfer test (1116f59) * Updated transfer test to ensure items get properly set including including the incoming store when charged. (3494944) * Use QGSettings for persistent peer registration and set defaults. Also adds a helper install peers, which will be used as a click hook, but doesn't get installed yet. (4ca5714) * Ensure the destructor gets called for each transfer when the server exits (84bdbd6) * added function to purge contents of the incoming store, which is called fromt he cuc::Transfer destructor. (c46d421) * Added a test for install_peer_for_type (ee34e95) * use QScopedPointer for the gsettings member variables (05bab40) * column align arguments (10119d7) * merged trunk (a70ffd2) 2013-09-17 Ken VanDine * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. (a4c1799) * merge trunk (6bab9ca) * use the Transfer::id to make a unique incoming store for the transfer (095c85d) * expose cuc::Transfer::id, it's useful for creating the incoming Store (07810db) * use QStandardPaths::CacheLocation (60ec611) * return as a QUrl::toLocalFile (6785bb6) * explicitly build dep on libglib2.0-dev . (a8a656a) 2013-09-17 Automatic PS uploader * Releasing 0.0+13.10.20130917-0ubuntu1 (revision 36 from lp:content-hub). (d5433c8) 2013-09-17 Ken VanDine * explicitly build dep on libglib2.0-dev (aaa2862) * fix for the MockHandler so it doesn't trigger dbus activation . (b98c32c) 2013-09-17 Automatic PS uploader * Releasing 0.0+13.10.20130917-0ubuntu1, based on r36 (3069d21) 2013-09-16 Ken VanDine * implementation with a Store. Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "Incoming". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. (98ddf23) 2013-09-13 Ken VanDine * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. (827a4fb) * set the APP_ID for the QML tests (821b2b6) * fix for the MockHandler so it doesn't trigger dbus activation (f8205b8) 2013-09-12 Ken VanDine * removed unused directory (e8908e2) * removed hard coded peer population (3b0454c) 2013-09-11 Ken VanDine * Don't install the click hook or helper yet. (17da992) * renamed hook (2f66a57) * merged trunk (574bf8c) * added Hook class for the helper (42eebcc) 2013-09-10 Ken VanDine * parse json data for installing peers from click hooks (aff8526) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. . (88112c8) * cleaned up diff (17c7721) * cleaned up last reminents of including selection_type in the constructor and as args. (a3ac87d) 2013-09-09 Ken VanDine * Merged trunk (ecd7e55) * Added click hook, still needs to be tweaked to get type as well as id (5bfd593) * Added tests for transfer selectionType property (ca9098f) * don't allow changing selectionType unless the state is cuc::Transfer::created (6a08a57) * Make selectionType a property that can be set outside of this constructor. This adds an additional state for "created" which is the state set when the Transfer is created. When the state is "created", the selectionType can be set, however it defaults to single. This allows the source to set the selectionType after creating the transfer as a property. Once all properties are set, this moves the responsibility of calling start() on the transfer back to the source. Start should get called after all desired properties are set on the transfer. (7f2a6fe) 2013-09-06 Ken VanDine * Added a helper for install peers, will be used as a click hook (cc99274) * use QGSettings for persistent peer registration (3cd734c) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. (3634f4e) 2013-09-06 Guenter Schwann * Add an app manager to start the exporter automaticly. (5f77dc1) 2013-09-06 Ken VanDine * merged content-start-exporter branch (6ae5774) * merged (c1ea8dc) * merged (53b7c5c) 2013-09-06 Guenter Schwann * Branch merged (7415269) 2013-09-06 Ken VanDine * cleaned up whitespace (9521f58) * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. (56d3b61) * merged cleanup from the handler_reg_wip branch (8abf342) * merged changes from content-start-export branch (da7c2b0) * cleanup (bda289d) 2013-09-06 Guenter Schwann * Add functions to stop an application, and check if an application is running already (b940730) * Use QSharedPointer for the ApplicationManager in the service (4baea0b) 2013-09-05 Ken VanDine * Merged Transfer::SelectionType branch (71f22bf) * Merged selectionType branch (cd5d9c1) * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. (b21ab34) 2013-09-05 Guenter Schwann * Merge handler branch (f86e5c3) * Remove unused stuff (bf4bcc6) 2013-09-05 Ken VanDine * removed includes that aren't used (c45f3d6) 2013-09-05 Automatic PS uploader * Releasing 0.0+13.10.20130905-0ubuntu1 (revision 32 from lp:content-hub). (8619778) * Releasing 0.0+13.10.20130905-0ubuntu1, based on r32 (fc652f6) 2013-09-04 Guenter Schwann * Disable the start() function from QML and remove it from documenattion and example (65cfa7a) * Fix tests (3617a73) * Branch merged (4011aef) * Start source from correct spot (5155fe3) 2013-09-04 Ken VanDine * don't clean up the aborted and collected transfers (479c386) 2013-09-04 Guenter Schwann * branch merged (c36fef9) * Don't start transfer if not in initialized state (9bd71cc) 2013-09-04 Ken VanDine * Have the handler interface call start before calling handle_export, this prevents the need for the implementation of handle_export from needing to. (3bdec3c) * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. (ced7478) 2013-09-04 Guenter Schwann * Fix compile of the tests (7fc3233) 2013-09-04 Ken VanDine * merged fixes from the transfer_props branch (9fd87b3) * keep source and destination as references in the constructor (273c109) 2013-09-04 Guenter Schwann * Make use of the interface (661ec9b) 2013-09-04 Ken VanDine * source and destination strings should be references (78a12bf) 2013-09-04 Guenter Schwann * Start the importer/exporter on transfer state changes (a43857b) * Merge handler_reg_wip branch (eb91b37) 2013-09-03 Ken VanDine * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. (4a907cc) * merged transfer_props branch (6d34f5d) * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. (6c876c0) 2013-09-03 Guenter Schwann * More cleanups (457c456) * More cleanups (21da0d1) * Cleanups (29fe508) 2013-09-02 Guenter Schwann * Add link flags for upstart-app-launch (1493207) * Start for an app manager (42a5827) 2013-08-31 Automatic PS uploader * Releasing 0.0+13.10.20130831-0ubuntu1 (revision 30 from lp:content-hub). (ecbc952) * Releasing 0.0+13.10.20130831-0ubuntu1, based on r30 (be026f0) 2013-08-30 Ken VanDine * improved handling of handler registration, WIP (a1efaf9) * Don't start a new instance of the service if it fails to register on the bus . (2ba3279) * Don't start a new instance of the service if it fails to register on the bus (d007727) 2013-08-30 Automatic PS uploader * Releasing 0.0+13.10.20130830-0ubuntu1 (revision 28 from lp:content-hub). (c2f2824) * Releasing 0.0+13.10.20130830-0ubuntu1, based on r28 (5e1d402) 2013-08-30 Ken VanDine * Moved some common service names and paths to common.h instead of setting them in multiple places. . (96b41ba) 2013-08-29 Automatic PS uploader * Releasing 0.0+13.10.20130829.1-0ubuntu1 (revision 26 from lp:content-hub). (3b9c6eb) * Releasing 0.0+13.10.20130829.1-0ubuntu1, based on r26 (579e793) 2013-08-29 Ken VanDine * Use const QLatin1String instead of defines (2703317) * white space cleanup (6047a1b) * Adds a Handler interface and adapter which provides get registered on the bus from the Hub client. The service side will look for registered handlers when a new transfer is created. The service then connects to transfer and calls HandleExport on the handler when the transfer state changes to in_progress. There is still no hooks in the service to call HandleImport for registered import handlers, but clients can connect to stateChanged and fire their own import when the state changes to charged. (1fb6e54) * Merged (902f339) * Moved some common service names and paths to common.h instead of setting them in multiple places. (5e765b0) * Fixes based on review from tvoss (f9bf23e) 2013-08-29 Automatic PS uploader * Releasing 0.0+13.10.20130829-0ubuntu1 (revision 24 from lp:content-hub). (936ed82) * Releasing 0.0+13.10.20130829-0ubuntu1, based on r24 (5cd8413) 2013-08-28 Ken VanDine * merged trunk (0d2c93f) 2013-08-28 Guenter Schwann * More robust handling of charge and collect of the transfer in QML. (c94dbc6) * Add missing header change (a2baf91) * Fix typos (26a7a0d) 2013-08-28 Ken VanDine * Don't change the value of items if the state is already charged (27f7ab7) * slightly improved error handling and cleaned and cleaned up a little debug output (bab72e2) * cleaned up more includes (33afeb6) * cleaned up includes and headers (f225e0a) * revert stateChanged change in the qml bindings (d83dcd7) * Added Handler tests (04583d9) * removed unused includes (0ade9e1) 2013-08-28 Guenter Schwann * use null instead of undefined in QML (4d86129) 2013-08-28 Ken VanDine * cleaned up an unneeded handler instance (9d606ed) 2013-08-28 Guenter Schwann * Compile fix (1e93c8a) * udpate example and documentation; remove code duplication from importContent() (6a8953c) * The direction property is constant (c250897) * Add direction property to ContentTransfer to make sure ony the exporter can charge, and the importer collect (b9a1a64) * Add missing header change (95fa0da) * Cache transfer state (d871779) * reuse the ContentTransfer object during import; ensure the items property is filled if needed (3063c3f) 2013-08-27 Ken VanDine * use a listview to show the images (9d7e286) * Listen for stateChanged and call handle_import when the transfer is charged (d4b5d0c) * Make sure we get a valid iterator when looking for a handler (5173e17) * merged trunk (60bfdb2) * change default peer for pictures to gallery-app (97a8103) * Hook up the exporter to the stateChanged signal to initiate an export (93dd629) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.3-0ubuntu1 (revision 22 from lp:content-hub). (23efb10) * Releasing 0.0+13.10.20130827.3-0ubuntu1, based on r22 (a7bd39e) 2013-08-27 Guenter Schwann * Add QML examples for import and export. (4ab313a) * Use qmlRegisterSingletonType to register the ContentHub. (ffa4754) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.2-0ubuntu1 (revision 19 from lp:content-hub). (abae405) * Releasing 0.0+13.10.20130827.2-0ubuntu1, based on r19 (6571980) * Releasing 0.0+13.10.20130827.1-0ubuntu1 (revision 18 from lp:content-hub). (85e9fef) 2013-08-27 Guenter Schwann * Add to start the transfer (4286474) * Use qmlRegisterSingletonType to register the ContentHub (47826be) 2013-08-27 Automatic PS uploader * Releasing 0.0+13.10.20130827.1-0ubuntu1, based on r18 (5ea52b9) * Releasing 0.0+13.10.20130827-0ubuntu1 (revision 17 from lp:content-hub). (067cb77) * Releasing 0.0+13.10.20130827-0ubuntu1, based on r17 (8604ca7) 2013-08-26 Michael Terry * Some minor packaging cleanup. (4c76bd6) * Let source format 1.0 be implicit (04817b5) * Some packaging cleanup (e520745) 2013-08-26 Ken VanDine * cleaned up examples (19a404b) * fixed changing state to charged (cb8be16) * Handle emitting stateChanged (c117e28) 2013-08-26 Guenter Schwann * Pick mode is off by default in export example (63f09b2) * Add examples for import and export (42a90c1) 2013-08-26 Ken VanDine * crude attempt to get access to Transfer (8b75587) 2013-08-25 Ken VanDine * Added Handler interface on dbus. register_import_export_handler now creates the HandlerAdapter in the hub client and registers it on the bus under com.ubuntu.content.handler. and adds the peer_id and object path to a map of registered handlers. (bcdf671) * use functions in utils.cpp (abadb50) * Added utils.cpp for a few functions we need to run in the service that aren't class specific and shouldn't get exposed in the API (af34d33) 2013-08-23 Ken VanDine * cleanup (0811973) * wip (ae70f21) 2013-08-23 Guenter Schwann * Handle import and export requests from hub for QML. (78fc632) * Typo fix and compile fix (7c573e4) * Trunk merged (1658005) * ContentItem and ContentPeer use their service counterpart as member. (f3de36c) * Get the actual items from HUB to pass them to QML (1360bd0) * Actually return the selected items to the hub (9adba5d) 2013-08-23 Łukasz 'sil2100' Zemczak * Packaging review. (5e8ce56) 2013-08-23 Ken VanDine * wip (b6f1685) 2013-08-23 Guenter Schwann * Handle import and export requests from hub (34789ab) 2013-08-23 Łukasz 'sil2100' Zemczak * .install file too... (2a2fc0a) * Rename the plugin again (3657374) * Changed the plugin name (a484dce) * Update descriptions (8aef9fe) 2013-08-23 Guenter Schwann * Merge trunk (3452b83) * Add function to convert from Content::Type to Type directly (1c994f4) * More QML tests, work on QML documentation. (cb8bbaf) * ContentItem and ContentPeer use their service counterpart as member (f588ab5) 2013-08-22 Ken VanDine * wip (439d04d) * wip (e0671cf) 2013-08-22 Łukasz 'sil2100' Zemczak * Basic packaging review (2554a26) 2013-08-22 Ken VanDine * replace "." with "_" in the peer_id to create valid object paths . (705046a) 2013-08-22 Guenter Schwann * More QML tests, work on QML documentation (2a8c467) 2013-08-22 Ken VanDine * Moved the dbus object path sanitizing out to a separate function and replace all invalid characters (9bd83cc) 2013-08-22 Guenter Schwann * Add and register an import export handler. (8f2b6e4) 2013-08-22 Ken VanDine * merged object path fix (86b1d5e) * merged trunk (20d7848) * replace "." with "_" in the peer_id to create valid object paths (80d8bdc) 2013-08-22 Guenter Schwann * The import/export forward the transfer objects (776053f) 2013-08-22 Ken VanDine * Added dbus service. This includes a PeerRegistry that currently get hard coded with peers on startup, in the future this registry will be replaced with something more persistent. (fd1ff6a) 2013-08-22 Guenter Schwann * Put the QML bindings into their own package. (832fd6b) 2013-08-22 Ken VanDine * put list and populate in an anonymous namespace (a94fc66) * improved iterating the map of peers (25c63bc) 2013-08-22 Guenter Schwann * Fix header guard (5358920) * Add and register an import export handler (69cba1b) 2013-08-22 Ken VanDine * WIP handler dbus interface (fb749cb) 2013-08-22 Guenter Schwann * Put the QML bindings into their own package (c82ea90) * Start for QML bindings. (98b8008) * Fix QML test on CI (ddcdac4) * Add more Qt dependencies (a112d16) * Use C++ style cast instead of C style cast (467a6d7) * use hub query for peers; wire up to hub to import content (b5a89ac) 2013-08-21 Ken VanDine * cleanup importer example (38fab09) * removed unused files (a2df338) * merged dbus service cleanup (a30fe18) * Cleanup (58093f8) 2013-08-21 Guenter Schwann * Add qt5declarative dependency (580e0cc) * Add first test for QML (f1d3f0f) * Move plugin to Ubuntu/Content sub directory (for future testing) (08b0127) * Add QML binding (interface only for now) (6ed963c) 2013-08-20 Ken VanDine * cleanup importer example (fa50ede) 2013-08-19 Ken VanDine * Added examples (ee7c7ad) * add dummy peers (b197d08) * Added PeerRegistry subclass (85289c8) 2013-08-16 Ken VanDine * Packaging cleanup (ec0c48e) * Added content-hub package (d0b0166) * Added dbus service file (7488afa) * Added basic dbus server for content-hub-service (17cecc1) 2013-08-15 Guenter Schwann * Add constructor implementation for ImportExportHandler. (b6530f0) * Add google-mock dependecy for the tests (a09a960) * Adding doxygen and lcov as dependency (5cf0583) * Add Qt dependency (9e5d6d5) * Add constructor implementation for ImportExportHandler (b109fd3) 2013-08-14 Thomas Voß * Merge packaging. (ed3a6af) * Merge trunk. (33e63c4) 2013-08-13 Ken VanDine * initial packaging (6d89593) * Install the headers (5443801) 2013-07-16 Thomas Voß * Added an example snippet for importing pictures. (5f73ca0) * Add a Mainpage for the doxygen documentation. (767cda8) * Wired up transfer test case. (830cde6) 2013-07-15 Thomas Voß * Add state query method to dbus interface. (d0f7c80) * Add transfer implementation service side. (34090ec) * Clean up src directory and move dbus to detail. (fa69a13) * Initial checkin. (e819494) content-hub-1.1.1/README.md 0000664 0000000 0000000 00000002620 14561211576 0015227 0 ustar 00root root 0000000 0000000 # Content Hub ## What is content-hub? content-hub is a mediation service to let applications share content between them even if they are not running at the same time. For a more detailed description, please have a look at: doc/Mainpage.md ## How do I get all building dependencies? Build dependencies are already listed in the debian/control file. To get them use the following command: sudo apt-get build-dep content-hub ## How do I compile the code? To compile the code run the following command from the branch directory: ``` mkdir build cd build cmake .. make ``` ## How do I run the test cases? To run the test cases use the following command: ``` cd build/tests dbus-test-runner -t make -p test ``` ## How do I build the packages? To build the pacakges run the following command: ``` debuild -uc -us ``` ## How do I install the code? One way to do it one the code is compiled is: ``` make install ``` However, the recommended way to do it is by installing the packages built manually. ## i18n: Translating Content Hub 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/content-hub The localization platform of this project is sponsored by Hosted Weblate via their free hosting plan for Libre and Open Source Projects. content-hub-1.1.1/contenthub.qmlproject 0000664 0000000 0000000 00000000525 14561211576 0020225 0 ustar 00root root 0000000 0000000 /* File generated by Qt Creator, version 2.5.2 */ import QmlProject 1.1 Project { mainFile: "examples/export-qml/export.qml" /* Include .qml, .js, and image files from current directory and subdirectories */ QmlFiles { directory: ["examples/export-qml", "examples/import-qml", "import/Lomiri/Content"] } } content-hub-1.1.1/debian/ 0000775 0000000 0000000 00000000000 14561211576 0015172 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/debian/Jenkinsfile 0000664 0000000 0000000 00000000101 14561211576 0017346 0 ustar 00root root 0000000 0000000 @Library('ubports-build-tools') _ buildAndProvideDebianPackage() content-hub-1.1.1/debian/apparmor/ 0000775 0000000 0000000 00000000000 14561211576 0017013 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/debian/apparmor/content-hub-testability 0000664 0000000 0000000 00000000556 14561211576 0023525 0 ustar 00root root 0000000 0000000 # vim:syntax=apparmor # Author: Ken VanDine # #include profile "content-hub-test-ok" { #include #include /etc/issue r, } profile "content-hub-test-bad" { #include #include audit deny /etc/issue r, } content-hub-1.1.1/debian/changelog 0000664 0000000 0000000 00000101555 14561211576 0017053 0 ustar 00root root 0000000 0000000 content-hub (1.1.1) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Thu, 08 Feb 2024 18:46:38 +0100 content-hub (1.1.0) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Sun, 15 Oct 2023 08:34:48 +0200 content-hub (1.0.2) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Tue, 14 Feb 2023 11:30:33 +0100 content-hub (1.0.1) unstable; urgency=medium * Upstream-provided Debian package for content-hub. See upstream ChangeLog for recent changes. -- UBports developers Sun, 05 Feb 2023 00:39:04 +0100 content-hub (1.0.0) focal; urgency=medium [ Marius Gripsgard ] * Imported to UBports * Rename to lomiri * Switch to lomiri-api * Fix qml issue * Enable tests [ Guido Berhoerster ] * Rename com.canonical.Unity.FocusInfo to com.lomiri.Shell.FocusInfo * Add missing build dependency on graphviz * Switch from url-dispatcher to lomiri-url-dispatcher -- Marius Gripsgard Fri, 16 Apr 2021 03:42:05 +0200 content-hub (0.2+17.04.20161201.1-0ubuntu1) zesty; urgency=medium [ William Hua ] * Add GLib bindings (LP: #1624437) (LP: #1624437) -- Ken VanDine Thu, 01 Dec 2016 18:22:34 +0000 content-hub (0.2+17.04.20161128-0ubuntu1) zesty; urgency=medium * Fix build failure on zesty due to googletest 1.8. Also refactored tests/acceptance-tests/CMakeLists.txt to make adding tests less cumbersome. (LP: #1644062) -- Ken VanDine Mon, 28 Nov 2016 17:39:58 +0000 content-hub (0.2+17.04.20161107-0ubuntu1) zesty; urgency=medium * Skip the UAL lookup when run under autopkgtests to prevent an abort from UAL -- Ken VanDine Mon, 07 Nov 2016 15:02:18 +0000 content-hub (0.2+17.04.20161026-0ubuntu1) zesty; urgency=medium * Use UAL to get iconPath instead of parsing the desktop file ourselves -- Ken VanDine Wed, 26 Oct 2016 16:56:45 +0000 content-hub (0.2+16.10.20160914-0ubuntu1) yakkety; urgency=medium * Build with hardening=+all (LP: #1597453) -- Ken VanDine Wed, 14 Sep 2016 14:30:52 +0000 content-hub (0.2+16.10.20160830-0ubuntu1) yakkety; urgency=medium [ Ken VanDine ] * Pasteboard implementation [ Florian Boucault ] * Fixes for crossbuilding. -- Ken VanDine Tue, 30 Aug 2016 13:41:21 +0000 content-hub (0.1+16.10.20160825-0ubuntu1) yakkety; urgency=medium * Added isolation-machine to test restrictions as these tests need a working upstart user session. -- Ken VanDine Thu, 25 Aug 2016 10:12:31 +0000 content-hub (0.1+16.10.20160822-0ubuntu1) yakkety; urgency=medium * No change rebuild for UAL ABI change -- Ted Gould Mon, 22 Aug 2016 17:01:38 +0000 content-hub (0.1+16.10.20160809-0ubuntu1) yakkety; urgency=medium * build dep on qttools5-dev-tools for qdoc -- Ken VanDine Tue, 09 Aug 2016 14:15:14 +0000 content-hub (0.1+16.10.20160715-0ubuntu1) yakkety; urgency=medium * Filter current app out of the peer model (LP: #1603508) -- Ken VanDine Fri, 15 Jul 2016 19:12:46 +0000 content-hub (0.1+16.10.20160610.2-0ubuntu1) yakkety; urgency=medium * Ensure all the properties are set when the url is set on a ContentItem (LP: #1571361) -- Ken VanDine Fri, 10 Jun 2016 14:02:46 +0000 content-hub (0.1+16.10.20160602-0ubuntu1) yakkety; urgency=medium * Call qmlplugindump with -noinstantiate -- Ken VanDine Thu, 02 Jun 2016 18:36:44 +0000 content-hub (0.1+16.04.20160309-0ubuntu1) xenial; urgency=medium * Fix documentation for toDataURI method (LP: #1555116) -- Michael Sheldon Wed, 09 Mar 2016 14:03:08 +0000 content-hub (0.1+16.04.20160129.1-0ubuntu1) xenial; urgency=medium * Combine share and import peers (LP: #1539674) -- Ken VanDine Fri, 29 Jan 2016 17:31:56 +0000 content-hub (0.1+16.04.20151216.1-0ubuntu1) xenial; urgency=medium [ Michael Sheldon ] * Set destination app-id as download metadata -- CI Train Bot Wed, 16 Dec 2015 16:17:10 +0000 content-hub (0.1+16.04.20151124-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Ken VanDine ] * Added ogg file (the default Ubuntu ringtone) for testing music exports and support music exports in content-hub-test-exporter -- Ken VanDine Tue, 24 Nov 2015 11:09:05 +0000 content-hub (0.1+16.04.20151029.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. added: po/et.po [ Ken VanDine ] * Drop the ElideMiddle in the ContentPeerPicker and add WordWrap to match the grid in unity8 * Use libertine to query for apps installed in containers * use ubuntu_app_launch_application_info to get the dir and filename for desktop files -- Ken VanDine Thu, 29 Oct 2015 13:59:36 +0000 content-hub (0.1+15.10.20150922-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Major version bump [ CI Train Bot ] * No-change rebuild. -- Ken VanDine Tue, 22 Sep 2015 01:19:46 +0000 content-hub (0.0+15.10.20150909-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Fixed crash when the service is passed an invalid type via dbus (LP: #1472026) [ Michael Sheldon ] * Add an "Undefined" content type to QML bindings so we can avoid making unnecessary peer look ups when the content type hasn't yet been set now that peers can register for Unknown. [ Robert Ancell ] * Drop unused include that makes build fail unless Qt5Gui pkg-config file is used. -- Ken VanDine Wed, 09 Sep 2015 16:58:39 +0000 content-hub (0.0+15.10.20150821.2-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Don't swallow QEvent::ApplicationDeactivate (LP: #1485222) * added hasPending property on ContentHub (LP: #1487073) * generate plugins.qmltypes (LP: #1483626) -- CI Train Bot Fri, 21 Aug 2015 16:36:06 +0000 content-hub (0.0+15.10.20150813-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Fixed property errors in example code (LP: #1484198) * create the local content-hub directory if needed when the hook is run (LP: #1484184) -- CI Train Bot Thu, 13 Aug 2015 13:31:51 +0000 content-hub (0.0+15.10.20150724-0ubuntu2~gcc5.1) wily; urgency=medium * No-change test rebuild for g++5 ABI transition -- Steve Langasek Mon, 27 Jul 2015 19:14:27 +0000 content-hub (0.0+15.10.20150724-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Ken VanDine ] * No change rebuild for ubuntu-download-manager -- CI Train Bot Fri, 24 Jul 2015 17:16:55 +0000 content-hub (0.0+15.10.20150703-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added ContentType.Events Added tests for the well known types (LP: #1464244) -- CI Train Bot Fri, 03 Jul 2015 13:22:31 +0000 content-hub (0.0+15.10.20150701-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * Resync trunk. [ Renato Araujo Oliveira Filho ] * Fixed header divider color for ContentPeerPicker11. (LP: #1470557) -- CI Train Bot Wed, 01 Jul 2015 21:53:29 +0000 content-hub (0.0+15.10.20150615.3-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added support for registering a source or destination as handlers for Type::all -- CI Train Bot Mon, 15 Jun 2015 18:21:22 +0000 content-hub (0.0+15.10.20150608-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Make the import and share testability peers return 1 if the transfer is aborted. Added url-dispatcher autopkgtest. -- CI Train Bot Mon, 08 Jun 2015 16:48:39 +0000 content-hub (0.0+15.10.20150603-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * SECURITY UPDATE: file disclosure via unchecked AppArmor profile (LP: #1456628) Don't allow exporting of files that aren't allowed by the source apparmor profile CVE-2015-1327 (LP: #1456628) -- CI Train Bot Wed, 03 Jun 2015 17:45:36 +0000 content-hub (0.0+15.10.20150518-0ubuntu1) wily; urgency=medium [ Ken VanDine ] * Added url-dispatcher integration. This allows export and share requests to be initiated by opening a url. -- CI Train Bot Mon, 18 May 2015 13:16:45 +0000 content-hub (0.0+15.04.20150422-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * Added ContentType.Text as a well known type Added ContentItem.text property for serialized content (LP: #1430460) * Don't use a unicode apostrophe in the docs * Fixed qdoc syntax error for the ContentPeerPicker::peerSelected and ContentPeerPicker::cancelPressed signals -- CI Train Bot Wed, 22 Apr 2015 16:45:39 +0000 content-hub (0.0+15.04.20150331-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * When requesting an import from an unknown peer, abort the transfer. This is most likely to occur when requesting the default peer for a ContentType that has no default registered. (LP: #1429695) -- CI Train Bot Tue, 31 Mar 2015 14:10:11 +0000 content-hub (0.0+15.04.20150319-0ubuntu1) vivid; urgency=medium [ Ken VanDine ] * Abort transfers when a file already exists matching the requested name and ContentStore. (LP: #1429687) -- CI Train Bot Thu, 19 Mar 2015 15:27:11 +0000 content-hub (0.0+15.04.20150123-0ubuntu1) vivid; urgency=low [ Michael Sheldon ] * Use the theme background so that fonts are visible with dark apps (LP: #1384490) -- Ubuntu daily release Fri, 23 Jan 2015 16:56:52 +0000 content-hub (0.0+15.04.20141202-0ubuntu1) vivid; urgency=low [ Michael Sheldon ] * Handle content peer model loading asynchronously (LP: #1390096) -- Ubuntu daily release Tue, 02 Dec 2014 14:17:57 +0000 content-hub (0.0+15.04.20141126-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Added test peers for automated testing of export, import and shares. [ CI bot ] * Resync trunk -- Ubuntu daily release Wed, 26 Nov 2014 15:26:15 +0000 content-hub (0.0+15.04.20141120-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Fixed conflict with nih-dbus and our own i18n wrapper (LP: #1394211) -- Ubuntu daily release Thu, 20 Nov 2014 04:22:47 +0000 content-hub (0.0+15.04.20141110-0ubuntu1) vivid; urgency=low [ Ken VanDine ] * Added EBooks to well known types (LP: #1383732) [ CI bot ] * Resync trunk [ Ubuntu daily release ] * New rebuild forced [ Michael Sheldon ] * Set the caller on the ContentTransferHint dialog to allow it to be destroyed safely when its parent is destroyed. (LP: #1377334) * Update click hook wrapper to account for change in dbus-session file. (LP: #1390095) -- Ubuntu daily release Mon, 10 Nov 2014 16:31:46 +0000 content-hub (0.0+14.10.20141014-0ubuntu1) 14.09; urgency=low [ CI bot ] * Resync trunk [ Ubuntu daily release ] * New rebuild forced [ Michael Sheldon ] * Add support for receiving directories of unzipped files from download manager. (LP: #1365993) -- Ubuntu daily release Tue, 14 Oct 2014 16:11:13 +0000 content-hub (0.0+14.10.20141010-0ubuntu1) utopic; urgency=low [ Sebastien Bacher ] * Include missing sources in the translation template, use the custom rule to update it and load the translations from the correct domain -- Ubuntu daily release Fri, 10 Oct 2014 16:16:32 +0000 content-hub (0.0+14.10.20141009-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Fall back to a copy if move fails (LP: #1373086) [ Michael Sheldon ] * Fix packaging for translations. -- Ubuntu daily release Thu, 09 Oct 2014 14:44:05 +0000 content-hub (0.0+14.10.20141007-0ubuntu1) utopic; urgency=low [ Sebastien Bacher ] * use X-Ubuntu-Use-Langpack so translations are imported (LP: #1378324) -- Ubuntu daily release Tue, 07 Oct 2014 14:44:14 +0000 content-hub (0.0+14.10.20140919-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Fixed handling of translated strings from g_app_info_get_display_name (LP: #1368770) (LP: #1368770) -- Ubuntu daily release Fri, 19 Sep 2014 14:40:29 +0000 content-hub (0.0+14.10.20140915-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Build with dh_translations (LP: #1359166) (LP: #1359166) * Improved uncreatable message for ContentTransfer -- Ubuntu daily release Mon, 15 Sep 2014 20:50:10 +0000 content-hub (0.0+14.10.20140828-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Expose the source and destination app IDs on transfers. -- Ubuntu daily release Thu, 28 Aug 2014 03:09:56 +0000 content-hub (0.0+14.10.20140815-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Add a cancel button to the ContentTransferHint. -- Ubuntu daily release Fri, 15 Aug 2014 17:49:09 +0000 content-hub (0.0+14.10.20140806.2-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Add contentType property to Transfer -- Ubuntu daily release Wed, 06 Aug 2014 20:09:47 +0000 content-hub (0.0+14.10.20140801.4-0ubuntu1) utopic; urgency=medium [ Ken VanDine ] * debian/control - Renamed the binary for the qml module to qtdeclarative5-ubuntu-content1 to reflect support for API version 1.x instead of 0.1 [ Michael Sheldon ] * Remove the Ubuntu shape from the save icon in the download snap decision. (LP: #1350281) * Transfer entire content Item objects over dbus, instead of just their URL component. Adds name property to C++ backend and connects to existing QML property. * Ignore unused function warnings (new in g++ 4.9), as utils.cpp defines a number of static functions that may not be used everywhere. * Make the ContentPeerPicker's header text customisable and replace the bottom cancel button with new header style cancel. [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Fri, 01 Aug 2014 20:07:29 +0000 content-hub (0.0+14.10.20140710-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Added ContentItem.move function to allow pure QML apps to relocate local files collected. -- Ubuntu daily release Thu, 10 Jul 2014 20:10:35 +0000 content-hub (0.0+14.10.20140709-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Don't close/switch applications after an export has been finalized. * Don't make the peer picker explicitly invisible, provide a background for the peer picker and anchor the bottom of the app view appropriately rather than calculating height. -- Ubuntu daily release Wed, 09 Jul 2014 17:38:25 +0000 content-hub (0.0+14.10.20140704-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Update theme used for resolving system icons (e.g. as used by Debian packages) to use "suru" theme. -- Ubuntu daily release Fri, 04 Jul 2014 14:20:38 +0000 content-hub (0.0+14.10.20140703-0ubuntu1) utopic; urgency=low [ Michael Sheldon ] * Add Debian friendly locations to content-hub-peer-hooks search locations [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Thu, 03 Jul 2014 16:29:32 +0000 content-hub (0.0+14.10.20140618-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Added objectName to the cancel button in the ContentPeerPicker, it'll be useful for autopilot tests. * Don't abort downloads that haven't been charged yet when a new transfer is created. This will leave multiple transfers from downloads which haven't been charged remain in active_transfers until they have been charged. (LP: #1326535) Having multiple downloaded transfers in active_transfers means when the destination starts or resumes, then all the completed downloads will get charged which will send multiple signals to the destination. (LP: #1326535) * Added toDataURI to ContentItem -- Ubuntu daily release Wed, 18 Jun 2014 15:58:44 +0000 content-hub (0.0+14.10.20140604-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Check for completed downloads when an import handler is registered, charge if necessary. This will trigger an import for completed downloads that might have been dismissed in the notification. * Add a wrapper for the click hook to ensure the dbus session is properly exported (LP: #1324969) (LP: #1324969) * Use an EventFilter to get ApplicationActivate events, to notify the service when a handler gains focus. This is useful to charge completed downloads that have been dismissed in the snap decision. * Added new well known types for videos and links. Set gallery as default for videos. [ Michael Sheldon ] * Display errors reported by download manager as notifications * Show a message in the peer picker when no apps are available for the specified content type. -- Ubuntu daily release Wed, 04 Jun 2014 16:50:50 +0000 content-hub (0.0+14.10.20140601-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Name change for UAL -- Ubuntu daily release Sun, 01 Jun 2014 20:58:54 +0000 content-hub (0.0+14.10.20140521.1-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * reorder virtual functions added with download support, to fix abi compatibility. (LP: #1321304) [ Michael Sheldon ] * Remove aliases for GridView properties that no longer exist. -- Ubuntu daily release Wed, 21 May 2014 15:01:45 +0000 content-hub (0.0+14.10.20140515.1-0ubuntu1) utopic; urgency=low [ Ken VanDine ] * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. [ Michael Sheldon ] * Use libnotify to send a snap decision with an Open action for downloads. Added translation support, needed for the strings in the notification. -- Ubuntu daily release Thu, 15 May 2014 21:02:30 +0000 content-hub (0.0+14.04.20140415-0ubuntu1) trusty; urgency=low [ Michael Sheldon ] * Fixes the clipping setting on the ResponsiveGridView when being used with dynamically loaded ContentPeerModels. * Excludes ResponsiveGridView from documentation creation and provides additional summaries for QML components. -- Ubuntu daily release Tue, 15 Apr 2014 22:01:11 +0000 content-hub (0.0+14.04.20140402-0ubuntu2) trusty; urgency=medium * No-change rebuild for shlib changes in qtbase and qtdeclarative. -- Ricardo Salveti de Araujo Mon, 14 Apr 2014 11:46:04 -0300 content-hub (0.0+14.04.20140402-0ubuntu1) trusty; urgency=low [ Loïc Minier ] * Downgrade content-hub Recommends to a Suggests as we don't want content-hub pulled via ubuntu-sdk on developer desktops. [ Ken VanDine ] * protect against queries for Type::unknown (LP: #1293463) * Replace a couple missed qDebug lines for logging * Don't unref the g_icon, the value belongs to app * Ensure m_defaultSources is a StringList before attempting to use it as a list * ContentPeerPicker: Make headers translatable and use a ResponsiveGridView for the devices grid to match the apps grid. ContentPeerPicker: hide the devices section until we have a way to populate it [ Javier Collado ] * Added README file (LP: #1274899) [ Dimitri John Ledkov ] * Exit quicker, if there is nothing to do. (LP: #1287674) (LP: #1287674) [ Michael Sheldon ] * Fixes updating of the ContentPeerModel when using Loader and changing ContentType or ContentHandler dynamically and ensures that ContentPeerModel Loader doesn't begin loading the model until the peer picker becomes visible (avoiding delaying app start-up time). * Make qdoc based documentation compatible with the Qt 5.2 version of qdoc. * Fixes version number of import statements in QML documentation. -- Ubuntu daily release Wed, 02 Apr 2014 14:46:54 +0000 content-hub (0.0+14.04.20140321-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Adds support for multiple handler types: source, destination and share. Enforce single transfer per peer, if a second transfer request is made from a peer that already has an unfinished transfer, cancel the previous one. This is needed as long as apps are required to be single instance. * If the transfer isn't persistent, attempt to hardlink instead of copying. If the link fails, fallback to a copy. * If the default source is set to anything other than a click appId triplet, fallback to the legacy APP_ID. Changed default source for contacts to the legacy APP_ID for address-book-app [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Fri, 21 Mar 2014 00:46:57 +0000 content-hub (0.0+14.04.20140307-0ubuntu1) trusty; urgency=low * New rebuild forced -- Ubuntu daily release Fri, 07 Mar 2014 06:59:44 +0000 content-hub (0.0+14.04.20140306-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Added Type::Known::contacts. Note: there is no associated default store for contacts under any scope. Data for contacts doesn't persist. * Changed defaults to a triplet used to build the appid. Bumped build depends for libupstart-app-launch2-dev needed for converting the triplet to an appid. -- Ubuntu daily release Thu, 06 Mar 2014 16:50:24 +0000 content-hub (0.0+14.04.20140304-0preview1) trusty; urgency=medium * Support for more handler types, including sharing * Marshal peer details like name and icon from the service, so confined apps can show them. * Improved QML bindings * New ContentPeerPicker QML component -- Ken VanDine Mon, 27 Jan 2014 14:09:38 -0500 content-hub (0.0+14.04.20131209.1-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Filled in the missing docstrings for the QML bindings . * Documentation cleanup, fixes button alignment and uses MainView in the QML code example. * allow ContentPeer to be creatable in QML, this makes it more obvious how to deal with the list returned by knownSourcesForType. [ Ted Gould ] * Upgrading to libupstart-app-launch v2. [ Alexandre Abreu ] * fix small documentation nit [ Ubuntu daily release ] * Automatic snapshot from revision 69 -- Ubuntu daily release Mon, 09 Dec 2013 09:59:43 +0000 content-hub (0.0+14.04.20131025-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * return a QVariantList from knownSourcesForType so the QML bindings can expose a list of peers, fixes (LP: #1236932). (LP: #1236932) * Added qdoc docs for QML bindings. [ Ubuntu daily release ] * Automatic snapshot from revision 63 -- Ubuntu daily release Fri, 25 Oct 2013 11:04:43 +0000 content-hub (0.0+13.10.20131011-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Make libcontent-hub0 recommend content-hub . * invoke the destination when the transfer is charged . * Added a click hook, which iterates installed known peers, removing them when they are no longer installed and adding peers when needed. [ Robert Bruce Park ] * New component for the importer to indicate an ongoing transfer. [ Guenter Schwann ] * New component for the importer to indicate an ongoing transfer. * Quit the source app on charged/abort when it was started by the content hub. [ Ubuntu daily release ] * Automatic snapshot from revision 60 -- Ubuntu daily release Fri, 11 Oct 2013 05:41:10 +0000 content-hub (0.0+13.10.20131007-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * added Breaks for gallery-app <= 0.0.67+13.10.20130924.1-0ubuntu1 . * Don't invoke the source application until the destination has called start(). This will prevent source app from getting raised before the destination app expects it, preventing an unexpected interuption in the work flow. [ Ubuntu daily release ] * Automatic snapshot from revision 54 -- Ubuntu daily release Mon, 07 Oct 2013 10:51:34 +0000 content-hub (0.0+13.10.20131001-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Added basic pkgconfig file . [ Ubuntu daily release ] * Automatic snapshot from revision 51 -- Ubuntu daily release Tue, 01 Oct 2013 00:20:01 +0000 content-hub (0.0+13.10.20130930-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Pulled back in all the changes that were reverted in rev 47. Bug (LP: #1231368) seemed to be caused by gallery-app needing a rebuild against this version of content-hub. (LP: #1231368) [ Ubuntu daily release ] * Automatic snapshot from revision 49 -- Ubuntu daily release Mon, 30 Sep 2013 20:00:26 +0000 content-hub (0.0+13.10.20130927-0ubuntu1) saucy; urgency=low [ Sebastien Bacher ] * Revert previous upload since it's buggy (lp: #1231368) [ Ubuntu daily release ] * Automatic snapshot from revision 47 -- Ubuntu daily release Fri, 27 Sep 2013 10:32:55 +0000 content-hub (0.0+13.10.20130925-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Adds a store property to the Transfer, which defaults to an cuc::Scope::app scope and appended with "HubIncoming/${id}". The hub will copy the files to that store when the transfer gets charged and set the proper paths based on the Store::url when setting Transfer::items. To handle cleaning up temporary copies of files, this adds an additional state to the tranfer "finalized" and a finalize function to the API. When the importer calls finalize, the hub will purge the copied files, but only if the destination didn't specify their own persistent content store. On purge, we only remove the files if the store is set to the default used by the hub. If the destination set a different store, we leave the files there. This is an important implementation detail, without setting a persistent store, a QML app wouldn't have a way to copy the files out of the incoming directory into their own persistent location. Allowing the destination app to setStore, gives it a way to keep the files in it's own store for future access. If the destination doesn't set the store, we assume the destination app is done with the content before calling finalize. * fixed typo in Type enum. * Added a name property to Peer using GAppInfo to get a friendly name. [ Ubuntu daily release ] * Automatic snapshot from revision 45 -- Ubuntu daily release Wed, 25 Sep 2013 11:05:41 +0000 content-hub (0.0+13.10.20130920-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * fix for the MockHandler so it doesn't trigger dbus activation . * explicitly build dep on libglib2.0-dev . * Updated handler names and paths to use nih_dbus_path to sanitize the names. nih_dbus_path is designed to really just return a dbus path, however this is the same function apparmor uses to mangle app_id names for policy, so it should ensure we can match consistently. This is needed for confined apps. * Use QGSettings for persistent peer registration and set defaults. Also adds a helper install peers, which will be used as a click hook, but doesn't get installed yet. [ Ubuntu daily release ] * Automatic snapshot from revision 41 -- Ubuntu daily release Fri, 20 Sep 2013 10:54:49 +0000 content-hub (0.0+13.10.20130917-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Make handler registration more dynamic by using a QDBusServiceWatcher to to wait for a handler to register. * Added Transfer::SelectionType enum, used to allow the export handler to limit selection to a single item or allow multiple items. . [ Guenter Schwann ] * Add an app manager to start the exporter automaticly. [ Ubuntu daily release ] * Automatic snapshot from revision 36 -- Ubuntu daily release Tue, 17 Sep 2013 12:08:04 +0000 content-hub (0.0+13.10.20130905-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Extended com::ubuntu::content::detail::Transfer to include properties for id, source, and destination. Also added export_path and import_path convenience functions which returns the object paths. [ Ubuntu daily release ] * Automatic snapshot from revision 32 -- Ubuntu daily release Thu, 05 Sep 2013 04:54:11 +0000 content-hub (0.0+13.10.20130831-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Don't start a new instance of the service if it fails to register on the bus . [ Ubuntu daily release ] * Automatic snapshot from revision 30 -- Ubuntu daily release Sat, 31 Aug 2013 06:39:18 +0000 content-hub (0.0+13.10.20130830-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Moved some common service names and paths to common.h instead of setting them in multiple places. . [ Ubuntu daily release ] * Automatic snapshot from revision 28 -- Ubuntu daily release Fri, 30 Aug 2013 12:44:22 +0000 content-hub (0.0+13.10.20130829.1-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Adds a Handler interface and adapter which provides get registered on the bus from the Hub client. The service side will look for registered handlers when a new transfer is created. The service then connects to transfer and calls HandleExport on the handler when the transfer state changes to in_progress. There is still no hooks in the service to call HandleImport for registered import handlers, but clients can connect to stateChanged and fire their own import when the state changes to charged. Handler registration requires APP_ID be set in the client's env, which we can drop when we get app manager integration. It also requires the export handler to be registered before the client creates the transfer. [ Ubuntu daily release ] * Automatic snapshot from revision 26 -- Ubuntu daily release Thu, 29 Aug 2013 19:09:23 +0000 content-hub (0.0+13.10.20130829-0ubuntu1) saucy; urgency=low [ Guenter Schwann ] * More robust handling of charge and collect of the transfer in QML. [ Ubuntu daily release ] * Automatic snapshot from revision 24 -- Ubuntu daily release Thu, 29 Aug 2013 02:10:14 +0000 content-hub (0.0+13.10.20130827.3-0ubuntu1) saucy; urgency=low [ Guenter Schwann ] * Use qmlRegisterSingletonType to register the ContentHub. * Add QML examples for import and export. [ Ubuntu daily release ] * Automatic snapshot from revision 22 -- Ubuntu daily release Tue, 27 Aug 2013 19:11:23 +0000 content-hub (0.0+13.10.20130827.2-0ubuntu1) saucy; urgency=low * Automatic snapshot from revision 19 -- Ubuntu daily release Tue, 27 Aug 2013 10:49:08 +0000 content-hub (0.0+13.10.20130827.1-0ubuntu1) saucy; urgency=low * Automatic snapshot from revision 18 -- Ubuntu daily release Tue, 27 Aug 2013 07:14:13 +0000 content-hub (0.0+13.10.20130827-0ubuntu1) saucy; urgency=low [ Ken VanDine ] * Initial package [ Łukasz 'sil2100' Zemczak ] * Automatic snapshot from revision 10 (bootstrap) [ Ken VanDine ] * replace "." with "_" in the peer_id to create valid object paths . [ Michael Terry ] * Some minor packaging cleanup. [ Guenter Schwann ] * Add and register an import export handler. * More QML tests, work on QML documentation. * ContentItem and ContentPeer use their service counterpart as member. * Handle import and export requests from hub for QML. [ Ubuntu daily release ] * Automatic snapshot from revision 17 -- Ubuntu daily release Tue, 27 Aug 2013 02:10:21 +0000 content-hub-1.1.1/debian/content-hub-gsettings-schema-name-change.sh 0000664 0000000 0000000 00000002653 14561211576 0025366 0 ustar 00root root 0000000 0000000 #!/bin/bash -euf # Copyright (C) 2021 UBports Foundation. # # 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 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 Lesser General Public License # along with this program. If not, see . # # Authored by: Ratchanan Srirattanamet set -o pipefail DCONF_SOURCE_DIR="/com/ubuntu/content/hub/" DCONF_TARGET_DIR="/com/lomiri/content/hub/" # session-migration says we should be idempotent. We simply check if the target # is not empty as to not overwrite things that is set manually. target_content=$(dconf dump $DCONF_TARGET_DIR) if [ -n "$target_content" ]; then echo "${DCONF_TARGET_DIR} is not empty. Perhaps the migration has already" \ "happened, and/or the user has set additional settings." exit 0 fi # Now, simply pipe the output of "dconf dump" to "dconf load". Won't wipe the # old data, in case the migration goes wrong. dconf dump $DCONF_SOURCE_DIR | dconf load $DCONF_TARGET_DIR echo "Setting for Content Hub migrated successfully." content-hub-1.1.1/debian/content-hub-testability.install 0000664 0000000 0000000 00000000406 14561211576 0023343 0 ustar 00root root 0000000 0000000 usr/bin/content-hub-test* usr/share/content-hub/peers/content-hub-test* usr/share/applications/content-hub-test* usr/share/content-hub/testability/data usr/share/icons/hicolor/512x512/apps/content-hub-test* debian/apparmor/content-hub-testability etc/apparmor.d content-hub-1.1.1/debian/content-hub.hook 0000664 0000000 0000000 00000000127 14561211576 0020302 0 ustar 00root root 0000000 0000000 Pattern: ${home}/.local/share/content-hub/${id} User-Level: yes Hook-Name: content-hub content-hub-1.1.1/debian/content-hub.install 0000664 0000000 0000000 00000000552 14561211576 0021012 0 ustar 00root root 0000000 0000000 usr/bin/content-hub-send usr/bin/content-hub-service debian/content-hub.hook usr/share/click/hooks usr/share/dbus-1 usr/share/glib-2.0/schemas usr/share/locale/*/LC_MESSAGES/content-hub.mo usr/share/applications/content-hub-send.desktop usr/share/lomiri-url-dispatcher/urls/content-hub-send.url-dispatcher usr/share/content-hub/icons var/cache/content-hub/peers content-hub-1.1.1/debian/content-hub.migrations 0000664 0000000 0000000 00000000063 14561211576 0021515 0 ustar 00root root 0000000 0000000 debian/content-hub-gsettings-schema-name-change.sh content-hub-1.1.1/debian/control 0000664 0000000 0000000 00000010740 14561211576 0016577 0 ustar 00root root 0000000 0000000 Source: content-hub Priority: optional Maintainer: UBports Developers Build-Depends: click-dev, cmake, cmake-extras, dbus-test-runner , debhelper-compat (= 12), dh-apparmor, dh-migrations, dh-translations , doxygen , google-mock , graphviz , libgtest-dev, lcov , libapparmor-dev, libdbus-1-dev, libglib2.0-dev, libgsettings-qt-dev, # liblibertine-dev, liblomiri-api-dev, libnotify-dev, liblomiri-download-manager-client-dev, liblomiri-app-launch-dev, qml-module-lomiri-components, qml-module-qtquick2, qml-module-qttest , qt5-default, qtbase5-dev, qtdeclarative5-dev, qtdeclarative5-dev-tools, qttools5-dev-tools, xvfb , Standards-Version: 3.9.4 Section: libs Homepage: https://gitlab.com/ubports/core/content-hub Vcs-Git: https://gitlab.com/ubports/core/content-hub Vcs-Browser: https://gitlab.com/ubports/core/content-hub X-Ubuntu-Use-Langpack: yes Package: content-hub Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, Description: content sharing/picking service Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. This package includes the content sharing service. Package: libcontent-hub1 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Suggests: content-hub Description: content sharing/picking library Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. This package includes the content sharing libraries. Package: libcontent-hub-glib1 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: ${misc:Depends}, ${shlibs:Depends}, Suggests: content-hub Description: content sharing/picking library - GLib bindings Content sharing/picking infrastructure and service, designed to allow apps to securely and efficiently exchange content. . This package includes GLib bindings of the content sharing libraries. Package: libcontent-hub-dev Section: libdevel Architecture: any Multi-Arch: same Depends: libcontent-hub1 (= ${binary:Version}), ${misc:Depends}, Description: content sharing development files All the development headers and libraries for the content hub Package: libcontent-hub-glib-dev Section: libdevel Architecture: any Multi-Arch: same Depends: libcontent-hub-glib1 (= ${binary:Version}), ${misc:Depends}, Description: content sharing development files - GLib bindings GLib bindings of the development headers and libraries for the content hub Package: qml-module-lomiri-content Section: libs Architecture: any Pre-Depends: ${misc:Pre-Depends}, Depends: qml-module-qtquick2, ${misc:Depends}, ${shlibs:Depends}, Description: QML binding for libcontent-hub QML bindings for libcontent-hub Package: qml-module-ubuntu-content Section: libs Architecture: any Pre-Depends: ${misc:Pre-Depends}, Depends: qml-module-lomiri-content, qml-module-qtquick2, ${misc:Depends}, ${shlibs:Depends}, Provides: qtdeclarative5-ubuntu-content0.1, qtdeclarative5-ubuntu-content1, Breaks: qtdeclarative5-ubuntu-content1, Replaces: qtdeclarative5-ubuntu-content1, Description: QML binding for libcontent-hub - Ubuntu.Content compatibility layer This package contains the wrapper around Lomiri.Content QML type to provide Ubuntu.Content QML type, for compatibility with older applications. Package: libcontent-hub-doc Section: doc Architecture: all Build-Profiles: Depends: libcontent-hub-dev (>= ${source:Version}), ${misc:Depends}, Description: Documentation files for libcontent-hub-dev Documentation files for the libcontent-hub development Package: content-hub-testability Section: libdevel Architecture: any Build-Profiles: Depends: ${misc:Depends}, ${shlibs:Depends}, content-hub, Description: content sharing testability Files and utilities needed for automated testing of content-hub content-hub-1.1.1/debian/copyright 0000664 0000000 0000000 00000003343 14561211576 0017130 0 ustar 00root root 0000000 0000000 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: content-hub Source: https://launchpad.net/content-hub Files: * Copyright: 2013 Canonical Ltd. License: LGPL-3.0 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. Files: src/com/lomiri/content/service/* tests/acceptance-tests/* Copyright: 2013 Canonical Ltd. License: GPL-3.0 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. content-hub-1.1.1/debian/libcontent-hub-dev.install 0000664 0000000 0000000 00000000145 14561211576 0022253 0 ustar 00root root 0000000 0000000 usr/include/com/lomiri/content/*.h usr/lib/*/libcontent-hub.so usr/lib/*/pkgconfig/libcontent-hub.pc content-hub-1.1.1/debian/libcontent-hub-doc.install 0000664 0000000 0000000 00000000032 14561211576 0022235 0 ustar 00root root 0000000 0000000 usr/share/doc/content-hub content-hub-1.1.1/debian/libcontent-hub-glib-dev.install 0000664 0000000 0000000 00000000162 14561211576 0023165 0 ustar 00root root 0000000 0000000 usr/include/com/lomiri/content/glib/* usr/lib/*/libcontent-hub-glib.so usr/lib/*/pkgconfig/libcontent-hub-glib.pc content-hub-1.1.1/debian/libcontent-hub-glib1.install 0000664 0000000 0000000 00000000043 14561211576 0022470 0 ustar 00root root 0000000 0000000 usr/lib/*/libcontent-hub-glib.so.* content-hub-1.1.1/debian/libcontent-hub1.install 0000664 0000000 0000000 00000000036 14561211576 0021557 0 ustar 00root root 0000000 0000000 usr/lib/*/libcontent-hub.so.* content-hub-1.1.1/debian/qml-module-lomiri-content.install 0000664 0000000 0000000 00000000042 14561211576 0023573 0 ustar 00root root 0000000 0000000 usr/lib/*/qt5/qml/Lomiri/Content* content-hub-1.1.1/debian/qml-module-lomiri-content.lintian-overrides 0000664 0000000 0000000 00000000130 14561211576 0025561 0 ustar 00root root 0000000 0000000 qml-module-lomiri-content binary: pkg-has-shlibs-control-file-but-no-actual-shared-libs content-hub-1.1.1/debian/qml-module-ubuntu-content.install 0000664 0000000 0000000 00000000042 14561211576 0023622 0 ustar 00root root 0000000 0000000 usr/lib/*/qt5/qml/Ubuntu/Content/ content-hub-1.1.1/debian/rules 0000775 0000000 0000000 00000002603 14561211576 0016253 0 ustar 00root root 0000000 0000000 #!/usr/bin/make -f # -*- makefile -*- export DPKG_GENSYMBOLS_CHECK_LEVEL=4 export CONTENT_HUB_TESTING=1 export DEB_BUILD_MAINT_OPTIONS=hardening=+all CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS) CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS) CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS) LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) ifneq (,$(findstring cross,$(DEB_BUILD_PROFILES))) PROJECT_DH_OPTIONS = --with click else PROJECT_DH_OPTIONS = --with click,translations endif # Enable Ubuntu.Content compatibility layer in UBports build. CONFIGURE_OPTS := -DENABLE_UBUNTU_COMPAT=ON ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) CONFIGURE_OPTS += -DENABLE_TESTS=OFF DEB_BUILD_PROFILES += noinsttest endif ifneq (,$(findstring nodoc,$(DEB_BUILD_OPTIONS))) CONFIGURE_OPTS += -DENABLE_DOC=OFF endif %: dh $@ $(PROJECT_DH_OPTIONS) --with migrations -- -B build override_dh_missing: dh_missing --fail-missing override_dh_auto_test: dh_auto_test --no-parallel override_dh_auto_configure: dh_auto_configure -- $(CONFIGURE_OPTS) override_dh_auto_install: ifneq (,$(findstring nocheck,$(DEB_BUILD_PROFILES))) mkdir -p debian/content-hub-testability endif dh_auto_install dh_apparmor -pcontent-hub-testability --profile-name=content-hub-testability mkdir -p debian/tmp/var/cache/content-hub/peers override_dh_translations: make -C po content-hub.pot content-hub-1.1.1/debian/tests/ 0000775 0000000 0000000 00000000000 14561211576 0016334 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/debian/tests/aa-check 0000775 0000000 0000000 00000001652 14561211576 0017722 0 ustar 00root root 0000000 0000000 #!/bin/sh # start X (Xvfb :5 >/dev/null 2>&1 &) XVFB_PID=$! export DISPLAY=:5 # start local session D-BUS eval `dbus-launch` trap "kill $DBUS_SESSION_BUS_PID $XVFB_PID" 0 TERM QUIT INT export DBUS_SESSION_BUS_ADDRESS export XAUTHORITY=/dev/null export CONTENT_HUB_TESTING=1 content-hub-service &2>/dev/null oktests="content-hub-test-ok" badtests="content-hub-test-bad" FAILED="" for a in $oktests; do content-hub-test-importer &2>/dev/null content-hub-test-exporter content-hub-test-importer file:///etc/issue $a 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED $a" fi done for b in $badtests; do content-hub-test-importer &2>/dev/null content-hub-test-exporter content-hub-test-importer file:///etc/issue $b 2>/dev/null if [ $? -eq 0 ]; then FAILED="$FAILED $b" fi done if [ -z "$FAILED" ]; then echo "All tests passed" exit 0 else echo "$FAILED failed" exit 1 fi content-hub-1.1.1/debian/tests/control 0000664 0000000 0000000 00000000176 14561211576 0017743 0 ustar 00root root 0000000 0000000 Tests: aa-check url-dispatcher Depends: content-hub-testability, dbus-x11, xvfb, lomiri-app-launch Restrictions: allow-stderr content-hub-1.1.1/debian/tests/url-dispatcher 0000775 0000000 0000000 00000001712 14561211576 0021211 0 ustar 00root root 0000000 0000000 #!/bin/sh # start X (Xvfb :5 >/dev/null 2>&1 &) XVFB_PID=$! export DISPLAY=:5 # start local session D-BUS eval `dbus-launch` trap "kill $DBUS_SESSION_BUS_PID $XVFB_PID" 0 TERM QUIT INT export DBUS_SESSION_BUS_ADDRESS export XAUTHORITY=/dev/null export CONTENT_HUB_TESTING=1 FAILED="" content-hub-service &2>/dev/null content-hub-test-sharer &2>/dev/null content-hub-send "content:?pkg=content-hub-test-sharer&handler=share&text=text" 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED share" fi content-hub-test-importer &2>/dev/null content-hub-send "content:?pkg=content-hub-test-importer&handler=export&text=text" 2>/dev/null if [ $? -ne 0 ]; then FAILED="$FAILED import" fi content-hub-send "content:?pkg=content-hub-test-importer&handler=export&url=file:///etc/issue" 2>/dev/null if [ $? -eq 0 ]; then FAILED="$FAILED reject-files" fi if [ -z "$FAILED" ]; then echo "All tests passed" exit 0 else echo "$FAILED failed" exit 1 fi content-hub-1.1.1/doc/ 0000775 0000000 0000000 00000000000 14561211576 0014515 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/doc/CMakeLists.txt 0000664 0000000 0000000 00000002322 14561211576 0017254 0 ustar 00root root 0000000 0000000 # Copyright © 2013 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 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 . # # Authored by: Thomas Voss add_custom_target(doc ALL) find_package(Doxygen) if(DOXYGEN_FOUND) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) add_custom_target(cppdoc ALL ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_DOCDIR}/cpp) add_dependencies(doc cppdoc) endif(DOXYGEN_FOUND) add_subdirectory(qml) content-hub-1.1.1/doc/Doxyfile.in 0000664 0000000 0000000 00000234620 14561211576 0016637 0 ustar 00root root 0000000 0000000 # Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = "Content Hub" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @CONTENT_HUB_VERSION_MAJOR@.@CONTENT_HUB_VERSION_MINOR@.@CONTENT_HUB_VERSION_PATCH@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "A session-wide content-exchange service" # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@/include/ # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. # This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @CMAKE_CURRENT_SOURCE_DIR@ @CMAKE_CURRENT_SOURCE_DIR@/../include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/qml/ # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/../tests # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = YES # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = @CMAKE_CURRENT_SOURCE_DIR@/Mainpage.md #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/extra.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = YES # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = YES # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 1 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = YES # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = NO # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = YES # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES content-hub-1.1.1/doc/Mainpage.md 0000664 0000000 0000000 00000005752 14561211576 0016571 0 ustar 00root root 0000000 0000000 Content Management & Exchange {#mainpage} ============================= Unity and the overall Lomiri experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. To ease conversations, we start over with a set of definitions: - Content item: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. \sa com::lomiri::content::Item. - Content types: A set of well-known content types. E.g., images or music files. \sa com::lomiri::content::Type. - Content set: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. - Content owner: The unique owner of a content item. A content item has to be owned by exactly one app. \sa com::lomiri::content::Peer - Content store: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. \sa com::lomiri::content::Store, com::lomiri::content::Scope - Content transfer: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by: * The content source * The content destination * The transfer direction, either import or export * The set of items that should be exchanged \sa com::lomiri::content::Transfer, com::lomiri::content::Hub::create_import_for_type_from_peer - Content picking: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. Architectural Overview ---------------------- The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa com::lomiri::content::Hub Example usage - Importing Pictures ---------------------------------- \snippet acceptance-tests/app_hub_communication_transfer.cpp Importing pictures content-hub-1.1.1/doc/extra.css 0000664 0000000 0000000 00000001271 14561211576 0016353 0 ustar 00root root 0000000 0000000 body, table, div, p, dl { font: 400 14px/19px Ubuntu,Arial,sans-serif; } #projectname { font: 300% Ubuntu,Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Ubuntu,Arial,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Ubuntu,Arial,FreeSans,sans-serif; color: #E24106; border-bottom: 0 none; margin: 0; } content-hub-1.1.1/doc/qml/ 0000775 0000000 0000000 00000000000 14561211576 0015306 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/doc/qml/CMakeLists.txt 0000664 0000000 0000000 00000002527 14561211576 0020054 0 ustar 00root root 0000000 0000000 # add a target to generate API documentation with qdoc SET(QDOC_WORKS FALSE) SET(ENV{QT_SELECT} qt5) FIND_PROGRAM(QDOC_EXECUTABLE qdoc) if(QDOC_EXECUTABLE) EXECUTE_PROCESS(COMMAND ${QDOC_EXECUTABLE} --version OUTPUT_VARIABLE QDOC_OUTPUT ERROR_QUIET) string(REGEX REPLACE "qdoc ([0-9]+(\\.[0-9]+)+).*" "\\1" QDOC_VERSION ${QDOC_OUTPUT}) if(QDOC_VERSION MATCHES "^5\\.") set(QDOC_WORKS TRUE) endif() endif(QDOC_EXECUTABLE) if(QDOC_WORKS) message(STATUS "Check for working qdoc: ${QDOC_EXECUTABLE} (version: \"${QDOC_VERSION}\") -- works") elseif(QDOC_EXECUTABLE) message(FATAL_ERROR "Check for working qdoc: ${QDOC_EXECUTABLE} -- does not work") else() message(FATAL_ERROR "Check for working qdoc: not found") endif(QDOC_WORKS) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/lomiri-content-hub.qdocconf.in ${CMAKE_CURRENT_BINARY_DIR}/lomiri-content-hub.qdocconf @ONLY) add_custom_target(qmldoc ${QDOC_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/lomiri-content-hub.qdocconf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating QML API documentation with qdoc" VERBATIM ) # copy stylesheet files into build directory for shadow builds file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/css" DESTINATION ${CMAKE_CURRENT_BINARY_DIR} ) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION ${CMAKE_INSTALL_DOCDIR}/qml/html ) add_dependencies(doc qmldoc) content-hub-1.1.1/doc/qml/css/ 0000775 0000000 0000000 00000000000 14561211576 0016076 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/doc/qml/css/base.css 0000664 0000000 0000000 00000027067 14561211576 0017536 0 ustar 00root root 0000000 0000000 /** * Lomiri Developer base stylesheet * * A base stylesheet containing site-wide styles * * @project Lomiri Developer * @version 1.0 * @author Canonical Web Team: Steve Edwards * @copyright 2011 Canonical Ltd. */ /** * @section Global */ body { font-family: 'Ubuntu', 'Ubuntu Beta', UbuntuBeta, Ubuntu, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif; font-size: 13px; line-height: 1.4; color: #333; } a { color: #dd4814; text-decoration: none; outline: 0; } p, dl { margin-bottom: 10px; } strong { font-weight: bold; } em { font-style: italic; } code{ padding: 10px; font-family: 'Ubuntu Mono', 'Consolas', 'Monaco', 'DejaVu Sans Mono', Courier, monospace; background-color: #fdf6f2; display: block; margin-bottom: 10px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } h1 { font-size: 36px; line-height: 1.1; margin-bottom: 20px; } article h1, h2 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; } h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; } h4 { font-weight: bold; } time { color:#999; } /** * @section Structure */ .header-login, .header-navigation div, .header-content div { margin: 0 auto; width: 940px; } .header-content h1{ background-color:#ffffff; display:inline-block; } .header-content h2{ background-color:#ffffff; display:table; } .header-login ul { margin: 4px 0; float: right; } .header-login li { margin-right: 10px; float: left; } .header-login a { color: #333; } .header-navigation { border-top: 2px solid #dd4814; border-bottom: 2px solid #dd4814; background-color: #fff; height: 54px; clear: right; overflow: hidden; } .header-navigation nav ul { border-right: 1px solid #dd4814; float: right; } .header-navigation nav li { border-left: 1px solid #dd4814; float: left; height: 54px; } .header-navigation nav a { padding: 18px 14px 0; font-size: 14px; display: block; height: 36px; } .header-navigation nav a:hover { background-color: #fcece7; } .header-navigation nav .current_page_item a, .header-navigation nav .current_page_parent a, .header-navigation nav .current_page_ancestor a { background-color: #dd4814; color: #fff; } .header-navigation input { margin: 12px 10px 0 10px; padding: 5px; border-top: 1px solid #a1a1a1; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #fff; border-left: 1px solid #e0e0e0; width: 90px; font-style: italic; color: #ccc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: inset 0 1px 1px #e0e0e0; -webkit-box-shadow: inset 0 1px 1px #e0e0e0; box-shadow: inset 0 1px 1px #e0e0e0; } .header-navigation h2 { margin: 18px 0 0 6px; text-transform: lowercase; font-size: 22px; color: #dd4814; float: left; } .header-navigation .logo-ubuntu { margin-top: 12px; float: left; } .header-content .header-navigation-secondary { margin-bottom: 40px; padding: 0; position: relative; z-index: 2; } .header-navigation-secondary div { padding: 0; border: 2px solid #dd4814; -moz-border-radius: 0px 0px 4px 4px; -webkit-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; background: #fff; border-top: 0px; width: 936px; } .header-navigation-secondary nav li { float: left; } .header-navigation-secondary nav li a { color: #333; display: block; height: 25px; padding: 8px 8px 0; } .header-navigation-secondary nav li:hover, .header-navigation-secondary nav .current_page_item a { background: url("../img/sec-nav-hover.gif"); } .header-content { padding-bottom: 30px; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 1px 3px #e0e0e0; -webkit-box-shadow: 0 1px 3px #e0e0e0; box-shadow: 0 1px 3px #e0e0e0; margin-bottom: 3px; position: relative; overflow: hidden; } footer { padding: 10px 10px 40px 10px; position: relative; -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; font-size: 12px; background: url("../img/background-footer.png") repeat scroll 0 0 #f7f6f5; } footer div { margin: 0 auto; padding: 0 10px; width: 940px; } footer a { color: #000; } footer nav ul { margin: 10px 17px 30px 0; width: 172px; display: inline-block; vertical-align: top; height: auto; zoom: 1; *display: inline; } footer nav ul.last { margin-right: 0; } footer nav li { margin-bottom: 8px; } footer nav li:first-child { font-weight: bold; } footer p { margin-bottom: 0; } #content { padding-top: 35px; } .arrow-nav { display: none; position: absolute; top: -1px; z-index: 3; } .shadow { margin: 30px 0 3px 0; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 2px 3px #e0e0e0; -webkit-box-shadow: 0 2px 3px #e0e0e0; box-shadow: 0 2px 3px #e0e0e0; height: 3px; } /** * @section Site-wide */ #content h2{ font-size:24px; } .box-orange { padding: 10px; border: 3px solid #dd4814; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-orange .link-action-small { float: right; margin: 0 0 0 20px; } .link-bug { margin-left: 10px; color: #999; } .link-action { float: left; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .link-action2 { float: left; display: block; color: #fff; font-size: 16px; line-height: 1.3; } .link-action2 span{ display:block; float:left; } .link-action2 .cta-left{ background:url(../img/button-cta-left.png) no-repeat; width:22px; height:48px; } .link-action2 .cta-center{ background:url(../img/button-cta-slice.png) repeat-x; line-height:45px; height:48px; } .link-action2 .cta-right{ background:url(../img/button-cta-right.png) no-repeat; width:22px; height:48px; } .link-action-small { float: left; display: block; color: #fff; font-size: 16px; } .link-action-small span{ display:block; float:left; height:42px; } .link-action-small .cta-left{ background:url(../img/button-cta-left-small.png) no-repeat; width:19px; } .link-action-small .cta-center{ background:url(../img/button-cta-slice-small.png) repeat-x; line-height:42px; } .link-action-small .cta-right{ background:url(../img/button-cta-right-small.png) no-repeat; width:19px; } .link-action:active { position: relative; top: 1px; } .link-action2:active { position: relative; top: 1px; } .link-action-small:active { position: relative; top: 1px; } .list-bullets li { margin-bottom: 10px; list-style: disc; list-style-position: inside; } .box { margin-bottom: 30px; padding: 15px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-padded { margin-bottom: 30px; padding: 5px; border: 2px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background: url("../img/pattern-featured.gif") repeat scroll 0 0 #ebe9e7; overflow: hidden; } .box-padded h3 { margin: 5px 0 10px 5px; } .box-padded div { padding: 10px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background-color: #fff; overflow: hidden; } .box-padded li { padding: 0 10px; float: left; width: 211px; border-right: 1px dotted #aea79f; } .box-padded li.first { padding: 0; margin-bottom: 0; } .box-padded li.last { border: 0; width: 217px; } .box-padded img { margin: 0 10px 50px 0; float: left; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; } .box-clear { margin-bottom: 40px; } .box-clear .grid-4.first { margin-right: 15px; padding-right: 15px; } .box-clear .grid-4 { margin-left: 0; margin-right: 10px; padding-right: 10px; width: 298px; } .box-clear time { display: block; border-bottom: 1px dotted #aea79f; padding-bottom: 10px; margin-bottom: 10px; } .box-clear div.first { border-right: 1px dotted #aea79f; } .box-clear a { display: block; } .box-clear .rss { background: url("../img/rss.jpg") no-repeat scroll 0 center; padding-left: 20px; } .box-clear .location { display: block; margin-bottom: 1px; } .box-clear .last { margin: 0; padding-right: 0; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; width: 293px; } /* Widgets */ .ui-state-focus { outline: none; } .ui-accordion { border-bottom: 1px dotted #aea79f; } .ui-accordion a { display: block; } .ui-accordion h3 { margin-bottom: 0; border-top: 1px dotted #aea79f; position: relative; font-size: 13px; font-weight: bold; } .ui-accordion h3 a { padding: 10px 0; color: #333; } .ui-accordion h4 { margin-bottom: 5px; } .ui-accordion div fieldset { padding-bottom: 5px; } .ui-accordion div li, .ui-accordion div input { margin-bottom: 10px; } .ui-accordion .ui-icon { position: absolute; top: 15px; right: 0; display: block; width: 8px; height: 8px; background: url("../img/icon-accordion-inactive.png") 0 0 no-repeat transparent; } .ui-accordion .ui-state-active .ui-icon { background-image: url("../img/icon-accordion-active.png"); } .ui-accordion .current_page_item a { color: #333; } .container-tweet { -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; padding: 10px 10px 10px; background-color: #f7f7f7; } .container-tweet .tweet-follow { margin-top: 10px; margin-bottom: -10px; padding-left: 55px; padding-bottom: 6px; background: url("../img/tweet-follow.png") 0 5px no-repeat; display: block; } .container-tweet .tweet-follow span { font-size: 16px; font-weight: bold; line-height: 1.2; display: block; } .tweet a { display: inline; } .tweet .tweet_text { padding: 10px; background-color: #fff; -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; border: 1px solid #dd4814; font-size: 16px; display: block; clear: both; } .tweet.tweet-small .tweet_text { font-size: inherit; } .tweet .tweet_text a { color: #333; } .tweet .tweet_time, .tweet .tweet_user_and_time { padding: 15px 0 10px 0; position: relative; top: -2px; background: url("../img/tweet-arrow.png") no-repeat; display: block; } .tweet .tweet_odd .tweet_time, .tweet .tweet_odd .tweet_user_and_time { background-position: right 0; float: right; } .tweet .tweet_even .tweet_time, .tweet .tweet_even .tweet_user_and_time { background-position: left 0; float: left; } /* Search */ #content .list-search li { list-style-type:none; border:0px; margin-bottom: 15px; padding-top: 15px; } /* Blog */ .blog-article #nav-single { margin-top: 30px; margin-bottom: 30px; } .blog-article #nav-single .nav-next { float: right; } .blog-article article header .entry-meta { margin-bottom: 20px; } .blog-article article .entry-meta { color: #999; } .blog-article #respond form input[type="submit"] { float: left; cursor: pointer; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-left: 3px solid #e6633a; border-right: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .blog-article #respond form input[type="submit"]:active { position: relative; top: 1px; } .alignnone{ float:left; margin:10px 20px 10px 0; } .alignleft{ float:left; margin:10px 20px 10px 0; } .alignright{ float:right; margin:10px 0 10px 20px; } .aligncenter{ float:left; margin:10px 20px 10px 0; } .entry-content h2, .entry-content h3{ margin-top:20px; } .entry-content ul li{ list-style-type: circle; margin-left:16px; } .entry-content hr{ border:none; border-top: 1px dotted #AEA79F; } content-hub-1.1.1/doc/qml/css/qtquick.css 0000664 0000000 0000000 00000031751 14561211576 0020300 0 ustar 00root root 0000000 0000000 @media screen { /* basic elements */ html { color: #000000; background: #FFFFFF; } table { border-collapse: collapse; border-spacing: 0; } fieldset, img { border: 0; max-width:100%; } address, caption, cite, code, dfn, em, strong, th, var, optgroup { font-style: inherit; font-weight: inherit; } del, ins { text-decoration: none; } ol li { list-style: decimal; } ul li { list-style: none; } caption, th { text-align: left; } h1.title { font-weight: bold; font-size: 150%; } h0 { font-weight: bold; font-size: 130%; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } q:before, q:after { content: ''; } abbr, acronym { border: 0; font-variant: normal; } sup, sub { vertical-align: baseline; } tt, .qmlreadonly span, .qmldefault span { word-spacing:0.5em; } legend { color: #000000; } strong { font-weight: bold; } em { font-style: italic; } body { margin: 0 1.5em 0 1.5em; font-family: ubuntu; line-height: normal } a { color: #00732F; text-decoration: none; } hr { background-color: #E6E6E6; border: 1px solid #E6E6E6; height: 1px; width: 100%; text-align: left; margin: 1.5em 0 1.5em 0; } pre { border: 1px solid #DDDDDD; -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; padding: 1em 1em 1em 1em; overflow-x: auto; } table, pre { -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; background-color: #F6F6F6; border: 1px solid #E6E6E6; border-collapse: separate; margin-bottom: 2.5em; } pre { font-size: 90%; display: block; overflow:hidden; } thead { margin-top: 0.5em; font-weight: bold } th { padding: 0.5em 1.5em 0.5em 1em; background-color: #E1E1E1; border-left: 1px solid #E6E6E6; } td { padding: 0.25em 1.5em 0.25em 1em; } td.rightAlign { padding: 0.25em 0.5em 0.25em 1em; } table tr.odd { border-left: 1px solid #E6E6E6; background-color: #F6F6F6; color: black; } table tr.even { border-left: 1px solid #E6E6E6; background-color: #ffffff; color: #202020; } div.float-left { float: left; margin-right: 2em } div.float-right { float: right; margin-left: 2em } span.comment { color: #008B00; } span.string, span.char { color: #000084; } span.number { color: #a46200; } span.operator { color: #202020; } span.keyword { color: #840000; } span.name { color: black } span.type { font-weight: bold } span.type a:visited { color: #0F5300; } span.preprocessor { color: #404040 } /* end basic elements */ /* font style elements */ .heading { font-weight: bold; font-size: 125%; } .subtitle { font-size: 110% } .small-subtitle { font-size: 100% } .red { color:red; } /* end font style elements */ /* global settings*/ .header, .footer { display: block; clear: both; overflow: hidden; } /* end global settings*/ /* header elements */ .header .qtref { color: #00732F; font-weight: bold; font-size: 130%; } .header .content { margin-left: 5px; margin-top: 5px; margin-bottom: 0.5em; } .header .breadcrumb { font-size: 90%; padding: 0.5em 0 0.5em 1em; margin: 0; background-color: #fafafa; height: 1.35em; border-bottom: 1px solid #d1d1d1; } .header .breadcrumb ul { margin: 0; padding: 0; } .header .content { word-wrap: break-word; } .header .breadcrumb ul li { float: left; background: url(../images/breadcrumb.png) no-repeat 0 3px; padding-left: 1.5em; margin-left: 1.5em; } .header .breadcrumb ul li.last { font-weight: normal; } .header .breadcrumb ul li a { color: #00732F; } .header .breadcrumb ul li.first { background-image: none; padding-left: 0; margin-left: 0; } .header .content ol li { background: none; margin-bottom: 1.0em; margin-left: 1.2em; padding-left: 0 } .header .content li { background: url(../images/bullet_sq.png) no-repeat 0 5px; margin-bottom: 1em; padding-left: 1.2em; } /* end header elements */ /* content elements */ .content h1 { font-weight: bold; font-size: 130% } .content h2 { font-weight: bold; font-size: 120%; width: 100%; } .content h3 { font-weight: bold; font-size: 110%; width: 100%; } .content table p { margin: 0 } .content ul { padding-left: 2.5em; } .content li { padding-top: 0.25em; padding-bottom: 0.25em; } .content ul img { vertical-align: middle; } .content a:visited { color: #4c0033; text-decoration: none; } .content a:visited:hover { color: #4c0033; text-decoration: underline; } a:hover { color: #4c0033; text-decoration: underline; } descr p a { text-decoration: underline; } .descr p a:visited { text-decoration: underline; } .alphaChar{ width:95%; background-color:#F6F6F6; border:1px solid #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; font-size:12pt; padding-left:10px; margin-top:10px; margin-bottom:10px; } .flowList{ /*vertical-align:top;*/ /*margin:20px auto;*/ column-count:3; -webkit-column-count:3; -moz-column-count:3; /* column-width:100%; -webkit-column-width:200px; -col-column-width:200px; */ column-gap:41px; -webkit-column-gap:41px; -moz-column-gap:41px; column-rule: 1px dashed #ccc; -webkit-column-rule: 1px dashed #ccc; -moz-column-rule: 1px dashed #ccc; } .flowList dl{ } .flowList dd{ /*display:inline-block;*/ margin-left:10px; min-width:250px; line-height: 1.5; min-width:100%; min-height:15px; } .flowList dd a{ } .mainContent { padding-left:5px; } .content .flowList p{ padding:0px; } .content .alignedsummary { margin: 15px; } .qmltype { text-align: center; font-size: 120%; } .qmlreadonly { padding-left: 5px; float: right; color: #254117; } .qmldefault { padding-left: 5px; float: right; color: red; } .qmldoc { } .generic .alphaChar{ margin-top:5px; } .generic .odd .alphaChar{ background-color: #F6F6F6; } .generic .even .alphaChar{ background-color: #FFFFFF; } .memItemRight{ padding: 0.25em 1.5em 0.25em 0; } .highlightedCode { margin: 1.0em; } .annotated td { padding: 0.25em 0.5em 0.25em 0.5em; } .toc { font-size: 80% } .header .content .toc ul { padding-left: 0px; } .content .toc h3 { border-bottom: 0px; margin-top: 0px; } .content .toc h3 a:hover { color: #00732F; text-decoration: none; } .content .toc .level2 { margin-left: 1.5em; } .content .toc .level3 { margin-left: 3.0em; } .content ul li { background: url(../images/bullet_sq.png) no-repeat 0 0.7em; padding-left: 1em } .content .toc li { background: url(../images/bullet_dn.png) no-repeat 0 5px; padding-left: 1em } .relpage { -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; border: 1px solid #DDDDDD; padding: 25px 25px; clear: both; } .relpage ul { float: none; padding: 1.5em; } h3.fn, span.fn { -moz-border-radius:7px 7px 7px 7px; -webkit-border-radius:7px 7px 7px 7px; border-radius:7px 7px 7px 7px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; font-weight: bold; word-spacing:3px; padding:3px 5px; } .functionIndex { font-size:12pt; word-spacing:10px; margin-bottom:10px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; width:100%; } .centerAlign { text-align:center; } .rightAlign { text-align:right; } .leftAlign { text-align:left; } .topAlign{ vertical-align:top } .functionIndex a{ display:inline-block; } /* end content elements */ /* footer elements */ .footer { color: #393735; font-size: 0.75em; text-align: center; padding-top: 1.5em; padding-bottom: 1em; background-color: #E6E7E8; margin: 0; } .footer p { margin: 0.25em } .small { font-size: 0.5em; } /* end footer elements */ .item { float: left; position: relative; width: 100%; overflow: hidden; } .item .primary { margin-right: 220px; position: relative; } .item hr { margin-left: -220px; } .item .secondary { float: right; width: 200px; position: relative; } .item .cols { clear: both; display: block; } .item .cols .col { float: left; margin-left: 1.5%; } .item .cols .col.first { margin-left: 0; } .item .cols.two .col { width: 45%; } .item .box { margin: 0 0 10px 0; } .item .box h3 { margin: 0 0 10px 0; } .cols.unclear { clear:none; } } /* end of screen media */ /* start of print media */ @media print { input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult { display: none; background: none; } .content { background: none; display: block; width: 100%; margin: 0; float: none; } } /* end of print media */ /* modify the TOC layouts */ div.toc ul { padding-left: 20px; } div.toc li { padding-left: 4px; } /* Remove the border around images*/ a img { border:none; } /*Add styling to the front pages*/ .threecolumn_area { padding-top: 20px; padding-bottom: 20px; } .threecolumn_piece { display: inline-block; margin-left: 78px; margin-top: 8px; padding: 0; vertical-align: top; width: 25.5%; } div.threecolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.threecolumn_piece p { margin-bottom: 7px; color: #5C626E; text-decoration: none; font-weight: bold; } div.threecolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.threecolumn_piece a { font-weight: normal; } /* Add style to guide page*/ .fourcolumn_area { padding-top: 20px; padding-bottom: 20px; } .fourcolumn_piece { display: inline-block; margin-left: 35px; margin-top: 8px; padding: 0; vertical-align: top; width: 21.3%; } div.fourcolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.fourcolumn_piece p { margin-bottom: 7px; color: #40444D; text-decoration: none; font-weight: bold; } div.fourcolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.fourcolumn_piece a { font-weight: normal; } content-hub-1.1.1/doc/qml/css/reset.css 0000664 0000000 0000000 00000001533 14561211576 0017734 0 ustar 00root root 0000000 0000000 /* Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html version: 3.3.0 build: 3167 */ html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;} content-hub-1.1.1/doc/qml/css/scratch.css 0000664 0000000 0000000 00000001374 14561211576 0020244 0 ustar 00root root 0000000 0000000 body { margin: 0; } div.toc ul { padding: 0; } div.toc li { margin-bottom: 3px; } h1.title { font-size: 36px; line-height: 1.1; font-weight: normal; } h0, h2 { font-size: 24px; line-height: 1.2; margin: 14px 0; font-weight: normal; display: block; } a:hover { color: #dd4814; text-decoration: underline; outline: 0; } table, pre { border-radius: 0; } .annotated td { padding: 0.8em 1em 0.3em; } .wrapper { width: 940px; margin: 0 auto; } .main-content { width: 668px; position: relative; left: 270px; } .title { margin-left: -270px; margin-top: 30px; margin-bottom: 50px; } .toc { margin-left: -270px; font-size: 100%; margin-bottom: 40px; padding: 0; z-index: 2; position: absolute; top: 100px; width: 250px; } content-hub-1.1.1/doc/qml/lomiri-content-hub.qdocconf.in 0000664 0000000 0000000 00000003115 14561211576 0023150 0 ustar 00root root 0000000 0000000 project = Lomiri Content QML API description = Lomiri Content API # QDoc 5.2 will only process these if they're relative paths sourcedirs = ../../../doc/qml/pages ../../../import exampledirs = ../../../examples/ sources.fileextensions = "*.qdoc *.qml *.cpp" headers.fileextensions = "*.h" examples.fileextensions = "*.js *.qml" examples.imageextensions = "*.png *.jpeg *.jpg" # But... QDoc 5.2 will also only process this if it's an absolute path excludefiles = @CMAKE_SOURCE_DIR@/import/Lomiri/Content/ResponsiveGridView.qml outputdir = html outputformat = HTML outputprefixes = QML outputprefixes.QML = qml- HTML.templatedir = ../../../doc/ HTML.nobreadcrumbs = "true" HTML.stylesheets = \ css/reset.css \ css/qtquick.css \ css/base.css \ css/scratch.css HTML.headerstyles = \ "\n" \ "\n" \ "\n" \ "\n" HTML.postheader = \ " \n" \ " \n" HTML.footer = \ "\n" \ "\n" \ "\n" content-hub-1.1.1/doc/qml/pages/ 0000775 0000000 0000000 00000000000 14561211576 0016405 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/doc/qml/pages/mainpage.qdoc 0000664 0000000 0000000 00000011101 14561211576 0021030 0 ustar 00root root 0000000 0000000 /*! \page index.html overview \title Lomiri Content API \contentspage {Lomiri Content API} {Contents} \section1 Content Management & Exchange \section2 Introduction Unity and the overall Lomiri experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. \section3 Definitions To ease conversations, we start over with a set of definitions: \list \li \b {Content item}: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. See also \l ContentItem. \li \b {Content types}: A set of well-known content types. E.g., images or music files. See also \l {ContentType} \li \b {Content set}: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. \li \b {Content owner}: The unique owner of a content item. A content item has to be owned by exactly one app. See also \l {ContentPeer} \li \b {Content store}: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. See also \l {ContentStore} \li \b {Content transfer}: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by a source, destination, direction (import or export), and a set of items that should be exchanged. See also \l {ContentTransfer} \li \b {Content picking}: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. \endlist \section3 Architectural Overview The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa {ContentHub} \section3 Example usage - Importing Pictures \qml import QtQuick 2.0 import Lomiri.Components 1.1 import Lomiri.Content 1.1 Rectangle { id: root property list importItems property var activeTransfer ContentPeer { id: picSourceSingle contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Single } ContentPeer { id: picSourceMulti contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Multiple } Row { Button { text: "Import single item" onClicked: { root.activeTransfer = picSourceSingle.request() } } Button { text: "Import multiple items" onClicked: { root.activeTransfer = picSourceMulti.request() } } } ContentTransferHint { id: transferHint anchors.fill: parent activeTransfer: root.activeTransfer } Connections { target: root.activeTransfer onStateChanged: { if (root.activeTransfer.state === ContentTransfer.Charged) importItems = root.activeTransfer.items; } } } \endqml \section1 General Topics \list \li \l {ContentHub} \li \l {ContentPeer} \li \l {ContentPeerModel} \li \l {ContentPeerPicker} \li \l {ContentStore} \li \l {ContentTransfer} \li \l {ContentTransferHint} \li \l {ContentType} \endlist \section1 Reporting Bugs If you find any problems with the or this documentation, please file a bug in Lomiri Content API \l {https://gitlab.com/ubports/development/core/content-hub} {project page} \section1 Components Available through: \code import Lomiri.Content 1.1 \endcode */ content-hub-1.1.1/doc/qml/pages/moduledef.qdoc 0000664 0000000 0000000 00000000046 14561211576 0021221 0 ustar 00root root 0000000 0000000 /*! \qmlmodule Lomiri.Content 1.1 */ content-hub-1.1.1/examples/ 0000775 0000000 0000000 00000000000 14561211576 0015566 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/examples/CMakeLists.txt 0000664 0000000 0000000 00000001354 14561211576 0020331 0 ustar 00root root 0000000 0000000 # Copyright © 2013 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 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 . # # Authored by: Ken VanDine add_subdirectory(importer) add_subdirectory(exporter) add_subdirectory(pasteboard) content-hub-1.1.1/examples/export-qml/ 0000775 0000000 0000000 00000000000 14561211576 0017676 5 ustar 00root root 0000000 0000000 content-hub-1.1.1/examples/export-qml/app-exporter.qml 0000664 0000000 0000000 00000014717 14561211576 0023051 0 ustar 00root root 0000000 0000000 import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Components.Popups 0.1 import Lomiri.Components.ListItems 0.1 as ListItem import Lomiri.Content 0.1 MainView { id: root applicationName: "app-exporter" width: units.gu(50) height: units.gu(60) property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property var selectedItems: [] property var activeTransfer ListModel { id: images ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } } GridView { anchors.fill: parent model: images cellWidth: 128 cellHeight: 128 delegate: itemDelegate } Component { id: resultComponent ContentItem {} } Component { id: itemDelegate Item { width: 128 height: 128 property bool isSelected: false LomiriShape { width: parent.width height: width image: Image { id: image source: src height: parent.width width: height fillMode: Image.PreserveAspectFit smooth: true } MouseArea { anchors.fill: parent enabled: pickMode onClicked: { var shouldAdd = true; for (var i = 0; i < selectedItems.length; i++) { console.log("item: ", selectedItems[i]); if (selectedItems[i] === src) { selectedItems.pop(i); shouldAdd = false; isSelected = false; } } if (shouldAdd) { selectedItems.push(src); isSelected = true; } } } Image { id: selectionTick anchors.right: parent.right anchors.top: parent.top width: units.gu(5) height: units.gu(5) visible: isSelected source: "photo-preview-selected-overlay.png" } MouseArea { anchors.fill: parent enabled: !pickMode onClicked: { actPop.show(); } } ActionSelectionPopover { id: actPop delegate: ListItem.Standard { text: action.text } contentWidth: childrenRect.width actions: ActionList { Action { text: "Open with..." onTriggered: { print(text + ": " + src); activeTransfer = picDest.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } Action { text: "Share" onTriggered: { print(text + ": " + src); activeTransfer = picShare.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } } } } } } ContentPeer { id: picDest // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Destination // Optional appId, if this isn't specified the hub will use the default //appId: "" } ContentPeer { id: picShare // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Share // Optional appId, if this isn't specified the hub will use the default appId: "pkg_app_version" } // Provides overlay showing another app is being used to complete the request // formerly named ContentImportHint ContentTransferHint { anchors.fill: parent activeTransfer: activeTransfer } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } ListItem.Empty { id: pickerButtons anchors { left: parent.left right: parent.right bottom: parent.bottom margins: units.gu(2) } visible: pickMode Button { anchors { left: parent.left bottom: parent.bottom margins: units.gu(2) } text: "Cancel" onClicked: activeTransfer.state = ContentTransfer.Aborted; } Button { anchors { right: parent.right bottom: parent.bottom margins: units.gu(2) } text: "Select" onClicked: { var results = []; for (var i = 0; i < selectedItems.length; i++) results.push(resultComponent.createObject(root, {"url": selectedItems[i]})); if (results.length > 0) activeTransfer.items = results; } } } } content-hub-1.1.1/examples/export-qml/export.qml 0000664 0000000 0000000 00000003146 14561211576 0021736 0 ustar 00root root 0000000 0000000 import QtQuick 2.0 import Lomiri.Components 0.1 import Lomiri.Content 0.1 MainView { id: root width: 300 height: 200 property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property list selectedItems property var activeTransfer Button { id: button1 anchors.top: parent.top anchors.left: parent.left enabled: pickMode text: "Return URL1" onClicked: { selectedItems = [ resultComponent.createObject(root, {"url": "file:///picture_1.jpg"}) ]; activeTransfer.items = selectedItems; } } Button { id: button2 anchors.top: parent.top anchors.right: parent.right enabled: pickMode text: "Return Url2" onClicked: { selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_1.jpg"})); selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_2.jpg"})); console.log(selectedItems[0].url + "/" + selectedItems[1].url) activeTransfer.items = selectedItems; } } Button { id: buttonAbort anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter enabled: pickMode text: "Cancel" onClicked: { activeTransfer.state = ContentTransfer.Aborted; } } Component { id: resultComponent ContentItem {} } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } } content-hub-1.1.1/examples/export-qml/photo-preview-selected-overlay.png 0000664 0000000 0000000 00000011337 14561211576 0026466 0 ustar 00root root 0000000 0000000 PNG IHDR Z e ̈́z tEXtSoftware Adobe ImageReadyqe<