-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    LinuxDaily.com    Linux42.org    OpenSkillz.com   
 
Apps
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


Sponsoring


-
- Content .- Fans (10) .- Knowledge Base  . 

Losungen

   0.3.3  

Plasmoid Script

Score 65%
Losungen
zoom


Losungen
zoom


Depends on  KDE 4.x
Downloads:  1131
Submitted:  Aug 31 2009
Updated:  Jan 24 2011

Description:

There has been an issue with the character encoding of the date. It should be fixed now, but I couldn't test it myself, since the python bindings for KDE 4.4.1 are still missing in Debian.

Requires KDE > 4.3!

Plasma widget for the daily text (bible verse) selected by the Moravian Church (Herrnhuter Brüdergemeinde). Unfortunately, the widget does not contain an English translation of the bible verses due to copyright issues. Requires python script-engine.

Plasma widget für die (tägliche) Losung der Herrnhuter Brüdergemeinde an. Benötigt die python script-engine.

I started this widget as an exercise for learning the plasma API. I'm not sure if it is of any use for anybody - especially since I cannot provide an English translation of the verses - but don't hesitate to contact me, if you have any suggestions for improvement.




Changelog:

0.3.3 2011-01-23
* Added texts for 2011

0.3.2 2010-03-15
* Fixed character encoding issue with strftime (Thanks to Philipp Hahn)

0.3.1 2009-11-09
* Added error message for the case that losungen texts are missing.

0.3 2009-11-09
* Added texts for 2010 and adapted parser to new column ordering.
* Applied patch from Ruthard Baudach with minor modifications; replaces "/" and "#" into HTML format tags.

0.2.1
* Fixed persistence of configuration parameters.

0.2
* Added configuration dialog for font size and "Bible URL".
* Fixed encoding issue in the info dialog.

0.1.1 Bugfix release.
* Fixed encoding issue.
* Fixed CSS template.

0.1 Initial release.




LicenseGPL
(plasma package (zip))
Send to a friend
Subscribe
Other  Apps  from jwchile
Report inappropriate content



goto page: prev   1  2 

-
.

 Thank You!!!

 
 by DrM on: Mar 11 2010
 
Score 50%

nice work ! All fine !
GBY


Dr.M
Reply to this

-

 Losungstexte for the year 2011

 
 by odysseus2010 on: Dec 23 2010
 
Score 50%

Hello,

your plasma widget is great I use it since 2009.
But now I need the texts for the year 2011.
When are the new textes avalible?

regards Odysseus2010


Reply to this

-

 Re: Losungstexte for the year 2011

 
 by FeG on: Jan 1 2011
 
Score 63%

The new texts are available here: http://www.brueder-unitaet.de/download/Losung_2011_CSV.zip. Download the zip file and extract the CSV file to

~/.kde/share/apps/plasma/plasmoids/losungen/contents/losungen11.csv


You than have to edit

~/.kde/share/apps/plasma/plasmoids/losungen/contents/code/main.py


as follows (patch)


--- main.py.old 2011-01-01 13:01:18.000000000 +0100
+++ main.py 2011-01-01 13:00:15.000000000 +0100
@@ -32,7 +32,8 @@

LOSUNG_FORMAT_DICT = {
"09" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
- "10" : {"losVers": 4, "losText": 3, "lehrVers": 6, "lehrText": 5}
+ "10" : {"losVers": 4, "losText": 3, "lehrVers": 6, "lehrText": 5},
+ "11" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6}
}

class Losung(object):


That is, in line 35 ("10" : ...) add a , (comma) at the end of the line and insert the line


"11" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6}


below line 35.

I then had to remove and re-add the plasmoid and it worked.

Regards,
FeG


Reply to this

-

 Re: Re: Losungstexte for the year 2011

 
 by weihenstefan on: Jan 1 2011
 
Score 50%

Thank you very much, update worked perfectly for me! Great plasmoid, can't live without it any more...


Reply to this

-
.

 Re: Re: Losungstexte for the year 2011

 
 by odysseus2010 on: Jan 2 2011
 
Score 50%

Hello,

Thanks for the Patch. It works fine.
Now I have the new losungen for the new year.

Odysseus2010


Reply to this

-

 Re: Re: Losungstexte for the year 2011

 
 by jwchile on: Jan 24 2011
 
Score 50%

I'm sorry for the late update.

In case you didn't update the plasmoid yourself already: The new version has the new texts.


Reply to this

-

 Re: Losungstexte for the year 2011

 
 by mkretz on: Jan 5 2011
 
Score 50%
mkretzmkretz
KDE multimedia (Phonon)
Home
-
Matthias Kretz 0

KDE multimedia (Phonon)
Germany, Heidelberg
Last visit Apr 13 2013
0 Friends
0 Groups

More info
Send a message
Add as friend
Other contents
--

You can download a script from http://kretzfamily.de/losung_update_2011.sh and a helper .desktop file from http://kretzfamily.de/losung_update_2011.desktop to automate the Update.


Reply to this

-

 Wie installieren?

 
 by karx11erx on: Apr 2 2011
 
Score 50%

Hallo,

habe extra KDE für dieses Plasmoid installiert. Allerdings lässt es sich nicht vie Minianwendungen hinzufügen installieren - der Installer findet in keinem der Unterverzeichnisse des Plasmoids irgendwas, was er installieren könnte.

Im README kurz zu erklären, wie man das installiert, wäre wirklich nicht die Welt gewesen.

Wie macht man es denn nun?


Reply to this

-

 Not working as expected

 
 by DivanSantana on: Jun 4 2011
 
Score 50%

I've tried changing the URL to http://www.bibleserver.com/go.php?lang=en&bible=NIV&ref=#REF# and doesn't seem to make any difference.

Any suggestions on correct URL for english and NIV?


Reply to this

-

 Re: Not working as expected

 
 by DivanSantana on: Jun 4 2011
 
Score 50%

Also tried
http://www.bibleserver.com/go.php?lang=2&bible=NIV&ref=#REF#

Which seems correct but the widget doesn't change at all.
Is this a bug or am I doing something wrong.


Reply to this

-

 Update the Losungen texts

 
 by mkretz on: Jan 2 2012
 
Score 50%
mkretzmkretz
KDE multimedia (Phonon)
Home
-
Matthias Kretz 0

KDE multimedia (Phonon)
Germany, Heidelberg
Last visit Apr 13 2013
0 Friends
0 Groups

More info
Send a message
Add as friend
Other contents
--

If you want to update the Losungen texts to 2012 you can download http://kretzfamily.de/losung_update.desktop and "execute" it. It will update the Losungen to 2012.

If the format of the texts, as provided by bruder-unitaet.de, doesn't change, then the same script will also work in the coming years.


Reply to this

-

 Re: Update the Losungen texts

 
 by AndrewPotter on: Feb 29 2012
 
Score 50%

Thanks for the Update script. Worked right out of the box.:)


Reply to this

-

 Re: Update the Losungen texts

 
 by wwjd2012 on: Oct 1 2012
 
Score 50%

The link to the kretzfamily page to get the updated Losungen seems no longer to exist. Is there any possibility to get the skript anymay? I miss the Losungen on my desktop ;-)


Reply to this

-

 Re: Re: Update the Losungen texts

 
 by mkretz on: Oct 2 2012
 
Score 50%
mkretzmkretz
KDE multimedia (Phonon)
Home
-
Matthias Kretz 0

KDE multimedia (Phonon)
Germany, Heidelberg
Last visit Apr 13 2013
0 Friends
0 Groups

More info
Send a message
Add as friend
Other contents
--

Right, sorry about that. Getting an ISP to provide Internet access for me at home has been (once again) a major problem. I hope to have kretzfamily.de back up next week.


Reply to this

-

 Losungstexte for the year 2013

 
 by AndrewPotter on: Jan 2 2013
 
Score 50%

I have the Losungstexte for 2013 working on my plasma desktop (KDE 4.9.5 release 3). I used the post from FeG Re: "Losungstexte for the year 2011" (Jan 1 2011) as my basis and performed the following 6 steps:

1.) Download the 2013 Texts from http://www.brueder-unitaet.de/download/Losung_2011_CSV.zip

2.) Extract the contents from the file "Losung_2013_CSV.zip"

3.) Copy the file "Losungen Free 2013.csv" to the directory ~/.kde4/share/apps/plasma/plasmoids/losungen/contents/

4.) Change the name of the newly copied file to be "losungen13.csv"

5.) Edit the file ~/.kde4/share/apps/plasma/plasmoids/losungen/contents/code/main.py

Change the block near line 33

From something like this ...
LOSUNG_FORMAT_DICT = {
"12" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
"09" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
"10" : {"losVers": 4, "losText": 3, "lehrVers": 6, "lehrText": 5},
"11" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
}


... to this (adding a line for the year 13)
LOSUNG_FORMAT_DICT = {
"13" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
"12" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
"09" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
"10" : {"losVers": 4, "losText": 3, "lehrVers": 6, "lehrText": 5},
"11" : {"losVers": 3, "losText": 4, "lehrVers": 5, "lehrText": 6},
}


6.) Exit and restart KDE, The Widget should now be working :)


Reply to this

-

 Re: Losungstexte for the year 2013

 
 by rasch on: Jan 2 2013
 
Score 50%

Thank you for posting, worked for me as well!


Reply to this

goto page: prev   1  2 

Add commentBack




-
-
Do you like or dislike Ubuntu Unity?
 Yes, unity is alien technology!
 It is less confusing than Gnome 3 default, shell.
 Granny thinks it is much more usable than Gnome 2
 Canonical is embarrasing itself with this split project
 Gnome 3 default shell is much better
 I dislike Unity, Gnome 3 default shell is alien technology!
 None of the above, I like the 2Gb for free and Apple alike behavior. Will post a comment instead

resultmore
 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Facebook App
Content RSS   
Events RSS   

Participate
Groups
Forum
Add App
Public API
About KDE-Apps.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2003-2013 KDE-Apps.org Team  
All rights reserved. KDE-Apps.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
KDE and K Desktop Environment are trademarks of KDE e.V.