[fedocal] #23: Desktop or CLI client
by fedocal
#23: Desktop or CLI client
-------------------------+--------------------
Reporter: pingou | Owner:
Type: enhancement | Status: new
Priority: minor | Milestone: Future
Component: API | Version:
Keywords: |
-------------------------+--------------------
In the long term it might be cool if we have a cli or desktop client for
fedocal.
This might need, more work on the API (beside all the work on the client).
--
Ticket URL: <https://fedorahosted.org/fedocal/ticket/23>
fedocal <https://fedorahosted.org/fedocal>
A web-based calendar application for Fedora
6 years, 8 months
[fedocal] #7: Add a setup.py
by fedocal
#7: Add a setup.py
-------------------------+-------------------------
Reporter: pingou | Owner:
Type: enhancement | Status: new
Priority: major | Milestone: 0.1.0
Component: fedocal | Version: development
Keywords: |
-------------------------+-------------------------
We don't provide any kind of install script at the moment, having a
setup.py would be nice
--
Ticket URL: <https://fedorahosted.org/fedocal/ticket/7>
fedocal <https://fedorahosted.org/fedocal>
A web-based calendar application for Fedora
10 years, 3 months
[fedocal] master: Add code to make sure fedocal runs properly on EL6 (2d65456)
by Pierre-YvesChibon
Repository : http://git.fedorahosted.org/cgit/fedocal.git
On branch : master
>---------------------------------------------------------------
commit 2d654569e7b51db944e788a989e293903f56f297
Author: Pierre-Yves Chibon <pingou(a)pingoured.fr>
Date: Tue Jan 29 20:35:46 2013 +0100
Add code to make sure fedocal runs properly on EL6
>---------------------------------------------------------------
fedocal.wsgi | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/fedocal.wsgi b/fedocal.wsgi
index b04ebe4..1262b5d 100644
--- a/fedocal.wsgi
+++ b/fedocal.wsgi
@@ -1,5 +1,12 @@
#-*- coding: UTF-8 -*-
+# The three lines below are required to run on EL6 as EL6 has
+# two possible version of python-sqlalchemy and python-jinja2
+# These lines make sure the application uses the correct version.
+import __main__
+__main__.__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4']
+import pkg_resources
+
import os
## Set the environment variable pointing to the configuration file
os.environ['FEDOCAL_CONFIG'] = '/path/to/your/own/fedocal.cfg'
10 years, 4 months
[fedocal] master: Revert "Test commit" (4ba93de)
by Pierre-YvesChibon
Repository : http://git.fedorahosted.org/cgit/fedocal.git
On branch : master
>---------------------------------------------------------------
commit 4ba93dedccb74cd2ec9b68900c3ac032e3abd4de
Author: Pierre-Yves Chibon <pingou(a)pingoured.fr>
Date: Mon Jan 28 20:41:23 2013 +0100
Revert "Test commit"
This reverts commit f5e893a5ed802f8d3000ff2eabc64ba09eeb5ba0.
Fixes #26
>---------------------------------------------------------------
README.rst | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/README.rst b/README.rst
index 53651c2..f3b3874 100644
--- a/README.rst
+++ b/README.rst
@@ -102,4 +102,3 @@ License:
--------
This project is licensed GPLv3+.
-
10 years, 4 months