Skip to content

Commit

Permalink
Merge pull request #139 from zachlasiuk/main
Browse files Browse the repository at this point in the history
Fixed category display, modified some content's categories.
  • Loading branch information
zachlasiuk authored Mar 18, 2024
2 parents ee038eb + 2762c29 commit 800d0cd
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion content/commercial_packages/intersystem_iris.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: IRIS
vendor: InterSystems
category: Databases
category: Database
description: InterSystems IRIS® makes it easier to build high-performance, machine learning-enabled applications that connect data and application silos.
product_url: https://www.intersystems.com/data-platform/
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/ansible.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Ansible
category: CI/CD
category: DevOps
description: Ansible is a simple IT automation platform that makes your applications and systems easier to deploy and maintain.
download_url: https://developers.redhat.com/products/ansible/download
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/gitlab.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Gitlab
category: CI/CD
category: DevOps
description: Gitlab is a complete DevOps platform that enables developers to perform all the tasks in a project, from project planning and source code management to monitoring and security.
download_url: https://packages.gitlab.com/gitlab/gitlab-ee
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/golang.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Golang
category: Languages
category: Languages and Frameworks
description: Golang, also known as Go, is a statically typed, compiled programming language designed by Google for efficiency, simplicity, and reliability. It has robust support for concurrent programming.
download_url: https://go.dev/dl/
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/httpd.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Apache httpd
category: Web
category: Web Server
description: The Apache HTTP Server, commonly called Apache, is a web server application known for playing a key role in the initial growth of the World Wide Web.
download_url: https://archive.apache.org/dist/httpd/
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/jenkins.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Jenkins
category: CI/CD
category: DevOps
description: Jenkins is an open-source continuous integration/continuous delivery and deployment (CI/CD) automation software DevOps tool written in the Java programming language. It is used to implement CI/CD workflows, called pipelines.
download_url: https://get.jenkins.io/war-stable/
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/kyverno.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Kyverno
category: Security & Compliance
category: Security applications
description: Security applications
download_url: https://github.com/kyverno/kyverno/releases
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/terraform.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Terraform
category: CI/CD
category: DevOps
description: Terraform is an infrastructure as code tool. It is used to automate cloud infrastructure.
download_url: https://developer.hashicorp.com/terraform/install
works_on_arm: true
Expand Down
2 changes: 1 addition & 1 deletion content/opensource_packages/vitess.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Vitess
category: Database - SQL
category: Database
description: Vitess is a database clustering system for horizontal scaling of MySQL through generalized sharding.
download_url: https://github.com/vitessio/vitess/releases
works_on_arm: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
Category: OS & Languages -> Runtimes
*/}}

{{ $category := .Params.category}}
{{ $category := .}}
{{ $group := ""}}

{{ if isset .Site.Data.category_data.subcategory_mapping $category }}
{{ $test_group := index .Site.Data.category_data.subcategory_mapping $category }}
{{ if isset site.Data.category_data.subcategory_mapping $category }}
{{ $test_group := index site.Data.category_data.subcategory_mapping $category }}
{{ if ne $test_group nil }}
{{ $group = $test_group }}
{{end}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<table class="align-table" width="100%" style="width: 100%; border-collapse: collapse; margin: 0px; padding: 0px;">
<tr>
<td style="width:75%; margin: 0px; padding: 0px;">
{{partial "package-display/_category_display.html" .metadata}}
{{partial "package-display/_category_display.html" .metadata.Params.category}}
</td>
<td style="margin: 0px; padding: 0px;">
{{partial "eco-dashboard/github-links.html" .metadata }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ document.addEventListener("DOMContentLoaded", function() {
if (timer) clearTimeout(timer); // Clear timer if input detected

timer = setTimeout(function() {
trackSearchInteraction('2_second_delay_after_search_change');
trackSearchInteraction('delay_after_search_change');
}, input_delay);
});

Expand Down

0 comments on commit 800d0cd

Please sign in to comment.