A set of plugins for Lepiter / Glamorous Toolkit. It may become the migration of Grafoscopio to such platform.
Go to file
Offray Vladimir Luna Cárdenas 9f3d7e02e5 Basic baseline defined. 2021-07-19 18:18:07 -05:00
src Basic baseline defined. 2021-07-19 18:18:07 -05:00
.project Base skeleton to sync. with remote repository. 2021-07-16 13:32:57 -05:00
README.md Actualizar 'README.md' 2021-07-18 14:48:26 -05:00

README.md

Lepiter Plugins

A bundle of plugins to customize the Lepiter experience.

Some day they may evolve so Grafoscopio becomes a Lepiter distribution, in a similar way that Doom Emacs or Spacemacs customize the "raw" Emacs experience (or may not...).

GToolkit now provides a more mature platform to build something similar to what Grafoscopio was exploring since 2015: data storytelling powered by a live coding moldable environment to bridge the gap between programming cultures and the wider culture to explore together the question of "how can we change the digital tools that change us?".

Plugins here try to improve and/or customize the Lepiter experience to improve document writing/outlining and focus more on data narratives. This is build from the years long experience with a diverse community around Grafoscopio mostly of non professional coders (teachers, students, desginers, artists, librarias, scientists, among others) since its beginnings. Also they serve as a starting test bed to explore the moldability of GToolkit the affordances it provides for customization and how easy is to use them.

To load this package open a Playground in GToolkit and execute:

	"I load the configuration of this package using a external Gitea repository." 
	"While more Git independient providers are implemented in Monticello, I will use Iceberg
	to download the repository and load it from a local directory"	
	| location localRepo repoName packageName |
	
	"Sometimes repoName and packageName are different, following Pharo's conventions.
	For example the repoName can be MyPackage, while packageName can be My-Package"
	repoName := 'LepiterPlugins'.
	packageName := 'LepiterPlugins'.
	
	"Local and remote repo definition"
	location := FileLocator localDirectory / 'iceberg' / 'Offray' / repoName.
	location exists ifFalse: [
		(IceRepositoryCreator new 
			location: location;
			remote: (IceGitRemote url: 'https://code.tupale.co/Offray/', repoName, '.git');
			createRepository)
		register
	].
	"Package loading"
	localRepo := 'gitlocal://', location fullName.
	Metacello new
		repository: localRepo;
		baseline: repoName;
		load.