This commit is contained in:
2018-04-30 15:59:50 +02:00
parent 8502b9ae3b
commit f9ebdfbee6
25 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
{
"noMethodMetaData" : true,
"separateMethodMetaAndSource" : false,
"useCypressPropertiesFile" : true }

View File

@@ -0,0 +1 @@
Im a blog post.

View File

@@ -0,0 +1,6 @@
action
title: aTitle text: aText
^ self new
title: aTitle;
text: aText;
yourself

View File

@@ -0,0 +1,5 @@
action
title: aTitle text: aText category: aCategory
^ (self title: aTitle text: aText)
category: aCategory;
yourself

View File

@@ -0,0 +1,3 @@
initialization
unclassifiedTag
^ 'Unclassified'

View File

@@ -0,0 +1,3 @@
action
beVisible
self visible: true

View File

@@ -0,0 +1,3 @@
accessing
category: c
category := c

View File

@@ -0,0 +1,3 @@
accessing
category
^ category

View File

@@ -0,0 +1,3 @@
accessing
date: d
date := d

View File

@@ -0,0 +1,3 @@
accessing
date
^ date

View File

@@ -0,0 +1,3 @@
action
dontBeVisible
self visible: false

View File

@@ -0,0 +1,5 @@
initialization
initialize
self category: self class unclassifiedTag.
self date: Date today.
self dontBeVisible

View File

@@ -0,0 +1,3 @@
action
isUnclassified
^ self category = self class unclassifiedTag

View File

@@ -0,0 +1,3 @@
action
isVisible
self visible

View File

@@ -0,0 +1,3 @@
accessing
text: t
text := t

View File

@@ -0,0 +1,3 @@
accessing
text
^ text

View File

@@ -0,0 +1,3 @@
accessing
title: t
title := t

View File

@@ -0,0 +1,3 @@
accessing
title
^ title

View File

@@ -0,0 +1,3 @@
accessing
visible: v
visible := v

View File

@@ -0,0 +1,3 @@
accessing
visible
^ visible

View File

@@ -0,0 +1,18 @@
{
"category" : "TinyBlog",
"classinstvars" : [
],
"classvars" : [
],
"commentStamp" : "VeitHeller 4/30/2018 15:16",
"instvars" : [
"title",
"text",
"date",
"category",
"visible" ],
"name" : "TBPost",
"pools" : [
],
"super" : "Object",
"type" : "normal" }

View File

@@ -0,0 +1 @@
SystemOrganization addCategory: #TinyBlog!

View File

@@ -0,0 +1 @@
(name 'TinyBlog')

View File

@@ -0,0 +1,2 @@
{
}