r4013: Removed the option for choosing panel side for -S, since we can use the new
[rox-filer.git] / ROX-Filer / src / main.c
blobffb056f910d5d6f6a5aa4318cadfda339a3d70c5
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * Copyright (C) 2005, the ROX-Filer team.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
10 * any later version.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
22 /* main.c - parses command-line options and parameters, plus some global
23 * housekeeping.
25 * New to the code and feeling lost? Read global.h now.
28 #include "config.h"
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <signal.h>
34 #include <string.h>
35 #include <sys/wait.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38 #include <pwd.h>
39 #include <grp.h>
40 #include <time.h>
41 #include <libxml/parser.h>
43 #ifdef HAVE_GETOPT_LONG
44 # include <getopt.h>
45 #endif
47 #include <gtk/gtk.h>
48 #include <gdk/gdkx.h> /* For rox_x_error */
50 #include "global.h"
52 #include "main.h"
53 #include "support.h"
54 #include "gui_support.h"
55 #include "filer.h"
56 #include "display.h"
57 #include "mount.h"
58 #include "menu.h"
59 #include "dnd.h"
60 #include "options.h"
61 #include "choices.h"
62 #include "type.h"
63 #include "pixmaps.h"
64 #include "dir.h"
65 #include "diritem.h"
66 #include "action.h"
67 #include "i18n.h"
68 #include "remote.h"
69 #include "pinboard.h"
70 #include "run.h"
71 #include "toolbar.h"
72 #include "bind.h"
73 #include "panel.h"
74 #include "session.h"
75 #include "minibuffer.h"
76 #include "xtypes.h"
78 int number_of_windows = 0; /* Quit when this reaches 0 again... */
79 int to_wakeup_pipe = -1; /* Write here to get noticed */
81 /* Information about the ROX-Filer process */
82 uid_t euid;
83 gid_t egid;
84 int ngroups; /* Number of supplemental groups */
85 gid_t *supplemental_groups = NULL;
87 /* Message to display at the top of each filer window */
88 const gchar *show_user_message = NULL;
90 int home_dir_len;
91 const char *home_dir, *app_dir;
93 GtkTooltips *tooltips = NULL;
95 #define COPYING \
96 N_("Copyright (C) 2005 Thomas Leonard.\n" \
97 "ROX-Filer comes with ABSOLUTELY NO WARRANTY,\n" \
98 "to the extent permitted by law.\n" \
99 "You may redistribute copies of ROX-Filer\n" \
100 "under the terms of the GNU General Public License.\n" \
101 "For more information about these matters, " \
102 "see the file named COPYING.\n")
104 #ifdef HAVE_GETOPT_LONG
105 # define USAGE N_("Try `ROX-Filer/AppRun --help' for more information.\n")
106 # define SHORT_ONLY_WARNING ""
107 #else
108 # define USAGE N_("Try `ROX-Filer/AppRun -h' for more information.\n")
109 # define SHORT_ONLY_WARNING \
110 _("NOTE: Your system does not support long options - \n" \
111 "you must use the short versions instead.\n\n")
112 #endif
114 #define BUGS_TO "<rox-devel@lists.sourceforge.net>"
116 #define HELP N_("Usage: ROX-Filer/AppRun [OPTION]... [FILE]...\n" \
117 "Open each directory or file listed, or the current working\n" \
118 "directory if no arguments are given.\n\n" \
119 " -b, --border=PANEL open PANEL as a border panel\n" \
120 " -b, --bottom=PANEL open PAN as a bottom-edge panel\n" \
121 " -c, --client-id=ID used for session management\n" \
122 " -d, --dir=DIR open DIR as directory (not application)\n" \
123 " -D, --close=DIR close DIR and its subdirectories\n" \
124 " -h, --help display this help and exit\n" \
125 " -l, --left=PANEL open PAN as a left-edge panel\n" \
126 " -m, --mime-type=FILE print MIME type of FILE and exit\n" \
127 " -n, --new start new copy; for debugging the filer\n" \
128 " -p, --pinboard=PIN use pinboard PIN as the pinboard\n" \
129 " -r, --right=PANEL open PAN as a right-edge panel\n" \
130 " -R, --RPC invoke method call read from stdin\n" \
131 " -s, --show=FILE open a directory showing FILE\n" \
132 " -S, --rox-session use default panel and pinboard options, and -n\n"\
133 " -t, --top=PANEL open PANEL as a top-edge panel\n" \
134 " -u, --user show user name in each window \n" \
135 " -v, --version display the version information and exit\n" \
136 " -x, --examine=FILE FILE has changed - re-examine it\n" \
137 "\nReport bugs to " BUGS_TO ".\n" \
138 "Home page (including updated versions): http://rox.sourceforge.net/\n")
140 #define SHORT_OPS "c:d:t:b:l:r:B:op:s:hvnux:m:D:RS"
142 #ifdef HAVE_GETOPT_LONG
143 static struct option long_opts[] =
145 {"dir", 1, NULL, 'd'},
146 {"top", 1, NULL, 't'},
147 {"bottom", 1, NULL, 'B'},
148 {"border", 1, NULL, 'b'},
149 {"left", 1, NULL, 'l'},
150 {"override", 0, NULL, 'o'},
151 {"pinboard", 1, NULL, 'p'},
152 {"right", 1, NULL, 'r'},
153 {"help", 0, NULL, 'h'},
154 {"version", 0, NULL, 'v'},
155 {"user", 0, NULL, 'u'},
156 {"new", 0, NULL, 'n'},
157 {"RPC", 0, NULL, 'R'},
158 {"show", 1, NULL, 's'},
159 {"rox-session", 0, NULL, 'S'},
160 {"examine", 1, NULL, 'x'},
161 {"close", 1, NULL, 'D'},
162 {"mime-type", 1, NULL, 'm'},
163 {"client-id", 1, NULL, 'c'},
164 {NULL, 0, NULL, 0},
166 #endif
168 /* Take control of panels away from WM? */
169 Option o_override_redirect;
171 /* Options used when we are called by ROX-Session */
172 enum {
173 SESSION_PANEL_ONLY,
174 SESSION_PINBOARD_ONLY,
175 SESSION_BOTH,
177 Option o_session_panel_or_pin;
178 Option o_session_panel_name;
179 Option o_session_pinboard_name;
181 /* Always start a new filer, even if one seems to be already running */
182 gboolean new_copy = FALSE;
184 /* Maps child PIDs to Callback pointers */
185 static GHashTable *death_callbacks = NULL;
186 static gboolean child_died_flag = FALSE;
188 Option o_dnd_no_hostnames;
190 /* Static prototypes */
191 static void show_features(void);
192 static void soap_add(xmlNodePtr body,
193 xmlChar *function,
194 const xmlChar *arg1_name, const xmlChar *arg1_value,
195 const xmlChar *arg2_name, const xmlChar *arg2_value);
196 static void child_died(int signum);
197 static void child_died_callback(void);
198 static void wake_up_cb(gpointer data, gint source, GdkInputCondition condition);
199 static void xrandr_size_change(GdkScreen *screen, gpointer user_data);
200 static void add_default_panel_and_pinboard(xmlNodePtr body);
202 /****************************************************************
203 * EXTERNAL INTERFACE *
204 ****************************************************************/
206 /* The value that goes with an option */
207 #define VALUE (*optarg == '=' ? optarg + 1 : optarg)
209 static int rox_x_error(Display *display, XErrorEvent *error)
211 gchar buf[64];
213 XGetErrorText(display, error->error_code, buf, 63);
215 g_warning ("The program '%s' received an X Window System error.\n"
216 "This probably reflects a bug in the program.\n"
217 "The error was '%s'.\n"
218 " (Details: serial %ld error_code %d request_code %d minor_code %d)\n"
219 " (Note to programmers: normally, X errors are reported asynchronously;\n"
220 " that is, you will receive the error a while after causing it.\n"
221 " To debug your program, run it with the --sync command line\n"
222 " option to change this behavior. You can then get a meaningful\n"
223 " backtrace from your debugger.)",
224 g_get_prgname (),
225 buf,
226 error->serial,
227 error->error_code,
228 error->request_code,
229 error->minor_code);
231 /* Try to cope with BadWindow errors */
232 if (error->error_code == 3)
234 static time_t last_error = 0;
235 time_t now;
236 now = time(NULL);
238 if (last_error + 5 > now)
239 abort(); /* Errors coming too fast... */
241 last_error = now;
243 delayed_error(_("We got a BadWindow error from the X server. "
244 "This might be due to this GTK bug (during drag-and-drop?):\n"
245 "http://bugzilla.gnome.org/show_bug.cgi?id=152151\n"
246 "Trying to continue..."));
247 return 0;
250 abort();
253 /* Parses the command-line to work out what the user wants to do.
254 * Tries to send the request to an already-running copy of the filer.
255 * If that fails, it initialises all the other modules and executes the
256 * request itself.
258 int main(int argc, char **argv)
260 int wakeup_pipe[2];
261 int i;
262 struct sigaction act;
263 guchar *tmp, *dir;
264 gchar *client_id = NULL;
265 gboolean show_user = FALSE;
266 xmlDocPtr rpc, soap_rpc = NULL, reply;
267 xmlNodePtr body;
269 home_dir = g_get_home_dir();
270 home_dir_len = strlen(home_dir);
271 app_dir = g_strdup(getenv("APP_DIR"));
273 /* Get internationalisation up and running. This requires the
274 * choices system, to discover the user's preferred language.
276 choices_init();
277 options_init();
278 i18n_init();
279 xtype_init();
281 #ifdef HAVE_GNOME_VFS
282 if (!gnome_vfs_init())
283 g_warning("Failed to init gnomevfs!");
284 #endif
286 if (!app_dir)
288 g_warning("APP_DIR environment variable was unset!\n"
289 "Use the AppRun script to invoke ROX-Filer...\n");
290 app_dir = g_get_current_dir();
292 #ifdef HAVE_UNSETENV
293 else
295 /* Don't pass it on to our child processes... */
296 unsetenv("APP_DIR");
298 #endif
300 /* Sometimes we want to take special action when a child
301 * process exits. This hash table is used to convert the
302 * child's PID to the callback function.
304 death_callbacks = g_hash_table_new(NULL, NULL);
306 /* Find out some information about ourself */
307 euid = geteuid();
308 egid = getegid();
309 ngroups = getgroups(0, NULL);
310 if (ngroups < 0)
311 ngroups = 0;
312 else if (ngroups > 0)
314 supplemental_groups = g_malloc(sizeof(gid_t) * ngroups);
315 getgroups(ngroups, supplemental_groups);
318 if (argc == 2 && strcmp(argv[1], "-v") == 0)
320 /* This is used by install.sh to test if the filer
321 * compiled OK. Do this test before gtk_init so that
322 * we don't need an X server to install.
324 g_print("ROX-Filer %s\n", VERSION);
325 g_print(_(COPYING));
326 show_features();
327 return EXIT_SUCCESS;
330 option_add_int(&o_override_redirect, "override_redirect", FALSE);
332 option_add_int(&o_session_panel_or_pin, "session_panel_or_pin",
333 SESSION_BOTH);
334 option_add_string(&o_session_panel_name, "session_panel_name",
335 "Default");
336 option_add_string(&o_session_pinboard_name, "session_pinboard_name",
337 "Default");
339 /* The idea here is to convert the command-line arguments
340 * into a SOAP RPC.
341 * We attempt to invoke the call on an already-running copy of
342 * the filer if possible, or execute it ourselves if not.
344 rpc = soap_new(&body);
346 /* Note: must do this before checking our options,
347 * otherwise we report an error for Gtk's options.
349 gtk_init(&argc, &argv);
350 /* Set a default style for the collection widget */
351 gtk_rc_parse_string("style \"rox-default-collection-style\" {\n"
352 " bg[NORMAL] = \"#f3f3f3\"\n"
353 " fg[NORMAL] = \"#000000\"\n"
354 " bg[INSENSITIVE] = \"#bfbfbf\"\n"
355 " fg[INSENSITIVE] = \"#000000\"\n"
356 "}\n"
357 "style \"rox-default-pinboard-style\" {\n"
358 " bg[NORMAL] = \"#666666\"\n"
359 "}\n"
360 "widget \"rox-pinboard\" style : gtk "
361 "\"rox-default-pinboard-style\"\n"
363 "class \"Collection\" style : gtk "
364 "\"rox-default-collection-style\"\n");
366 g_signal_connect(gdk_screen_get_default(), "size-changed",
367 G_CALLBACK(xrandr_size_change), NULL);
369 /* Process each option in turn */
370 while (1)
372 int c;
373 #ifdef HAVE_GETOPT_LONG
374 int long_index;
375 c = getopt_long(argc, argv, SHORT_OPS,
376 long_opts, &long_index);
377 #else
378 c = getopt(argc, argv, SHORT_OPS);
379 #endif
381 if (c == EOF)
382 break; /* No more options */
384 switch (c)
386 case 'n':
387 new_copy = TRUE;
388 break;
389 case 'o':
390 info_message(_("The -o argument is no longer "
391 "used. You can turn on override "
392 "redirect from the Options box "
393 "instead."));
394 break;
395 case 'v':
396 g_print("ROX-Filer %s\n", VERSION);
397 g_print("%s", _(COPYING));
398 show_features();
399 return EXIT_SUCCESS;
400 case 'h':
401 g_print("%s", _(HELP));
402 g_print("%s", _(SHORT_ONLY_WARNING));
403 return EXIT_SUCCESS;
404 case 'D':
405 case 'd':
406 case 'x':
407 /* Argument is a path */
408 if (c == 'd' && VALUE[0] == '/')
409 tmp = g_strdup(VALUE);
410 else
411 tmp = pathdup(VALUE);
412 soap_add(body,
413 c == 'D' ? "CloseDir" :
414 c == 'd' ? "OpenDir" :
415 c == 'x' ? "Examine" : "Unknown",
416 "Filename", tmp,
417 NULL, NULL);
418 g_free(tmp);
419 break;
420 case 's':
421 tmp = g_path_get_dirname(VALUE);
423 if (tmp[0] == '/')
424 dir = NULL;
425 else
426 dir = pathdup(tmp);
428 soap_add(body, "Show",
429 "Directory", dir ? dir : tmp,
430 "Leafname", g_basename(VALUE));
431 g_free(tmp);
432 g_free(dir);
433 break;
434 case 'l':
435 case 'r':
436 case 't':
437 case 'B':
438 /* Argument is a leaf (or starts with /) */
439 soap_add(body, "Panel", "Name", VALUE,
440 "Side", c == 'l' ? "Left" :
441 c == 'r' ? "Right" :
442 c == 't' ? "Top" :
443 c == 'B' ? "Bottom" :
444 "Unkown");
445 break;
446 case 'b':
447 /* Argument is a leaf (or starts with /) */
448 if (*VALUE)
449 soap_add(body, "Panel", "Name", VALUE,
450 NULL, NULL);
451 else
452 soap_add(body, "Panel",
453 "Side", "Bottom",
454 NULL, NULL);
455 break;
456 case 'p':
457 soap_add(body, "Pinboard",
458 "Name", VALUE, NULL, NULL);
459 break;
460 case 'u':
461 show_user = TRUE;
462 break;
463 case 'm':
465 MIME_type *type;
466 type_init();
467 diritem_init();
468 pixmaps_init();
469 type = type_get_type(VALUE);
470 printf("%s/%s\n", type->media_type,
471 type->subtype);
472 return EXIT_SUCCESS;
474 case 'c':
475 client_id = g_strdup(VALUE);
476 break;
477 case 'R':
478 soap_rpc = xmlParseFile("-");
479 if (!soap_rpc)
480 g_error("Invalid XML in RPC");
481 break;
483 case 'S':
484 new_copy = TRUE;
485 add_default_panel_and_pinboard(body);
486 break;
488 default:
489 printf(_(USAGE));
490 return EXIT_FAILURE;
494 tooltips = gtk_tooltips_new();
496 if (euid == 0 || show_user)
497 show_user_message = g_strdup_printf(_("Running as user '%s'"),
498 user_name(euid));
500 /* Add each remaining (non-option) argument to the list of files
501 * to run.
503 i = optind;
504 while (i < argc)
506 tmp = pathdup(argv[i++]);
508 soap_add(body, "Run", "Filename", tmp, NULL, NULL);
510 g_free(tmp);
513 if (soap_rpc)
515 if (body->xmlChildrenNode)
516 g_error("Can't use -R with other options - sorry!");
517 xmlFreeDoc(rpc);
518 body = NULL;
519 rpc = soap_rpc;
521 else if (!body->xmlChildrenNode)
523 /* The user didn't request any action. Open the current
524 * directory.
526 guchar *dir;
528 dir = g_get_current_dir();
529 soap_add(body, "OpenDir", "Filename", dir, NULL, NULL);
530 g_free(dir);
533 option_add_int(&o_dnd_no_hostnames, "dnd_no_hostnames", 1);
535 /* Try to send the request to an already-running copy of the filer */
536 gui_support_init();
537 if (remote_init(rpc, new_copy))
538 return EXIT_SUCCESS; /* It worked - exit */
540 /* Put ourselves into the background (so 'rox' always works the
541 * same, whether we're already running or not).
542 * Not for -n, though (helps when debugging).
544 if (!new_copy)
546 int fd;
547 pid_t child;
549 child = fork();
550 if (child > 0)
551 _exit(0); /* Parent exits */
552 /* Otherwise we're the child (or an error occurred - ignore
553 * it!).
556 /* Close stdin. We don't need it, and it can cause problems if
557 * a child process wants a password, etc...
559 fd = open("/dev/null", O_RDONLY);
560 if (fd > 0)
562 close(0);
563 dup2(fd, 0);
564 close(fd);
568 /* Initialize the rest of the filer... */
570 pixmaps_init();
572 dnd_init();
573 bind_init();
574 dir_init();
575 diritem_init();
576 menu_init();
577 minibuffer_init();
578 filer_init();
579 toolbar_init();
580 display_init();
581 mount_init();
582 type_init();
583 action_init();
585 pinboard_init();
586 panel_init();
588 /* Let everyone update */
589 options_notify();
591 /* When we get a signal, we can't do much right then. Instead,
592 * we send a char down this pipe, which causes the main loop to
593 * deal with the event next time we're idle.
595 pipe(wakeup_pipe);
596 close_on_exec(wakeup_pipe[0], TRUE);
597 close_on_exec(wakeup_pipe[1], TRUE);
598 gdk_input_add_full(wakeup_pipe[0], GDK_INPUT_READ, wake_up_cb,
599 NULL, NULL);
600 to_wakeup_pipe = wakeup_pipe[1];
602 /* If the pipe is full then we're going to get woken up anyway... */
603 set_blocking(to_wakeup_pipe, FALSE);
605 /* Let child processes die */
606 act.sa_handler = child_died;
607 sigemptyset(&act.sa_mask);
608 act.sa_flags = SA_NOCLDSTOP;
609 sigaction(SIGCHLD, &act, NULL);
611 /* Ignore SIGPIPE - check for EPIPE errors instead */
612 act.sa_handler = SIG_IGN;
613 sigemptyset(&act.sa_mask);
614 act.sa_flags = 0;
615 sigaction(SIGPIPE, &act, NULL);
617 /* Set up session managament if available */
618 session_init(client_id);
619 g_free(client_id);
621 /* See if we need to migrate the Choices directories*/
622 choices_migrate();
624 /* Finally, execute the request */
625 reply = run_soap(rpc);
626 xmlFreeDoc(rpc);
627 if (reply)
629 /* Write the result, if any, to stdout */
630 save_xml_file(reply, "-");
631 xmlFreeDoc(reply);
634 /* Try to find out why we crash with GTK 2.4 */
635 XSetErrorHandler(rox_x_error);
637 /* Enter the main loop, processing events until all our windows
638 * are closed.
640 if (number_of_windows > 0)
641 gtk_main();
643 return EXIT_SUCCESS;
646 /* Register a function to be called when process number 'child' dies. */
647 void on_child_death(gint child, CallbackFn callback, gpointer data)
649 Callback *cb;
651 g_return_if_fail(callback != NULL);
653 cb = g_new(Callback, 1);
655 cb->callback = callback;
656 cb->data = data;
658 g_hash_table_insert(death_callbacks, GINT_TO_POINTER(child), cb);
661 void one_less_window(void)
663 if (--number_of_windows < 1)
664 gtk_main_quit();
667 /****************************************************************
668 * INTERNAL FUNCTIONS *
669 ****************************************************************/
671 static void show_features(void)
673 g_print("\n");
674 g_print(_("Compiled with GTK version %s\n"), GTK_VERSION);
675 g_print(_("Running with GTK version %d.%d.%d\n"),
676 gtk_major_version,
677 gtk_minor_version,
678 gtk_micro_version);
679 g_print("\n-- %s --\n\n", _("features set at compile time"));
680 g_print("%s... %s\n", _("Large File Support"),
681 #ifdef LARGE_FILE_SUPPORT
682 _("Yes")
683 #else
684 _("No")
685 #endif
687 g_print("%s... %s\n", _("GNOME-VFS library"),
688 # ifdef HAVE_GNOME_VFS
689 _("Yes")
690 # else
691 _("No (need 2.8.0 or later)")
692 # endif
694 g_print("%s... %s\n", _("Dnotify support"),
695 #ifdef USE_DNOTIFY
696 _("Yes")
697 #else
698 _("No")
699 #endif
701 g_print("%s... %s\n", _("Binary compatibility"),
702 #if defined(HAVE_APSYMBOLS_H) || defined(HAVE_APBUILD_APSYMBOLS_H)
703 _("Yes (can run with older glibc versions)")
704 #else
705 _("No (apsymbols.h not found)")
706 #endif
710 static void soap_add(xmlNodePtr body,
711 xmlChar *function,
712 const xmlChar *arg1_name, const xmlChar *arg1_value,
713 const xmlChar *arg2_name, const xmlChar *arg2_value)
715 xmlNodePtr node;
716 xmlNs *rox;
718 rox = xmlSearchNsByHref(body->doc, body, ROX_NS);
720 node = xmlNewChild(body, rox, function, NULL);
722 if (arg1_name)
724 xmlNewTextChild(node, rox, arg1_name, arg1_value);
725 if (arg2_name)
726 xmlNewTextChild(node, rox, arg2_name, arg2_value);
730 /* This is called as a signal handler; simply ensures that
731 * child_died_callback() will get called later.
733 static void child_died(int signum)
735 child_died_flag = TRUE;
736 write(to_wakeup_pipe, "\0", 1); /* Wake up! */
739 static void child_died_callback(void)
741 int status;
742 gint child;
744 child_died_flag = FALSE;
746 /* Find out which children exited and allow them to die */
749 Callback *cb;
751 child = waitpid(-1, &status, WNOHANG);
753 if (child == 0 || child == -1)
754 return;
756 cb = g_hash_table_lookup(death_callbacks,
757 GINT_TO_POINTER(child));
758 if (cb)
760 cb->callback(cb->data);
761 g_hash_table_remove(death_callbacks,
762 GINT_TO_POINTER(child));
765 } while (1);
768 #define BUFLEN 40
769 /* When data is written to_wakeup_pipe, this gets called from the event
770 * loop some time later. Useful for getting out of signal handlers, etc.
772 static void wake_up_cb(gpointer data, gint source, GdkInputCondition condition)
774 char buf[BUFLEN];
776 read(source, buf, BUFLEN);
778 if (child_died_flag)
779 child_died_callback();
780 #ifdef USE_DNOTIFY
781 if (dnotify_wakeup_flag)
782 dnotify_wakeup();
783 #endif
786 static void xrandr_size_change(GdkScreen *screen, gpointer user_data)
788 gui_store_screen_geometry(screen);
790 panel_update_size();
791 pinboard_update_size();
794 static void add_default_panel_and_pinboard(xmlNodePtr body)
796 char *name;
798 if (o_session_panel_or_pin.int_value != SESSION_PANEL_ONLY)
800 name=o_session_pinboard_name.value;
801 if (!name[0])
802 name="Default";
803 soap_add(body, "Pinboard","Name", name, NULL, NULL);
806 if (o_session_panel_or_pin.int_value != SESSION_PINBOARD_ONLY)
808 name = o_session_panel_name.value;
809 if (!name[0])
810 name="Default";
812 soap_add(body, "Panel", "Name", name, NULL, NULL);