Thanks a lot!
I committed the patch (Mnemosyne is Qt app, not a KDE though).
If you still want a tarball, do 'make distrib' and look into the 'dist' dir.
Cheers,
Peter
Quoting robertle <[email protected]>:
update: I have built provisional packages from the current bzr
checkout, anyone interested please have a look and let me know if
there
are any problems: http://www.semistable.com/files/
I also did apply some changes to get it to work and/or make it more
policy-compliant, perhaps some of it is of interest to you as well:
--- a/mnemosyne/libmnemosyne/configuration.py
+++ b/mnemosyne/libmnemosyne/configuration.py
@@ -234,9 +234,9 @@
join = os.path.join
# Create paths.
if not exists(self.data_dir):
- os.mkdir(self.data_dir)
+ os.makedirs(self.data_dir)
if not exists(self.config_dir):
- os.mkdir(self.config_dir)
+ os.makedirs(self.config_dir)
for directory in ["history", "plugins", "backups"]:
if not exists(join(self.data_dir, directory)):
os.mkdir(join(self.data_dir, directory))
--- /dev/null
+++ b/mnemosyne.1
@@ -0,0 +1,19 @@
+.TH MNEMOSYNE 1 "" "Mnemosyne" "Spaced Repetition Flash-card Program"
+.SH NAME
+mnemosyne \- spaced repetition flash-card program
+.SH SYNOPSIS
+.B mnemosyne
+.RI [ options ]
+.SH DESCRIPTION
+The Mnemosyne software resembles a traditional flash-card program to
help you
+memorise question/answer pairs, but with an important twist: it uses
a
+sophisticated algorithm to schedule the best time for an item to come
up for
+review. Difficult items that you tend to forget quickly will be
scheduled more
+often, while Mnemosyne won't waste your time on things you remember
well.
+
+Since Mnemosyne is a KDE application, it is usually not started from
a shell,
+but from an X11 menu, and doesn't take many options. For a few hints
on how to
+use the software, see the homepage at http://www.mnemosyne-proj.org
+.SH AUTHOR
+mnemosyne was written by Peter Bienstman <[email protected]>
and friends
+
--- a/mnemosyne/webserver/mnemosyne-webserver
+++ b/mnemosyne/webserver/mnemosyne-webserver
@@ -1,3 +1,5 @@
+#!/usr/bin/python
+
#
# mnemosyne_webserver <[email protected]>
#
regards robert
--
You received this message because you are subscribed to the Google
Groups "mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/mnemosyne-proj-users?hl=en.
--
You received this message because you are subscribed to the Google Groups
"mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/mnemosyne-proj-users?hl=en.