-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
khal.conf.sample | ||
include README.rst | ||
include CONTRIBUTING.txt | ||
include CONTRIBUTORS.txt | ||
include COPYING | ||
include NEWS.txt | ||
include misc/__khal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
03.04.2014: khal v0.1 released | ||
The first release of khal is here: khal v0.1.0(and also available on | ||
pypi now). | ||
|
||
The next release, hopefully coming rather sooner than later, will get | ||
rid of its own CalDAV implementation, but instead use vdirsyncer; you | ||
can already try it out via checking out the branch *vdir* at github. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
khal v0.1 released | ||
================== | ||
:date: 03.04.2014 | ||
:category: News | ||
:tags: Releases | ||
|
||
The first release of khal is here: `khal v0.1.0`__ (and also available on pypi_ | ||
now). | ||
|
||
__ https://lostpackets.de/khal/downloads/khal-0.1.0.tar.gz | ||
|
||
The next release, hopefully coming rather sooner than later, will get rid of its | ||
own CalDAV implementation, but instead use vdirsyncer_; you can | ||
already try it out via checking out the branch *vdir* at github_. | ||
|
||
.. _pypi: https://pypi.python.org/khal/ | ||
.. _vdirsyncer: https://github.com/untitaker/vdirsyncer/ | ||
.. _github: https://github.com/geier/khal/tree/vdir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Frequently Asked Questions (FAQ) | ||
================================ | ||
|
||
|
||
* **during sync an exception is raised: [Errno 185090050] _ssl.c:343: error:0B084002:x509 certificate routines:X509_load_cert_crl_file:system lib** | ||
khal cannot find the path to your certificate bundle, you need to supply it as a | ||
parameter to `ssl_verify` in your config file, e.g. | ||
`ssl_verify: /usr/share/ca-certificates/cacert.org/cacert.org_root.crt`. | ||
|
||
* **ikhal raises an Exception: AttributeError: 'module' object has no attribute 'SimpleFocusListWalker'** | ||
You probably need to upgrade urwid to version 1.1.0, if your OS does come with | ||
an older version of *urwid* you can install the latest version to userspace | ||
(with out messing up your default installation) with `pip install --upgrade urwid --user`. | ||
|
||
|
||
* **Installation stops with an error: source/str_util.c:25:20: fatal error: Python.h: No such file or directory** | ||
You do not have the Python development headers installed, on Debian based | ||
Distributions you can install them via *aptitude install python-dev*. | ||
|
||
|
||
* **During sync an error occurs: TypeError: request() got an unexpected keyword argument 'verify'** | ||
You need to update your version of `requests`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters