# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # $(eval $(call gb_CppunitTest_CppunitTest,sfx2_controlleritem)) $(eval $(call gb_CppunitTest_use_sdk_api,sfx2_controlleritem)) $(eval $(call gb_CppunitTest_add_exception_objects,sfx2_controlleritem, \ sfx2/qa/cppunit/test_controlleritem \ )) $(eval $(call gb_CppunitTest_use_externals,sfx2_controlleritem, \ boost_headers \ )) $(eval $(call gb_CppunitTest_use_libraries,sfx2_controlleritem, \ cppu \ cppuhelper \ sal \ sfx \ )) # vim: set noet sw=4 ts=4: o/trunk LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/external/java_websocket/Module_java_websocket.mk
AgeCommit message (Collapse)Author
2023-09-01Add a FunctionBasedURPConnection and a websocket URP connectorSkyler Grey
- FunctionBasedURPConnection is used to enable a client to open a URP connection to a fresh Kit instance in COOL. - This URP connector can be used with that and https://github.com/CollaboraOnline/online/pull/6992 to use a Java Uno Remote Protocol client over websockets - For interoperability with existing Collabora Online websockets a prefix (urp ) is added to each message sent and a similar prefix (urp: ) is expected on each message recieved. This allows sending over the same websocket as other data is being transmitted through. If you are writing a bridge to work with this, you will need to add/strip the prefixes accordingly - This commit uses Java WebSocket (https://github.com/TooTallNate/Java-WebSocket) to send data over websockets. Change-Id: I2bda3d0b988bef7883f9b6829eeb5b7ae8075f27 Signed-off-by: Skyler Grey <skyler.grey@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151171 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>