From 6850cdd53aa2b64342c037805e5a58efc28d0897 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 14 Jun 2020 13:19:41 -0500 Subject: [PATCH] =?UTF-8?q?Integrando=20imagen=20con=20la=20versi=C3=B3n?= =?UTF-8?q?=20en=20Gitea.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repository/Grafoscopio-Utils/CodiMD.class.st | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/repository/Grafoscopio-Utils/CodiMD.class.st b/repository/Grafoscopio-Utils/CodiMD.class.st index e34aaa3..6f76d34 100644 --- a/repository/Grafoscopio-Utils/CodiMD.class.st +++ b/repository/Grafoscopio-Utils/CodiMD.class.st @@ -23,16 +23,6 @@ CodiMD class >> newDefault [ defaultServer. ] -{ #category : #accessing } -CodiMD >> contents [ - ^ contents -] - -{ #category : #accessing } -CodiMD >> contents: anObject [ - contents := anObject -] - { #category : #'as yet unclassified' } CodiMD >> defaultServer [ self server: 'https://docutopia.tupale.co'. @@ -102,12 +92,7 @@ CodiMD >> url [ ^ url asUrl ] -{ #category : #accessing } -CodiMD >> url: anObject [ - url := anObject -] - { #category : #visiting } CodiMD >> visit [ - WebBrowser openOn: self url. + WebBrowser openOn: self server, '/', self pad. ]