From 2b0c0d20bc68965c600179f3da16bcace727e8b6 Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Tue, 14 Nov 2023 16:12:52 +0100 Subject: [PATCH] Delete repository/Neo-JSON-GT directory --- .../Neo-JSON-GT/NeoJSONArray.extension.st | 23 ------------------- .../Neo-JSON-GT/NeoJSONObject.extension.st | 23 ------------------- repository/Neo-JSON-GT/package.st | 1 - 3 files changed, 47 deletions(-) delete mode 100644 repository/Neo-JSON-GT/NeoJSONArray.extension.st delete mode 100644 repository/Neo-JSON-GT/NeoJSONObject.extension.st delete mode 100644 repository/Neo-JSON-GT/package.st diff --git a/repository/Neo-JSON-GT/NeoJSONArray.extension.st b/repository/Neo-JSON-GT/NeoJSONArray.extension.st deleted file mode 100644 index b335106..0000000 --- a/repository/Neo-JSON-GT/NeoJSONArray.extension.st +++ /dev/null @@ -1,23 +0,0 @@ -Extension { #name : #NeoJSONArray } - -{ #category : #'*Neo-JSON-GT' } -NeoJSONArray >> gtJsonFor: aView [ - - ^ aView explicit - title: 'JSON'; - priority: 10; - stencil: [ | editorElement textEditor text | - textEditor := BrTextEditorModel new. - textEditor styler: JSONParser gtStyler. - editorElement := BrEditorElement new. - editorElement editor: textEditor. - text := (NeoJSONWriter toStringPretty: self) asRopedText. - text glamorousCodeFontDo: #beNotOverwritableByStyler; glamorousCodeSizeDo: #beNotOverwritableByStyler. - textEditor text: text. - editorElement - padding: (BlInsets all: 10); - constraintsDo: [ :c | - c horizontal matchParent. - c vertical matchParent ]. - editorElement ] -] diff --git a/repository/Neo-JSON-GT/NeoJSONObject.extension.st b/repository/Neo-JSON-GT/NeoJSONObject.extension.st deleted file mode 100644 index af0f02f..0000000 --- a/repository/Neo-JSON-GT/NeoJSONObject.extension.st +++ /dev/null @@ -1,23 +0,0 @@ -Extension { #name : #NeoJSONObject } - -{ #category : #'*Neo-JSON-GT' } -NeoJSONObject >> gtJsonFor: aView [ - - ^ aView explicit - title: 'JSON'; - priority: 10; - stencil: [ | editorElement textEditor text | - textEditor := BrTextEditorModel new. - textEditor styler: JSONParser gtStyler. - editorElement := BrEditorElement new. - editorElement editor: textEditor. - text := (NeoJSONWriter toStringPretty: self) asRopedText. - text glamorousCodeFontDo: #beNotOverwritableByStyler; glamorousCodeSizeDo: #beNotOverwritableByStyler. - textEditor text: text. - editorElement - padding: (BlInsets all: 10); - constraintsDo: [ :c | - c horizontal matchParent. - c vertical matchParent ]. - editorElement ] -] diff --git a/repository/Neo-JSON-GT/package.st b/repository/Neo-JSON-GT/package.st deleted file mode 100644 index 7db5071..0000000 --- a/repository/Neo-JSON-GT/package.st +++ /dev/null @@ -1 +0,0 @@ -Package { #name : #'Neo-JSON-GT' }