[Xfce4-commits] xfwm4:ochosi/tabwin Fix ellipsizing on app-buttons in tabwin

2013-07-13 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to 81c34c1c853b5ed31118bc79bd7a44371bb0753e (commit)
   from 4a0c465836e06c9e6a2a4d19654cb6158b6661b2 (commit)

commit 81c34c1c853b5ed31118bc79bd7a44371bb0753e
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Sat Jul 13 11:53:45 2013 +0200

Fix ellipsizing on app-buttons in tabwin

 src/tabwin.c |   52 +---
 1 files changed, 33 insertions(+), 19 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 0890702..6803f63 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -165,7 +165,7 @@ pretty_string (const gchar *s)
 }
 
 static void
-tabwinSetLabel (TabwinWidget *tbw, gchar *class, gchar *label, int workspace)
+tabwinSetLabel (TabwinWidget *tbw, GtkWidget *buttonlabel, gchar *class, gchar 
*label, int workspace)
 {
 gchar *message;
 PangoLayout *layout;
@@ -174,7 +174,7 @@ tabwinSetLabel (TabwinWidget *tbw, gchar *class, gchar 
*label, int workspace)
 TRACE (entering tabwinSetLabel);
 
 message = pretty_string (class);
-gtk_button_set_label (GTK_BUTTON (tbw-selected), message);
+gtk_label_set_text (GTK_LABEL (buttonlabel), message);
 g_free (message);
 
 if (tbw-tabwin-display_workspace)
@@ -196,7 +196,7 @@ tabwinSetLabel (TabwinWidget *tbw, gchar *class, gchar 
*label, int workspace)
 }
 
 static void
-tabwinSetSelected (TabwinWidget *tbw, GtkWidget *w)
+tabwinSetSelected (TabwinWidget *tbw, GtkWidget *w, GtkWidget *l)
 {
 Client *c;
 gchar *classname;
@@ -217,7 +217,7 @@ tabwinSetSelected (TabwinWidget *tbw, GtkWidget *w)
 c = g_object_get_data (G_OBJECT (tbw-selected), client-ptr-val);
 
 classname = g_strdup(c-class.res_class);
-tabwinSetLabel (tbw, classname, c-name, c-win_workspace);
+tabwinSetLabel (tbw, l, classname, c-name, c-win_workspace);
 g_free (classname);
 }
 
@@ -277,7 +277,7 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 {
 Client *c;
 GList *client_list;
-GtkWidget *windowlist, *icon, *selected, *window_button;
+GtkWidget *windowlist, *icon, *selected, *window_button, *buttonbox, 
*buttonlabel, *selected_label;
 int packpos, monitor_width;
 Tabwin *t;
 gint icon_size = WIN_ICON_SIZE;
@@ -300,15 +300,23 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 for (client_list = *t-client_list; client_list; client_list = g_list_next 
(client_list))
 {
 c = (Client *) client_list-data;
-TRACE (createWindowlist: adding %s, c-name);
-icon = createWindowIcon (c, icon_size);
+TRACE (createWindowlist: adding %s, c-name);   
 
-window_button = gtk_button_new_with_label ();
-g_object_set_data (G_OBJECT (window_button), client-ptr-val, c);
-gtk_button_set_image (GTK_BUTTON (window_button), icon);
-gtk_button_set_image_position (GTK_BUTTON (window_button), 
GTK_POS_TOP);
+window_button = gtk_button_new ();
 gtk_button_set_relief (GTK_BUTTON (window_button), GTK_RELIEF_NONE);
 gtk_widget_set_size_request (GTK_WIDGET (window_button), icon_size+24, 
icon_size+24);
+g_object_set_data (G_OBJECT (window_button), client-ptr-val, c);
+buttonbox = gtk_vbox_new (FALSE, 0);
+gtk_container_add (GTK_CONTAINER (window_button), buttonbox);
+
+icon = createWindowIcon (c, icon_size);
+gtk_box_pack_start (GTK_BOX (buttonbox), icon, FALSE, TRUE, 0);
+
+buttonlabel = gtk_label_new ();
+gtk_misc_set_alignment (GTK_MISC (buttonlabel), 0.5, 1.0);
+gtk_label_set_justify (GTK_LABEL (buttonlabel), GTK_JUSTIFY_CENTER);
+gtk_label_set_ellipsize (GTK_LABEL (buttonlabel), PANGO_ELLIPSIZE_END);
+gtk_box_pack_start (GTK_BOX (buttonbox), buttonlabel, TRUE, TRUE, 0);
 
 gtk_table_attach (GTK_TABLE (windowlist), GTK_WIDGET (window_button),
 packpos % tbw-grid_cols, packpos % tbw-grid_cols + 1,
@@ -319,11 +327,12 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 if (c == t-selected-data)
 {
 selected = window_button;
+selected_label = buttonlabel;
 }
 }
 if (selected)
 {
-tabwinSetSelected (tbw, selected);
+tabwinSetSelected (tbw, selected, selected_label);
 }
 return windowlist;
 }
@@ -453,7 +462,7 @@ static Client *
 tabwinChange2Selected (Tabwin *t, GList *selected)
 {
 GList *tabwin_list, *widgets;
-GtkWidget *window_button;
+GtkWidget *window_button, *buttonbox, *buttonlabel;
 TabwinWidget *tbw;
 
 t-selected = selected;
@@ -464,10 +473,13 @@ tabwinChange2Selected (Tabwin *t, GList *selected)
 {
 window_button = GTK_WIDGET (widgets-data);
 gtk_button_set_relief (GTK_BUTTON (window_button), 
GTK_RELIEF_NONE);
-gtk_button_set_label (GTK_BUTTON (window_button), );
+buttonbox = GTK_WIDGET( 

[Xfce4-commits] xfce4-weather-plugin:master I18n: Update translation ko (100%).

2013-07-13 Thread Transifex
Updating branch refs/heads/master
 to a8856346be2c5535c4a97aa9f7aff33faedcd124 (commit)
   from 922faa5e3f3682c5798320ef18b69d34cade3d62 (commit)

commit a8856346be2c5535c4a97aa9f7aff33faedcd124
Author: Darkcircle darkcircle.0...@gmail.com
Date:   Sat Jul 13 12:31:48 2013 +0200

I18n: Update translation ko (100%).

319 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ko.po |   14 +++---
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 4259541..e580015 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:29+0200\n
-PO-Revision-Date: 2013-07-07 10:41+\n
+PO-Revision-Date: 2013-07-13 10:02+\n
 Last-Translator: Darkcircle darkcircle.0...@gmail.com\n
 Language-Team: Korean 
(http://www.transifex.com/projects/p/xfce/language/ko/)\n
 MIME-Version: 1.0\n
@@ -191,7 +191,7 @@ msgid 
 bFog:/b %sbCloudiness:/b %s\n
 \n
 span size=\smaller\%s/span
-msgstr 
+msgstr bspan size=\large\%1$s/span/b span 
size=\medium\(%2$s)/span\nbspan size=\large\%3$s/span/b\nspan 
size=\smaller\%4$s부터 %5$s까지, 강수량: %6$s/span\n\nb기온:/b %7$s⇥⇥span 
size=\smaller\(%8$s의 값)/span\nb바람:/b %11$s(%12$s) 에서 %9$s (보포르 규모 
%10$s)\nb기압:/b %13$s b습도:/b %14$s\nb안개:/b %15$s b운량:/b 
%16$s\n\nspan size=\smaller\%17$s/span
 
 #: ../panel-plugin/weather.c:1711
 msgid Cannot update weather data
@@ -361,7 +361,7 @@ msgstr 시간대(_T):
 msgid 
 If the chosen location is not in your current timezone, then it is necessary 
to iput/i the plugin into that other timezone for the times to be shown 
correctly. The proper timezone will be auto-detected via the GeoNames web 
service, but you might want to correct it if necessary.\n
 Leave this field empty to use the timezone set by your system. Invalid 
entries will cause the use of UTC time, but that may also depend on your 
system.
-msgstr 
+msgstr 선택한 지역이 현재 시간대가 아니라면, 시간이 올바르게 나타나도록 다른 시간대 정보를 플러그인에 i입력/i해야 합니다. 
적당한 시간대는 GeoNames 웹서비스를 통해 자동으로 감지하지만, 필요한 경우 올바르게 수정할 필요도 있습니다.\n시스템에서 설정한 
시간대를 사용하시려면 빈 상태로 두십시오. 잘못된 항목 내용으로 말미암아 UTC 시간대를 사용하게끔 하겠지만, 이 또한 역시 시스템 상태에 
따라 결정됩니다.
 
 #: ../panel-plugin/weather-config.c:610
 msgid 
@@ -677,7 +677,7 @@ msgstr 단일 패널 행만 사용(_P)
 msgid 
 Check to always use only a single row on a multi-row panel and a small icon 
 in deskbar mode.
-msgstr 
+msgstr 데스크 막대 모드에서 다중 행 패널 및 작은 아이콘 상태일때 단일 행 만을 항상 사용하려면 표시하십시오.
 
 #: ../panel-plugin/weather-config.c:1257
 msgid _Tooltip style:
@@ -800,7 +800,7 @@ msgid 
 the water content of air, relative humidity gives (in %) the current 
 absolute humidity relative to the maximum for that air temperature and 
 pressure.
-msgstr 
+msgstr 습도는 공기중의 수분 분포양으로 정의하며, 강수, 안개, 이슬 확률과 함께 증가합니다. 절대 습도는 공기중의 수분의 양이며, 
상대 습도는 기온과 기압에 대한 최대 상대 습도에 대한 현재 절대 습도(% 단위)로 나타냅니다.
 
 #: ../panel-plugin/weather-config.c:1568
 msgid 
@@ -863,7 +863,7 @@ msgid 
 below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly 
 produces precipitation in the form of drizzle or very light snow and reduces
  visibility to less than 1 km (5/8 statute mile).
-msgstr 
+msgstr 안개는 낮게 깔린 구름의 형태이며, 보통 온도와 이슬점의 차가 2.5 °C (4 °F)이고, 상대습도가 100%일 경우, 
호수, 강가, 바닷가 또는 습지 주변에서 지역적으로 습기를 동반하여 발생합니다. 안개는 보통 이슬 형태 또는 아주 적은 양의 눈으로 내리고, 
가시거리를 1km(5/8 법정 마일) 내로 줄입니다.
 
 #: ../panel-plugin/weather-config.c:1644
 msgid 
@@ -880,7 +880,7 @@ msgid 
 /small/ttExample: If temperature is -5 °C (12 °F), then snow density will 
be low and a rain to snow ratio of 1:10 will be used for calculation. Assuming 
the reported value is 5 mm, then the calculated amount of snow precipitation is 
50 mm.\n
 \n
 bNote/b: While air temperature is an important factor in this 
calculation, there are other influencing factors that the plugin doesn't know 
about like the type of snow and ground temperature. Because of that, these 
rules will only lead to rough estimates and may not represent the real amount 
of snow.
-msgstr 
+msgstr 비, 이슬비, 진눈깨비, 우박, 싸락눈 등 하늘에서 주기적으로 물이 떨어지는 양입니다.\n\nmet.no에서 알려주는 값은 
액체의 상태에 따른 강수량입니다. 다른 말로 비의 양이라고도 합니다. 따라서 (진눈깨비가 아닌)눈이 예상된다면, 강설량은 대기 상태에 따른 
비율 값을 곱하여 i추정/i합니다.\n\nttsmall T lt; -11.1 °C (12 °F) =gt; 
1:12\n-11.1 °C (12 °F) lt; T lt; -4.4 °C (24 °F) =gt; 1:10\n-4.4 °C (24 °F) 
lt; T lt; -2.2 °C (28° F) =gt; 1:7\n-2.2 °C (28 °F) lt; T lt; -0.6 °C (31 
°F) =gt; 1:5\n-0.6 °C (31 °F) lt; T =gt; 1:3\n\n/small/tt예제: 온도가 -5 °C 
(12 °F)이면, 강설 밀도는 줄어들고 비 올 확률 대 눈 올 확률 비율 1:10을 계산에 사용합니다. 알려진 값을 5mm라고 하면 계산한 
강설량은 50mm가 됩니다.\n\nb참고/b: 이 계산에서 온도는 중요한 상수이지만 강설 형태��
 � 지상 온도와 같은 다른 알 수 없는 영향 인자요소도 있습니다. 왜냐면 이 규칙은 대략적인 값을 구할 뿐이며, 실제 강설량을 표현하는 것은 
아니기 때문입니다.
 
 #: ../panel-plugin/weather-config.c:1801
 msgid Show scroll_box
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-datetime-plugin:master I18n: Update translation it (100%).

2013-07-13 Thread Transifex
Updating branch refs/heads/master
 to c8e80b81582dab5ee479c90c22f8eedc74196167 (commit)
   from a48f26b5e905764ebd9a2be15ec016572e56fa3c (commit)

commit c8e80b81582dab5ee479c90c22f8eedc74196167
Author: cri cri.pe...@gmail.com
Date:   Sat Jul 13 12:31:16 2013 +0200

I18n: Update translation it (100%).

19 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/it.po |   58 +-
 1 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/po/it.po b/po/it.po
index 7577e6e..3f959a7 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,25 +1,28 @@
-# Italian translation for xfce4-datetime-plugin
-# Copyright (C) 2008 Xfce Desktop Environment Project
-# This file is distributed under the same license as the xfce4-datetime-plugin 
package.
-# Francesco Scarrone p...@gmail.com, 2009.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# Francesco Scarrone p...@gmail.com, 2009
 msgid 
 msgstr 
-Project-Id-Version: xfce4-datetime-plugin\n
+Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-07-31 13:39-0500\n
-PO-Revision-Date: 2009-02-06 15:29+0100\n
-Last-Translator: Francesco Scarrone pjf@gmail.com\n
-Language-Team: Darkforge www.darkforge.it\n
+POT-Creation-Date: 2013-07-03 20:55+0200\n
+PO-Revision-Date: 2013-07-13 08:55+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: it\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
-#: ../panel-plugin/datetime.c:82
+#: ../panel-plugin/datetime.c:87
 msgid Invalid format
 msgstr Formato non valido
 
-#: ../panel-plugin/datetime.c:87
+#: ../panel-plugin/datetime.c:92
 msgid Error
 msgstr Errore
 
@@ -48,60 +51,57 @@ msgstr Personalizza...
 msgid Select font
 msgstr Seleziona il carattere
 
-#: ../panel-plugin/datetime-dialog.c:332
+#: ../panel-plugin/datetime-dialog.c:313
 #, c-format
 msgid Unable to open the following url: %s
 msgstr Impossibile aprire il seguente url: %s
 
-#: ../panel-plugin/datetime-dialog.c:371
+#: ../panel-plugin/datetime-dialog.c:352
 msgid Datetime
 msgstr Orario
 
 #. * layout frame
 #. 
-#: ../panel-plugin/datetime-dialog.c:391
+#: ../panel-plugin/datetime-dialog.c:372
 msgid Layout
 msgstr Stile
 
 #. Format label
 #. format label
-#: ../panel-plugin/datetime-dialog.c:405 ../panel-plugin/datetime-dialog.c:467
-#: ../panel-plugin/datetime-dialog.c:570
+#: ../panel-plugin/datetime-dialog.c:386 ../panel-plugin/datetime-dialog.c:446
+#: ../panel-plugin/datetime-dialog.c:547
 msgid Format:
 msgstr Formato:
 
 #. * Date frame
 #. 
-#: ../panel-plugin/datetime-dialog.c:425
+#: ../panel-plugin/datetime-dialog.c:406
 msgid Date
 msgstr Data
 
-#: ../panel-plugin/datetime-dialog.c:437
+#: ../panel-plugin/datetime-dialog.c:417
 msgid The date will appear in a tooltip.
 msgstr La data apparirà in un messaggio a scomparsa.
 
 #. font label
-#: ../panel-plugin/datetime-dialog.c:450 ../panel-plugin/datetime-dialog.c:553
+#: ../panel-plugin/datetime-dialog.c:429 ../panel-plugin/datetime-dialog.c:530
 msgid Font:
 msgstr Carattere:
 
 #. * time frame
 #. 
-#: ../panel-plugin/datetime-dialog.c:528
+#: ../panel-plugin/datetime-dialog.c:507
 msgid Time
 msgstr Ora
 
-#: ../panel-plugin/datetime-dialog.c:540
+#: ../panel-plugin/datetime-dialog.c:518
 msgid The time will appear in a tooltip.
 msgstr L'ora apparirà in un messaggio a scomparsa.
 
-#: ../panel-plugin/datetime.desktop.in.in.h:1
-msgid Date and Time plugin with a simple calendar
-msgstr Plugin di data e ora con un calendario base
-
-#: ../panel-plugin/datetime.desktop.in.in.h:2
+#: ../panel-plugin/datetime.desktop.in.h:1
 msgid DateTime
 msgstr Orario
 
-#~ msgid Datetime properties
-#~ msgstr Proprietà  dell'orario
+#: ../panel-plugin/datetime.desktop.in.h:2
+msgid Date and Time plugin with a simple calendar
+msgstr Plugin di data e ora con un calendario base
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-xkb-plugin:master I18n: Update translation it (100%).

2013-07-13 Thread Transifex
Updating branch refs/heads/master
 to 4b6428ec5b3a11efb83943d6df1877491bc4218a (commit)
   from 91cf0a25cdd1e0b285f20cd16ed33f77d7dbdeb4 (commit)

commit 4b6428ec5b3a11efb83943d6df1877491bc4218a
Author: cri cri.pe...@gmail.com
Date:   Sat Jul 13 12:31:53 2013 +0200

I18n: Update translation it (100%).

17 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/it.po |   72 ++---
 1 files changed, 17 insertions(+), 55 deletions(-)

diff --git a/po/it.po b/po/it.po
index ff53ece..ad8dd57 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,20 +1,22 @@
-# Italian translation of the xfce4-rss-plugin package.
-# Copyright (C) 2006 Adriano Winter Bess adri...@xfce.org
-# This file is distributed under the same license as the xfce4-rss-plugin 
package.
-# Cristian Marchi cri.pe...@gmail.com, 2009
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# cri cri.pe...@gmail.com, 2009,2013
 msgid 
 msgstr 
-Project-Id-Version: 0.5.2\n
+Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-07-27 22:05-0400\n
-PO-Revision-Date: 2010-04-24 08:58+0100\n
-Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian xfce-it-translat...@googlegroups.com\n
-Language: it\n
+POT-Creation-Date: 2013-07-03 21:34+0200\n
+PO-Revision-Date: 2013-07-13 10:10+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: it\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../panel-plugin/xkb-settings-dialog.c:112
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
@@ -73,56 +75,16 @@ msgstr Plugin per la disposizione della tastiera
 
 #: ../panel-plugin/xkb-settings-dialog.c:195
 msgid Allows you to configure and use multiple keyboard layouts.
-msgstr 
-Permette di configurare e utilizzare diverse disposizioni della tastiera
+msgstr Permette di configurare e utilizzare diverse disposizioni della 
tastiera
 
 #: ../panel-plugin/xkb-settings-dialog.c:199
 msgid Other plugins available here
 msgstr Altri plugin sono disponibili qui
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:125
-#, fuzzy
+#: ../panel-plugin/xfce4-xkb-plugin.c:128
 msgid Keyboard settings
-msgstr Disposizione della tastiera
+msgstr Impostazioni della tastiera
 
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
 msgid Keyboard layouts setup and switch plugin
 msgstr Impostazione della disposizione tastiera e plugin di scelta
-
-# GLOSSARIO
-# layout = mappatura
-#~ msgid 
-#~ XKB configuration modifications are\n
-#~ disabled from the config file.\n
-#~ \n
-#~ See the README file for more information.
-#~ msgstr 
-#~ Le modifiche alla configurazione di XKB\n
-#~ sono disabilitate dal file di configurazione.\n
-#~ \n
-#~ Consultare il file README per maggiori\n
-#~ informazioni
-
-#~ msgid Keyboard model:
-#~ msgstr Modello di tastiera:
-
-#~ msgid Change layout option:
-#~ msgstr Modifica le opzioni di disposizione:
-
-#~ msgid Compose key position:
-#~ msgstr Posizione del tasto di composizione:
-
-#~ msgid Keyboard layouts:
-#~ msgstr Disposizione della tastiera:
-
-#~ msgid Default
-#~ msgstr Predefinito
-
-#~ msgid Layout
-#~ msgstr Disposizione
-
-#~ msgid Variant
-#~ msgstr Variante
-
-#~ msgid Add layout
-#~ msgstr Aggiungi disposizione
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] archive:master Transform into an installable gem.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 10cf2b38f1ef63a65c3ebbf1f4dff5ec6091381d (commit)
   from 38067c632c16d60cc5f64c3616e69b1be1a67753 (commit)

commit 10cf2b38f1ef63a65c3ebbf1f4dff5ec6091381d
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 13:10:04 2013 +0200

Transform into an installable gem.

 AUTHORS|1 +
 COPYING|  340 
 Rakefile   |   19 ++
 VERSION.yml|4 +
 config.ru = examples/config.ru|2 +-
 mb_footer.html = examples/mb_footer.html  |0
 mb_header.html = examples/mb_header.html  |0
 {public = examples/public}/archive.png|  Bin 695 - 695 bytes
 {public = examples/public}/cert.png   |  Bin 1289 - 1289 bytes
 {public = examples/public}/default.png|  Bin 1097 - 1097 bytes
 {public = examples/public}/folder.png |  Bin 848 - 848 bytes
 {public = examples/public}/mb.png |  Bin 4421 - 4421 bytes
 {public = examples/public}/text.png   |  Bin 501 - 501 bytes
 {public = examples/public}/up.png |  Bin 877 - 877 bytes
 fancyindex/main.rb = lib/fancyindex.rb|4 +-
 {fancyindex = lib}/models/archive.rb  |0
 {fancyindex = lib}/views/howtomirror.haml |0
 {fancyindex = lib}/views/index.haml   |0
 {fancyindex = lib}/views/layout.haml  |0
 {fancyindex = lib}/views/notfound.haml|0
 update-installation.sh |3 +
 21 files changed, 370 insertions(+), 3 deletions(-)

diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 000..7384a6d
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+Nick Schermer n...@xfce.org
diff --git a/COPYING b/COPYING
new file mode 100644
index 000..d60c31a
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,340 @@
+   GNU GENERAL PUBLIC LICENSE
+  Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+   Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+   GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains

[Xfce4-commits] xfwm4:ochosi/tabwin Improve drawing for non-composited tabwin Use GTK_STATE_SELECTED color to draw the border, like in xfsm-logout

2013-07-13 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to 14c76e9bba3f59b66eac714b86c7ff598502dc93 (commit)
   from 81c34c1c853b5ed31118bc79bd7a44371bb0753e (commit)

commit 14c76e9bba3f59b66eac714b86c7ff598502dc93
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Sat Jul 13 13:11:20 2013 +0200

Improve drawing for non-composited tabwin
Use GTK_STATE_SELECTED color to draw the border, like in xfsm-logout

 src/tabwin.c |   54 ++
 1 files changed, 34 insertions(+), 20 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 6803f63..e1077a2 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -100,6 +100,7 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 {
 GtkWindow *window;
 GdkScreen *screen;
+GdkColor *bg_normal, *bg_insensitive;
 cairo_t *cr;
 gint radius = 10.0;
 double degrees = 3.14 / 180.0;
@@ -108,27 +109,40 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 
 window = GTK_WINDOW(tbw);
 screen = gtk_window_get_screen(window);
-
+screen = gtk_widget_get_screen(GTK_WIDGET(tbw));
 cr = gdk_cairo_create (tbw-window);
-cairo_set_operator(cr, CAIRO_OPERATOR_CLEAR);
-gdk_cairo_region(cr, event-region);
-cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 0.0);
-cairo_fill_preserve(cr);
-cairo_clip(cr);
-cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
-
-//Draw a filled rounded rectangle with an outline
 cairo_set_line_width (cr, 1.0);
-cairo_arc (cr, width - radius - 0.5, radius + 0.5, radius, -90 * degrees, 
0 * degrees);
-cairo_arc (cr, width - radius - 0.5, height - radius - 0.5, radius, 0 * 
degrees, 90 * degrees);
-cairo_arc (cr, radius + 0.5, height - radius - 0.5, radius, 90 * degrees, 
180 * degrees);
-cairo_arc (cr, radius + 0.5, radius + 0.5, radius, 180 * degrees, 270 * 
degrees);
-cairo_close_path(cr);
-cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.8);
-cairo_fill_preserve (cr);
-cairo_set_source_rgba (cr, 0.95, 0.95, 0.95, 0.3);
-cairo_stroke (cr);
-
+
+if(gdk_screen_is_composited(screen)) {
+cairo_set_operator(cr, CAIRO_OPERATOR_CLEAR);
+gdk_cairo_region(cr, event-region);
+cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 0.0);
+cairo_fill_preserve(cr);
+cairo_clip(cr);
+cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
+
+//Draw a filled rounded rectangle with an outline
+cairo_arc (cr, width - radius - 0.5, radius + 0.5, radius, -90 * 
degrees, 0 * degrees);
+cairo_arc (cr, width - radius - 0.5, height - radius - 0.5, radius, 0 
* degrees, 90 * degrees);
+cairo_arc (cr, radius + 0.5, height - radius - 0.5, radius, 90 * 
degrees, 180 * degrees);
+cairo_arc (cr, radius + 0.5, radius + 0.5, radius, 180 * degrees, 270 
* degrees);
+cairo_close_path(cr);
+cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.8);
+cairo_fill_preserve (cr);
+cairo_set_source_rgba (cr, 0.95, 0.95, 0.95, 0.3);
+cairo_stroke (cr);
+}
+else {
+cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
+cairo_rectangle(cr, 0, 0, width, height);
+bg_normal = get_color(tbw, GTK_STATE_NORMAL);
+gdk_cairo_set_source_color(cr, bg_normal);
+cairo_fill_preserve (cr);
+bg_insensitive = get_color(tbw, GTK_STATE_SELECTED);
+gdk_cairo_set_source_color(cr, bg_insensitive);
+cairo_stroke (cr);
+}
+
 cairo_destroy (cr);
 return FALSE;
 }
@@ -415,7 +429,6 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 /* Only do the rounded corners and transparency if a compositor is in use 
*/
 screen = gtk_widget_get_screen(GTK_WIDGET(tbw));
 if(gdk_screen_is_composited(screen)) {
-g_signal_connect (tbw, expose-event, GTK_SIGNAL_FUNC 
(tabwin_expose), (gpointer) tbw);
 GdkColormap *cmap = gdk_screen_get_rgba_colormap(screen);
 if(cmap)
 gtk_widget_set_colormap(GTK_WIDGET(tbw), cmap);
@@ -452,6 +465,7 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 
 g_signal_connect_swapped (tbw, configure-event,
   GTK_SIGNAL_FUNC (tabwinConfigure), (gpointer) 
tbw);
+g_signal_connect (tbw, expose-event, GTK_SIGNAL_FUNC (tabwin_expose), 
(gpointer) tbw);
 
 gtk_widget_show_all (GTK_WIDGET (tbw));
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] archive:master Fix typos.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to fc200064122550a062127d868a56302fe983e396 (commit)
   from 10cf2b38f1ef63a65c3ebbf1f4dff5ec6091381d (commit)

commit fc200064122550a062127d868a56302fe983e396
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 13:38:05 2013 +0200

Fix typos.

 lib/fancyindex.rb |5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/fancyindex.rb b/lib/fancyindex.rb
index 4f1e56d..809dc13 100644
--- a/lib/fancyindex.rb
+++ b/lib/fancyindex.rb
@@ -5,8 +5,9 @@ require 'haml'
 require File.join(File.dirname(__FILE__), 'models', 'archive')
 
 module Fancyindex
-  class Fancyindex  Sinatra::Base
-include Moka::Models::Fancyindex
+  class Application  Sinatra::Base
+
+include Fancyindex::Models
 
 get '/howtomirror' do
   @title = How to become a mirror for Xfce
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] archive:master Move example.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to f65a7fe034a1f66afbf6f63c566f16ccd3039612 (commit)
   from fc200064122550a062127d868a56302fe983e396 (commit)

commit f65a7fe034a1f66afbf6f63c566f16ccd3039612
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 13:38:12 2013 +0200

Move example.

 examples/{ = archive.xfce.org}/config.ru  |0
 examples/{ = archive.xfce.org}/mb_footer.html |0
 examples/{ = archive.xfce.org}/mb_header.html |0
 examples/{ = archive.xfce.org}/public/archive.png |  Bin 695 - 695 bytes
 examples/{ = archive.xfce.org}/public/cert.png|  Bin 1289 - 1289 bytes
 examples/{ = archive.xfce.org}/public/default.png |  Bin 1097 - 1097 bytes
 examples/{ = archive.xfce.org}/public/folder.png  |  Bin 848 - 848 bytes
 examples/{ = archive.xfce.org}/public/mb.png  |  Bin 4421 - 4421 bytes
 examples/{ = archive.xfce.org}/public/text.png|  Bin 501 - 501 bytes
 examples/{ = archive.xfce.org}/public/up.png  |  Bin 877 - 877 bytes
 10 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/examples/config.ru b/examples/archive.xfce.org/config.ru
similarity index 100%
rename from examples/config.ru
rename to examples/archive.xfce.org/config.ru
diff --git a/examples/mb_footer.html b/examples/archive.xfce.org/mb_footer.html
similarity index 100%
rename from examples/mb_footer.html
rename to examples/archive.xfce.org/mb_footer.html
diff --git a/examples/mb_header.html b/examples/archive.xfce.org/mb_header.html
similarity index 100%
rename from examples/mb_header.html
rename to examples/archive.xfce.org/mb_header.html
diff --git a/examples/public/archive.png 
b/examples/archive.xfce.org/public/archive.png
similarity index 100%
rename from examples/public/archive.png
rename to examples/archive.xfce.org/public/archive.png
diff --git a/examples/public/cert.png 
b/examples/archive.xfce.org/public/cert.png
similarity index 100%
rename from examples/public/cert.png
rename to examples/archive.xfce.org/public/cert.png
diff --git a/examples/public/default.png 
b/examples/archive.xfce.org/public/default.png
similarity index 100%
rename from examples/public/default.png
rename to examples/archive.xfce.org/public/default.png
diff --git a/examples/public/folder.png 
b/examples/archive.xfce.org/public/folder.png
similarity index 100%
rename from examples/public/folder.png
rename to examples/archive.xfce.org/public/folder.png
diff --git a/examples/public/mb.png b/examples/archive.xfce.org/public/mb.png
similarity index 100%
rename from examples/public/mb.png
rename to examples/archive.xfce.org/public/mb.png
diff --git a/examples/public/text.png 
b/examples/archive.xfce.org/public/text.png
similarity index 100%
rename from examples/public/text.png
rename to examples/archive.xfce.org/public/text.png
diff --git a/examples/public/up.png b/examples/archive.xfce.org/public/up.png
similarity index 100%
rename from examples/public/up.png
rename to examples/archive.xfce.org/public/up.png
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] moka:master Small example improvement.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 02e3c25c5b8a28b1c1db507ced7a7559dc30f164 (commit)
   from 8b985ac8ad941f5917590a51d7ed8a673a131fe5 (commit)

commit 02e3c25c5b8a28b1c1db507ced7a7559dc30f164
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 17:50:49 2013 +0200

Small example improvement.

 examples/gitolite/gitolite.rb |2 +-
 lib/moka.rb   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/gitolite/gitolite.rb b/examples/gitolite/gitolite.rb
index fc1b5d6..215f5f9 100755
--- a/examples/gitolite/gitolite.rb
+++ b/examples/gitolite/gitolite.rb
@@ -16,4 +16,4 @@ Moka::Models::Configuration.load do |conf|
 end
 
 generator = Moka::Gitolite.new
-generator.run('/tmp/gitolitetest')
+generator.run('/tmp/gitolitetest', [ '/file/for/prefix1' , '/file/for/prefix2' 
])
diff --git a/lib/moka.rb b/lib/moka.rb
index bf28b6d..8973936 100755
--- a/lib/moka.rb
+++ b/lib/moka.rb
@@ -4,7 +4,7 @@ require 'sass'
 
 directory = File.expand_path(File.dirname(__FILE__))
 
-for n in ['archive', 'classification', 'collection', 'configuration', 'group', 
'maintainer', 'project', 'role']
+for n in ['archive', 'autoindex', 'classification', 'collection', 
'configuration', 'group', 'maintainer', 'project', 'role']
   require File.join(directory, 'models', n)
 end
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] moka:master Drop test stuff.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to db0844c8e2dc3a95db183aca1d83ed3ad3bd861f (commit)
   from 02e3c25c5b8a28b1c1db507ced7a7559dc30f164 (commit)

commit db0844c8e2dc3a95db183aca1d83ed3ad3bd861f
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 17:56:48 2013 +0200

Drop test stuff.

 lib/moka.rb |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/moka.rb b/lib/moka.rb
index 8973936..bf28b6d 100755
--- a/lib/moka.rb
+++ b/lib/moka.rb
@@ -4,7 +4,7 @@ require 'sass'
 
 directory = File.expand_path(File.dirname(__FILE__))
 
-for n in ['archive', 'autoindex', 'classification', 'collection', 
'configuration', 'group', 'maintainer', 'project', 'role']
+for n in ['archive', 'classification', 'collection', 'configuration', 'group', 
'maintainer', 'project', 'role']
   require File.join(directory, 'models', n)
 end
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:ochosi/tabwin Pick up gtk-colors in composited version too

2013-07-13 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to fcb95f84e73d3e52a95a289d4babf0f3fdf1e5ba (commit)
   from 14c76e9bba3f59b66eac714b86c7ff598502dc93 (commit)

commit fcb95f84e73d3e52a95a289d4babf0f3fdf1e5ba
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Sat Jul 13 18:36:12 2013 +0200

Pick up gtk-colors in composited version too

 src/tabwin.c |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index e1077a2..4d6431d 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -100,7 +100,8 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 {
 GtkWindow *window;
 GdkScreen *screen;
-GdkColor *bg_normal, *bg_insensitive;
+GdkColor *bg_normal = get_color(tbw, GTK_STATE_NORMAL);
+GdkColor *bg_selected = get_color(tbw, GTK_STATE_SELECTED);
 cairo_t *cr;
 gint radius = 10.0;
 double degrees = 3.14 / 180.0;
@@ -127,19 +128,17 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 cairo_arc (cr, radius + 0.5, height - radius - 0.5, radius, 90 * 
degrees, 180 * degrees);
 cairo_arc (cr, radius + 0.5, radius + 0.5, radius, 180 * degrees, 270 
* degrees);
 cairo_close_path(cr);
-cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.8);
+cairo_set_source_rgba (cr, bg_normal-red/65535.0, 
bg_normal-green/65535.0, bg_normal-blue/65535.0, 0.8);
 cairo_fill_preserve (cr);
-cairo_set_source_rgba (cr, 0.95, 0.95, 0.95, 0.3);
+cairo_set_source_rgba (cr, bg_selected-red/65535.0, 
bg_selected-green/65535.0, bg_selected-blue/65535.0, 0.8);
 cairo_stroke (cr);
 }
 else {
 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
 cairo_rectangle(cr, 0, 0, width, height);
-bg_normal = get_color(tbw, GTK_STATE_NORMAL);
 gdk_cairo_set_source_color(cr, bg_normal);
 cairo_fill_preserve (cr);
-bg_insensitive = get_color(tbw, GTK_STATE_SELECTED);
-gdk_cairo_set_source_color(cr, bg_insensitive);
+gdk_cairo_set_source_color(cr, bg_selected);
 cairo_stroke (cr);
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:ochosi/tabwin Make border-width property functional again

2013-07-13 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to 1a8ad2b1cb1de406d3c8c97f26ed44dba6c9dcfe (commit)
   from fcb95f84e73d3e52a95a289d4babf0f3fdf1e5ba (commit)

commit 1a8ad2b1cb1de406d3c8c97f26ed44dba6c9dcfe
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Sat Jul 13 18:37:19 2013 +0200

Make border-width property functional again

 src/tabwin.c |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 4d6431d..df8f47e 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -33,7 +33,7 @@
 #endif
 
 #ifndef WIN_COLOR_BORDER
-#define WIN_COLOR_BORDER 3
+#define WIN_COLOR_BORDER 1
 #endif
 
 #include glib.h
@@ -102,6 +102,7 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 GdkScreen *screen;
 GdkColor *bg_normal = get_color(tbw, GTK_STATE_NORMAL);
 GdkColor *bg_selected = get_color(tbw, GTK_STATE_SELECTED);
+gint border_width = WIN_COLOR_BORDER;
 cairo_t *cr;
 gint radius = 10.0;
 double degrees = 3.14 / 180.0;
@@ -112,7 +113,8 @@ tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, 
gpointer data)
 screen = gtk_window_get_screen(window);
 screen = gtk_widget_get_screen(GTK_WIDGET(tbw));
 cr = gdk_cairo_create (tbw-window);
-cairo_set_line_width (cr, 1.0);
+gtk_widget_style_get (GTK_WIDGET (tbw), border-width, border_width, 
NULL);
+cairo_set_line_width (cr, border_width);
 
 if(gdk_screen_is_composited(screen)) {
 cairo_set_operator(cr, CAIRO_OPERATOR_CLEAR);
@@ -408,7 +410,6 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 GtkWidget *vbox;
 GtkWidget *windowlist;
 GdkRectangle monitor;
-gint border_width = WIN_COLOR_BORDER;
 
 TRACE (entering tabwinCreateWidget for monitor %i, monitor_num);
 
@@ -421,7 +422,6 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 tbw-selected = NULL;
 tbw-selected_callback = 0;
 
-gtk_widget_style_get (GTK_WIDGET (tbw), border-width, border_width, 
NULL);
 gtk_window_set_screen (GTK_WINDOW (tbw), screen_info-gscr);
 gtk_widget_set_name (GTK_WIDGET (tbw), xfwm4-tabwin);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master Increase mirrorbrain font to match website.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 37809768fedc8e21acfc41ca2510b1bb7009f6be (commit)
   from 5edc9748896c5f7fb242e13424ce9d7257e0da72 (commit)

commit 37809768fedc8e21acfc41ca2510b1bb7009f6be
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 19:08:06 2013 +0200

Increase mirrorbrain font to match website.

 style/mirrorbrain.css |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/style/mirrorbrain.css b/style/mirrorbrain.css
index 3033948..e5fc644 100644
--- a/style/mirrorbrain.css
+++ b/style/mirrorbrain.css
@@ -1,7 +1,7 @@
 @import url('header.css');
 
 body {
-  font: 80% Verdana, Arial, Helvetica, sans-serif;
+  font: 12px/18px Bitstream Vera Sans, Lucida Grande, Lucida Sans 
Unicode, Helvetica, Arial, Verdana, sans-serif;
   margin: 0;
   line-height: 1.7em;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mixer:master Drop pot file.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 4ca0304bec134bf4084160353cb98217c24318d5 (commit)
   from a3f72da46c850a1408928b501387b6daacd0ef10 (commit)

commit 4ca0304bec134bf4084160353cb98217c24318d5
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 19:21:14 2013 +0200

Drop pot file.

 autogen.sh |   30 +
 po/ChangeLog   |  347 
 po/xfce4-mixer.pot |  188 
 3 files changed, 2 insertions(+), 563 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index ae2cb53..2c644e9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,7 +3,6 @@
 # vi:set et ai sw=2 sts=2 ts=2: */
 #-
 # Copyright (c) 2009 Jannis Pohlmann jan...@xfce.org
-# Copyright (c) 2012 Guido Berhoerster guido+x...@berhoerster.name
 #
 # This program is free software; you can redistribute it and/or 
 # modify it under the terms of the GNU General Public License as
@@ -20,32 +19,7 @@
 # Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 # Boston, MA 02110-1301, USA.
 
-# finds the given command in $PATH
-findpath () {
-if [ $# -ne 1 ] || [ -z $1 ]; then
-return 1
-fi
-
-_findpath_cmd=$1
-oIFS=${IFS}
-IFS=:
-set -- ${PATH}
-IFS=${oIFS}
-
-while [ $# -gt 0 ]; do
-if [ -x $1/${_findpath_cmd} ]; then
-printf %s\n $1/${_findpath_cmd}
-unset _findpath_cmd oIFS
-return 0
-fi
-shift
-done
-
-unset _findpath_cmd oIFS
-return 1
-}
-
-xdt_autogen=$(findpath xdt-autogen) || {
+(type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
 autogen.sh: You don't seem to have the Xfce development tools installed on
 your system, which are required to build this software.
@@ -55,4 +29,4 @@ EOF
   exit 1
 }
 
-XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec ${xdt_autogen} $@
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 524f6a4..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,347 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * tr.po: Turkish translation update (Gökmen Görgen).
-
-2009-07-09  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos).
-
-2009-06-28  Mike Massonnet mmasson...@xfce.org
-
-   * sk.po: Slovak translation update (Robert Hartl)
-
-2009-06-16  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * lv.po: Latvian translation update (Rihards Prieditis)
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-22  Mișu Moldovan  du...@xfce.org
-
-   * LINGUAS: Added ro
-   * ro.po: Romanian translation added
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-15  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-04-08  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-30  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-29  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-   * it.po, LINGUAS: Italian translation added (Cristian Marchi)
-
-2009-03-27  Maximilian Schleiss maximil...@xfce.org
-
-   * pt.po: Portuguese translation update (Nuno Miguel)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-08  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-   * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2009-02-20  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-02-09  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-02-07  Maximilian Schleiss maximil...@xfce.org
-
-   * de.po: German translation update (Enrico Tröger)
-   * id.po: Indonesian translation update (Andhika Padmawan)
-   * nb.po: Norwegian Bokmål translation update (Terje Uriansrud)
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2009-02-03  

[Xfce4-commits] xfmpc:master Pot file cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 70ee32a570e05d5df6ac5db1482693f37bb840fb (commit)
   from 36700a0bee2d591e1f45b0d5eff4281e60dbce9d (commit)

commit 70ee32a570e05d5df6ac5db1482693f37bb840fb
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 20:17:15 2013 +0200

Pot file cleanup.

 autogen.sh |   35 +++
 po/ChangeLog   |  277 --
 po/POTFILES.in |   23 ++---
 po/xfmpc.pot   |  308 
 4 files changed, 27 insertions(+), 616 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 4fc0da9..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,23 @@
 #!/bin/sh
 #
-# $Id$
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
-# Copyright (c) 2002-2008
-# The Thunar development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
 #
-# Written for Thunar by Benedikt Meurer be...@xfce.org.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
@@ -18,18 +29,4 @@ EOF
   exit 1
 }
 
-# substitute revision and linguas
-linguas=`ls po/*.po 2/dev/null | awk 'BEGIN {FS=[./]; ORS= } {print $2}'`
-if test -d .git; then
-  revision=`git log --pretty=format:%h -n 1`
-else
-  revision=UNKNOWN
-fi
-
-sed -e s/@LINGUAS@/${linguas}/g \
--e s/@REVISION@/${revision}/g \
- configure.in.in  configure.in
-
-exec xdt-autogen --enable-debug=yes $@
-rm configure.in
-
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index b6c8a39..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,277 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-26  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-07-25  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-15  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Spanish trnalstion update (elega)
-
-2009-06-09  Michal V�rady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-   * sl.po: Slovenian translation update (Alan Pepelko)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * de.po: German translation update (Fabian Nowak)
-
-2009-04-13  Mike Massonnet mmasson...@xfce.org
-
-   * id.po: Indonesian translation upadte (Andhika Padmawan)
-   * it.po: Italian translation update (Cristian Marchi)
-
-2009-03-27  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-23  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-19  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-03-19  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-16  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po: Update Finnish translation.
-
-2009-03-15  Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * tr.po: Turkish translation update (Samed Beyribey)
-
-2009-03-14  Mike Massonnet mmasson...@xfce.org
-
-   * *.po, *.pot: make update-po (yet again)
-   * fr.po: Update French translation
-
-2009-03-14  Mike Massonnet mmasson...@xfce.org
-
-   * *.po, *.pot: make update-po
-   * fr.po: Update French translation
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-04 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Updated Brazilian Portuguese translation by
-   Filipe Rosset.
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * uk.po: Ukrainian 

[Xfce4-commits] xfce4-screenshooter:master Drop pot file.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to cb46dea9ac7d70327220bcde2c401c4864a2fafd (commit)
   from dbd83402865c7e89ba0f73059b0bd9698ac18b8a (commit)

commit cb46dea9ac7d70327220bcde2c401c4864a2fafd
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 20:59:01 2013 +0200

Drop pot file.

 po/ChangeLog   |  680 
 po/xfce4-screenshooter.pot |  370 
 2 files changed, 1050 deletions(-)

diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 946d3b4..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,680 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-08-01  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-07-26  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-07-25  Gabor Kelemen kelem...@gnome.hu
-
-   * hu.po: Translation updated.
-
-2009-07-24 jeromeg
-
-Fix the indentation in the Russian translation. (Bug #5521)
-
-2009-06-28 mmassonnet
-
-Update Greek translation (Evaggelos Balaskas).
-
-2009-06-18 mmassonnet
-
-Update Spanish translation (elega).
-
-2009-06-16 jeromeg
-
-Update Italian translation (Gianluca Foddis).
-
-2009-06-14 jeromeg
-
-Update Indonesian translation (Andhika Padmawan).
-New Vietnamese translation (Vincent Nguyen).
-
-2009-06-13  Piarres Beobide p...@beobide.net
-
-   * eu.po: Basque translation update
-
-2009-06-13  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-   
-2009-06-13 jeromeg
-
-Update Dutch translation (Vincent Turu).
-
-2009-06-13 jeromeg
-
-Update Portuguese translation (Nuno Miguel).
-
-2009-06-12 jeromeg
-
-Update Spanish translation (elega).
-
-2009-06-10 jeromeg
-
-Update Urdu translation (Muhammad Ali Makki).
-
-2009-06-08 jeromeg
-
-Catalan translation update (Carles Munoz Gorriz).
-
-Simplified Chinese translation update (Hunt Xu).
-
-2009-06-06 jeromeg
-
-Russian translation update (Denis Koryavov).
-
-2009-06-06  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2009-06-06  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-06-04 Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-06-03 jeromeg
-
-Update Turkish translation (Samed Beyribey).
-
-2009-05-31 jeromeg
-
-Update the Turkish translation (Samed Beyribey) and fix typos noticed
-by Per Kongstad.
-
-2009-05-31 jeromeg
-
-Update the po files and the French translation.
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Catalan translation update (Harald Servat)
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-28 Jérôme Guelfucci jero...@xfce.org
-
-Fix a typo in the French translation.
-
-2009-05-28 Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2009-05-21 Jérôme Guelfucci jero...@xfce.org
-
-   * Update the po files.
-   * fr.po: Update the French translation.
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * de.po: German translation update (Fabian Nowak)
-   * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2009-04-13  Mike Massonnet mmasson...@xfce.org
-
-   * id.po: Indonesian translation upadte (Andhika Padmawan)
-
-2009-04-09  Jérôme Guelfucci jero...@xfce.org
-
-   * ru.po: Russian translation (Denis Koryavov).
-
-2009-04-05  Maximilian Schleiss maximil...@xfce.org
-
-   * tr.po: Turkish translation update (Samed Beyribey)
-
-2009-04-05  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-30 Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-03-28  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po: Update Finnish translation.
-
-2009-03-27  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-23 Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ChangLog: Cleanup (Masato Hashimoto)
-
-2009-03-23  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-22 Per Kongstad p...@xfce.org
-
-   * 

[Xfce4-commits] xfswitch-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e809c961b53ac9f110c99b0fc1bfb16e1fbbbf78 (commit)
   from b32565f0463141a4103bab8695e4d2d40c94ce38 (commit)

commit e809c961b53ac9f110c99b0fc1bfb16e1fbbbf78
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:01:51 2013 +0200

Potfile cleanup.

 autogen.sh  |   36 ++--
 po/ChangeLog|   52 
 po/LINGUAS  |1 -
 po/xfswitch.pot |   30 --
 4 files changed, 18 insertions(+), 101 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index cee3f34..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,7 +1,23 @@
 #!/bin/sh
 #
-# $Id: autogen.sh 2402 2007-01-17 17:51:43Z nick $
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
@@ -13,20 +29,4 @@ EOF
   exit 1
 }
 
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) /dev/null 21 || {
-  cat 2 EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
-or try to checkout again.
-EOF
-  exit 1
-}
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf %04d\n, $2}'`
-sed -e s/@LINGUAS@/${linguas}/g \
--e s/@REVISION@/${revision}/g \
- configure.in.in  configure.in
-
-exec xdt-autogen $@
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 9e572f3..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,52 +0,0 @@
-05-03-2009 jeromeg
-
-  * uk.po: Ukrainian translation by Dmitry Nikitin.
-
-24-02-2009 jeromeg
-
-  * da.po: Danish translation by Lars Christian Jensen.
-
-16-02-2009 jeromeg
-
-  * ca.po: Catalan translation by Carles Munoz Gorriz.
-  * pt_BR.po: updated Brasilian translation by Og Maciel.
-
-15-02-2009 jeromeg
-
-  * pl.po: Polish translation by Piotrek Sokol.
-
-08-02-2009 jeromeg
-
-  * es.po: fix an error which made distcheck fail.
-
-08-02-2009 jeromeg
-
-  * ja.po: Japanese translation by HASHIMOTO Masato.
-  * ru.po: Russian translation by Pavel Labushev.
-
-07-02-2009 jeromeg
-
-  * es.po:Spanish translation by Williams Orellana.
-  * nl.po: Dutch translation by Vincent Turu.
-  * it.po: Italian translation by Cristian Marchi.
-
-05-02-2009 jeromeg
-
-  * id.po: Indonesian translation by Andhika Padmawan.
-
-04-02-2009 jeromeg
-
-  * cs.po: Czech translation by Michal Varady.
-  * de.po: German translation by Enrico Tröger.
-  * zh_CN.po: Simplified Chinese translation by Chris.
-  * pt_PT.po: Portuguese translation by Nuno Miguel.
-  * eu.po: Basque translation by Piarres Beobide.
-  * et.po: Estonian translation by Kristjan Siimson.
-  * pt_BR.po: Brazilian translation by Tomás A. Schertel.
-  * tr.po: Turkish translation by Samed Beyribey.
-  * sv.po: Swedish translation by Daniel Nylander.
-  * el.po: Greek translation by Evaggelos Balaskas.
-
-03-02-2009 jeromeg
-
-  * Add Finnish translation by Jari Rahkonen.
diff --git a/po/LINGUAS b/po/LINGUAS
deleted file mode 100644
index 4b44ada..000
--- a/po/LINGUAS
+++ /dev/null
@@ -1 +0,0 @@
-ca cs de el es et eu fi fr id it ja nl pl pt_BR pt_PT ru sv tr zh_CN
diff --git a/po/xfswitch.pot b/po/xfswitch.pot
deleted file mode 100644
index 078ac4e..000
--- a/po/xfswitch.pot
+++ /dev/null
@@ -1,30 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR EMAIL@ADDRESS, YEAR.
-#
-#, fuzzy
-msgid 
-msgstr 
-Project-Id-Version: PACKAGE VERSION\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-02-08 10:26+0100\n
-PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
-Last-Translator: FULL NAME EMAIL@ADDRESS\n
-Language-Team: LANGUAGE l...@li.org\n
-MIME-Version: 1.0\n
-Content-Type: text/plain; charset=CHARSET\n
-Content-Transfer-Encoding: 8bit\n
-
-#: ../panel-plugin/main.c:141
-msgid Do you really want to switch to another user?
-msgstr 
-
-#: ../panel-plugin/main.c:187
-#: ../panel-plugin/xfswitch-plugin.desktop.in.in.h:1
-msgid Switch to another user without closing the current session
-msgstr 
-
-#: 

[Xfce4-commits] xfmedia-remote-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 291dd68072b895c56ab4ffa0db2884bbfab1b452 (commit)
   from a5c9abe504660a090c08b06f5f35ebca988468ec (commit)

commit 291dd68072b895c56ab4ffa0db2884bbfab1b452
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:03:33 2013 +0200

Potfile cleanup.

 INSTALL  |  234 --
 autogen.sh   |   23 +++--
 po/ChangeLog |   80 ---
 po/LINGUAS   |1 -
 po/xfmedia-remote-plugin.pot |  145 --
 5 files changed, 16 insertions(+), 467 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 5458714..000
--- a/INSTALL
+++ /dev/null
@@ -1,234 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006 Free Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   With a non-GNU `make', it is safer to compile the package for one
-architecture at a time in the source code directory.  After you 

[Xfce4-commits] xfce4-xmms-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 66abccc29d5dbeeb0c462c85127850776eea99f5 (commit)
   from 9a44f5ef69ac3b9afd1b8d6c02b747013e47adb4 (commit)

commit 66abccc29d5dbeeb0c462c85127850776eea99f5
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:05:01 2013 +0200

Potfile cleanup.

 INSTALL   |  236 -
 autogen.sh|   30 +++---
 po/ChangeLog  |  212 
 po/LINGUAS|2 -
 po/xfce4-xmms-plugin.pot  |   83 
 xfce4-xmms-plugin.spec.in |   40 
 6 files changed, 16 insertions(+), 587 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 23e5f25..000
--- a/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that 

[Xfce4-commits] xfce4-cellmodem-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 8e9eae384348c4d83dad26edee026f22b448ed26 (commit)
   from a7fe8321c68bfc291353d3518c87f36bbdf0832f (commit)

commit 8e9eae384348c4d83dad26edee026f22b448ed26
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:06:13 2013 +0200

Potfile cleanup.

 autogen.sh   |   28 ++-
 po/ChangeLog |  156 --
 po/LINGUAS   |2 -
 3 files changed, 16 insertions(+), 170 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 6ca440e..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,23 @@
 #!/bin/sh
 #
-# $Id: autogen.sh 1355 2006-04-24 21:01:13Z bountykiller $
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
-# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
 #
-# Written for Xfce by Benedikt Meurer be...@xfce.org.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
@@ -18,11 +29,4 @@ EOF
   exit 1
 }
 
-linguas=`sed -e '/^#/d' po/LINGUAS`
-sed -e s/@LINGUAS@/${linguas}/g \
- configure.ac.in  configure.ac
-
-
-exec xdt-autogen $@
-
-# vi:set ts=2 sw=2 et ai:
\ No newline at end of file
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 4156158..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,156 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-07-23  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-18  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese update (Hunt Xu)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-13  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Add Catalan translation (Harald Servat)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-11  Maximilian Schleiss maximil...@xfce.org
-
-   * fr.po; LINGUAS: French translation added
-
-2009-03-06  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po: Italian translation update (Walter Comunello)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-
-2009-02-22  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Add Spanish translation (Abel Martín)
-
-2009-02-09  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-02-07  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-01-18  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po; LINGUAS: Italian translation added (Walter Comunello)
-
-2009-01-13  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-
-2008-12-07  Piarres Beobide p...@beobide.net
-
-* eu.po: Basque translation update
-
-2008-11-17  Eren Türkay erentur...@xfce.org
-
-* tr.po: Turkish translation update (Turkish translation team)
-
-2008-11-12  Piarres Beobide p...@beobide.net
-
-* eu.po: Basque translation update
-
-2008-11-02  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2008-10-16  Piarres Beobide p...@beobide.net
-
-   * eu.po: Basque translation update
-
-2008-08-10  Maximilian Schleiss maximil...@xfce.org
-
-   * id.po, LINGUAS: Indonesian translation added (Andhika Padmawan)
-
-2008-07-16  Og Maciel ogmac...@gnome.org
-
-* pt_BR.po: Updated Brazilian Portuguese translation
-
-2008-07-16 Mohamed Magdy alno...@xfce.org
-
-* ar.po: Add Arabic 

[Xfce4-commits] xfce4-quicklauncher-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to f8b38c1770be8cb7000a963129af3069799c9bf9 (commit)
   from afec2e7ed3cf5ed263d922ae31ce03e35cba0e15 (commit)

commit f8b38c1770be8cb7000a963129af3069799c9bf9
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:08:10 2013 +0200

Potfile cleanup.

 INSTALL   |  291 -
 autogen.sh|   23 ++-
 po/ChangeLog  |  224 
 po/LINGUAS|2 -
 po/xfce4-quicklauncher-plugin.pot |   85 ---
 5 files changed, 16 insertions(+), 609 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 8b82ade..000
--- a/INSTALL
+++ /dev/null
@@ -1,291 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008 Free Software Foundation, Inc.
-
-   This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  6. Often, you can also type `make uninstall' to remove the installed
- files again.
-
-Compilers and Options
-=
-
-   Some systems require unusual options for compilation or linking that
-the `configure' script does not know about.  Run `./configure --help'
-for details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-   You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   

[Xfce4-commits] xfce4-volstatus-icon:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 8013214b8e0c5e17637f25211a21ead930528215 (commit)
   from faa04bce284fa3397e2559d09b682a22b3f53d32 (commit)

commit 8013214b8e0c5e17637f25211a21ead930528215
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:09:44 2013 +0200

Potfile cleanup.

 autogen.sh  |   48 +++-
 module.xml  |   20 
 po/ChangeLog|  186 ---
 po/LINGUAS  |2 -
 po/xfce4-volstatus-icon.pot |  257 ---
 5 files changed, 18 insertions(+), 495 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index ed1d015..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,44 +1,32 @@
 #!/bin/sh
 #
-# $Id: autogen.sh 23241 2006-09-29 19:05:15Z kelnos $
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
-# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
 #
-# Written for Xfce by Benedikt Meurer be...@xfce.org.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
 autogen.sh: You don't seem to have the Xfce development tools installed on
 your system, which are required to build this software.
-Please install the xfce4-dev-tools package first, available from
-http://xfce.org/~benny/projects/xfce4-dev-tools/.
+Please install the xfce4-dev-tools package first, it is available
+from http://www.xfce.org/.
 EOF
   exit 1
 }
 
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) /dev/null 21 || {
-  cat 2 EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
-or try to checkout again.
-EOF
-  exit 1
-}
-
-echo 'dnl *** This file is automatically generated from configure.ac.in ***' \
-   configure.ac
-echo 'dnl *** DO NOT EDIT! ***' configure.ac
-echo configure.ac
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf %05d\n, $2}'`
-sed -e s/@LINGUAS@/${linguas}/g \
--e s/@REVISION@/${revision}/g \
- configure.ac.in  configure.ac
-
-xdt-autogen $@
-
-# vi:set ts=2 sw=2 et ai:
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/module.xml b/module.xml
deleted file mode 100644
index c2e674f..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-volstatus-icon/name
-  shortdesc xml:lang=enNotification area icon that allows safe removal of 
removable devices/shortdesc
-  homepage 
rdf:resource=http://spuriousinterrupt.org/projects/xfce4-volstatus-icon/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index f9d82a4..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,186 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-25  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-07-09  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-06-28  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-15  

[Xfce4-commits] xfce4-wmdock-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 0d39e4fe471ba1d6342befcfed2daabbd1f97609 (commit)
   from dc73d77c7478959d145478b9d4bb11641b065438 (commit)

commit 0d39e4fe471ba1d6342befcfed2daabbd1f97609
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:17:03 2013 +0200

Potfile cleanup.

 autogen.sh |   37 ++-
 po/ChangeLog   |   43 ---
 po/LINGUAS |2 --
 po/xfce4-wmdock-plugin.pot |   71 
 4 files changed, 16 insertions(+), 137 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 32e5775..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,23 @@
 #!/bin/sh
 #
-# $Id: autogen.sh 1972 2006-09-06 08:21:54Z nick $
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
-# Copyright (c) 2002-2006
-# The Thunar development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
 #
-# Written for Thunar by Benedikt Meurer be...@xfce.org.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
@@ -18,20 +29,4 @@ EOF
   exit 1
 }
 
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) /dev/null 21 || {
-  cat 2 EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
-or try to checkout again.
-EOF
-  exit 1
-}
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf %05d\n, $2}'`
-sed -e s/@LINGUAS@/${linguas}/g \
--e s/@REVISION@/${revision}/g \
- configure.in.in  configure.in
-
-exec xdt-autogen $@
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 593bb42..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,43 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * id.po: Indonesian translation added (Andhika Padmawan).
-
-2009-06-28  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-06-09  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation added
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Catalan translation update (Harald Servat)
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation added (Leandro Regueiro)
-
-2009-02-19 Per Kongstad p...@xfce.org
-
-   * da.po, LINGUAS: Danish translation added (Per Kongstad)
-
-2009-01-13  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-
-2008-08-24 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Added Brazilian Portuguese translation by Fábio Nogueira.
-   * LINGUAS: Added.
-   * ChangeLog: Added.
-
-
diff --git a/po/LINGUAS b/po/LINGUAS
deleted file mode 100644
index 3cf4722..000
--- a/po/LINGUAS
+++ /dev/null
@@ -1,2 +0,0 @@
-# set of available languages (in alphabetic order)
-ast ca cs da de el en_GB eu fr gl hu id it ja kk lv pt pt_BR ru sv ug uk ur 
ur_PK zh_CN
diff --git a/po/xfce4-wmdock-plugin.pot b/po/xfce4-wmdock-plugin.pot
deleted file mode 100644
index 143d50e..000
--- a/po/xfce4-wmdock-plugin.pot
+++ /dev/null
@@ -1,71 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR EMAIL@ADDRESS, YEAR.
-#
-#, fuzzy
-msgid 
-msgstr 
-Project-Id-Version: PACKAGE VERSION\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-01-26 20:22+0100\n
-PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
-Last-Translator: FULL NAME EMAIL@ADDRESS\n
-Language-Team: LANGUAGE l...@li.org\n
-MIME-Version: 1.0\n
-Content-Type: text/plain; charset=CHARSET\n
-Content-Transfer-Encoding: 8bit\n
-
-#: panel-plugin/wmdock.c:196
-#, c-format
-msgid Do you want remove the dockapp \%s\?
-msgstr 
-

[Xfce4-commits] xfce4-rss-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 5df916434dbccfdaefad789d9398e7bbade48f14 (commit)
   from b69994954e9345d3631aa27fd9beeacf5a785c61 (commit)

commit 5df916434dbccfdaefad789d9398e7bbade48f14
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:16:01 2013 +0200

Potfile cleanup.

 INSTALL |  236 ---
 autogen.sh  |   26 --
 po/ChangeLog|  153 --
 po/LINGUAS  |2 -
 po/xfce4-rss-plugin.pot |   50 --
 5 files changed, 16 insertions(+), 451 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 23e5f25..000
--- a/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile the 

[Xfce4-commits] xfce4-teatime-plugin:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to abfafd37c22e3ad9e7fa401e738125ffb2e4438c (commit)
   from e3a35aaa48eeb94f3625af9401a9dbe288357941 (commit)

commit abfafd37c22e3ad9e7fa401e738125ffb2e4438c
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:19:40 2013 +0200

Potfile cleanup.

 autogen.sh  |  185 ++-
 configure.in = configure.ac.in |2 +-
 po/ChangeLog|  141 -
 po/LINGUAS  |2 -
 po/teatime-plugin.pot   |  102 -
 stamp-h.in  |1 -
 6 files changed, 30 insertions(+), 403 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 8fe1de8..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,159 +1,32 @@
 #!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z $srcdir  srcdir=.
-
-DIE=0
-
-if [ -n $GNOME2_DIR ]; then
-   ACLOCAL_FLAGS=-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS
-   LD_LIBRARY_PATH=$GNOME2_DIR/lib:$LD_LIBRARY_PATH
-   PATH=$GNOME2_DIR/bin:$PATH
-   export PATH
-   export LD_LIBRARY_PATH
-fi
-
-(test -f $srcdir/configure.in) || {
-echo -n **Error**: Directory \`$srcdir\' does not look like the
-echo  top-level package directory
-exit 1
-}
-
-(autoconf --version)  /dev/null  /dev/null 21 || {
-  echo
-  echo **Error**: You must have \`autoconf' installed.
-  echo Download the appropriate package for your distribution,
-  echo or get the source tarball at ftp://ftp.gnu.org/pub/gnu/;
-  DIE=1
-}
-
-(grep ^AC_PROG_INTLTOOL $srcdir/configure.in /dev/null)  {
-  (intltoolize --version)  /dev/null  /dev/null 21 || {
-echo 
-echo **Error**: You must have \`intltool' installed.
-echo You can get it from:
-echo   ftp://ftp.gnome.org/pub/GNOME/;
-DIE=1
-  }
-}
-
-(grep ^AM_PROG_XML_I18N_TOOLS $srcdir/configure.in /dev/null)  {
-  (xml-i18n-toolize --version)  /dev/null  /dev/null 21 || {
-echo
-echo **Error**: You must have \`xml-i18n-toolize' installed.
-echo You can get it from:
-echo   ftp://ftp.gnome.org/pub/GNOME/;
-DIE=1
-  }
-}
-
-(grep ^AM_PROG_LIBTOOL $srcdir/configure.in /dev/null)  {
-  (libtool --version)  /dev/null  /dev/null 21 || {
-echo
-echo **Error**: You must have \`libtool' installed.
-echo You can get it from: ftp://ftp.gnu.org/pub/gnu/;
-DIE=1
-  }
-}
-
-(grep ^AM_GLIB_GNU_GETTEXT $srcdir/configure.in /dev/null)  {
-  (grep sed.*POTFILES $srcdir/configure.in)  /dev/null || \
-  (glib-gettextize --version)  /dev/null  /dev/null 21 || {
-echo
-echo **Error**: You must have \`glib' installed.
-echo You can get it from: ftp://ftp.gtk.org/pub/gtk;
-DIE=1
-  }
-}
-
-(automake --version)  /dev/null  /dev/null 21 || {
-  echo
-  echo **Error**: You must have \`automake' installed.
-  echo You can get it from: ftp://ftp.gnu.org/pub/gnu/;
-  DIE=1
-  NO_AUTOMAKE=yes
-}
-
-
-# if no automake, don't bother testing for aclocal
-test -n $NO_AUTOMAKE || (aclocal --version)  /dev/null  /dev/null 21 || {
-  echo
-  echo **Error**: Missing \`aclocal'.  The version of \`automake'
-  echo installed doesn't appear recent enough.
-  echo You can get automake from ftp://ftp.gnu.org/pub/gnu/;
-  DIE=1
-}
-
-if test $DIE -eq 1; then
+#
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+
+(type xdt-autogen) /dev/null 21 || {
+  cat 2 EOF
+autogen.sh: You don't seem to have the Xfce development tools installed on
+your system, which are required to build this software.
+Please install the xfce4-dev-tools package first, it is available
+from http://www.xfce.org/.
+EOF
   exit 1
-fi
-
-if test -z $*; then
-  echo **Warning**: I am going to run \`configure' with no arguments.
-  echo If you wish to pass any to it, please specify them on the
-  echo \`$0\' command line.
-  echo
-fi
-
-case $CC in
-xlc )
-  am_opt=--include-deps;;
-esac
-
-for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.in 
-print`
-do 
-  dr=`dirname $coin`
-  if test -f $dr/NO-AUTO-GEN; then
-echo skipping $dr -- flagged as no auto-gen
-  else
-echo processing $dr
-( cd $dr
-
-  

[Xfce4-commits] xfmedia-remote-plugin:master Fix configure.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to fd95db6d7fc6a66dfd40f528f43d8aa79ba17afd (commit)
   from 291dd68072b895c56ab4ffa0db2884bbfab1b452 (commit)

commit fd95db6d7fc6a66dfd40f528f43d8aa79ba17afd
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:21:07 2013 +0200

Fix configure.

 configure.ac = configure.ac.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac.in
similarity index 98%
rename from configure.ac
rename to configure.ac.in
index 1903a0f..f6100b0 100644
--- a/configure.ac
+++ b/configure.ac.in
@@ -21,7 +21,7 @@ AC_PROG_INTLTOOL([0.31], [no-xml])
 AC_HEADER_STDC
 AC_CHECK_HEADERS(string.h)
 
-XDT_I18N([fi])
+XDT_I18N([@LINGUAS@])
 
 XDT_CHECK_LIBX11_REQUIRE
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-quicklauncher-plugin:master Fix configure.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 707dfbf34674b13fede9c458846c12b752175efc (commit)
   from f8b38c1770be8cb7000a963129af3069799c9bf9 (commit)

commit 707dfbf34674b13fede9c458846c12b752175efc
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:22:23 2013 +0200

Fix configure.

 configure.ac = configure.ac.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac.in
similarity index 94%
rename from configure.ac
rename to configure.ac.in
index 6e2b0fd..8cf5d4f 100644
--- a/configure.ac
+++ b/configure.ac.in
@@ -39,7 +39,7 @@ dnl Check for debugging support
 XDT_FEATURE_DEBUG()
 
 dnl For internationalisation
-XDT_I18N([ca cs el en_GB eu fr gl hu ja pl pt_PT ru sq vi])
+XDT_I18N([@LINGUAS@])
 
 AC_OUTPUT([
 panel-plugin/Makefile
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-cddrive-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 8489be2e171b92bcea9d8799eabbc42b9d7716d2 (commit)
   from fb09f9ab83b10f8e857be7c262014a3db16215e7 (commit)

commit 8489be2e171b92bcea9d8799eabbc42b9d7716d2
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:24:27 2013 +0200

Potfiles cleanup.

 INSTALL |  231 
 autogen.sh  |   37 ++--
 po/ChangeLog|  129 --
 po/LINGUAS  |2 -
 po/xfce4-cddrive-plugin.pot |  416 ---
 5 files changed, 17 insertions(+), 798 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 095b1eb..000
--- a/INSTALL
+++ /dev/null
@@ -1,231 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile 

[Xfce4-commits] xfce4-smartpm-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 533c3feed6f8314e3d006a8991d2030b5f06c445 (commit)
   from cfaaf7267cfd1b554ee7b298f24581cd68eb6169 (commit)

commit 533c3feed6f8314e3d006a8991d2030b5f06c445
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:27:41 2013 +0200

Potfiles cleanup.

 INSTALL |  237 ---
 autogen.sh  |   40 
 po/ChangeLog|  193 ---
 po/LINGUAS  |2 -
 po/xfce4-smartpm-plugin.pot |  197 ---
 5 files changed, 17 insertions(+), 652 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index d3c5b40..000
--- a/INSTALL
+++ /dev/null
@@ -1,237 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007 Free Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  6. Often, you can also type `make uninstall' to remove the installed
- files again.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   With 

[Xfce4-commits] xfce4-places-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to bf70ef938f159380d644350c97e6b941de4e015b (commit)
   from b5e5d87d761b58c7370b90e82ab4b076a55e30a8 (commit)

commit bf70ef938f159380d644350c97e6b941de4e015b
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:25:55 2013 +0200

Potfiles cleanup.

 INSTALL|  370 
 autogen.sh |   33 ++--
 module.xml |   19 ---
 po/ChangeLog   |  195 ---
 po/xfce4-places-plugin.pot |  221 --
 5 files changed, 19 insertions(+), 819 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index a1e89e1..000
--- a/INSTALL
+++ /dev/null
@@ -1,370 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
-Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages 

[Xfce4-commits] xfce4-xfapplet-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 19c868e7ca63bbaed3a40dc3676f483b807b50d4 (commit)
   from 80a430cf430d5a914e5becfab757db06b1647c8d (commit)

commit 19c868e7ca63bbaed3a40dc3676f483b807b50d4
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:28:50 2013 +0200

Potfiles cleanup.

 INSTALL  |  229 
 autogen.sh   |   26 +++--
 po/ChangeLog |  237 --
 po/LINGUAS   |2 -
 po/xfce4-xfapplet-plugin.pot |   81 ---
 5 files changed, 16 insertions(+), 559 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 54caf7c..000
--- a/INSTALL
+++ /dev/null
@@ -1,229 +0,0 @@
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
-Foundation, Inc.
-
-   This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-   These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-   Some systems require unusual options for compilation or linking that
-the `configure' script does not know about.  Run `./configure --help'
-for details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-   You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile the package for one 

[Xfce4-commits] xfce4-timer-plugin:master Potfiles cleanup and more stuff thats not needed.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e406908e3db632488afc502adb3bd11473bdfd89 (commit)
   from 883b79bb9c75e0f046130eb06585608375fd7dc5 (commit)

commit e406908e3db632488afc502adb3bd11473bdfd89
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:31:25 2013 +0200

Potfiles cleanup and more stuff thats not needed.

 INSTALL|  370 
 acconfig.h |   14 --
 acinclude.m4   |1 -
 autogen.sh |   36 ++---
 po/ChangeLog   |  224 ---
 po/xfce4-timer.pot |  166 ---
 setup-gettext  |  201 
 stamp-h.in |1 -
 8 files changed, 18 insertions(+), 995 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index a1e89e1..000
--- a/INSTALL
+++ /dev/null
@@ -1,370 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
-Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. 

[Xfce4-commits] xfce4-modemlights-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 44293d0c1c1f02c36f91ecb6cf99f3f4973e9225 (commit)
   from 98af9ec27c1268e73de4438fce04fa6fa9ff39ef (commit)

commit 44293d0c1c1f02c36f91ecb6cf99f3f4973e9225
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:32:54 2013 +0200

Potfiles cleanup.

 autogen.sh  |   39 +---
 po/ChangeLog|  131 ---
 po/LINGUAS  |2 -
 po/xfce4-modemlights-plugin.pot |   98 -
 4 files changed, 16 insertions(+), 254 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index b0bf71a..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,23 @@
 #!/bin/sh
 #
-# $Id$
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
 #
-# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
 #
-# Written for Xfce by Benedikt Meurer be...@xfce.org.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 (type xdt-autogen) /dev/null 21 || {
   cat 2 EOF
@@ -18,22 +29,4 @@ EOF
   exit 1
 }
 
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) /dev/null 21 || {
-  cat 2 EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
-or try to checkout again.
-EOF
-  exit 1
-}
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf %05d\n, $2}'`
-sed -e s/@LINGUAS@/${linguas}/g \
--e s/@REVISION@/${revision}/g \
- configure.in.in  configure.in
-
-exec xdt-autogen $@
-
-# vi:set ts=2 sw=2 et ai:
+XDT_AUTOGEN_REQUIRED_VERSION=4.7.2 exec xdt-autogen $@
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 4840816..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,131 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * tr.po: Turkish translation added (Samed Beyribey)
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-24  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-28  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Catalan translation added (Harald Servat)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation added (Leandro Regueiro)
-
-2009-02-19  Per Kongstad p...@xfce.org
-
-   * da.po, LINGUAS: Danish translation added (Per Kongstad)
-
-2008-12-21  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-
-2008-07-27  Og Maciel ogmac...@gnome.org
-
-* pt_BR.po: Added Brazilian Portuguese translation
-by Fábio Nogueira deb-user...@ubuntu.com
-
-2008-05-02  Piarres Beobide p...@beobide.net
-
-   * eu.po: Basque translation update
-
-2007-11-09  Og Maciel ogmac...@gnome.org
-
-* pt_BR.po: Added Brazilian Portuguese translation
-by Fábio Nogueira deb-user...@ubuntu.com
-* LINGUAS: Added pt_BR
-
-2007-11-08 Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: Update french translations
-   * *.po, *.pot: make update-po (post-release)
-
-2007-11-08 Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: Add french translations
-   * *.po, *.pot: make update-po
-
-2006-07-28  Jean-François Wauthy pol...@xfce.org
-
-   * cs.po: Add Czech translations
-
-2006-07-28  Hydonsingore Cia hydonsing...@educities.edu.tw
-
-   * zh_TW.po: Added traditional Chinese translations 
- by Cosmo Chene cosmo...@gmail.com
-
-2006-04-22  Daichi Kawahata dai...@xfce.org
-
-   * ca.po: Added Catalan translations by Carles Munoz Gorriz
- carle...@internautas.org.
-
-2006-04-08  Daichi Kawahata dai...@xfce.org
-
-   * pl.po: Added Polish translations by Piotr Malinski
- ad...@rk.edu.pl.
-
-2006-04-02  Daichi Kawahata dai...@xfce.org
-
-   * eu.po, ko.po, 

[Xfce4-commits] xfce4-websearch-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 8a131bf745582f9e71a23dd3386170e797380e1c (commit)
   from b9b43526fc9d637f401b908edc244f6fa9ae0230 (commit)

commit 8a131bf745582f9e71a23dd3386170e797380e1c
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:34:28 2013 +0200

Potfiles cleanup.

 INSTALL |  236 ---
 autogen.sh  |   21 +++-
 configure.ac = configure.ac.in |0
 po/ChangeLog|  207 --
 po/LINGUAS  |2 -
 po/xfce4-websearch-plugin.pot   |   37 --
 6 files changed, 16 insertions(+), 487 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 23e5f25..000
--- a/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that 

[Xfce4-commits] xfce4-radio-plugin:master Potfiles cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to c82f0f9b5f5d048a7790c09ddf867805247d99c6 (commit)
   from d2c04b5e9ada10109a05c75385f5f5b56f9ae7cd (commit)

commit c82f0f9b5f5d048a7790c09ddf867805247d99c6
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:37:01 2013 +0200

Potfiles cleanup.

 m4/depends.m4 |   48 -
 module.xml|   20 --
 po/ChangeLog  |  168 -
 po/xfce4-radio-plugin.pot |  163 ---
 4 files changed, 399 deletions(-)

diff --git a/m4/depends.m4 b/m4/depends.m4
deleted file mode 100644
index d0658e4..000
--- a/m4/depends.m4
+++ /dev/null
@@ -1,48 +0,0 @@
-dnl From Benedikt Meurer (benedikt.meu...@unix-ag.uni-siegen.de)
-dnl
-dnl
-
-AC_DEFUN([BM_DEPEND],
-[
-  PKG_CHECK_MODULES([$1], [$2 = $3])
-  $1_REQUIRED_VERSION=$3
-  AC_SUBST($1_REQUIRED_VERSION)
-])
-
-dnl
-dnl BM_DEPEND_CHECK(var, pkg, version, name, helpstring, default)
-dnl
-AC_DEFUN([BM_DEPEND_CHECK],
-[
-  AC_ARG_ENABLE([$4],
-AC_HELP_STRING([--enable-$4], [Enable checking for $5 (default=$6)])
-AC_HELP_STRING([--disable-$4], [Disable checking for $5]),
-[ac_cv_$1_check=$enableval], [ac_cv_$1_check=$6])
-
-  if test x$ac_cv_$1_check = xyes; then
-AC_MSG_CHECKING([for $2 = $3])
-if $PKG_CONFIG --atleast-version=$3 $2 2 /dev/null; then
-  AC_MSG_RESULT([yes])
-  BM_DEPEND([$1], [$2], [$3])
-  AC_DEFINE([HAVE_$1], [1], [Define if you have $2 = $3])
-else
-  AC_MSG_RESULT([no])
-fi
-  fi
-])
-
-dnl
-dnl XFCE_PANEL_PLUGIN(var, version)
-dnl
-dnl Sets $var_CFLAGS, $var_LIBS and $var_PLUGINSDIR
-dnl
-AC_DEFUN([XFCE_PANEL_PLUGIN],
-[
-  BM_DEPEND([$1], [xfce4-panel-1.0], [$2])
-
-  dnl Check where to put the plugins to
-  AC_MSG_CHECKING([where to install panel plugins])
-  $1_PLUGINSDIR=`$PKG_CONFIG --variable=pluginsdir xfce4-panel-1.0`
-  AC_SUBST([$1_PLUGINSDIR])
-  AC_MSG_RESULT([$$1_PLUGINSDIR])
-])
diff --git a/module.xml b/module.xml
deleted file mode 100644
index 1453233..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-   xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
-   xmlns:foaf=http://xmlns.com/foaf/0.1/;
-   xmlns:gnome=http://api.gnome.org/doap-extensions#;
-   xmlns=http://usefulinc.com/ns/doap#;
-
-   name xml:lang=enxfce4-radio-plugin/name
-   shortdesc xml:lang=enV4l radio plugin for the Xfce panel/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-radio-plugin/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/goodies-dev/
-
-   maintainer
-   foaf:Person
-   foaf:nameStefan Ott/foaf:name
-   foaf:mboxmailto:ste...@ott.net/foaf:mbox
-   gnome:useridcockroach/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 395e564..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,168 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-24  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * de.po: German translation update (Fabian Nowak)
-   * ca.po: Catalan translation update (Harald Servat)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-06  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po: Italian translation update (Francesco Scarrone)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * uk.po: Ukrainian translation update (Dmitry Nikitin)
-
-2009-02-22  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Add Spanish translation (Abel Martín)
-
-2009-02-20  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-02-09  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-01-19  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po, LINGUAS: Italian translation added (Francesco Scarrone)
-
-2008-12-20  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-11-30  Stefan Ott ste...@ott.net
-
-* 

[Xfce4-commits] xfce4-mailwatch-plugin:master Drop needed files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 70836340428c7de8e58363d21f397f42df744a1e (commit)
   from fae25c00f6907cb67133f60d67b674ffd87d8fd2 (commit)

commit 70836340428c7de8e58363d21f397f42df744a1e
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:39:30 2013 +0200

Drop needed files.

 module.xml |   19 ---
 po/LINGUAS |2 --
 2 files changed, 21 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index d4a4969..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-mailwatch-plugin/name
-  shortdesc xml:lang=enMail notification applet for the Xfce 
panel/shortdesc
-  homepage rdf:resource=http://spuriousinterrupt.org/projects/mailwatch/
-
-  maintainer
-foaf:Person
-  foaf:nameFlorian Rivoal/foaf:name
-  foaf:mboxmailto:friv...@xfce.org/foaf:mbox
-  gnome:useridfrivoal/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/po/LINGUAS b/po/LINGUAS
deleted file mode 100644
index 0030ac6..000
--- a/po/LINGUAS
+++ /dev/null
@@ -1,2 +0,0 @@
-# all langs on a single line, alpha order
-ar ast ca cs da de el en_GB es eu fi fr gl gu he hu id it ja nb pl pt_BR pt ru 
sq sv tr uk ur ur_PK vi zh_CN zh_TW 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-trigger-launcher:master Potfile cleanup.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 1ef5e3d2f7929bf90488cb4d5804fdf557fc213a (commit)
   from fe5c009832275cfcaa78a9df1544d6e5dfa657da (commit)

commit 1ef5e3d2f7929bf90488cb4d5804fdf557fc213a
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:38:20 2013 +0200

Potfile cleanup.

 INSTALL|  234 --
 autogen.sh |   39 +-
 po/ChangeLog   |  973 
 po/LINGUAS |2 -
 po/xfce4-trigger-launcher.pot  |  114 -
 xfce4-trigger-launcher.spec.in |   34 --
 6 files changed, 16 insertions(+), 1380 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 5458714..000
--- a/INSTALL
+++ /dev/null
@@ -1,234 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006 Free Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   With a non-GNU `make', it is safer to compile the package for one
-architecture at a time in the source code 

[Xfce4-commits] gigolo:master Cleanup a bit.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to b344b089a1e0a8aea5370df3c6d5bfdbb02caa57 (commit)
   from a12eba566ac8ddde84d4311a63d17828000a8134 (commit)

commit b344b089a1e0a8aea5370df3c6d5bfdbb02caa57
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:41:32 2013 +0200

Cleanup a bit.

 README.I18N |   33 --
 autogen.sh  |  103 ++-
 configure.ac = configure.ac.in |0
 module.xml  |   20 
 po/ChangeLog|  212 ---
 5 files changed, 29 insertions(+), 339 deletions(-)

diff --git a/README.I18N b/README.I18N
deleted file mode 100644
index 76f50b5..000
--- a/README.I18N
+++ /dev/null
@@ -1,33 +0,0 @@
-Quick guide for new translations
-
-
-If you want to translate Gigolo into another language, please check
-whether a translation for your language already exists (check the
-po/ subdirectory.
-Get the GIT version of Gigolo, change to the po directory and
-start the new translation with:
-
-$ msginit -l ll_CC -o ll.po -i gigolo.pot
-
-Fill in ll with the language code and CC with the country code.
-For example, to translate Gigolo into Italian you would type:
-
-$ msginit -l it_IT -o it.po -i gigolo.pot
-
-This will create a file it.po. This file can be opened with a
-text editor or you can also use a graphical interface.
-I can suggest PoEdit (http://www.poedit.net/), but there are
-several other GUIs.
-
-Make sure you add your language to the file po/LINGUAS.
-Just open the file with a text editor and add your code.
-
-When you have finished editing the file, check the file with:
-
-$ msgfmt -c --check-accelerators=_ it.po
-
-Please take care of menu accelerators(strings containing a _).
-The _ character should also be in your translation. Additionally,
-it would be nice if these accelerators are not twice for two strings
-inside a dialog or sub menu.
-
diff --git a/autogen.sh b/autogen.sh
index ac67005..b5875b6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,77 +1,32 @@
 #!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z $srcdir  srcdir=.
-
-DIE=0
-
-(test -f $srcdir/configure.ac) || {
-   echo **Error**: Directory \`$srcdir\' does not look like the 
top-level package directory
-   exit 1
-}
-
-(autoconf --version)  /dev/null  /dev/null 21 || {
-   echo
-   echo **Error**: You must have \`autoconf' installed.
-   echo Download the appropriate package for your distribution,
-   echo or get the source tarball at ftp://ftp.gnu.org/pub/gnu/;
-   DIE=1
+#
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) Xfce Development Team
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+
+(type xdt-autogen) /dev/null 21 || {
+  cat 2 EOF
+autogen.sh: You don't seem to have the Xfce development tools installed on
+your system, which are required to build this software.
+Please install the xfce4-dev-tools package first, it is available
+from http://www.xfce.org/.
+EOF
+  exit 1
 }
 
-(intltoolize --version)  /dev/null  /dev/null 21 || {
-   echo
-   echo **Error**: You must have \`intltool' installed.
-   echo You can get it from:
-   echo   ftp://ftp.gnome.org/pub/GNOME/;
-   DIE=1
-}
-
-(glib-gettextize --version)  /dev/null  /dev/null 21 || {
-   echo
-   echo **Error**: You must have \`glib' installed.
-   echo You can get it from: ftp://ftp.gtk.org/pub/gtk;
-   DIE=1
-}
-
-(automake --version)  /dev/null  /dev/null 21 || {
-   echo
-   echo **Error**: You must have \`automake' (1.7 or later) installed.
-   echo You can get it from: ftp://ftp.gnu.org/pub/gnu/;
-   DIE=1
-   NO_AUTOMAKE=yes
-}
-
-
-# if no automake, don't bother testing for aclocal
-test -n $NO_AUTOMAKE || (aclocal --version)  /dev/null  /dev/null 21 || {
-   echo
-   echo **Error**: Missing \`aclocal'.  The version of \`automake'
-   echo installed doesn't appear recent enough.
-   echo You can get automake from ftp://ftp.gnu.org/pub/gnu/;
-   DIE=1
-}
-
-if test $DIE -eq 1; then
-   exit 1
-fi
-
-if test -z $*; then
-   echo **Warning**: I am going to run \`configure' with no arguments.
-   echo If you 

[Xfce4-commits] xfce4-power-manager:master Remove needed files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to edbef632c26d20e299b137221af497ae9375d6cf (commit)
   from 23a8fcab5b08291eb7c388607410bd71fde456f7 (commit)

commit edbef632c26d20e299b137221af497ae9375d6cf
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:47:49 2013 +0200

Remove needed files.

 INSTALL  |  365 --
 po/ChangeLog |  331 
 2 files changed, 696 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU 

[Xfce4-commits] xfce4-power-manager:xfce-4.10 Remove needed files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to ae19aa84c9524e2f183b8f3aabaf0f530bf8997f (commit)
   from 0dfd7bfd9ec9268bf7d923492be7a58631303ef7 (commit)

commit ae19aa84c9524e2f183b8f3aabaf0f530bf8997f
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:49:45 2013 +0200

Remove needed files.

 INSTALL  |  365 --
 po/ChangeLog |  331 
 2 files changed, 696 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- 

[Xfce4-commits] thunar-media-tags-plugin:master Remove needed file.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 3d64bd41cc45314f4a16684225e853530494b52f (commit)
   from e60aec97f5104795dafdd9b91286bfe86581bd4a (commit)

commit 3d64bd41cc45314f4a16684225e853530494b52f
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:48:28 2013 +0200

Remove needed file.

 INSTALL |  234 ---
 1 file changed, 234 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 5458714..000
--- a/INSTALL
+++ /dev/null
@@ -1,234 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006 Free Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   With a non-GNU `make', it is safer to compile the package for one
-architecture at a time in the source code directory.  After you have
-installed the package for one architecture, use `make distclean' before
-reconfiguring for another architecture.
-
-Installation Names
-==
-
-By default, `make install' installs the package's 

[Xfce4-commits] ristretto:master Remove needed files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 14e724422e05d72d53b88640e2fd0cb39f3382ee (commit)
   from 6eccd527cedbed04aa792099e804f4ab421d9040 (commit)

commit 14e724422e05d72d53b88640e2fd0cb39f3382ee
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 21:50:50 2013 +0200

Remove needed files.

 module.xml   |   20 ---
 po/ChangeLog |  426 --
 2 files changed, 446 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 4747914..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enristretto/name
-  shortdesc xml:lang=enImage viewer/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameStephan Arts/foaf:name
-  foaf:mboxmailto:step...@xfce.org/foaf:mbox
-  gnome:useridstephan/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 17c80e8..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,426 +0,0 @@
-2011-03-08  Stephan Arts step...@xfce.org
-
-   * nl.po: Update dutch translation
-
-2009-09-19  Stephan Arts step...@xfce.org
-
-   * *.po: Update .po files
-   * ristretto.pot: Add .pot file
-
-2009-08-09  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-07-22  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-18  Mike Massonnet mmasson...@xfce.org
-
-   * el.po: Greek translation update (Evaggelos Balaskas)
-
-2009-06-12  Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-17  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-19  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * it.po: Italian translation update (Cristian Marchi)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2009-02-07  Maximilian Schleiss maximil...@xfce.org
-
-   * nb_NO.po: Norwegian Bokmål translation update (Terje Uriansrud)
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2009-02-07  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-01-25  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-01-18  Maximilian Schleiss maximil...@xfce.org
-
-   * pt_PT: European Portuguese translation update (Nuno Miguel)
-
-2009-01-13  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2009-01-04  Maximilian Schleiss maximil...@xfce.org
-
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2008-12-25  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * id.po: Indonesian translation update (Andhika Padmawan)
-
-2008-12-17 Lars Nielsen l...@mit-web.dk
-
-   * da.po: updated danish translation
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2008-12-07  Piarres Beobide p...@beobide.net
-
-   * eu.po: Basque translation update
-
-2008-11-30  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2008-11-29 Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: Updated French translation.
-
-2008-11-28 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Updated Brazilian Portuguese 

[Xfce4-commits] garcon:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 5efae5b42ec95dff639b137cabfdd8dfd713e14b (commit)
   from 49876e5969ccaf813faed7c63d32768c4907fcbc (commit)

commit 5efae5b42ec95dff639b137cabfdd8dfd713e14b
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:13 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 7b728d9..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=engarcon/name
- shortdesc xml:lang=enFreedesktop.org compliant menu library/shortdesc
- homepage rdf:resource=http://www.xfce.org/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-clipman-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to acb672f0760c1a9cb402f2f4995ac6d979c268e1 (commit)
   from 5b67ab410eb75463f6c391e09b1598320adea334 (commit)

commit acb672f0760c1a9cb402f2f4995ac6d979c268e1
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:30 2013 +0200

Remove unneeded files.

 module.xml   |   13 ---
 po/ChangeLog |  252 --
 2 files changed, 265 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 63bf9a9..000
--- a/module.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-Project
-   name xml:lang=enxfce4-clipman-plugin/name
-   shortdesc xml:lang=enClipboard manager for the Xfce 
Panel/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
-   maintainer
-   foaf:Person
-   foaf:nameMike Massonnet/foaf:name
-   foaf:mboxmailto:mmasson...@xfce.org/foaf:mbox
-   gnome:useridmmassonnet/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 40ef12a..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,252 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * vi.po: Vietnamese translation added (Vincent Nguyen)
-
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * el.po: Greek translation update (Evaggelos Balaskas)
-   * it.po: Italian translation update (Cristian Marchi)
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-   * id.po: Indonesian translation update (Andhika Padmawan).
-   * pt.po: Portuguese translation update (Nuno Miguel)
-
-2009-07-31  Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-07-23  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-07-09  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-07-09  Mike Massonnet mmasson...@xfce.org
-
-   * tr.po: Turkish translation update (Samed Beyribey)
-   * nl.po: Dutch translation update (Vincent)
-   * ur.po, ur_PK.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-07-06 Ali al...@xfce.org
-
-   * ca.po: Catalan translation update (Carles Munoz Gorriz)
-
-2009-07-04  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-07-04  Mike Massonnet mmasson...@xfce.org
-
-   * *.po, *.pot: make update-po
-
-2009-06-18  Mike Massonnet mmasson...@xfce.org
-
-   * el.po: Greek translation update (Evaggelos Balaskas)
-   * es.po: Spanish translation update (elega)
-
-2009-06-15  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese update (Hunt Xu)
-
-2009-06-07  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Catalan translation update (Harald Servat)
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-27  Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-05-21 Ali Abdallah al...@xfce.org
-
-   *tr.po Update turkish translation (Samed Beyribey)
-
-2009-05-17  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-05-14  Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: French translation update
-   * *.po, *.pot: make update-po
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-   * tr.po: Turkish translation update (Samed Beyribey)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-30  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-04-27  Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-04-26  Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: French translation update
-   * *.po, *.pot: make update-po
-
-2009-04-25  Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: French translation update
-   * *.po, *.pot: make update-po
-
-2009-04-22  Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: French translation update
-   * *.po, *.pot: make update-po
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * ca.po: Catalan translation added (Harald Servat)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-19  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-  

[Xfce4-commits] thunar-vcs-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 7aec1ce97889ecba871149e1645c15e1c2d7dc24 (commit)
   from 100598e5f076d5a1df591284c344530b373a69fd (commit)

commit 7aec1ce97889ecba871149e1645c15e1c2d7dc24
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:18 2013 +0200

Remove unneeded files.

 INSTALL|  365 
 module.xml |   20 
 2 files changed, 385 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, 

[Xfce4-commits] orage:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 62504dc40ce9a6a13d6c4919b2a6c62757c6d87d (commit)
   from 113f0ceca237733b7d532625bbfec0da20ec4c20 (commit)

commit 62504dc40ce9a6a13d6c4919b2a6c62757c6d87d
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:21 2013 +0200

Remove unneeded files.

 INSTALL|  365 
 module.xml |   20 
 2 files changed, 385 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, 

[Xfce4-commits] xfce4-cpugraph-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 49fe932722e13592da33a2015a1e39797d1d201e (commit)
   from 7e9e3053121298fd4ea295adbc1a0d9bc555a544 (commit)

commit 49fe932722e13592da33a2015a1e39797d1d201e
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:31 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index fcca1dc..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-   xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
-   xmlns:foaf=http://xmlns.com/foaf/0.1/;
-   xmlns:gnome=http://api.gnome.org/doap-extensions#;
-   xmlns=http://usefulinc.com/ns/doap#;
-
-   name xml:lang=enxfce4-cpugraph-plugin/name
-   shortdesc xml:lang=enGraphical representation of the CPU 
load/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/goodies-dev/
-
-   maintainer
-   foaf:Person
-   foaf:nameFlorian Rivoal/foaf:name
-   foaf:mboxmailto:friv...@xfce.org/foaf:mbox
-   gnome:useridfrivoal/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4util:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e7961635c6678a1305a5a2c5cbde8313a586f7e7 (commit)
   from 927a5cbb3e634e15b2ce63d3700bc0e085523da4 (commit)

commit e7961635c6678a1305a5a2c5cbde8313a586f7e7
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:14 2013 +0200

Remove unneeded files.

 module.xml |   19 ---
 1 file changed, 19 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 0ada705..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enlibxfce4util/name
-  shortdesc xml:lang=enExtension library for Xfce/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameXfce Core Team/foaf:name
-  foaf:mboxmailto:xfce4-...@xfce.org/foaf:mbox
-/foaf:Person
-  /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar-shares-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 847455321d74f23f815f58ebcad3f7cf5142e12c (commit)
   from ebf017f5dc7a2f4633dd97bb040b394e8937f906 (commit)

commit 847455321d74f23f815f58ebcad3f7cf5142e12c
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:17 2013 +0200

Remove unneeded files.

 INSTALL  |  302 --
 module.xml   |   21 
 po/ChangeLog |  144 
 3 files changed, 467 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 2550dab..000
--- a/INSTALL
+++ /dev/null
@@ -1,302 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  6. Often, you can also type `make uninstall' to remove the installed
- files again.
-
-Compilers and Options
-=
-
-   Some systems require unusual options for compilation or linking that
-the `configure' script does not know about.  Run `./configure --help'
-for details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c99 CFLAGS=-g LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-   You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you can use GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   With a non-GNU `make', it is safer to compile the package for one
-architecture at a time in the source code directory.  After you have

[Xfce4-commits] transd:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 18ef2b426b039f7d50512d2836f48d2dedc76975 (commit)
   from 897e7e132d57598546bcb48ec7f6b0a3312fa461 (commit)

commit 18ef2b426b039f7d50512d2836f48d2dedc76975
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:24 2013 +0200

Remove unneeded files.

 module.xml |   19 ---
 1 file changed, 19 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 6d2183a..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=entransd/name
-  shortdesc xml:lang=enSimple daemon that applies transparency rules to 
windows/shortdesc
-  homepage rdf:resource=http://spuriousinterrupt.org/projects/transd/
-
-  maintainer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index e69de29..000
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4util:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 31f95f4cde23a4a93464625febb9e21cc8e6 (commit)
   from feff0623033914b7bdd4e43c2d7b2a12e5be63d2 (commit)

commit 31f95f4cde23a4a93464625febb9e21cc8e6
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:15 2013 +0200

Remove unneeded files.

 module.xml |   19 ---
 1 file changed, 19 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 0ada705..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enlibxfce4util/name
-  shortdesc xml:lang=enExtension library for Xfce/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameXfce Core Team/foaf:name
-  foaf:mboxmailto:xfce4-...@xfce.org/foaf:mbox
-/foaf:Person
-  /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] eatmonkey:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 98e17dec4611cb92d2288b593cf186894a134ba2 (commit)
   from 675747d342a4ea3a6e50e681a45f232ea04b6cf4 (commit)

commit 98e17dec4611cb92d2288b593cf186894a134ba2
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:20 2013 +0200

Remove unneeded files.

 0 files changed

diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index e69de29..000
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mixer:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 1c91fed57685718b769852bef3dab1d8cf02a1ac (commit)
   from 4ca0304bec134bf4084160353cb98217c24318d5 (commit)

commit 1c91fed57685718b769852bef3dab1d8cf02a1ac
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:27 2013 +0200

Remove unneeded files.

 INSTALL |  365 ---
 1 file changed, 365 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 81fd332..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, particularly those that 

[Xfce4-commits] squeeze:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to f8ee452289c3d24abf71529469fb8ad511d1c89f (commit)
   from 71775485d69c5650dc47d584ec76cb50032015f4 (commit)

commit f8ee452289c3d24abf71529469fb8ad511d1c89f
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:23 2013 +0200

Remove unneeded files.

 module.xml |   20 
 stamp-h.in |1 -
 2 files changed, 21 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 1adfbcf..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=ensqueeze/name
-  shortdesc xml:lang=enArchive manager/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameStephan Arts/foaf:name
-  foaf:mboxmailto:step...@xfce.org/foaf:mbox
-  gnome:useridstephan/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/stamp-h.in b/stamp-h.in
deleted file mode 100644
index 9788f70..000
--- a/stamp-h.in
+++ /dev/null
@@ -1 +0,0 @@
-timestamp
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 92c8cd5c236de5e51d02009f76e5951507b1e1c7 (commit)
   from 90811fc3371703e38a108e993770a1b30fe11e8f (commit)

commit 92c8cd5c236de5e51d02009f76e5951507b1e1c7
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:26 2013 +0200

Remove unneeded files.

 module.xml   |   20 ---
 po/ChangeLog |  416 --
 2 files changed, 436 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index abbc282..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-  xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
-  xmlns:foaf=http://xmlns.com/foaf/0.1/;
-  xmlns:gnome=http://api.gnome.org/doap-extensions#;
-  xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-dict/name
-  shortdesc xml:lang=enA client program to query different 
dictionaries/shortdesc
-  homepage 
rdf:resource=http://goodies.xfce.org/projects/applications/xfce4-dict/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/goodies-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameEnrico Tröger/foaf:name
-  foaf:mboxmailto:enr...@xfce.org/foaf:mbox
-  gnome:useridenrico/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 93562d4..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,416 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-24  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-07-15  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-06-12  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-11  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-30  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-29  Maximilian Schleiss maximil...@xfce.org
-
-   * pt.po: Portuguese translation update (Nuno Miguel)
-
-2009-03-28  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po: Add Finnish translation.
-
-2009-03-23  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-16  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * pl.po: Polish translation update (Piotr Sokół)
-
-2009-02-22  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-
-2009-02-20  Eren Türkay erentur...@xfce.org
-
-   * tr.po: Add Turkish translation by Samed Beyribey
-
-2009-02-09  Enrico Tröger  enrico(dot)troeger(at)uvena(dot)de
-
-   * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2009-02-09  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-02-07  Maximilian Schleiss maximil...@xfce.org
-
-   * fr.po: French translation udpate
-   * id.po: Indonesian translation update (Andhika Padmawan)
-
-2009-02-04 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2009-01-27  Piarres Beobide p...@beobide.net
-
-   * eu.po : Updated  Basque translation
-
-2009-01-26  Maximilian Schleiss maximil...@xfce.org
-
-   * uk.po: Ukrainian translation udpate (Dmitry Nikitin)
-
-2009-01-25  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-01-23 Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation updated 0.5.2 (Per Kongstad)
-
-2009-01-21  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2009-01-19  Enrico Tröger  enrico(dot)troeger(at)uvena(dot)de
-
-   * de.po: Update of German translation.
-   * xfce4-dict.pot, *.po: Issued make update-po.
-
-2009-01-16  Mike Massonnet mmasson...@xfce.org
-
-   * fr.po: French translation update (Jérôme 

[Xfce4-commits] parole:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 59fc4aac9ea254fbe4fd5cd6792003c9922372a5 (commit)
   from bbe5f73d33ecdc94af8c03d969d560540a5ecb4b (commit)

commit 59fc4aac9ea254fbe4fd5cd6792003c9922372a5
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:22 2013 +0200

Remove unneeded files.

 module.xml |   19 ---
 1 file changed, 19 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index b56631f..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enparole/name
-  shortdesc xml:lang=enGStreamer based media player/shortdesc
-  homepage 
rdf:resource=http://goodies.xfce.org/projects/applications/parole-media-player/
-
-  maintainer
-foaf:Person
-  foaf:nameAli Abdallah/foaf:name
-  foaf:mboxmailto:al...@xfce.org/foaf:mbox
-  gnome:useridaliov/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfburn:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 4fb48a941e9aec7f863a0a2ff0003edf6a7fe0fc (commit)
   from 207fed772c6c8c78fcd30564b1a618364e66fc5d (commit)

commit 4fb48a941e9aec7f863a0a2ff0003edf6a7fe0fc
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:25 2013 +0200

Remove unneeded files.

 INSTALL  |  370 --
 module.xml   |   19 --
 po/ChangeLog |  826 --
 3 files changed, 1215 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index a1e89e1..000
--- a/INSTALL
+++ /dev/null
@@ -1,370 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
-Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, 

[Xfce4-commits] exo:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 236adcff06f80400cc75623247b77be9616940c8 (commit)
   from 79646f6fe3b209a852c2ff903646274bc9191e1d (commit)

commit 236adcff06f80400cc75623247b77be9616940c8
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:11 2013 +0200

Remove unneeded files.

 module.xml |   34 --
 1 file changed, 34 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 152b7f1..000
--- a/module.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enexo/name
- shortdesc xml:lang=enApplication library for the Xfce desktop 
environment/shortdesc
- homepage rdf:resource=http://www.xfce.org/projects/libraries//
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameNick Schermer/foaf:name
-foaf:mboxmailto:n...@xfce.org/foaf:mbox
-gnome:useridnick/gnome:userid
-  /foaf:Person
- /maintainer
- developer
-  foaf:Person
-foaf:nameBenedikt Meurer/foaf:name
-foaf:mboxmailto:be...@xfce.org/foaf:mbox
-gnome:useridbenny/gnome:userid
-  /foaf:Person
- /developer
- developer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /developer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar-volman:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 045c5314b61e3ef99250a541ef81ca45d059b712 (commit)
   from 73758db6dbf4eb7890451016a3d6cba945db013a (commit)

commit 045c5314b61e3ef99250a541ef81ca45d059b712
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:20 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index a56d717..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enthunar-volman/name
- shortdesc xml:lang=enAutomatic management of removable drives and media 
for Thunar./shortdesc
- homepage rdf:resource=http://www.xfce.org/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-notifyd:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 53c855f48e4b9de7b10cf32bf29c2b5995ae808c (commit)
   from efc3fc951818e9244b5eef0277c7df8b477021a6 (commit)

commit 53c855f48e4b9de7b10cf32bf29c2b5995ae808c
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:27 2013 +0200

Remove unneeded files.

 module.xml   |   28 
 po/ChangeLog |   42 --
 2 files changed, 70 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 2e5d742..000
--- a/module.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-notifyd/name
-  shortdesc xml:lang=enEasily themable notification daemon with 
transparency effects/shortdesc
-  homepage 
rdf:resource=http://spuriousinterrupt.org/projects/xfce4-notifyd/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /maintainer
-
-  developer
-foaf:Person
-  foaf:nameJérôme Guelfucci/foaf:name
-  foaf:mboxmailto:jero...@xfce.org/foaf:mbox
-  gnome:useridjeromeg/gnome:userid
-/foaf:Person
-  /developer
-/Project
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 6de20d3..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,42 +0,0 @@
-2008-12-21 Brian J. Tarricone bj...@cornell.edu
-
-   * ja.po: New translation from Masaton Hashimoto
- cabezon.hashim...@gmail.com.
-   * LINGUAS: Add ja.
-
-2008-11-21 Brian J. Tarricone bj...@cornell.edu
-
-   * fr.po: Improvement of one string from Mike Massonnet
- mmasson...@gmail.com
-
-2008-11-18 Brian J. Tarricone bj...@cornell.edu
-
-   * pt_PT.po: New translation from Nuno Miguel nu...@netcabo.pt
-   * LINGUAS: Add pt_PT.
-
-2008-11-17 Brian J. Tarricone bj...@cornell.edu
-
-   * da.po: New translation from Per Kongstad p_kongs...@op.pl
-   * LINGUAS: Add da.
-
-2008-11-16 Brian J. Tarricone bj...@cornell.edu
-
-   * fr.po: New translation from Maximilian Schleiss maximil...@xfce.org
-   * LINGUAS: Add fr.
-
-2008-11-16 Brian J. Tarricone bj...@cornell.edu
-
-   * es.po: New translation from Abel Martín abel.martin.r...@gmail.com
-   * LINGUAS: Add es.
-
-2008-11-16 Brian J. Tarricone bj...@cornell.edu
-   * ca.po: New translation from Carles Muñoz Gorriz 
carle...@internautas.org
-   * de.po: New translation from Christian Dywan christ...@twotoasts.de
-   * el.po: New translation from Stavros Giannouris stavr...@hellug.gr
-   * fi.po: New translation from Jari Rahkonen jari.rahko...@pp1.inet.fi
-   * id.po: New translation from Andhika Padmawan 
andhika.padma...@gmail.com
-   * nb.po: New translation from Terje Uriansrud te...@uriansrud.net
-   * nl.po: New translation from Vincent Tunru proje...@vinnl.nl
-   * sq.po: New translation from Besnik Bleta bes...@programeshqip.org
-   * tr.po: New translation from Gökmen Görgen gkmng...@gmail.com
-   * LINGUAS: Add ca, de, el, fi, id, nb, nl, sq, tr.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 3ecfad031cd1ad0264c29e0701dfd6621fa9e7d5 (commit)
   from 3fced5d454b99af679aa3945b2a9b40768bac218 (commit)

commit 3ecfad031cd1ad0264c29e0701dfd6621fa9e7d5
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:12 2013 +0200

Remove unneeded files.

 module.xml |   34 --
 1 file changed, 34 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 152b7f1..000
--- a/module.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enexo/name
- shortdesc xml:lang=enApplication library for the Xfce desktop 
environment/shortdesc
- homepage rdf:resource=http://www.xfce.org/projects/libraries//
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameNick Schermer/foaf:name
-foaf:mboxmailto:n...@xfce.org/foaf:mbox
-gnome:useridnick/gnome:userid
-  /foaf:Person
- /maintainer
- developer
-  foaf:Person
-foaf:nameBenedikt Meurer/foaf:name
-foaf:mboxmailto:be...@xfce.org/foaf:mbox
-gnome:useridbenny/gnome:userid
-  /foaf:Person
- /developer
- developer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /developer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] garcon:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e6046729cb0670f23aff87a0c2c9accafef1de44 (commit)
   from 70fd8b6c74a5c2860ac8e9c2cee2253e8ea025f0 (commit)

commit e6046729cb0670f23aff87a0c2c9accafef1de44
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:13 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 7b728d9..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=engarcon/name
- shortdesc xml:lang=enFreedesktop.org compliant menu library/shortdesc
- homepage rdf:resource=http://www.xfce.org/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfmpc:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 05796393b10e726324fb1f0bd5225b3bf55f12d7 (commit)
   from 70ee32a570e05d5df6ac5db1482693f37bb840fb (commit)

commit 05796393b10e726324fb1f0bd5225b3bf55f12d7
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:29 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 364e590..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-Project
-   name xml:lang=enxfmpc/name
-   shortdesc xml:lang=enMPD client written in GTK+/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/applications/xfmpc/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
-   maintainer
-   foaf:Person
-   foaf:nameMike Massonnet/foaf:name
-   foaf:mboxmailto:mmasson...@xfce.org/foaf:mbox
-   gnome:useridmmassonnet/gnome:userid
-   /foaf:Person
-   /maintainer
-   developer
-   foaf:Person
-   foaf:nameVincent Legout/foaf:name
-   foaf:mboxmailto:vinc...@xfce.org/foaf:mbox
-   gnome:useridvincent/gnome:userid
-   /foaf:Person
-   /developer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-taskmanager:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 4e394ee65b51fa6a42e45d333f22e2c6994c7c49 (commit)
   from 6463c7d948ef09853c45a8b704ba7b0a8a627029 (commit)

commit 4e394ee65b51fa6a42e45d333f22e2c6994c7c49
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:28 2013 +0200

Remove unneeded files.

 module.xml |   13 -
 1 file changed, 13 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index e81e7d3..000
--- a/module.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-Project
-   name xml:lang=enxfce4-taskmanager/name
-   shortdesc xml:lang=enEasy to use task manager/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/applications/xfce4-taskmanager/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
-   maintainer
-   foaf:Person
-   foaf:nameMike Massonnet/foaf:name
-   foaf:mboxmailto:mmasson...@xfce.org/foaf:mbox
-   gnome:useridmmassonnet/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar-archive-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to f74c7a9e693c9857edf08bc448ed608f64a891a2 (commit)
   from 6cbf7b7071d49ec1898865df8f75765dc78ec285 (commit)

commit f74c7a9e693c9857edf08bc448ed608f64a891a2
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:16 2013 +0200

Remove unneeded files.

 po/ChangeLog |  350 --
 1 file changed, 350 deletions(-)

diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 723852c..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,350 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-07-22  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-18  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese update (Hunt Xu)
-
-2009-06-15  Mike Massonnet mmasson...@xfce.org
-
-   * zh_CN.po: Simplified Chinese update (Jiahua Huang)
-
-2009-06-13  Mișu Moldovan  du...@xfce.org
-
-   * ro.po, LINGUAS: Romanian translation added
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-08  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-30  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-23  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-02-20  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-02-20  Eren Türkay erentur...@xfce.org
-
-* tr.po: Add Turkish translation by Samed Beyribey
-
-2008-12-25  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2008-12-20  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-   * zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-
-2008-11-13 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Updated Brazilian Portuguese translation by
-   Vladimir Melo.
-
-2008-11-09  Maximilian Schleiss maximil...@xfce.org
-
-   * sq.po: Albanian translation update (Besnik Bleta)
-
-2008-10-28  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Nobuhiro Iwamatsu)
-   * ru.po: Russian translation update (Nikita Belobrov)
-
-2008-10-18  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po, LINGUAS: Spanish translation added (Abel Martin)
-
-2008-10-11  Lars Nielsen l...@mit-web.dk
-
-   * da.po: Danish translation added
-
-2008-07-15 Mohamed Magdy alno...@xfce.org
-
-* ar.po: Add Arabic translation
-
-2008-06-26  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po, LINGUAS: Galician translation added (Leandro Regueiro)
-
-2008-06-24  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po, LINGUAS: Add Finnish translation from Launchpad
-
-2008-06-22  Mike Massonnet mmasson...@xfce.org
-
-   * id.po, LINGUAS: Add Indonesian translation (Andhika Padmawan)
-
-2008-05-14  Og Maciel ogmac...@gnome.org
-
-* pt_BR.po: Updated Brazilian Portuguese translation
-
-2008-05-14  Mike Massonnet mmasson...@xfce.org
-
-   * ja.po: Update Japanese translation (Nobuhiro Iwamatsu)
-
-2007-12-03  Maximilian Schleiss maximil...@xfce.org
-
-   * de.po: German translation update
-   by Fabian Nowak timyst...@arcor.de
-
-2007-11-18  Maximilian Schleiss maximil...@xfce.org
-
-   * lv.po: Latvian translation added
-   by Rihards Priedītis rpriedi...@inbox.lv
-
-2007-11-15  Mike Massonnet mmasson...@xfce.org
-
-   * ur.po: Add translation by Muhammad Ali Makki makki...@gmail.com
-
-2007-11-06  Og Maciel ogmac...@gnome.org
-
-* pt_BR.po: Updated the Brazilian Portuguese translation
-by Fábio Nogueira deb-user...@ubuntu.com
-
-2007-08-25  Mike Massonnet mmasson...@xfce.org
-
-   * pt_PT.po: European Portuguese update
-   by Nuno Miguel nu...@netcabo.pt
-
-2007-07-08  Maximilian Schleiss maximil...@xfce.org
-
-   * nb_NO.po: Norwegian Bokmal translation added
-   by Terje Uriansrud t...@operamail.com
-
-2007-06-20  Maximilian Schleiss maximil...@xfce.org
-
-   * 

[Xfce4-commits] thunar-volman:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 5a8947168150e1f6bcb0c904ec4a8246e97537af (commit)
   from 565d30256dca231ac5f8025dc53eeead7cdaa225 (commit)

commit 5a8947168150e1f6bcb0c904ec4a8246e97537af
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:19 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index a56d717..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enthunar-volman/name
- shortdesc xml:lang=enAutomatic management of removable drives and media 
for Thunar./shortdesc
- homepage rdf:resource=http://www.xfce.org/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameJannis Pohlmann/foaf:name
-foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-gnome:useridjannis/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 5aa0f500303035e94e8438da8ad81e36d27756b7 (commit)
   from 0214fc90118327eff0c6977da8ab4f066f120cfa (commit)

commit 5aa0f500303035e94e8438da8ad81e36d27756b7
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:44 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 1965099..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enxfwm4/name
- shortdesc xml:lang=enXfce's window manager/shortdesc
- homepage rdf:resource=http://www.xfce.org/projects/xfwm4/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameOlivier Fourdan/foaf:name
-foaf:mboxmailto:four...@xfce.org/foaf:mbox
-gnome:useridolivier/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-verve-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to c7493586bc6d559a671fe9f32105ee013d2b1dda (commit)
   from e5c6bd254d076525aca8523c8fe94aff1d928644 (commit)

commit c7493586bc6d559a671fe9f32105ee013d2b1dda
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:38 2013 +0200

Remove unneeded files.

 INSTALL |  365 ---
 1 file changed, 365 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, particularly those that use 

[Xfce4-commits] xfconf:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to a8019b112171e76707af118ae9f208ef56eb87ad (commit)
   from 455fe498dd1aa54a9321dd38f04c1c76ad1ee5cc (commit)

commit a8019b112171e76707af118ae9f208ef56eb87ad
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:42 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 933b7ae..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfconf/name
-  shortdesc xml:lang=enD-Bus-based configuration storage system/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-stopwatch-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e8c91f9f692cc7593e8705bab6391aaf8e35c74c (commit)
   from ad46284ba6ac1ca140b7816779396ac5d0ff050c (commit)

commit e8c91f9f692cc7593e8705bab6391aaf8e35c74c
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:37 2013 +0200

Remove unneeded files.

 INSTALL|  365 
 module.xml |   19 
 2 files changed, 384 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, 

[Xfce4-commits] xfce4-mount-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 78cf0695a1efd1c351406907059c384267a1324b (commit)
   from 0f7649c795765d8945ce9596c2dbbb21e3f118f5 (commit)

commit 78cf0695a1efd1c351406907059c384267a1324b
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:34 2013 +0200

Remove unneeded files.

 po/ChangeLog |  490 --
 1 file changed, 490 deletions(-)

diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index afe55b4..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,490 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-24  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-20  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-08  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-23  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-23  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-06  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po: Italian translation update (Walter Comunello)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * es.po: Spanish translation update (Abel Martín)
-   * pl.po: Polish translation update (Piotr Sokół)
-   * uk.po: Ukrainian translation update (Dmitry Nikitin)
-
-2009-02-22  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Add Spanish translation (Abel Martín)
-
-2009-02-20  Maximilian Schleiss maximil...@xfce.org
-
-   * ca.po: Catalan translation udpate (Carles Muñoz Gorriz)
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-02-07  Maximilian Schleiss maximil...@xfce.org
-
-   * nb_NO.po: Norwegian Bokmål translation update (Terje Uriansrud)
-
-2009-02-03  Maximilian Schleiss maximil...@xfce.org
-
-   * fr.po: French translation udpate
-
-2009-02-07  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-02-01  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation fixed
-
-2009-01-27  Piarres Beobide p...@beobide.net
-
-* eu.po : Updated  Basque translation
-
-2009-01-27  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po: Update Finnish translation.
-
-2009-01-25  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-01-23 Per Kongstad p...@xfce.org
-
-   * da.po: Danish translation update (Per Kongstad)
-
-2009-01-18  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po; LINGUAS: Italian translation added (Walter Comunello)
-
-2009-01-16 Og Maciel ogmac...@gnome.org
-
-   * xfce4-mount-plugin.pot: Updated.
-   * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2009-01-13  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-25  Maximilian Schleiss maximil...@xfce.org
-
-   * id.po: Indonesian translation update (Andhika Padmawan)
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2008-12-17  Jari Rahkonen jari.rahko...@pp1.inet.fi
-
-   * fi.po: Add Finnish translation by Elias Julkunen with
-   some modifications.
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation update (Hunt Xu)
-
-2008-11-30  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2008-11-23  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2008-11-21  Piarres Beobide p...@beobide.net
-
-* eu.po: Basque translation update
-
-2008-11-17  Eren Türkay erentur...@xfce.org
-
-* tr.po: Turkish translation update (Turkish translation team)
-
-2008-11-16  Maximilian Schleiss maximil...@xfce.org
-
-   * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2008-11-10 Lars Nielsen l...@mit-web.dk
-
-   * da.po,LINGUAS: Added Danish translation
-
-2008-11-09  Maximilian Schleiss maximil...@xfce.org
-
-   * ja.po: Japanese translation update 

[Xfce4-commits] xfconf:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 8ab860a462bdbd1bdf32b951bdef7ffae2934331 (commit)
   from be02540b242376b86f0c2f3a1ac40b2653905c56 (commit)

commit 8ab860a462bdbd1bdf32b951bdef7ffae2934331
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:42 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 933b7ae..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfconf/name
-  shortdesc xml:lang=enD-Bus-based configuration storage system/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mpc-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 4c7e745f026da66911bbabf1a95b9fc8cafb1b1f (commit)
   from 20415bbe2710b6a3ed30e90af23366a59d62310f (commit)

commit 4c7e745f026da66911bbabf1a95b9fc8cafb1b1f
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:35 2013 +0200

Remove unneeded files.

 INSTALL  |  236 --
 module.xml   |   20 -
 po/ChangeLog |  192 ---
 3 files changed, 448 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 23e5f25..000
--- a/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile the package for one architecture at a
-time in the source code directory.  After you have installed the

[Xfce4-commits] xfce4-fsguard-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to fc8cab7f54595f28fff6a9313c06f466459eb1ed (commit)
   from acb1bb5a489499aabe675e2efda816cf6b4b1ede (commit)

commit fc8cab7f54595f28fff6a9313c06f466459eb1ed
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:33 2013 +0200

Remove unneeded files.

 module.xml |   13 -
 1 file changed, 13 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index ad2f07d..000
--- a/module.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-Project
-   name xml:lang=enxfce4-fsguard-plugin/name
-   shortdesc xml:lang=enChecks the free space of a given 
mountpoint/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
-   maintainer
-   foaf:Person
-   foaf:nameFlorian Rivoal/foaf:name
-   foaf:mboxmailto:friv...@xfce.org/foaf:mbox
-   gnome:useridfrivoal/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-sensors-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 7b3e684b57472ad2a3370f626ad8351abe0da2f0 (commit)
   from d54c6db06552b1eefb3fb5cb9b6f61c25f92361d (commit)

commit 7b3e684b57472ad2a3370f626ad8351abe0da2f0
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:36 2013 +0200

Remove unneeded files.

 module.xml |   14 --
 1 file changed, 14 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index f2cc2b5..000
--- a/module.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-Project
- name xml:lang=enxfce4-sensors-plugin/name
- shortdesc xml:lang=enSensors plugin for the Xfce Panel/shortdesc
- homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin/
- mailing-list rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
- maintainer
- foaf:Person
- foaf:nameFabian Nowak/foaf:name
- foaf:mboxmailto:timyst...@arcor.de/foaf:mbox
- gnome:useridtimystery/gnome:userid
- /foaf:Person
- /maintainer
-/Project
-
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:xfce-4.10 Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to 66ec6227fbdcc471f2fc780a44f31c64c56ad5cc (commit)
   from ae20f98bdbaf657f02550d6ac752e0bd32e44159 (commit)

commit 66ec6227fbdcc471f2fc780a44f31c64c56ad5cc
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:41 2013 +0200

Remove unneeded files.

 module.xml |   45 -
 1 file changed, 45 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 5e084e4..000
--- a/module.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-settings/name
-  shortdesc xml:lang=enXfce's Configuration System/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameStephan Arts/foaf:name
-  foaf:mboxmailto:step...@xfce.org/foaf:mbox
-  gnome:useridstephan/gnome:userid
-/foaf:Person
-  /maintainer
-
-  developer
-foaf:Person
-  foaf:nameNick Schermer/foaf:name
-  foaf:mboxmailto:n...@xfce.org/foaf:mbox
-  gnome:useridnick/gnome:userid
-/foaf:Person
-  /developer
-
-  developer
-foaf:Person
-  foaf:nameJannis Pohlmann/foaf:name
-  foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-  gnome:useridjannis/gnome:userid
-/foaf:Person
-  /developer
-
-  developer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /developer
-
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-indicator-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e9808bb13a55212231fe758e1ecb094f010da49d (commit)
   from b66764c9e71ef30cc59ef0f28583ae6f4c50b9ac (commit)

commit e9808bb13a55212231fe758e1ecb094f010da49d
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:34 2013 +0200

Remove unneeded files.

 INSTALL |  365 ---
 1 file changed, 365 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 7d1c323..000
--- a/INSTALL
+++ /dev/null
@@ -1,365 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-
-   Copying and distribution of this file, with or without modification,
-are permitted in any medium without royalty provided the copyright
-notice and this notice are preserved.  This file is offered as-is,
-without warranty of any kind.
-
-Basic Installation
-==
-
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
-below.  The lack of an optional feature in a given package is not
-necessarily a bug.  More recommendations for GNU packages can be found
-in *note Makefile Conventions: (standards)Makefile Conventions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You need `configure.ac' if
-you want to change it or regenerate `configure' using a newer version
-of `autoconf'.
-
-   The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.
-
- Running `configure' might take a while.  While running, it prints
- some messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package, generally using the just-built uninstalled binaries.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.  When installing into a prefix owned by root, it is
- recommended that the package be configured and built as a regular
- user, and only the `make install' phase executed with root
- privileges.
-
-  5. Optionally, type `make installcheck' to repeat any self-tests, but
- this time using the binaries in their final installed location.
- This target does not install anything.  Running this target as a
- regular user, particularly if the prior `make install' required
- root privileges, verifies that the installation completed
- correctly.
-
-  6. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-  7. Often, you can also type `make uninstall' to remove the installed
- files again.  In practice, not all packages have tested that
- uninstallation works correctly, even though it is required by the
- GNU Coding Standards.
-
-  8. Some packages, particularly those that use 

[Xfce4-commits] xfce4-settings:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to fb0270d0e2df9a61e93b3dd65240bc1da3919c8a (commit)
   from 45a996658f2e0b0ab39a867efdf1de814e5b9267 (commit)

commit fb0270d0e2df9a61e93b3dd65240bc1da3919c8a
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:40 2013 +0200

Remove unneeded files.

 module.xml |   45 -
 1 file changed, 45 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 5e084e4..000
--- a/module.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-settings/name
-  shortdesc xml:lang=enXfce's Configuration System/shortdesc
-  homepage rdf:resource=http://xfce.org/
-  mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
-  maintainer
-foaf:Person
-  foaf:nameStephan Arts/foaf:name
-  foaf:mboxmailto:step...@xfce.org/foaf:mbox
-  gnome:useridstephan/gnome:userid
-/foaf:Person
-  /maintainer
-
-  developer
-foaf:Person
-  foaf:nameNick Schermer/foaf:name
-  foaf:mboxmailto:n...@xfce.org/foaf:mbox
-  gnome:useridnick/gnome:userid
-/foaf:Person
-  /developer
-
-  developer
-foaf:Person
-  foaf:nameJannis Pohlmann/foaf:name
-  foaf:mboxmailto:jan...@xfce.org/foaf:mbox
-  gnome:useridjannis/gnome:userid
-/foaf:Person
-  /developer
-
-  developer
-foaf:Person
-  foaf:nameBrian Tarricone/foaf:name
-  foaf:mboxmailto:kel...@xfce.org/foaf:mbox
-  gnome:useridkelnos/gnome:userid
-/foaf:Person
-  /developer
-
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-xkb-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to e15a33e56a763c403881499532c7f5a3c3cbcc26 (commit)
   from 4b6428ec5b3a11efb83943d6df1877491bc4218a (commit)

commit e15a33e56a763c403881499532c7f5a3c3cbcc26
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:39 2013 +0200

Remove unneeded files.

 module.xml   |   14 ---
 po/ChangeLog |  292 --
 2 files changed, 306 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 4eba64f..000
--- a/module.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-Project
-   name xml:lang=enxfce4-clipman-plugin/name
-   shortdesc xml:lang=enXKB layout switching panel plug-in for the 
Xfce desktop environment/shortdesc
-   homepage 
rdf:resource=http://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin/
-   mailing-list 
rdf:resource=http://foo-projects.org/mailman/listinfo/xfce/
-   maintainer
-   foaf:Person
-   foaf:nameAzamat H. Hackimov/foaf:name
-   foaf:mboxmailto:azamat.hacki...@gmail.com/foaf:mbox
-   gnome:useridwinterheart/gnome:userid
-   /foaf:Person
-   /maintainer
-/Project
-
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index c99b36d..000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,292 +0,0 @@
-2009-08-08  Mike Massonnet mmasson...@xfce.org
-
-   * ast.po: Asturian translation added (Marcos Alvarez Costales)
-
-2009-07-25  Gabor Kelemen  kelem...@gnome.hu
-
-   * hu.po: Translation reworked.
-
-2009-06-28  Mike Massonnet mmasson...@xfce.org
-
-   * el.po: Greek translation update (Evaggelos Balaskas)
-
-2009-05-29  Mike Massonnet mmasson...@xfce.org
-
-   * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-   * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-04-16  Mike Massonnet mmasson...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-04-08  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-30  Piotr Sokół piotr.so...@10g.pl
-
-   * pl.po: Polish translation update
-
-2009-03-19  Masato Hashimoto cabezon.hashim...@gmail.com
-
-   * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-03-14  Maximilian Schleiss maximil...@xfce.org
-
-   * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-05  Mike Massonnet mmasson...@xfce.org
-
-   * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
-
-2009-03-01  Maximilian Schleiss maximil...@xfce.org
-
-   * uk.po: Ukrainian translation update (Dmitry Nikitin)
-
-2009-03-01  Mișu Moldovan du...@xfce.org
-
-   * ro.po: Romanian translation added (Igor Știrbu)
-
-2009-02-22  Mike Massonnet mmasson...@xfce.org
-
-   * es.po: Add Spanish translation (Abel Martín)
-   * ja.po: Japanese translation udpate (Masato Hashimoto)
-
-2009-02-19  Per Kongstad p...@xfce.org
-
-   * ru.po: Russian translation updated (Pavel Lakushev)
-
-2009-02-09  Alexander Toresson eu...@xfce.org
-
-   * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-02-07  Maximilian Schleiss maximil...@xfce.org
-
-   * it.po; LINGUAS: Italian translation added (Cristian Marchi)
-
-2009-02-03  Maximilian Schleiss maximil...@xfce.org
-
-   * fr.po: French translation udpate
-
-2009-02-01  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation fixed
-
-2008-12-21  Lars Nielsen l...@mit-web.dk
-
-   * da.po: updated danish translation
-
-2008-12-20  Alexander Toresson eu...@xfce.org
-
-   * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-
-2008-12-13  Maximilian Schleiss maximil...@xfce.org
-
-   * zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-
-2008-11-23  Maximilian Schleiss maximil...@xfce.org
-
-   * uk.po: Ukrainian translation udpate (Dmitry Nikitin)
-
-2008-11-17  Eren Türkay erentur...@xfce.org
-
-* tr.po: Turkish translation update (Turkish translation team)
-
-2008-11-16  Maximilian Schleiss maximil...@xfce.org
-
-   * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2008-11-12  Piarres Beobide p...@beobide.net
-
-* eu.po: Basque translation update
-
-2008-11-09  Maximilian Schleiss maximil...@xfce.org
-
-   * de.po: German translation update (Fabian Nowak)
-   * pt_PT.po: European Portuguese translation update (Nuno Miguel)
-   * sq.po: Albanian translation update (Besnik Bleta)
-
-2008-11-09  Alexander Nyakhaychyk  n...@mail.by
-
-   * be.po: Belarusian translation update
-
-2008-11-01  Michal Várady miko.v...@gmail.com
-
-   * cs.po: Czech translation updated
-
-2008-10-28  Maximilian Schleiss maximil...@xfce.org
-
-   * id.po: Indonesian translation update (Andhika Padmawan)
-
-2008-10-14 Og Maciel ogmac...@gnome.org
-
-   * pt_BR.po: Updated Brazilian Portuguese translation by Og Maciel.
-
-2008-10-12  Piarres Beobide 

[Xfce4-commits] xfce4-datetime-plugin:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 7030711a2d2f5ea1b0ca266ce84836844b82265b (commit)
   from c8e80b81582dab5ee479c90c22f8eedc74196167 (commit)

commit 7030711a2d2f5ea1b0ca266ce84836844b82265b
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:32 2013 +0200

Remove unneeded files.

 INSTALL  |  236 --
 module.xml   |   19 -
 po/ChangeLog |  213 
 3 files changed, 468 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 23e5f25..000
--- a/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==
-
-These are generic installation instructions.
-
-   The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
-   It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring.  (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
-   If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release.  If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
-   The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'.  You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
-  1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system.  If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile.  While running, it prints some
- messages telling which features it is checking for.
-
-  2. Type `make' to compile the package.
-
-  3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
-  4. Type `make install' to install the programs and any data files and
- documentation.
-
-  5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'.  To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'.  There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers.  If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
-
-   You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment.  Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
-   *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory.  To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'.  `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
-   If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile the package for one architecture at a
-time in the source code directory.  After you have installed 

[Xfce4-commits] xfwm4:master Remove unneeded files.

2013-07-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 13c072c37c3bea54e6157d2f8684ef44ebbb5ea6 (commit)
   from 9663c98ab77ce5435af2b525ab37d6684548ccca (commit)

commit 13c072c37c3bea54e6157d2f8684ef44ebbb5ea6
Author: Nick Schermer n...@xfce.org
Date:   Sat Jul 13 22:09:43 2013 +0200

Remove unneeded files.

 module.xml |   20 
 1 file changed, 20 deletions(-)

diff --git a/module.xml b/module.xml
deleted file mode 100644
index 1965099..000
--- a/module.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
- name xml:lang=enxfwm4/name
- shortdesc xml:lang=enXfce's window manager/shortdesc
- homepage rdf:resource=http://www.xfce.org/projects/xfwm4/
- mailing-list 
rdf:resource=http://foo-projects.org/mailmain/listinfo/xfce4-dev/
-
- maintainer
-  foaf:Person
-foaf:nameOlivier Fourdan/foaf:name
-foaf:mboxmailto:four...@xfce.org/foaf:mbox
-gnome:useridolivier/gnome:userid
-  /foaf:Person
- /maintainer
-/Project
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:ochosi/tabwin Fix property types thanks Nick

2013-07-13 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to 55ec9619381a64d7deda7762505ba83b85b5073a (commit)
   from 59d031d6374e4db55232e3b92ffeed0f3eadfad3 (commit)

commit 55ec9619381a64d7deda7762505ba83b85b5073a
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Sun Jul 14 05:48:07 2013 +0200

Fix property types
thanks Nick

 src/tabwin.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 001e9ec..f5161ce 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -420,14 +420,14 @@ tabwin_widget_class_init (TabwinWidgetClass *klass)

WIN_BORDER_WIDTH,

G_PARAM_READABLE));
 gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int(border-alpha,
+ 
g_param_spec_double(border-alpha,
   border alpha,
the alpha of 
the colored border,
0.0, 1.0,

WIN_BORDER_ALPHA,

G_PARAM_READABLE));
 gtk_widget_class_install_style_property (widget_class,
- g_param_spec_int(alpha,
+ g_param_spec_double(alpha,
   alpha,
the alpha of 
the window,
0.0, 1.0,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits