Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xfce4-screenshooter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Apps
xfce4-screenshooter
Commits
f6190ffc
Commit
f6190ffc
authored
15 years ago
by
Jerome Guelfucci
Browse files
Options
Downloads
Patches
Plain Diff
Make strings consistent, improve them a bit and tweak the indentation.
(Old svn revision: 7416)
parent
a95f489f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+4
-0
4 additions, 0 deletions
ChangeLog
lib/screenshooter-zimagez.c
+10
-43
10 additions, 43 deletions
lib/screenshooter-zimagez.c
src/main.c
+1
-1
1 addition, 1 deletion
src/main.c
with
15 additions
and
44 deletions
ChangeLog
+
4
−
0
View file @
f6190ffc
2009-05-24 jeromeg
Make strings consistent, improve them a bit and tweak the indentation.
2009-05-24 jeromeg
Escape all strings before sending them to the server.
Uploading still does not work if the user, the password, the comment
...
...
This diff is collapsed.
Click to expand it.
lib/screenshooter-zimagez.c
+
10
−
43
View file @
f6190ffc
...
...
@@ -18,7 +18,7 @@
* */
/* XML-RPC API for ZimageZ
.com
*/
/* XML-RPC API for ZimageZ */
/* URL of the API: http://www.zimagez.com/apiXml.php
...
...
@@ -221,7 +221,7 @@ zimagez_upload_job (ScreenshooterJob *job, GValueArray *param_values, GError **e
screenshooter_job_ask_info
(
job
,
liststore
,
_
(
"Please file the following fields with your "
"<a href=
\"
http://www.zimagez.com
\"
>ZimageZ
©
</a>
\n
"
"<a href=
\"
http://www.zimagez.com
\"
>ZimageZ</a>
\n
"
"user name, passsword and details about the screenshot."
));
gtk_tree_model_get_iter_first
(
GTK_TREE_MODEL
(
liststore
),
&
iter
);
...
...
@@ -317,7 +317,7 @@ zimagez_upload_job (ScreenshooterJob *job, GValueArray *param_values, GError **e
/* Start the user session */
TRACE
(
"Call the login method"
);
exo_job_info_message
(
EXO_JOB
(
job
),
_
(
"Login on ZimageZ.
com.
.."
));
exo_job_info_message
(
EXO_JOB
(
job
),
_
(
"Login on ZimageZ..."
));
resultP
=
xmlrpc_client_call
(
&
env
,
serverurl
,
method_login
,
"(ss)"
,
escaped_user
,
escaped_password
);
...
...
@@ -436,7 +436,7 @@ zimagez_upload_job (ScreenshooterJob *job, GValueArray *param_values, GError **e
_
(
"<span weight=
\"
bold
\"
foreground=
\"
darkred
\"
"
"stretch=
\"
semiexpanded
\"
>The user and the "
"password you entered do not match. "
"Please
correct this
.</span>"
));
"Please
retry
.</span>"
));
gtk_tree_model_get_iter_first
(
GTK_TREE_MODEL
(
liststore
),
&
iter
);
...
...
@@ -594,7 +594,7 @@ zimagez_upload_job (ScreenshooterJob *job, GValueArray *param_values, GError **e
/* End the user session */
exo_job_info_message
(
EXO_JOB
(
job
),
_
(
"Close the session on ZimageZ.
com.
.."
));
exo_job_info_message
(
EXO_JOB
(
job
),
_
(
"Close the session on ZimageZ..."
));
TRACE
(
"Closing the user session"
);
...
...
@@ -647,7 +647,7 @@ cb_ask_for_information (ScreenshooterJob *job,
/* Create the information dialog */
dialog
=
xfce_titled_dialog_new_with_buttons
(
_
(
"Details about the screenshot for ZimageZ
©
"
),
xfce_titled_dialog_new_with_buttons
(
_
(
"Details about the screenshot for ZimageZ"
),
NULL
,
GTK_DIALOG_NO_SEPARATOR
,
GTK_STOCK_CANCEL
,
...
...
@@ -666,41 +666,31 @@ cb_ask_for_information (ScreenshooterJob *job,
/* Create the main alignment for the dialog */
main_alignment
=
gtk_alignment_new
(
0
,
0
,
1
,
1
);
gtk_alignment_set_padding
(
GTK_ALIGNMENT
(
main_alignment
),
6
,
0
,
12
,
12
);
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dialog
)
->
vbox
),
main_alignment
,
TRUE
,
TRUE
,
0
);
/* Create the main box for the dialog */
vbox
=
gtk_vbox_new
(
FALSE
,
10
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
vbox
),
12
);
gtk_container_add
(
GTK_CONTAINER
(
main_alignment
),
vbox
);
/* Create the information label */
information_label
=
sexy_url_label_new
();
sexy_url_label_set_markup
(
SEXY_URL_LABEL
(
information_label
),
message
);
g_signal_connect
(
G_OBJECT
(
information_label
),
"url-activated"
,
G_CALLBACK
(
open_url_hook
),
NULL
);
gtk_misc_set_alignment
(
GTK_MISC
(
information_label
),
0
,
0
);
gtk_container_add
(
GTK_CONTAINER
(
vbox
),
information_label
);
/* Create the layout table */
table
=
gtk_table_new
(
4
,
2
,
FALSE
);
gtk_table_set_col_spacings
(
GTK_TABLE
(
table
),
6
);
gtk_table_set_row_spacings
(
GTK_TABLE
(
table
),
12
);
gtk_container_add
(
GTK_CONTAINER
(
vbox
),
table
);
/* Create the user label */
user_label
=
gtk_label_new
(
_
(
"User:"
));
gtk_misc_set_alignment
(
GTK_MISC
(
user_label
),
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
user_label
,
0
,
1
,
0
,
1
,
...
...
@@ -709,17 +699,13 @@ cb_ask_for_information (ScreenshooterJob *job,
/* Create the user entry */
user_entry
=
gtk_entry_new
();
gtk_widget_set_tooltip_text
(
user_entry
,
_
(
"Your Zimagez user name, if you do not have one yet"
"please create one on the Web page linked above"
));
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
user_entry
,
1
,
2
,
0
,
1
);
/* Create the password label */
password_label
=
gtk_label_new
(
_
(
"Password:"
));
gtk_misc_set_alignment
(
GTK_MISC
(
password_label
),
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
password_label
,
0
,
1
,
...
...
@@ -729,34 +715,27 @@ cb_ask_for_information (ScreenshooterJob *job,
/* Create the password entry */
password_entry
=
gtk_entry_new
();
gtk_widget_set_tooltip_text
(
password_entry
,
_
(
"The password for the user above"
));
gtk_entry_set_visibility
(
GTK_ENTRY
(
password_entry
),
FALSE
);
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
password_entry
,
1
,
2
,
1
,
2
);
/* Create the title label */
title_label
=
gtk_label_new
(
_
(
"Title:"
));
gtk_misc_set_alignment
(
GTK_MISC
(
title_label
),
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
title_label
,
0
,
1
,
2
,
3
,
GTK_FILL
,
GTK_FILL
,
0
,
0
);
/* Create the title entry */
title_entry
=
gtk_entry_new
();
gtk_widget_set_tooltip_text
(
title_entry
,
_
(
"The title of the screenshot, it will be used when"
" displaying the screenshot on ZimageZ"
));
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
title_entry
,
1
,
2
,
2
,
3
);
/* Create the comment label */
comment_label
=
gtk_label_new
(
_
(
"Comment:"
));
gtk_misc_set_alignment
(
GTK_MISC
(
comment_label
),
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
comment_label
,
0
,
1
,
...
...
@@ -766,11 +745,9 @@ cb_ask_for_information (ScreenshooterJob *job,
/* Create the comment entry */
comment_entry
=
gtk_entry_new
();
gtk_widget_set_tooltip_text
(
title_entry
,
_
(
"A comment on the screenshot, it will be used when"
" displaying the screenshot on ZimageZ"
));
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
comment_entry
,
1
,
2
,
3
,
4
);
/* Set the values */
...
...
@@ -809,9 +786,7 @@ cb_ask_for_information (ScreenshooterJob *job,
while
(
gtk_tree_model_iter_next
(
GTK_TREE_MODEL
(
liststore
),
&
iter
));
gtk_widget_show_all
(
GTK_DIALOG
(
dialog
)
->
vbox
);
response
=
gtk_dialog_run
(
GTK_DIALOG
(
dialog
));
gtk_widget_hide
(
dialog
);
if
(
response
==
GTK_RESPONSE_CANCEL
)
...
...
@@ -916,7 +891,7 @@ static void cb_image_uploaded (ScreenshooterJob *job, gchar *upload_name, gchar
/* Dialog */
dialog
=
xfce_titled_dialog_new_with_buttons
(
_
(
"My screenshot on ZimageZ
©
"
),
xfce_titled_dialog_new_with_buttons
(
_
(
"My screenshot on ZimageZ"
),
NULL
,
GTK_DIALOG_NO_SEPARATOR
,
GTK_STOCK_CLOSE
,
...
...
@@ -926,9 +901,7 @@ static void cb_image_uploaded (ScreenshooterJob *job, gchar *upload_name, gchar
gtk_window_set_position
(
GTK_WINDOW
(
dialog
),
GTK_WIN_POS_CENTER
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
GTK_DIALOG
(
dialog
)
->
vbox
),
0
);
gtk_box_set_spacing
(
GTK_BOX
(
GTK_DIALOG
(
dialog
)
->
vbox
),
12
);
gtk_window_set_icon_name
(
GTK_WINDOW
(
dialog
),
"applications-internet"
);
gtk_dialog_set_default_response
(
GTK_DIALOG
(
dialog
),
GTK_RESPONSE_OK
);
/* Create the main alignment for the dialog */
...
...
@@ -938,7 +911,6 @@ static void cb_image_uploaded (ScreenshooterJob *job, gchar *upload_name, gchar
/* Create the main box for the dialog */
vbox
=
gtk_vbox_new
(
FALSE
,
10
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
vbox
),
12
);
gtk_container_add
(
GTK_CONTAINER
(
main_alignment
),
vbox
);
...
...
@@ -995,7 +967,7 @@ static void cb_image_uploaded (ScreenshooterJob *job, gchar *upload_name, gchar
gtk_misc_set_alignment
(
GTK_MISC
(
example_label
),
0
,
0
);
gtk_container_add
(
GTK_CONTAINER
(
vbox
),
example_label
);
/*
BB
alignment */
/*
Code
alignment */
code_alignment
=
gtk_alignment_new
(
0
,
0
,
1
,
1
);
gtk_alignment_set_padding
(
GTK_ALIGNMENT
(
code_alignment
),
0
,
0
,
12
,
0
);
gtk_container_add
(
GTK_CONTAINER
(
vbox
),
code_alignment
);
...
...
@@ -1036,7 +1008,7 @@ static void cb_image_uploaded (ScreenshooterJob *job, gchar *upload_name, gchar
gtk_frame_set_shadow_type
(
GTK_FRAME
(
bb_frame
),
GTK_SHADOW_IN
);
gtk_container_add
(
GTK_CONTAINER
(
code_box
),
bb_frame
);
/*
HTML
code text view */
/*
BB
code text view */
bb_buffer
=
gtk_text_buffer_new
(
NULL
);
gtk_text_buffer_set_text
(
bb_buffer
,
bb_code
,
-
1
);
...
...
@@ -1103,7 +1075,6 @@ static void cb_finished (ExoJob *job, GtkWidget *dialog)
NULL
);
g_object_unref
(
G_OBJECT
(
job
));
gtk_widget_destroy
(
dialog
);
}
...
...
@@ -1147,7 +1118,7 @@ void screenshooter_upload_to_zimagez (const gchar *image_path, gchar *last_user)
g_return_if_fail
(
image_path
!=
NULL
);
dialog
=
gtk_dialog_new_with_buttons
(
_
(
"
Uploading to
ZimageZ
...
"
),
gtk_dialog_new_with_buttons
(
_
(
"ZimageZ"
),
NULL
,
GTK_DIALOG_NO_SEPARATOR
,
NULL
);
...
...
@@ -1159,23 +1130,19 @@ void screenshooter_upload_to_zimagez (const gchar *image_path, gchar *last_user)
/* Create the main alignment for the dialog */
main_alignment
=
gtk_alignment_new
(
0
,
0
,
1
,
1
);
gtk_alignment_set_padding
(
GTK_ALIGNMENT
(
main_alignment
),
6
,
0
,
6
,
6
);
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dialog
)
->
vbox
),
main_alignment
,
TRUE
,
TRUE
,
0
);
/* Create the main box for the dialog */
main_box
=
gtk_vbox_new
(
FALSE
,
10
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
main_box
),
12
);
gtk_container_add
(
GTK_CONTAINER
(
main_alignment
),
main_box
);
/* Status label*/
status_label
=
gtk_label_new
(
""
);
gtk_label_set_markup
(
GTK_LABEL
(
status_label
),
_
(
"<span weight=
\"
bold
\"
stretch=
\"
semiexpanded
\"
>"
"Status</span>"
));
gtk_misc_set_alignment
(
GTK_MISC
(
status_label
),
0
,
0
);
gtk_container_add
(
GTK_CONTAINER
(
main_box
),
status_label
);
...
...
This diff is collapsed.
Click to expand it.
src/main.c
+
1
−
1
View file @
f6190ffc
...
...
@@ -89,7 +89,7 @@ static GOptionEntry entries[] =
#ifdef HAVE_CURL
{
"upload"
,
'u'
,
G_OPTION_FLAG_IN_MAIN
,
G_OPTION_ARG_NONE
,
&
upload
,
N_
(
"
Upload
the screenshot
t
o ZimageZ
©
, a free
Web
hosting s
olution
"
),
N_
(
"
Host
the screenshot o
n
ZimageZ, a free
online image
hosting s
ervice
"
),
NULL
},
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment