mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
fixed bug 3412, about.html in novice home directory misaligned with
fixed bug 3412, about.html in novice home directory misaligned with audience, by deleting it improved property browser item layout by making the labels line up in the table.
This commit is contained in:
parent
835a39076a
commit
72ac788639
5 changed files with 17 additions and 62 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2000-10-05 Andy Hertzfeld <set EMAIL_ADDRESS environment variable>
|
||||
|
||||
* data/top/.nautilus-metafile.xml:
|
||||
* data/top/About.html:
|
||||
* data/top/Makefile.am:
|
||||
fixed bug 3412, about.html in novice home directory misaligned
|
||||
with audience, by deleting it
|
||||
|
||||
* src/nautilus-property-browser.c: (make_property_tile):
|
||||
improved property browser item layout by making the labels
|
||||
line up in the table.
|
||||
|
||||
2000-10-04 Ramiro Estrugo <ramiro@eazel.com>
|
||||
|
||||
* src/nautilus-profiler.c:
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0"?>
|
||||
<DIRECTORY ICONS_AUTO_LAYOUT="false" BACKGROUND_COLOR="rgb:FFFF/FFFF/FFFF-rgb:FFFF/9999/3333:h" ICONS_ZOOM_LEVEL="3" SIDEBAR_BUTTONS="button=Edit Links...;script=#linksets">
|
||||
<FILE NAME="About.html" ICON_POSITION="532,231" CUSTOM_ICON="nautilus-logo"/>
|
||||
<FILE NAME="Computer.link" ICON_POSITION="251,216"/>
|
||||
<FILE NAME="Gnumeric.link" ICON_POSITION="437,370"/>
|
||||
<FILE NAME="Netscape.link" ICON_POSITION="363,372"/>
|
||||
|
|
|
@ -1,55 +0,0 @@
|
|||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>About Nautilus</TITLE></HEAD>
|
||||
|
||||
<BODY BGCOLOR=#FFFFFF>
|
||||
<B><U><FONT FACE="Times" SIZE=5><P ALIGN="CENTER">About Nautilus</P>
|
||||
</B></U></FONT><FONT FACE="Times">
|
||||
<P> </P>
|
||||
</FONT><FONT FACE="Times" SIZE=4><P>Nautilus is an easy to use graphical shell for GNOME that integrates graphical file management, web browsing, system management and more using a sophisticated, extensible component architecture. </P>
|
||||
|
||||
<B><FONT FACE="Times" SIZE=4>
|
||||
Some of its most important features include:
|
||||
</B></FONT>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI>An innovative, next generation graphical file manager
|
||||
<LI>icons can be any size, and are individually resizable by the user
|
||||
<LI>zooming UI shows more detail at higher zoom levels
|
||||
<LI>uses file contents (images, text) to represent files
|
||||
<LI>user assignable file attributes are represented by graphical emblems
|
||||
<LI>a directory can control its own presentation by including a metafile or component
|
||||
<LI>content and attribute-based "search folders" frees users from the file hierarchy
|
||||
<LI>most documents are viewable directly from the shell via components
|
||||
<LI>Multiple user levels offer an optimized UI for both novice and expert users
|
||||
<LI>Easy end-user customization via a simple, drag and drop interface
|
||||
</UL>
|
||||
|
||||
<B><FONT FACE="Times" SIZE=4>
|
||||
Nautilus has a componentized architecture for unlimited extensibility:
|
||||
</B></FONT>
|
||||
|
||||
<UL>
|
||||
<LI>component architecture allows new functionality to be added on-the-fly
|
||||
<LI>framework is uri-based, like a web browser
|
||||
<LI>multiple content views available, based on protocol, MIME type and user preference
|
||||
<LI>meta-views to annotate content with descriptive info, and aid navigation
|
||||
<LI>extensible, virtual file system allows viewing inside tar archives, packages, etc
|
||||
<LI>Mozilla-based component for first-class web browsing
|
||||
</UL>
|
||||
|
||||
<B><FONT FACE="Times" SIZE=4>
|
||||
Nautilus is a platform for Internet-based system management services
|
||||
</B></FONT>
|
||||
|
||||
<UL>
|
||||
<LI>new services can be added at run-time via the component architecture
|
||||
<LI>encapsulates software and hardware configuration for service to use
|
||||
<LI>file-oriented services (back-up, synchronization)
|
||||
<LI>installation and configuration management services
|
||||
<LI>software update service
|
||||
</UL>
|
||||
|
||||
</FONT></BODY>
|
||||
</HTML>
|
|
@ -4,7 +4,6 @@ topdir = $(datadir)/nautilus/top
|
|||
|
||||
top_DATA = \
|
||||
.nautilus-metafile.xml \
|
||||
About.html \
|
||||
Computer \
|
||||
Services \
|
||||
$(NULL)
|
||||
|
|
|
@ -1404,18 +1404,18 @@ make_property_tile (NautilusPropertyBrowser *property_browser, GtkWidget *pixmap
|
|||
background = nautilus_get_widget_background (GTK_WIDGET (event_box));
|
||||
nautilus_background_set_color (background, BROWSER_BACKGROUND_COLOR);
|
||||
|
||||
gtk_widget_show (pixmap_widget);
|
||||
gtk_container_add(GTK_CONTAINER(event_box), pixmap_widget);
|
||||
gtk_box_pack_start(GTK_BOX(temp_vbox), event_box, FALSE, FALSE, 0);
|
||||
|
||||
if (label != NULL) {
|
||||
nautilus_buffered_widget_set_background_type (NAUTILUS_BUFFERED_WIDGET(label), NAUTILUS_BACKGROUND_SOLID);
|
||||
nautilus_buffered_widget_set_background_color
|
||||
(NAUTILUS_BUFFERED_WIDGET(label), NAUTILUS_RGB_COLOR_WHITE);
|
||||
|
||||
gtk_box_pack_start (GTK_BOX(temp_vbox), label, FALSE, FALSE, 0);
|
||||
gtk_box_pack_end (GTK_BOX(temp_vbox), label, FALSE, FALSE, 2);
|
||||
gtk_widget_show(label);
|
||||
}
|
||||
|
||||
gtk_widget_show (pixmap_widget);
|
||||
gtk_container_add (GTK_CONTAINER(event_box), pixmap_widget);
|
||||
gtk_box_pack_end (GTK_BOX(temp_vbox), event_box, FALSE, FALSE, 0);
|
||||
|
||||
gtk_object_set_user_data (GTK_OBJECT(event_box), property_browser);
|
||||
gtk_signal_connect_full
|
||||
|
|
Loading…
Reference in a new issue