This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 8392ac34a4a1 [doc][client feature matrix] improve experience for .NET 
users looking for information on .NET/C# clients (#754)
8392ac34a4a1 is described below

commit 8392ac34a4a10ce651120506e50677024685e41a
Author: Julien Jakubowski <jul...@jakubowski.fr>
AuthorDate: Mon Dec 18 16:08:40 2023 +0100

    [doc][client feature matrix] improve experience for .NET users looking for 
information on .NET/C# clients (#754)
    
    * move .NET client position on the matrix to highlight the differences 
between DotPulsar and .NET client
    
    * reference clients docs from the client matrix and use the same client 
names
---
 client-feature-matrix/index.mdx | 2 ++
 data/matrix.js                  | 2 +-
 docs/client-libraries.md        | 4 ++--
 src/components/Matrix/util.js   | 8 +++++---
 4 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/client-feature-matrix/index.mdx b/client-feature-matrix/index.mdx
index 53731b0ccbc8..da149a67c36c 100644
--- a/client-feature-matrix/index.mdx
+++ b/client-feature-matrix/index.mdx
@@ -14,6 +14,8 @@ import {
   tableview,
 } from "../data/matrix.js";
 
+To get more information on clients, see [Pulsar Client 
Libraries](/docs/next/client-libraries).
+
 ### Client
 
 <Matrix data={client} name="client" />
diff --git a/data/matrix.js b/data/matrix.js
index 55054149e586..c297a2295415 100644
--- a/data/matrix.js
+++ b/data/matrix.js
@@ -6,9 +6,9 @@ module.exports = {
     "Python",
     "Node.js",
     "C#/DotPulsar",
+    ".NET (C#/F#/VB)",
     "Websocket",
     "REST",
-    ".NET (C#/F#/VB)",
   ],
   client: [
     {
diff --git a/docs/client-libraries.md b/docs/client-libraries.md
index d56b20042ad1..7f40c30dac5c 100644
--- a/docs/client-libraries.md
+++ b/docs/client-libraries.md
@@ -16,7 +16,7 @@ Pulsar supports the following language-specific client 
libraries:
 | Python    | [User doc](client-libraries-python.md) <br/> [API 
doc](@pulsar:apidoc:python@)                                     | 
[Standalone](pathname:///release-notes/client-python) | 
[Standalone](https://github.com/apache/pulsar-client-python)          |
 | Go client | [User doc](client-libraries-go.md)   <br/> [API 
doc](https://pkg.go.dev/github.com/apache/pulsar-client-go/pulsar) | 
[Standalone](pathname:///release-notes/client-go)     | 
[Standalone](https://github.com/apache/pulsar-client-go)              |
 | Node.js   | [User doc](client-libraries-node.md)  <br/> [API 
doc](@pulsar:apidoc:js@)                                          | 
[Standalone](pathname:///release-notes/client-node)   | 
[Standalone](https://github.com/apache/pulsar-client-node)            |
-| C#        | [User doc](client-libraries-dotnet.md)                           
                                                  | 
[Standalone](pathname:///release-notes/client-cs)     | 
[Standalone](https://github.com/apache/pulsar-dotpulsar)              |
+| C#/DotPulsar | [User doc](client-libraries-dotnet.md)                        
                                                     | 
[Standalone](pathname:///release-notes/client-cs)     | 
[Standalone](https://github.com/apache/pulsar-dotpulsar)              |
 
 :::tip
 
@@ -55,7 +55,7 @@ Want your repository listed here? Click the "Edit this page" 
button at the botto
 
 :::
 
-#### .NET
+#### .NET (C#/F#/VB)
 
 | Project                                                                    | 
Description                                     | License                       
             | Badges                                                           
                                                                                
                                                                                
                        |
 
|----------------------------------------------------------------------------|-------------------------------------------------|--------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/src/components/Matrix/util.js b/src/components/Matrix/util.js
index f7c52c2eb236..7f5d7040221f 100644
--- a/src/components/Matrix/util.js
+++ b/src/components/Matrix/util.js
@@ -15,11 +15,13 @@ export const genColumns = () => {
           ? 180
           : index === 1
           ? 150
-          : index === 7
+          : index === 7 // DotPulsar
           ? 120
-          : index === 8
+          : index === 8 // .NET
+          ? 100
+          : index === 9 // WS
           ? 90
-          : index === 10
+          : index === 11 // REST
           ? 126
           : 74,
       dataGetter: ({ column, rowData }) => {

Reply via email to