Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
xfce4-weather-plugin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
25
Issues
25
List
Boards
Labels
Service Desk
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Panel Plugins
xfce4-weather-plugin
Commits
52750a02
Commit
52750a02
authored
Dec 16, 2006
by
Nick Schermer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve file names
(Old svn revision: 2236)
parent
402e836f
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
57 additions
and
57 deletions
+57
-57
panel-plugin/Makefile.am
panel-plugin/Makefile.am
+20
-20
panel-plugin/weather-config.c
panel-plugin/weather-config.c
+5
-5
panel-plugin/weather-config.h
panel-plugin/weather-config.h
+0
-0
panel-plugin/weather-data.c
panel-plugin/weather-data.c
+3
-3
panel-plugin/weather-data.h
panel-plugin/weather-data.h
+0
-0
panel-plugin/weather-http.c
panel-plugin/weather-http.c
+1
-1
panel-plugin/weather-http.h
panel-plugin/weather-http.h
+0
-0
panel-plugin/weather-icon.c
panel-plugin/weather-icon.c
+1
-1
panel-plugin/weather-icon.h
panel-plugin/weather-icon.h
+0
-0
panel-plugin/weather-parsers.c
panel-plugin/weather-parsers.c
+1
-1
panel-plugin/weather-parsers.h
panel-plugin/weather-parsers.h
+0
-0
panel-plugin/weather-scrollbox.c
panel-plugin/weather-scrollbox.c
+1
-1
panel-plugin/weather-scrollbox.h
panel-plugin/weather-scrollbox.h
+0
-0
panel-plugin/weather-search.c
panel-plugin/weather-search.c
+5
-5
panel-plugin/weather-search.h
panel-plugin/weather-search.h
+0
-0
panel-plugin/weather-summary.c
panel-plugin/weather-summary.c
+6
-6
panel-plugin/weather-summary.h
panel-plugin/weather-summary.h
+0
-0
panel-plugin/weather-translate.c
panel-plugin/weather-translate.c
+4
-4
panel-plugin/weather-translate.h
panel-plugin/weather-translate.h
+0
-0
panel-plugin/weather.c
panel-plugin/weather.c
+10
-10
panel-plugin/weather.h
panel-plugin/weather.h
+0
-0
No files found.
panel-plugin/Makefile.am
View file @
52750a02
...
...
@@ -4,26 +4,26 @@ plugindir = $(libexecdir)/xfce4/panel-plugins
plugin_PROGRAMS
=
xfce4-weather-plugin
xfce4_weather_plugin_SOURCES
=
\
scrollbox.h
\
scrollbox.c
\
parsers.h
\
parsers.c
\
get_data.h
\
get_data.c
\
http_client
.c
\
http_client
.h
\
plugin.h
\
plugin.c
\
config_dialog.h
\
config_dialog.c
\
summary_window.h
\
summary_window.c
\
icon.h
\
icon.c
\
search_dialog.h
\
search_dialog.c
\
translate.h
\
translate.c
weather.c
\
weather.h
\
weather-config.c
\
weather-config.h
\
weather-data.c
\
weather-data.h
\
weather-http
.c
\
weather-http
.h
\
weather-icon.c
\
weather-icon.h
\
weather-parsers.c
\
weather-parsers.h
\
weather-scrollbox.c
\
weather-scrollbox.h
\
weather-search.c
\
weather-search.h
\
weather-summary.c
\
weather-summary.h
\
weather-translate.c
\
weather-translate.h
xfce4_weather_plugin_CFLAGS
=
\
-I
$(top_srcdir)
\
...
...
panel-plugin/
config_dialo
g.c
→
panel-plugin/
weather-confi
g.c
View file @
52750a02
...
...
@@ -22,12 +22,12 @@
#include <string.h>
#include <libxfcegui4/libxfcegui4.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#include "
config_dialo
g.h"
#include "
search_dialog
.h"
#include "
weather-confi
g.h"
#include "
weather-search
.h"
#define OPTIONS_N 11
#define BORDER 8
...
...
panel-plugin/
config_dialo
g.h
→
panel-plugin/
weather-confi
g.h
View file @
52750a02
File moved
panel-plugin/
get_
data.c
→
panel-plugin/
weather-
data.c
View file @
52750a02
...
...
@@ -21,9 +21,9 @@
#include <libxfce4util/libxfce4util.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#define DATAS_CC 0x0100
#define DATAS_LOC 0x0200
...
...
panel-plugin/
get_
data.h
→
panel-plugin/
weather-
data.h
View file @
52750a02
File moved
panel-plugin/
http_client
.c
→
panel-plugin/
weather-http
.c
View file @
52750a02
...
...
@@ -33,7 +33,7 @@
#include <libxfce4util/libxfce4util.h>
#include <libxfce4panel/xfce-panel-macros.h>
#include "
http_client
.h"
#include "
weather-http
.h"
struct
request_data
{
...
...
panel-plugin/
http_client
.h
→
panel-plugin/
weather-http
.h
View file @
52750a02
File moved
panel-plugin/icon.c
→
panel-plugin/
weather-
icon.c
View file @
52750a02
...
...
@@ -22,7 +22,7 @@
#include <glib.h>
#include <gtk/gtk.h>
#include "icon.h"
#include "
weather-
icon.h"
#define DEFAULT_W_THEME "liquid"
...
...
panel-plugin/icon.h
→
panel-plugin/
weather-
icon.h
View file @
52750a02
File moved
panel-plugin/parsers.c
→
panel-plugin/
weather-
parsers.c
View file @
52750a02
...
...
@@ -19,7 +19,7 @@
#include <config.h>
#endif
#include "parsers.h"
#include "
weather-
parsers.h"
#include <libxfce4panel/xfce-panel-macros.h>
xml_weather
*
...
...
panel-plugin/parsers.h
→
panel-plugin/
weather-
parsers.h
View file @
52750a02
File moved
panel-plugin/scrollbox.c
→
panel-plugin/
weather-
scrollbox.c
View file @
52750a02
...
...
@@ -25,7 +25,7 @@
#include <gtk/gtk.h>
#include <libxfce4panel/xfce-panel-macros.h>
#include "scrollbox.h"
#include "
weather-
scrollbox.h"
#define LABEL_REFRESH 3000
#define LABEL_SPEED 25
...
...
panel-plugin/scrollbox.h
→
panel-plugin/
weather-
scrollbox.h
View file @
52750a02
File moved
panel-plugin/
search_dialog
.c
→
panel-plugin/
weather-search
.c
View file @
52750a02
...
...
@@ -18,15 +18,15 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "
search_dialog
.h"
#include "
weather-search
.h"
#include <string.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#include "
http_client
.h"
#include "
weather-http
.h"
#define BORDER 8
...
...
panel-plugin/
search_dialog
.h
→
panel-plugin/
weather-search
.h
View file @
52750a02
File moved
panel-plugin/
summary_window
.c
→
panel-plugin/
weather-summary
.c
View file @
52750a02
...
...
@@ -21,13 +21,13 @@
#include <libxfcegui4/libxfcegui4.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#include "
summary_window
.h"
#include "translate.h"
#include "icon.h"
#include "
weather-summary
.h"
#include "
weather-
translate.h"
#include "
weather-
icon.h"
#define BORDER 8
...
...
panel-plugin/
summary_window
.h
→
panel-plugin/
weather-summary
.h
View file @
52750a02
File moved
panel-plugin/translate.c
→
panel-plugin/
weather-
translate.c
View file @
52750a02
...
...
@@ -22,10 +22,10 @@
#include <string.h>
#include <time.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "translate.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#include "
weather-
translate.h"
static
const
gchar
*
desc_strings
[]
=
{
...
...
panel-plugin/translate.h
→
panel-plugin/
weather-
translate.h
View file @
52750a02
File moved
panel-plugin/
plugin
.c
→
panel-plugin/
weather
.c
View file @
52750a02
...
...
@@ -25,16 +25,16 @@
#include <libxfce4util/libxfce4util.h>
#include <libxfcegui4/libxfcegui4.h>
#include "parsers.h"
#include "
get_
data.h"
#include "
plugin
.h"
#include "translate.h"
#include "
http_client
.h"
#include "
summary_window
.h"
#include "
config_dialo
g.h"
#include "icon.h"
#include "scrollbox.h"
#include "
weather-
parsers.h"
#include "
weather-
data.h"
#include "
weather
.h"
#include "
weather-
translate.h"
#include "
weather-http
.h"
#include "
weather-summary
.h"
#include "
weather-confi
g.h"
#include "
weather-
icon.h"
#include "
weather-
scrollbox.h"
#define XFCEWEATHER_ROOT "weather"
#define UPDATE_TIME 1600
...
...
panel-plugin/
plugin
.h
→
panel-plugin/
weather
.h
View file @
52750a02
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment