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
+4
View File
@@ -0,0 +1,4 @@
{
"noMethodMetaData" : true,
"separateMethodMetaAndSource" : false,
"useCypressPropertiesFile" : true }
@@ -0,0 +1 @@
Im a blog post.
@@ -0,0 +1,6 @@
action
title: aTitle text: aText
^ self new
title: aTitle;
text: aText;
yourself
@@ -0,0 +1,5 @@
action
title: aTitle text: aText category: aCategory
^ (self title: aTitle text: aText)
category: aCategory;
yourself
@@ -0,0 +1,3 @@
initialization
unclassifiedTag
^ 'Unclassified'
@@ -0,0 +1,3 @@
action
beVisible
self visible: true
@@ -0,0 +1,3 @@
accessing
category: c
category := c
@@ -0,0 +1,3 @@
accessing
category
^ category
@@ -0,0 +1,3 @@
accessing
date: d
date := d
@@ -0,0 +1,3 @@
accessing
date
^ date
@@ -0,0 +1,3 @@
action
dontBeVisible
self visible: false
@@ -0,0 +1,5 @@
initialization
initialize
self category: self class unclassifiedTag.
self date: Date today.
self dontBeVisible
@@ -0,0 +1,3 @@
action
isUnclassified
^ self category = self class unclassifiedTag
@@ -0,0 +1,3 @@
action
isVisible
self visible
@@ -0,0 +1,3 @@
accessing
text: t
text := t
@@ -0,0 +1,3 @@
accessing
text
^ text
@@ -0,0 +1,3 @@
accessing
title: t
title := t
@@ -0,0 +1,3 @@
accessing
title
^ title
@@ -0,0 +1,3 @@
accessing
visible: v
visible := v
@@ -0,0 +1,3 @@
accessing
visible
^ visible
@@ -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" }
@@ -0,0 +1 @@
SystemOrganization addCategory: #TinyBlog!
@@ -0,0 +1 @@
(name 'TinyBlog')
+2
View File
@@ -0,0 +1,2 @@
{
}