office-gobmx/connectivity
Thorsten Behrens 493ae7a6bb replace usage of blacklist with denylist
.. and a few cases of instead doing blacklist->excludelist where that
made more sense.

Background and motivation:
  https://tools.ietf.org/html/draft-knodel-terminology-02

[API CHANGE] officecfg::Office::Canvas::DeviceBlacklist -> DeviceDenylist
[API CHANGE] officecfg::Office::Canvas::BlacklistCurrentDevice -> DenylistCurrentDevice
[API CHANGE] officecfg::Office::Common::Misc::OpenCLBlackList -> OpenCLDenyList

Change-Id: Ia35e25496bf0cc0692d5de4cb66bfc232d3a869e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98180
Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2020-07-10 01:34:54 +02:00
..
com/sun/star/sdbcx/comp/hsqldb
inc update pches 2020-04-26 15:34:06 +02:00
org/hsqldb/lib
qa connectivity: fix mysql test 2020-06-17 17:54:17 +02:00
registry
source replace usage of blacklist with denylist 2020-07-10 01:34:54 +02:00
workben
AllLangMoTarget_cnr.mk
Configuration_ado.mk Move to MPLv2 license headers, with ESC decision and author's permission. 2013-04-22 09:37:38 +01:00
Configuration_calc.mk
Configuration_dbase.mk Move to MPLv2 license headers, with ESC decision and author's permission. 2013-04-22 09:37:38 +01:00
Configuration_evoab.mk
Configuration_firebird.mk
Configuration_flat.mk Move to MPLv2 license headers, with ESC decision and author's permission. 2013-04-22 09:37:38 +01:00
Configuration_hsqldb.mk Revert "Remove dead HSQLDB driver" 2018-04-12 09:09:37 +02:00
Configuration_jdbc.mk Move to MPLv2 license headers, with ESC decision and author's permission. 2013-04-22 09:37:38 +01:00
Configuration_macab.mk Move to MPLv2 license headers, with ESC decision and author's permission. 2013-04-22 09:37:38 +01:00
Configuration_mork.mk mork driver implementation 2012-09-18 08:30:01 +00:00
Configuration_mysql.mk
Configuration_mysql_jdbc.mk Revert removal of mysql jdbc connector 2018-10-14 22:16:05 +02:00
Configuration_odbc.mk
Configuration_postgresql.mk
Configuration_writer.mk connectivity: add initial writer backend 2017-07-17 10:02:05 +02:00
CppunitTest_connectivity_ado.mk
CppunitTest_connectivity_commontools.mk
CppunitTest_connectivity_mork.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
CppunitTest_connectivity_mysql_test.mk connectivity: fix mysql test 2020-06-17 17:54:17 +02:00
CppunitTest_connectivity_sharedresources.mk Fix some new dependencies on boost_headers 2019-12-06 21:33:55 +01:00
Executable_mork_helper.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
IwyuFilter_connectivity.yaml Remove some unused includes 2020-05-27 09:06:33 +02:00
Jar_ConnectivityTools.mk tdf#117331 Merge jurt and unoil into ridl 2020-02-04 22:03:54 +01:00
Jar_sdbc_hsqldb.mk Revert "Remove dead HSQLDB driver" 2018-04-12 09:09:37 +02:00
JunitTest_complex.mk Fix many Java subsequentcheck test by using JUH 2018-11-09 07:37:50 +01:00
Library_ado.mk
Library_calc.mk do not require $(SRCDIR) in every gb_Library_set_precompiled_header 2019-09-23 10:47:25 +02:00
Library_dbase.mk
Library_dbpool2.mk do not require $(SRCDIR) in every gb_Library_set_precompiled_header 2019-09-23 10:47:25 +02:00
Library_dbtools.mk Move Boost.Spirit usage away from legacy namespace 2020-02-20 18:50:24 +01:00
Library_evoab.mk
Library_file.mk
Library_firebird_sdbc.mk
Library_flat.mk
Library_hsqldb.mk
Library_jdbc.mk
Library_macab1.mk
Library_macabdrv1.mk Yet another fix for missing sqlbison.hxx 2013-05-07 22:10:55 +02:00
Library_mork.mk
Library_mozbootstrap.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
Library_mysql_jdbc.mk rename a PCH file to properly match its Makefile 2019-11-11 10:21:42 +01:00
Library_mysqlc.mk Cut down on -pthread/-lpthread proliferation 2019-04-25 21:27:43 +02:00
Library_odbc.mk do not require $(SRCDIR) in every gb_Library_set_precompiled_header 2019-09-23 10:47:25 +02:00
Library_postgresql-sdbc-impl.mk
Library_postgresql-sdbc.mk create comphelper::RefCountedMutex 2017-06-20 14:13:35 +02:00
Library_sdbc2.mk
Library_writer.mk
Makefile fix Makefile after rebase to current master 2012-05-29 07:24:36 +02:00
Module_connectivity.mk Build mysql_jdbc library even when building without java 2019-11-04 09:25:55 +01:00
Package_postgresql-sdbc.mk remove postgresql-sdbc.ini 2020-02-27 09:09:28 +01:00
Rdb_postgresql-sdbc.mk
README connectivity: fix mysql test 2020-06-17 17:54:17 +02:00

Contains database pieces, drivers, etc.

[[dbaccess]] builds UI on top of this.

=== mysql_test ===

- The CppunitTest_mysql_test unit test can be used to test the mysqlc
  library with any versions of mysql or mariadb server of your choice.
  
- This test does not run automatically. It can be triggered with setting
  the environment variable "CONNECTIVITY_TEST_MYSQL_DRIVER".
  
- The environment variable should contain a URL of the following format:
  [user]/[passwd]@sdbc:mysql:mysqlc:[host]:[port]/db_name

- tl;dr:

  podman pull mariadb/server
  podman run --name=mariadb -e MYSQL_ROOT_PASSWORD=foobarbaz -p 127.0.0.1:3306:3306 mariadb/server
  podman exec -it mariadb /bin/bash -c "echo -e CREATE DATABASE test | /usr/bin/mysql -u root"
  (cd connectivity && make -srj8 CppunitTest_connectivity_mysql_test CONNECTIVITY_TEST_MYSQL_DRIVER="root/foobarbaz@sdbc:mysql:mysqlc:127.0.0.1:3306/test")
  podman stop mariadb
  podman rm mariadb