Commit Graph

29 Commits

Author SHA1 Message Date
Doug Davis 97caeace30 remove trailing spaces
Signed-off-by: Doug Davis <duglin@gmail.com>
2025-08-20 18:42:33 +00:00
Doug Davis b20cf0ac60 fixup some cersql names
Signed-off-by: Doug Davis <dug@microsoft.com>
2024-06-17 18:14:50 +00:00
Calum Murray 82c16f63a0
CESQL v1 release notes (#1298)
* docs: add release note for CESQL v1

Signed-off-by: Calum Murray <cmurray@redhat.com>

* docs: add link to cesql v1 release notes to RELEASES.md

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: order by release date instead of group

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Address review comments

* Add link to cesql v1 in releases table
* Add short paragraph to cesql README

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-06-17 13:44:31 -04:00
Calum Murray ed8a2cf38b
Vote: moving CESQL spec to v1 (#1293)
* change cesql spec to v1

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: translations also marked as v1

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: integer literal does not require a +/- in front

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-06-13 13:40:50 -04:00
Calum Murray 33836c17ff
fix: conformance tests are correct with spec v1
* Remove IS_(BOOL|INT|STRING) tests since the functions are not required
  by spec
* Fix cast of boolean no longer causing error
* Remove test that requires complete expression evaluation, as the spec
  leaves this to implementations
* Fix remaining tests to return missing attribute errors where necessary

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-06-11 14:06:35 -04:00
Calum Murray c28210f963
fix: add trailing commas where appropriate for 'that is' in CESQL spec (#1292)
* fix: add trailing commas where appropriate for 'that is'

Signed-off-by: Calum Murray <cmurray@redhat.com>

* cleanup: wrap spec at 80 characters

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-06-07 10:41:02 -04:00
Calum Murray c0927d1234
Update CESQL tck tests to match spec changes (#1291)
* tck tests reflect spec changes

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Address feedback from @duglin

* Add generic error to README
* Fix match error -> missingAttribute error

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-06-06 18:54:22 -04:00
Calum Murray e30acf32d0
CESQL v1 review changes (#1286)
* clarify integer overflow behaviour, order of evaluation

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Address feedback from @duglin

* Link to ISO 9075
* Fix some typos
* Clarify return types and errors
* Simplify ebnf definitions for value identifiers
* Clarify type casting and behaviour for operators

Signed-off-by: Calum Murray <cmurray@redhat.com>

* further fixes from review by @duglin

Signed-off-by: Calum Murray <cmurray@redhat.com>

* clarify error handling and zero values

Signed-off-by: Calum Murray <cmurray@redhat.com>

* further clarify error handling and zero values

Signed-off-by: Calum Murray <cmurray@redhat.com>

* parenthized -> paranthesized

Signed-off-by: Calum Murray <cmurray@redhat.com>

* more fixes from review by @duglin

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix the should verification problem

Signed-off-by: Calum Murray <cmurray@redhat.com>

* clarify default type of attributes

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix indentation of operator precedence

Signed-off-by: Calum Murray <cmurray@redhat.com>

* it's -> its

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-05-30 12:29:45 -04:00
Calum Murray 66c067b38b
clarify type casting in CESQL spec (#1281)
* clarify type casting in CESQL spec

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: addressed feedback from meeting

Signed-off-by: Calum Murray <cmurray@redhat.com>

* address review feedback

Signed-off-by: Calum Murray <cmurray@redhat.com>

* clarify the default values when an error occurs

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: may -> MAY

Signed-off-by: Calum Murray <cmurray@redhat.com>

* clarify second operand in LIKE expression MUST be a string literal

Signed-off-by: Calum Murray <cmurray@redhat.com>

* clarify leading zeros

Signed-off-by: Calum Murray <cmurray@redhat.com>

* add table of supported and unsupported type casts

Signed-off-by: Calum Murray <cmurray@redhat.com>

* add boolean <-> integer casting

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-05-30 12:26:52 -04:00
Calum Murray e79d7b2cc3
test: tck tests now check that AND and OR operators are short circuit evaluated (#1279)
* test: tck tests now check that AND and OR operators are short circuit evaluated

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: test for OR short circuiting uses the OR operator

Signed-off-by: Calum Murray <cmurray@redhat.com>

* test: verify that AND and OR only short circuit when expected to

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-05-23 13:29:02 -04:00
Calum Murray b17f24f88f
test: verify that invalid string literals in LIKE expression are a parse error
Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-05-09 14:52:02 -04:00
Calum Murray cb26319369
CESQL AND operators are now short-circuit evaluated (#1270)
* CESQL AND operators are now short-circuit evaluated

Signed-off-by: Calum Murray <cmurray@redhat.com>

* wording clarifications to explanation of AND/OR short circuit evaluation

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-03-25 14:30:45 -04:00
Calum Murray 0dc5d9534d
document OR evaluation short-circuiting
Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-03-12 14:34:46 -04:00
Calum Murray efc45dbaaa
Clarify that missing attributes should not result in errors (#1257)
* clarified that missing attributes should not result in errors

Signed-off-by: Calum Murray <cmurray@redhat.com>

* remove missingAttribute errors from tck tests

Signed-off-by: Calum Murray <cmurray@redhat.com>

* MUST not -> MUST NOT

Signed-off-by: Calum Murray <cmurray@redhat.com>

* addressing a missing attribute makes the subexpression false

Signed-off-by: Calum Murray <cmurray@redhat.com>

* fix: clarified language for missing attribute handling

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-02-22 19:32:38 -05:00
Calum Murray d80c7c67f9
fix some tck test cases
Signed-off-by: Calum Murray <cmurray@redhat.com>
2024-02-01 15:14:10 -05:00
MaryamTaj e0b3078c18 docs: Clarify that booleans are case insensitive
Signed-off-by: MaryamTaj <tajm48822@gmail.com>
2023-12-02 11:02:32 -05:00
Calum Murray a04f46e613
Expand tck tests (#1227)
* Add tck test cases for LIKE operator with bool/int type coercion

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Add tck test cases which recreate other SubscriptionsAPI filters

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Add missing sources, fix LIKE expression

Signed-off-by: Calum Murray <cmurray@redhat.com>

* Remove tests with behaviour not specified in the spec

Signed-off-by: Calum Murray <cmurray@redhat.com>

---------

Signed-off-by: Calum Murray <cmurray@redhat.com>
2023-09-28 15:04:31 -04:00
Aaron Ai 89f61cfcbf Fix typo
Signed-off-by: Aaron Ai <yangkun.ayk@gmail.com>
2022-12-12 15:33:58 +08:00
Sasha Tkachev bc3ff47787
fix: make titles consistent (#1099)
* feat: existing path

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: skip translation

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: title issue detection

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add fake invalid spec

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: method name

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: add type information

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: translation issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: translation titles

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing hebrew titles

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: wrong zh titles

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: excplude non-english titles from title verification

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: subscriptions readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: schemaregistry readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: pagination readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: cloudevents readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: cesql readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: discovery readme title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: fix broken samples

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: definition duplication

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: change schema registry title

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: zh translation

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove cncf prefix

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>
2022-10-14 13:47:14 -04:00
Sasha Tkachev 2b9873a3cf
perf: improve verification scripts speed x60 (#1086)
* ci: add python to workflow

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add verify languages to makefile

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: verify languages script

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing he aws-sns file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing he loglevel  file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing zh loglevel file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing zh aws-sns file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing zh languages file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: add python to workflow

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: verify docs

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: query issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: cesql rfc 2119 issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: ignore marshall

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: optionally edge case

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: quoted required

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: improve pattern readability

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove banned word

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove banned word

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: capitalize optional

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: rename required to necessary

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove bad imports

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: change veirification to use docs script

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: newline bug

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: issue detection

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: add python to workflow

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add python requirements

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: install requirments

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add bs4 to requirements

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add tenacity to requirments

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add aiohttp to requirments

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: basic verify links script

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: read html text

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs:  markdown conversion

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* perf: use gather on all files

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add tqdm to requirements

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: add progress bar

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: explain why we use asyncio

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* config: decrease max attempts to 2

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: result generation

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: better issue for failed access

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: rate limiting issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: use pattern matching

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* style: formatting

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: simplify flow

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: remove todo

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing   dots to mail uri

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: use pattern matching in uri

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: use new event loop

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add pymdown-extensions to requirements

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: verify local file issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: use correct uri segment

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: use bookmark instead of relative link

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: add debug option

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add 500 to the ok status codes

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: use python implementation instead of bash

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add repr for segment

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: verify no undefined bookmarks

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove redundancy

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: remove old verify links file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: simplify http tests

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: merge all scripts into a single script

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: skip type is different

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: move argsparser under main

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove code duplication

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove uneeded function

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: typo

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: move around consts for legability

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: move tests to seperate file

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add pyc to gitignore

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: remove bad comment

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: better skip text pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: skip text pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: rename md bookmark pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: bookmark issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: bookmark pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: remove code duplication

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add return statement

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: capitalization phrases

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: banned phrases pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: rename function to convey correct intention

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: uppercase detection

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: split text issues into functions

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: merge lists

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: tag issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: rename text issues to plain text issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: flatten

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: uri issues

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: skipping

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: remove query prefix

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: _render_markdown_to_html

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: add html text strong type

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* style: sort imports

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: headers are rendered with ids

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* docs: clearify pattern

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* style: remove unused import

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add pytest for deps

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: remove \y from test

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add verification testing to makefile

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: print success message

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: simplify make

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: add test_tools step

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* ci: give names to steps

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: bad all target

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: add fake docs

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: settings propogration

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: ignore fake docs

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add http links

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add mail uri

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* Revert "feat: ignore fake docs"

This reverts commit 8637df3aa1.

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: configurable excluded paths

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add pytest-asyncio to requirements

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing dot

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* feat: add fake docs dir

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove quotes

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add app test

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: windows paths formatting

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: typo

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* refactor: merge langauge verification into the single verification script

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add fake translations

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: add fake issues to the expected results

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing zh cbor-format translation

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing he cbor-format translation

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: add missing asserts

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* style: formatting

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: change match to search

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: use pure posix path

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: add docker target

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* style: makefile formatting

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* fix: remove quotes

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* build: increase test verbosity

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* test: change github to google to avoid rate-limiting

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

* Revert "build: increase test verbosity"

This reverts commit e774bfa3c4.

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>
2022-09-26 11:37:36 -04:00
Jie fc99a2a36b
docs: update languages/zh-CN/README.md (#985)
* translate /README.md

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>

* add 'README.md' and 'RELEASE_NOTES.md' to 'languages' sub-dirs of each spec directory

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>

* update languages-spec

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>

* update README.md

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>
2022-04-01 10:57:04 -04:00
Jie dbd5df0a70
rebuild multi-language structure (#989)
* rebuild multi-language structure

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>

* clear wrong links

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>

* replace 'may' with 'MAY'

Signed-off-by: Jie Ding <jie.ding@linkall.cloud>
2022-03-25 16:31:01 -04:00
Doug Davis f80c3bd540 Add docs in prep for just one branch
Signed-off-by: Doug Davis <dug@microsoft.com>
2022-03-25 18:54:12 +00:00
Doug Davis 0afe766be7 Sync with v1.0.2
Signed-off-by: Doug Davis <dug@us.ibm.com>
2022-02-06 00:42:29 +00:00
Doug Davis 949f035414
Merge pull request #931 from duglin/fixTool
Add checks for bookmarks & fix bad links
2022-01-20 13:43:03 -05:00
Drew Perttula ab765d132e general copy editing
Signed-off-by: Drew Perttula <drewpca@google.com>

apply review suggestions

upcase key word SHOULD

clarify sentence

rewrap

Signed-off-by: Doug Davis <dug@us.ibm.com>
2022-01-13 18:51:53 +00:00
Doug Davis da73ca7a79 Add checks for bookmarks & fix bad links
Signed-off-by: Doug Davis <dug@us.ibm.com>
2022-01-07 14:46:20 +00:00
Klaus Deißner 8031711d87 Fix broken link to section about filter dialects
Signed-off-by: Klaus Deißner <klaus.deissner@sap.com>
2021-12-14 21:16:44 +01:00
Doug Davis 6ca6d5add2 re-org dirs
Signed-off-by: Doug Davis <dug@us.ibm.com>
2021-11-04 17:54:21 +00:00