2012-07-19 09:51:39 +02:00
|
|
|
note 1.3.12 by Thomas Linden, 07/19/2012
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
=======================================
|
2012-02-10 19:58:52 +01:00
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
|
============
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
This is a small console program written in
|
|
|
|
|
perl, which allows you to manage notes similar
|
|
|
|
|
to programs like "knotes" from commandline.
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
There are currently three different database backends,
|
|
|
|
|
which you can use with note:
|
|
|
|
|
o NOTEDB::binary - this is the default backend
|
|
|
|
|
and uses a binary file to store your notes.
|
|
|
|
|
o NOTEDB::mysql - this backend uses a mysql
|
|
|
|
|
database to store your notes. You can switch
|
|
|
|
|
easily to another DBMS since this module uses
|
|
|
|
|
the Perl standard module "DBI" for database-
|
|
|
|
|
access. See below for more info on this topic!
|
|
|
|
|
o NOTEDB::dbm - this module uses two DBM files
|
|
|
|
|
for data storage and requires the module DB_FILE,
|
|
|
|
|
which is part of the perl standard distribution.
|
|
|
|
|
See below for more details about the DBM module.
|
2012-02-10 20:30:38 +01:00
|
|
|
o NOTEDB::general - uses the module Config::General
|
|
|
|
|
for storage, which makes the data file portable,
|
|
|
|
|
since it is a plain ascii file (binary content
|
|
|
|
|
will be base64 encoded).
|
|
|
|
|
o NOTEDB::text - uses the Storable module for data
|
|
|
|
|
storage (a serializer). Storable is included with
|
|
|
|
|
perl, and since it's written in C, it's very fast.
|
|
|
|
|
But the resulting data files are not that portable
|
|
|
|
|
as the once of NOTEDB::general are.
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Where to get?
|
|
|
|
|
=============
|
|
|
|
|
|
2012-02-10 20:30:38 +01:00
|
|
|
By now you can download it at http://www.daemon.de/NOTE.
|
|
|
|
|
If you are using debian, you can apt-get it. If you are
|
|
|
|
|
using gentoo, you can emerge it.
|
2012-02-10 20:28:25 +01:00
|
|
|
|
2012-02-10 20:30:38 +01:00
|
|
|
You may also try your nearest tucows or freshmeat mirror.
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Features
|
|
|
|
|
========
|
|
|
|
|
|
2012-02-10 20:30:38 +01:00
|
|
|
o Several different database backends, mysql(DBI), dbm,
|
|
|
|
|
binary(bin file), general and text (text files).
|
2012-02-10 20:28:25 +01:00
|
|
|
o Commandline interface using the standard perl module
|
|
|
|
|
Getopt::Long, which allows you to use short or long
|
|
|
|
|
command-line options.
|
|
|
|
|
o Interactive interface(pure ascii), the following functions
|
|
|
|
|
are available in interactive mode: list, display, topic,
|
|
|
|
|
delete, edit, help.
|
|
|
|
|
o Highly confiurable using a perlish configfile ~/.noterc.
|
|
|
|
|
although it is configurable it is not required, note can
|
|
|
|
|
run without a configfile using useful default presets.
|
|
|
|
|
o Colourized output is supported using ASCII Escape-Sequences.
|
|
|
|
|
o The user can customize the color for each item.
|
|
|
|
|
o Data can be stored in various different database backends,
|
|
|
|
|
since all database access is excluded from the program itself
|
|
|
|
|
in perl modules.
|
|
|
|
|
o Notes can be deleted, edited and you can search trough your notes.
|
|
|
|
|
o Notes can be categorized. Each category(topic) can contain multiple
|
|
|
|
|
notes and even more sup-topics. There is no limitation about
|
|
|
|
|
sub topics.
|
|
|
|
|
o You can view all notes in a list and it is possible only to view
|
|
|
|
|
notes under a certain topic.
|
|
|
|
|
o There is a tree-view, which allows you to get an overview of your
|
|
|
|
|
topic-hierarchy.
|
|
|
|
|
o Notes can be encrypted using DES or IDEA algorythms and Crypt::CBC.
|
|
|
|
|
o You can dump the contents of your note database into a plain text
|
|
|
|
|
file, which can later be imported. Imports can be appended or it can
|
|
|
|
|
overwrite an existing database (-o).
|
|
|
|
|
o Note has scripting capabilities, you can create a new note by piping
|
|
|
|
|
another commands output to note, you can also import a notedump from
|
|
|
|
|
stdin as well es duming to stdout instead a file. Additional, there
|
|
|
|
|
is an option --raw available, which prints everything out completely
|
|
|
|
|
without formatting.
|
|
|
|
|
o for better performance, note can cache the database for listings
|
|
|
|
|
or searching.
|
|
|
|
|
o It can be installed without root-privileges.
|
2012-02-10 20:29:36 +01:00
|
|
|
o if Term::ReadLine (and Term::ReadLine::Gnu) is installed, history
|
|
|
|
|
and auto-completion are supported in interactive mode.
|
2012-02-10 20:28:25 +01:00
|
|
|
o Last, a while ago a user stated: "... it simply does, what it
|
|
|
|
|
says ..."
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 19:58:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
|
============
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
You need the following things:
|
|
|
|
|
o perl installed (5.004x)
|
|
|
|
|
o The module IO::Seekable and Fcntl, which should be
|
|
|
|
|
already installed with your perl distributuion if
|
|
|
|
|
you want to use the binary database backend.
|
|
|
|
|
o DBI module and DBI::mysql if you want to use the
|
|
|
|
|
mysql database backend.
|
|
|
|
|
o The module DB_FILE if you want to use the DBM module.
|
|
|
|
|
o Getopt::Long (part of perl std ditribution)
|
2012-02-10 20:29:36 +01:00
|
|
|
o Term::ReadLine and optionally Term::ReadLine::Gnu if
|
|
|
|
|
you want to use the auto-completion and history functionality.
|
2012-02-10 20:30:38 +01:00
|
|
|
o Config::General if you want to use the NOTEDB::general
|
|
|
|
|
backend.
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:05:33 +01:00
|
|
|
|
2012-02-10 19:58:52 +01:00
|
|
|
Installation
|
|
|
|
|
============
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Unpack the tar-ball and issue the following command:
|
2012-02-10 20:03:20 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
$ perl Makefile.PL
|
2012-02-10 20:13:28 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
This creates the Makefile neccessary for installing.
|
|
|
|
|
You may add some additional variables to the commandline, the
|
|
|
|
|
most important one is PREFIX.
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Then enter the following command to prepare the installation
|
|
|
|
|
process:
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
$ make
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
After that, you are ready to install. Become root and issue:
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
# make install
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
The installation process installs all modules for every available
|
2012-02-10 20:30:38 +01:00
|
|
|
data backends. The default note configuration does not require
|
|
|
|
|
additional perl modules.
|
2012-02-10 20:28:25 +01:00
|
|
|
If you want to use the mysql backend refer to the installation
|
|
|
|
|
instructions for the mysql database installation in mysql/README.
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
If you want to use encryption support, you will need at least
|
|
|
|
|
Crypt:CBC and Crypt::Blowfish (or Crypt::DES or whatever).
|
2012-02-10 19:58:52 +01:00
|
|
|
|
CHANGED: does no more use the external touch command to create a new
file, use perls open() instead.
CHANGED: excluded some of the help texts from the usage message and the
interactive help command to a manpage.
ADDED: new commandline flag "--encrypt" which one can use to encrypt
the mysql database password. This will be decrypted before
connecting to the db. There is also a new config file option
"encrypt_passwd" which indicates an encrypted db-password.
ADDED: another new config option "ShortCd", which can be set to "yes"
or 1 and if set, then a command like "cd 13" would jump
directly to the topic of the note with the number 13.
ADDED: now you can at any time cd back to the "root" of the
topic-structure using the command "cd /".
CHANGED: mysql.pm does now only do a table-lock on single write
accesses, no more on the whole session. This allows one to
access the same db twice or more.
FIXED: Changed README and Changelog for readability on 80 by 25
displays. And changed indentation of the note script itself.
ADDED: NOTEDB.pm - a generic module, which holds some methods, which
are used by binary.pm, mysql.pm and dbm.pm.
ADDED: NOTEDB.pm generate_search(), which allows one to
use AND, OR and various combinations of them using ( and ).
ADDED: a search does now return the 2nd line of a note if a matching
note's first line is a topic.
CHANGED: use "unshift" instead of push to add $libpath to @INC.
ADDED: a new feature, Caching of notes. supported by binary.pm and
mysql.pm. To turn it on, one need to set "Cache" in the config
to a true value.
2012-02-10 20:22:49 +01:00
|
|
|
|
2012-02-10 20:14:24 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Configuration
|
|
|
|
|
=============
|
2012-02-10 20:05:33 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
This version of note doesn't neccessarily need
|
|
|
|
|
a configuration file. But you can have one and change
|
|
|
|
|
some default values. Take a look to the file config/noterc
|
|
|
|
|
provided with this tarball. There are detailed instructions
|
|
|
|
|
about every available parameter.
|
|
|
|
|
Simply copy this file into your home-directory and name it
|
|
|
|
|
.noterc
|
|
|
|
|
If you decide not to use the default database backend (a binary
|
|
|
|
|
file), you will *need* a configuration!
|
2012-02-10 20:05:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Usage
|
|
|
|
|
=====
|
2012-02-10 20:01:40 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Refer to the note(1) manpage for usage instructions.
|
2012-02-10 20:01:40 +01:00
|
|
|
|
|
|
|
|
|
2012-02-10 20:27:05 +01:00
|
|
|
|
2012-02-10 19:58:52 +01:00
|
|
|
Comments
|
|
|
|
|
========
|
|
|
|
|
|
2012-02-10 20:34:04 +01:00
|
|
|
You can send any comments to Thomas Linden <tom at linden dot at>.
|
2012-02-10 20:28:25 +01:00
|
|
|
If you find a bug or if you have a suggestion for improvement of the
|
|
|
|
|
script feel free to send me a patch ;-)
|
2012-02-10 19:58:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
License
|
|
|
|
|
=======
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
This program comes with absolutely NO WARRANTY. It is distributed under
|
|
|
|
|
the terms of the GNU General Public License. Use it at your own risk :-)
|
|
|
|
|
You can read the complete GPL at: http://www.gnu.org/copyleft/gpl.html
|
2012-02-10 19:58:52 +01:00
|
|
|
|
CHANGED: does no more use the external touch command to create a new
file, use perls open() instead.
CHANGED: excluded some of the help texts from the usage message and the
interactive help command to a manpage.
ADDED: new commandline flag "--encrypt" which one can use to encrypt
the mysql database password. This will be decrypted before
connecting to the db. There is also a new config file option
"encrypt_passwd" which indicates an encrypted db-password.
ADDED: another new config option "ShortCd", which can be set to "yes"
or 1 and if set, then a command like "cd 13" would jump
directly to the topic of the note with the number 13.
ADDED: now you can at any time cd back to the "root" of the
topic-structure using the command "cd /".
CHANGED: mysql.pm does now only do a table-lock on single write
accesses, no more on the whole session. This allows one to
access the same db twice or more.
FIXED: Changed README and Changelog for readability on 80 by 25
displays. And changed indentation of the note script itself.
ADDED: NOTEDB.pm - a generic module, which holds some methods, which
are used by binary.pm, mysql.pm and dbm.pm.
ADDED: NOTEDB.pm generate_search(), which allows one to
use AND, OR and various combinations of them using ( and ).
ADDED: a search does now return the 2nd line of a note if a matching
note's first line is a topic.
CHANGED: use "unshift" instead of push to add $libpath to @INC.
ADDED: a new feature, Caching of notes. supported by binary.pm and
mysql.pm. To turn it on, one need to set "Cache" in the config
to a true value.
2012-02-10 20:22:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Recources
|
|
|
|
|
=========
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
The command-line options and all commands of the interactive mode are
|
|
|
|
|
described in the supplied note(1) manpage.
|
|
|
|
|
You may also refer to the note website http://www.daemon.de/note/.
|
CHANGED: does no more use the external touch command to create a new
file, use perls open() instead.
CHANGED: excluded some of the help texts from the usage message and the
interactive help command to a manpage.
ADDED: new commandline flag "--encrypt" which one can use to encrypt
the mysql database password. This will be decrypted before
connecting to the db. There is also a new config file option
"encrypt_passwd" which indicates an encrypted db-password.
ADDED: another new config option "ShortCd", which can be set to "yes"
or 1 and if set, then a command like "cd 13" would jump
directly to the topic of the note with the number 13.
ADDED: now you can at any time cd back to the "root" of the
topic-structure using the command "cd /".
CHANGED: mysql.pm does now only do a table-lock on single write
accesses, no more on the whole session. This allows one to
access the same db twice or more.
FIXED: Changed README and Changelog for readability on 80 by 25
displays. And changed indentation of the note script itself.
ADDED: NOTEDB.pm - a generic module, which holds some methods, which
are used by binary.pm, mysql.pm and dbm.pm.
ADDED: NOTEDB.pm generate_search(), which allows one to
use AND, OR and various combinations of them using ( and ).
ADDED: a search does now return the 2nd line of a note if a matching
note's first line is a topic.
CHANGED: use "unshift" instead of push to add $libpath to @INC.
ADDED: a new feature, Caching of notes. supported by binary.pm and
mysql.pm. To turn it on, one need to set "Cache" in the config
to a true value.
2012-02-10 20:22:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 20:12:25 +01:00
|
|
|
Author and Copyright
|
|
|
|
|
====================
|
2012-02-10 19:58:52 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
The author is Thomas Linden.
|
|
|
|
|
note is Copyright of Thomas Linden.
|
2012-02-10 19:58:52 +01:00
|
|
|
|
|
|
|
|
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
Contributors / Credits
|
|
|
|
|
======================
|
|
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
Shouts to all those guys who helped me to enhance note: THANKS A LOT!
|
|
|
|
|
|
|
|
|
|
Jens Heunemann <jens.heunemann@consol.de> - sub tree.
|
|
|
|
|
Peter Palmreuther - various additions.
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
2012-02-10 20:28:25 +01:00
|
|
|
And many other people who sent bug reports, feature requests. If you
|
|
|
|
|
feel that I forgot your name in this list, then please send me an email
|
|
|
|
|
and I'll add you.
|
FIXED: the T (and t respectively) printed nothing out since 1.0.3! It does
it now again...
ADDED: a new database backend added, NOTEDB::dbm, which uses DBM files for
storage.
FIXED: &display-tree returns now, if there is no note, otherwise it
would die because of an undefined refernce.
CHANGED: Changed the config file format completely. It is now no more a perl
file, instead it is a simple plain text file which note parses.
CHANGED: Changed the way, note loads it database backend. It uses now the
$dbdriver variable as module-name, which makes it possible easily
to write your own backend without the need to change note itself.
FIXED: Removed Getopt::Long option "bundling", causes errors with perl
5.6.0 and is not senceful.
FIXED: Added the Getopt::Long option "no_ignore_case". In 1.0.4 options
were case insensitive causing -i to be interpreted as --import
instead of --interactive ;-(((
ADDED: a new config option $DEFAULT_LIST, which causes note, \
if turned to "LONG", to use long-listing as default. |
But it will still be able to use short-listing if you |
explicit specify that. | submitted by
FIXED: sub search prints now an appropriate error-message in |==> Peter Palmreuther
case no searchstring was given instead of jumping to | thanks a lot!
usage. |
CHANGED: Changed the text in the interactive help to reflect |
changes of verion 1.0.3 (t and T). /
2012-02-10 20:15:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 19:58:52 +01:00
|
|
|
Last changed
|
|
|
|
|
============
|
|
|
|
|
|
2012-07-19 09:51:39 +02:00
|
|
|
07/19/2012
|