cvs server: Diffing . cvs server: Diffing docs Index: docs/FAQ.html =================================================================== RCS file: /cvsroot/scigraphica/sg/docs/FAQ.html,v retrieving revision 1.3 retrieving revision 1.4 diff -r1.3 -r1.4 8c8 < CONTENT="Modular DocBook HTML Stylesheet Version 1.64 --- > CONTENT="Modular DocBook HTML Stylesheet Version 1.72 171a172,199 >

> >
CLASS="SECT2" > >

CLASS="SECT2" > > NAME="AEN32" > >Why do some projects get saved as zero-sized files? Why do some project files open as if they were blank? >

>

> SciGraphica currently has a problem with paths that contain spaces eg >

> BORDER="0" > BGCOLOR="#E0E0E0" > WIDTH="100%" > > > > >
>
 CLASS="PROGRAMLISTING"
> >/home/user/My Work/Analysis/plots.sg
>    
>
>

> Saving a file to such a path results in a zero-sized file. Opening files from such a path results in a blank project being loaded. For the time being we recommend not using spaces in directory or file names. This will hopefully be fixed in versions newer than 0.8.0. Index: docs/FAQ.lyx =================================================================== RCS file: /cvsroot/scigraphica/sg/docs/FAQ.lyx,v retrieving revision 1.5 retrieving revision 1.6 diff -r1.5 -r1.6 116a117,132 > \layout Subsection > > Why do some projects get saved as zero-sized files? Why do some project > files open as if they were blank? > \layout Standard > > SciGraphica currently has a problem with paths that contain spaces eg > \layout Code > > /home/user/My Work/Analysis/plots.sg > \layout Standard > > Saving a file to such a path results in a zero-sized file. > Opening files from such a path results in a blank project being loaded. > For the time being we recommend not using spaces in directory or file names. > This will hopefully be fixed in versions newer than 0.8.0. Index: docs/FAQ.sgml =================================================================== RCS file: /cvsroot/scigraphica/sg/docs/FAQ.sgml,v retrieving revision 1.3 retrieving revision 1.4 diff -r1.3 -r1.4 81a82,95 > > > Why do some projects get saved as zero-sized files? Why do some project files open as if they were blank? > > > SciGraphica currently has a problem with paths that contain spaces eg > > > ]]> > > Saving a file to such a path results in a zero-sized file. Opening files from such a path results in a blank project being loaded. For the time being we recommend not using spaces in directory or file names. This will hopefully be fixed in versions newer than 0.8.0. > > cvs server: Diffing docs/FAQ-developers cvs server: Diffing docs/figures cvs server: Diffing examples cvs server: Diffing intl cvs server: Diffing macros cvs server: Diffing pixmaps cvs server: Diffing po cvs server: Diffing src Index: src/sg_misc.c =================================================================== RCS file: /cvsroot/scigraphica/sg/src/sg_misc.c,v retrieving revision 0.17 retrieving revision 0.18 diff -r0.17 -r0.18 200c200 < sg_color_combo_changed(GtkColorCombo *combo, gint selection, gchar *name) --- > sg_color_combo_changed(GtkColorCombo *combo, gint selection, GdkColor *color) 204d203 < GdkColor color; 209,211c208 < gdk_color_parse(name, &color); < gdk_color_alloc(colormap, &color); < gdk_gc_set_foreground(gc, &color); --- > gdk_gc_set_foreground(gc, color); 228d224 < gchar *color_name; 232a229 > colormap = gdk_colormap_get_system(); 235c232 < gdk_colormap_get_system(), --- > colormap, 245d241 < colormap = gdk_colormap_get_system(); Index: src/sg_misc.h =================================================================== RCS file: /cvsroot/scigraphica/sg/src/sg_misc.h,v retrieving revision 0.7 retrieving revision 0.8 diff -r0.7 -r0.8 19c19 < gint selection, gchar *name); --- > gint selection, GdkColor *color); Index: src/sg_worksheet.c =================================================================== RCS file: /cvsroot/scigraphica/sg/src/sg_worksheet.c,v retrieving revision 0.115 retrieving revision 0.116 diff -r0.115 -r0.116 119,120c119,120 < GTK_SHEET_UNSET_FLAGS(sheet, GTK_SHEET_JUSTIFY_ENTRY); < GTK_SHEET_SET_FLAGS(sheet, GTK_SHEET_ROW_FROZEN); --- > gtk_sheet_set_justify_entry(sheet, FALSE); > gtk_sheet_rows_set_resizable(sheet, FALSE); 357c357 < GTK_SHEET_UNSET_FLAGS(sheet, GTK_SHEET_IN_SELECTION|GTK_SHEET_IN_XDRAG|GTK_SHEET_IN_YDRAG); --- > sheet->flags = 0; cvs server: Diffing src/python cvs server: Diffing zvt