From df2a31b6b018d000043e11051b8a790830d4088a Mon Sep 17 00:00:00 2001 From: Lars Karlslund Date: Fri, 26 Aug 2022 11:13:17 +0200 Subject: [PATCH] Naming and upgraded stringdedup dependency to 0.6.2 --- go.mod | 4 ++-- go.sum | 2 ++ modules/analyze/export-graph.go | 4 ++-- modules/analyze/html/index.html | 12 ++++++------ modules/engine/processing.go | 2 +- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/go.mod b/go.mod index 3094fb7..7d9f749 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/lkarlslund/adalanche -go 1.18 +go 1.19 require ( github.com/Microsoft/go-winio v0.5.2 @@ -23,7 +23,7 @@ require ( github.com/lkarlslund/binstruct v1.3.1-0.20220418073417-7618823b3136 github.com/lkarlslund/go-win64api v0.0.0-20211005130710-d4f2d07ed091 github.com/lkarlslund/ldap/v3 v3.2.4-0.20210621153959-85555023df29 - github.com/lkarlslund/stringdedup v0.6.0 + github.com/lkarlslund/stringdedup v0.6.2 github.com/lkarlslund/stringsplus v0.0.0-20211104080454-45e60fe6edc0 github.com/lkarlslund/time-timespan v0.0.0-20210712111050-6e7c565fa001 github.com/mailru/easyjson v0.7.7 diff --git a/go.sum b/go.sum index 4002550..1709015 100644 --- a/go.sum +++ b/go.sum @@ -448,6 +448,8 @@ github.com/lkarlslund/stringdedup v0.5.0 h1:1uY/TBysb2SekNrGJX2shrpF/IuUVaL35NaX github.com/lkarlslund/stringdedup v0.5.0/go.mod h1:UIhe+EbxkghJObY4d4J8WLp9Xe31tzhcbqRJHxAza/U= github.com/lkarlslund/stringdedup v0.6.0 h1:xvRAavUNxpK+WzQLgjPX/VMf0BB8KHPju5ua2xranBk= github.com/lkarlslund/stringdedup v0.6.0/go.mod h1:C6LujeQyoAZgpH+D4yCEJqX43l+d9WCeRkrQwGEBlcc= +github.com/lkarlslund/stringdedup v0.6.2 h1:IcoGuXAuZxjntVnxTi7/C+RFh+gVc5wCyt4gkHp9FxA= +github.com/lkarlslund/stringdedup v0.6.2/go.mod h1:zYJo0ndAxVA0CxphKn0OYMM1rubUuUS4GzLtKYsB0vA= github.com/lkarlslund/stringsplus v0.0.0-20211104080454-45e60fe6edc0 h1:v56FZeDrnIamOapT2KOO8Vev1a4QdAQ9QKLplnsKQ2M= github.com/lkarlslund/stringsplus v0.0.0-20211104080454-45e60fe6edc0/go.mod h1:iYoXC1os3S1gI7/SslO+cTU7dCl/bYhBqmQyVeAM2bw= github.com/lkarlslund/time-timespan v0.0.0-20210712111050-6e7c565fa001 h1:S9Xs8FSeBXkzHyvXHcYQKFqwr63T+VL6C9I+4q+0z4E= diff --git a/modules/analyze/export-graph.go b/modules/analyze/export-graph.go index d3c80f5..d8db368 100644 --- a/modules/analyze/export-graph.go +++ b/modules/analyze/export-graph.go @@ -65,8 +65,8 @@ func GenerateCytoscapeJS(pg engine.Graph, alldetails bool) (CytoGraph, error) { GeneratedBy: version.ProgramVersionShort(), TargetCytoscapeJSVersion: "~3.0", Data: CytoGraphData{ - SharedName: "adalanche analysis data", - Name: "adalanche analysis data", + SharedName: "Adalanche analysis data", + Name: "Adalanche analysis data", }, } diff --git a/modules/analyze/html/index.html b/modules/analyze/html/index.html index 645ae8c..35a9aa3 100644 --- a/modules/analyze/html/index.html +++ b/modules/analyze/html/index.html @@ -2,7 +2,7 @@ - adalanche - Active Directory ACL Visualizer + Adalanche - Graph Analytics Platform @@ -149,7 +149,7 @@
- Analysis methods + Edges
@@ -161,7 +161,7 @@
- Analysis object types + Nodes
@@ -175,7 +175,7 @@
- Graph style + Visualization
@@ -198,7 +198,7 @@
- General options + Options
@@ -226,7 +226,7 @@
-
adalanche - @lkarlslund +
Adalanche - @lkarlslund
diff --git a/modules/engine/processing.go b/modules/engine/processing.go index fbede14..3c21f62 100644 --- a/modules/engine/processing.go +++ b/modules/engine/processing.go @@ -31,7 +31,7 @@ func Merge(aos []*Objects) (*Objects, error) { globalobjects := NewObjects() globalroot := NewObject( - Name, AttributeValueString("adalanche root node"), + Name, AttributeValueString("Adalanche root node"), ObjectCategorySimple, AttributeValueString("Root"), ) globalobjects.SetRoot(globalroot)