ADDED: Topic support(requested). You can sort the various notes under

different topics now.
FIXED:          There was another bug, which caused the list command to display
                the notes with a too high value of $maxlen.
This commit is contained in:
TLINDEN
2012-02-10 20:09:11 +01:00
parent a9ee40e5c2
commit 6c5db55b5e
7 changed files with 432 additions and 105 deletions

View File

@@ -1,4 +1,4 @@
# 0.4
# 0.5
# This is a sample config for the note script
# You do not need it, if you keep the values
# here unchanged.
@@ -8,7 +8,7 @@
# IMPORTANT:
# If you previously used note 0.1 or 0.2 then
# you will already have such a file. This file
# is not compatible with the one for note 0.3!
# is not compatible with the one for note 0.3 and higher!
# You have to delete it and to create a new one.
#
# This config has to be valid perl code. Therefore
@@ -16,7 +16,7 @@
#
# You can contact me per email: <tom@daemon.de>
#
# Thomas Linden, 01/2000
# Thomas Linden, 23/2000
# mysql database settings. leave them uncommented
@@ -41,6 +41,11 @@
#$ALWAYS_EDIT = "YES"
# This option turns topic-support on or off
# comment it out, if you don't need it
$TOPIC = 1;
# Define the maximum bytes a note can have in a
# note-entry.
$MAX_NOTE = 1024;
@@ -76,6 +81,7 @@ $BORDER_COLOR = "BLACK"; # Borders
$NUM_COLOR = "blue"; # Note number
$NOTE_COLOR = "magenta"; # The note itself
$TIME_COLOR = "black"; # The time
$TOPIC_COLOR = "BLACK"; # The topic "prompt"
# The following colors are available:
# black, red, green, yellow, blue, magenta, cyan and white.