From 30f6c87f54df6aa11f29d35ab96e0176f3937134 Mon Sep 17 00:00:00 2001 From: Joshua Navarro Date: Tue, 18 Mar 2025 18:10:45 -0400 Subject: [PATCH 1/5] Add ZoomInfo tracking script to head template --- templates/head.html | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/templates/head.html b/templates/head.html index e2a17f123..417df29af 100644 --- a/templates/head.html +++ b/templates/head.html @@ -1,8 +1,33 @@ - + + + From d47c78a23c9359bed63403afedaf9aa724bf43e9 Mon Sep 17 00:00:00 2001 From: Joshua Navarro Date: Thu, 20 Mar 2025 11:10:37 -0400 Subject: [PATCH 2/5] Remove node-sass dependency from package.json --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 00a6da498..fb177d142 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,6 @@ "pug": "^2.0.4", "querystring": "^0.2.0", "request": "^2.88.0", - "node-sass": "^4.14.1", "swiftype": "^0.4.0" } } From ecd899b6ab620441fb022eeb5e626430ea941fdc Mon Sep 17 00:00:00 2001 From: Romulo Vieira da Silva Date: Thu, 27 Mar 2025 12:35:21 +0200 Subject: [PATCH 3/5] Changing link path for source packages --- scripts/resources/client_libraries.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/resources/client_libraries.js b/scripts/resources/client_libraries.js index f3106334c..268c30b49 100644 --- a/scripts/resources/client_libraries.js +++ b/scripts/resources/client_libraries.js @@ -1,6 +1,6 @@ var fs = require('fs'); var ejs = require('ejs'); -var version = 'v19.3.0'; +var version = 'latest'; const MARKDOWN_DIR = __dirname + '/../../markdown'; const TARGET = process.env.TARGET_API || 'ovp'; const CLIENT_LANGS = { @@ -11,7 +11,7 @@ const CLIENT_LANGS = { 'Csharp': 'csharp', 'Ruby': 'ruby', 'Python': 'python', - 'NodeJS': 'nodejs', + 'NodeJS': 'node', 'AJAX': 'ajax', 'CLI': 'cli', 'Android': 'android', @@ -29,12 +29,12 @@ if (TARGET === 'ott'){ if(process.env.OVP_API_VERSION) { version = process.env.OVP_API_VERSION; } - baserepo_url='https://github.com/kaltura/KalturaGeneratedAPIClients'; + baserepo_url='https://static.kaltura.com/web-clients/'; } var clientMD = ''; var idx=0; for (var cl in CLIENT_LANGS){ - var link = baserepo_url + cl+'/archive/'+ version+'.tar.gz' + var link = baserepo_url + cl +'.tar.gz' let offset = idx * -71; clientMD += ``; idx++; From 4298cea962dccf1c1ffe243472fe8a3f4aad4ca3 Mon Sep 17 00:00:00 2001 From: Romulo Vieira da Silva Date: Thu, 27 Mar 2025 13:20:01 +0200 Subject: [PATCH 4/5] Fixing link --- scripts/resources/client_libraries.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/resources/client_libraries.js b/scripts/resources/client_libraries.js index 268c30b49..0948858a6 100644 --- a/scripts/resources/client_libraries.js +++ b/scripts/resources/client_libraries.js @@ -34,7 +34,7 @@ if (TARGET === 'ott'){ var clientMD = ''; var idx=0; for (var cl in CLIENT_LANGS){ - var link = baserepo_url + cl +'.tar.gz' + var link = baserepo_url + version + "/" + cl +'.tar.gz' let offset = idx * -71; clientMD += ``; idx++; From fbc1c9237230af827825192b602a6f0febb58aa8 Mon Sep 17 00:00:00 2001 From: Romulo Vieira da Silva Date: Thu, 27 Mar 2025 14:33:38 +0200 Subject: [PATCH 5/5] Adding zoomingo as VCP-20025 --- homepage/views/head.pug | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/homepage/views/head.pug b/homepage/views/head.pug index ba9e977c4..1c3353d01 100644 --- a/homepage/views/head.pug +++ b/homepage/views/head.pug @@ -6,6 +6,18 @@ link(rel="stylesheet" href="/homepage/assets/styles.css") link(rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css") link(rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atelier-dune-dark.min.css") script(async src="https://www.googletagmanager.com/gtag/js?id=UA-68472312-3") +script. + (function() { + var zi = document.createElement('script'); + zi.type = 'text/javascript'; + zi.async = true; + zi.referrerPolicy = 'unsafe-url'; + zi.src = 'https://ws.zoominfo.com/pixel/62deaa3ca807b3008e29742d'; + var s = document.getElementsByTagName('script')[0]; + s.parentNode.insertBefore(zi, s); + })(); +noscript + img(src="https://ws.zoominfo.com/pixel/62deaa3ca807b3008e29742d" width="1" height="1" style="display: none;" alt="websights") script. window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);}