-
Notifications
You must be signed in to change notification settings - Fork 0
/
textblog.rb
executable file
·95 lines (94 loc) · 2.15 KB
/
textblog.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/ruby -w
# gesamtzahl der Postings zunaechst auf 0 setzen
postings = 0
# Aktuelle Position auf 0 setzen
pos = 0
# Anzahldatei vorhanden?
if File.file?("postings.txt")
# Anzahl auslesen
f = File.open("postings.txt", "r")
postings = f.gets.to_i
f.close
# Aktuelle Position entspricht zunaechst Anzahl
pos = postings
end
# Hauptschleife
loop do
# Bildschirm loeschen -- plattformabhaengig
if RUBY_PLATFORM =~ /win/
system "cls"
else
system "clear"
end
# Fuenf Eintraege ab pos ausgeben, falls vorhanden
if postings > 0
puts "Bisherige Eintraege"
puts "==================="
puts
# Letzter anzuzeigender Eintrag
last = pos - 4
last = 1 if last < 1
# Iterator: umgekehrte Reihenfolge
pos.downto(last) { |i|
printf "%d. -- ", i
# Aktuelle Datei oeffnen
fname = "post#{i}.txt"
f = open(fname, "r")
# Gesamten Inhalt auslesen und ausgeben
post = f.read
puts post
puts "-------------------"
f.close
}
else
puts "Noch keine Eintraege."
end
# Menue anzeigen
puts
print "AUSWAHL: "
print "(N)euere " if pos < postings
print "(A)eltere " if pos > 5
print "(S)chreiben (E)nde\n"
print "===> "
# Menueauswahl
wahl = gets.chomp
# Beenden
break if wahl =~ /^e/i
# Neuere Postings
if wahl =~ /^n/i
pos += 5
pos = postings if pos > postings
next
end
# Aeltere Postings
if wahl =~ /^a/i
pos -= 5
pos = 1 if pos < 1
next
end
# Eingabe eines neuen Eintrags
puts "Neuen Eintrag zeilenweise eingeben,
leere Zeile zum Fertigstellen"
# Anzahl und Position erhoehen
postings += 1
pos = postings
# Neue Datei zum Schreiben oeffnen
fname = "post#{postings}.txt"
f = File.open(fname, "w")
# Datum/Uhrzeit als erste Zeile erzeugen
t = Time.new
eintrag = t.strftime("%d.%m.%Y, %H:%M")
# Schleife, bis Eintrag leerer String ist
while eintrag != ""
# Eintrag in die Datei schreiben
f.puts eintrag
# Neue Zeile einlesen
eintrag = gets.chomp
end
# Datei schliessen
f.close
# Neue Anzahl eintragen
f = File.open("postings.txt", "w")
f.puts postings
f.close
end