Commit graph

11 commits

Author SHA1 Message Date
Mathieu Lacage
03ec36f772 fix entity declaration. 2000-10-20 20:49:02 +00:00
Mathieu Lacage
310d49e11d help system wants a special file name 2000-10-20 19:15:35 +00:00
Mathieu Lacage
61b85f7dd4 More ids in sects.
2000-10-20  Mathieu Lacage  <mathieu@eazel.com>

	More ids in sects.
	* user-guide/C/sgml/chapter-2.sgml:
	* user-guide/C/sgml/chapter-3.sgml:
2000-10-20 18:43:23 +00:00
Mathieu Lacage
e62852181d Add sect ids and big caps entities
2000-10-20  Mathieu Lacage  <mathieu@eazel.com>

	Add sect ids and big caps entities
	* user-guide/C/sgml/chapter-1.sgml:
	* user-guide/C/sgml/install.sgml:
	* user-guide/C/sgml/intro.sgml:
	* user-guide/C/sgml/manual.sgml:
2000-10-20 18:01:44 +00:00
Mathieu Lacage
1e31cdad26 Add screenshot images.
2000-10-20  Mathieu Lacage  <mathieu@eazel.com>

	Add screenshot images.
	* user-guide/C/sgml/chapter-1.sgml:
	* user-guide/C/sgml/chapter-2.sgml:
	* user-guide/C/sgml/chapter-3.sgml:
	* user-guide/C/sgml/install.sgml:
2000-10-20 05:40:49 +00:00
Mathieu Lacage
e5fc29f3c2 change a screeenshot name. 2000-10-20 05:33:32 +00:00
Mathieu Lacage
5bc7df8477 removing those useless files now. NOW. I HATE THEM. I HATE EVERYONE. - those were his last words. He was sentenced to death because of Eazel's new company policy: Always end your day conversation with "Have a nice day". <ramiro@eazel.com> - is this politicallly correct ? <mathieu@eazel.com> - who cares ? <me> 2000-10-20 01:27:54 +00:00
Mathieu Lacage
98cbb36433 modify to install sgml instead of html add add
2000-10-19  Mathieu Lacage  <mathieu@eazel.com>

	* user-guide/C/Makefile.am: modify to install sgml
	instead of html
	* user-guide/C/img/.cvsignore: add
	* user-guide/C/sgml/.cvsignore: add

	sgml files.
	* user-guide/C/sgml/chapter-1.sgml:
	* user-guide/C/sgml/chapter-2.sgml:
	* user-guide/C/sgml/chapter-3.sgml:
	* user-guide/C/sgml/install.sgml:
	* user-guide/C/sgml/intro.sgml:
	* user-guide/C/sgml/manual.sgml:
	* user-guide/C/sgml/model.sgml:

	screenshots....
	* user-guide/C/img/*.png
2000-10-20 01:00:21 +00:00
Darin Adler
5969517510 Skip the macros directory.
* check-FIXME.pl: Skip the macros directory.

	* libnautilus-extensions/nautilus-directory-async.c:
	(async_job_start), (async_job_end), (get_one_value_callback),
	(get_one_value), (async_job_wake_up): Add new calls that limit the
	number of async. jobs done at once.
	(directory_count_cancel), (deep_count_cancel), (mime_list_cancel),
	(top_left_cancel), (activation_uri_cancel), (file_info_cancel),
	(metafile_read_cancel), (metafile_read_done): End the async. job
	if it's cancelled.
	(metafile_read_try_public_metafile), (metafile_read_restart):
	Changed the old metafile_read_start function's name to
	metafile_read_restart since it's used on the second try.
	(is_anyone_waiting_for_metafile), (metafile_read_start): Move the
	logic about whether to start reading into this function to make it
	more like the other jobs. Also start the async. job.
	(file_list_cancel): Changed name for consistency and end the
	async. job.
	(directory_count_callback): End the async. job.
	(start_monitoring_file_list): Start the async job.
	(file_list_start): Moved logic about when to start loading the file
	list into this function to make it more like other jobs.
	(directory_count_start): Renamed to make it more like other jobs
	and start the async. job.
	(deep_count_callback): End the async. job.
	(deep_count_start): Start the async. job.
	(mime_list_callback): End the async. job.
	(mime_list_start): Start the async. job.
	(top_left_read_done): End the async. job.
	(top_left_start): Start the async. job.
	(get_info_callback): End the async. job.
	(file_info_start): Start the async. job.
	(activation_uri_done): End the async. job.
	(activation_uri_start): Start the async. job.
	(nautilus_directory_async_state_changed): Wake up directories that
	may have breathing from from all the cancellation.
	(nautilus_directory_cancel): Moved the cancelling code down here,
	remove a directory from the waiting list when it goes, and also
	wake up directories that may have breathing room from all the
	cancellation.

	* libnautilus-extensions/nautilus-directory-private.h: Remove
	request_read_metafile from the header.

	* libnautilus-extensions/nautilus-directory.c:
	(nautilus_directory_destroy): Eliminate the call to
	nautilus_directory_stop_monitoring_file_list since that's now
	handled by nautilus_directory_cancel.

	* libnautilus-extensions/nautilus-file-private.h: Removed the
	got_*_mime_type variables since they are the same as *_mime_type
	!= NULL.

	* libnautilus-extensions/nautilus-file.c: (destroy): Get rid of
	checks for NULL before calling g_free.
	(nautilus_file_update_info): Replace == FALSE with !. Simplified
	some tortuous logic by getting rid of checks for NULL that weren't
	needed and booleans that weren't needed.
	(get_either_mime_type): Add helper to make it easier to avoid
	confusion between default and slow MIME type.
	(nautilus_file_compare_by_type): Use get_either_mime_type so it
	works when default MIME type is NULL.
	(nautilus_file_get_type_as_string): Use get_either_mime_type so it
	works when default MIME type is NULL.
	(nautilus_file_get_slow_mime_type): Simplified logic. Also got rid
	of "application/nonono" which was left here by accident.
	(nautilus_file_get_mime_type): Simplified logic and use
	get_either_mime_type to share code.
	(nautilus_file_is_mime_type): Simplified logic and use
	get_either_mime_type to share code.

	* src/file-manager/fm-directory-view.c: Format tweaks.

	* user-guide/C/Makefile.am: Not so much echoing as we install.
2000-10-17 21:50:19 +00:00
Darin Adler
bcde89c9ce Fixed storage leak. (nautilus_bonobo_get_hidden): Fixed bug where an item
* libnautilus-extensions/nautilus-bonobo-extensions.c:
	(nautilus_bonobo_get_label): Fixed storage leak.
	(nautilus_bonobo_get_hidden): Fixed bug where an item without a
	hidden property would say it was hidden, but the default is to not
	be hidden. Also fixed a storage leak.
	(nautilus_bonobo_add_menu_item), (nautilus_bonobo_add_submenu):
	Added code to encode the label. This is due to the hack added to
	bonobo so we can handle 8-bit characters in labels without
	updgrading to gnome-xml 2.
	(nautilus_bonobo_set_icon): Removed the code to get the old value
	of the icon before setting the new value.
	Also improved return_if_fail checks a bit. If we're going to have
	them, they should check the type, not just != NULL.

	* libnautilus-extensions/nautilus-bonobo-extensions.h: Fixed the
	formatting and removed the old code in ifdef UIH.

	* po/XMLFILES.in: Added a bunch of XML files that will one-day
	need localization.

	* src/file-manager/fm-icon-view.c: (update_layout_menus): Set up
	the toggle state using the command rather than the menu item.
	* src/nautilus-shell-ui.xml: First cut at making the location
	bar expand rather than
	* src/nautilus-window.c: (nautilus_window_destroy):

	* components/services/install/command-line/Makefile.am: Added a
	bunch of unused files to this makefile to quiet down the
	check-headers-in-Makefile.pl script. This is the one directory
	where we had dead C code that's not mentioned in the makefile.
2000-10-11 17:52:33 +00:00
Mathieu Lacage
fcf7855410 fix small buggy with fix from ramiro: make sure mozilla loads local fiels
2000-10-10  Mathieu Lacage  <mathieu@eazel.com>

	fix small buggy with fix from ramiro: make sure mozilla
	loads local fiels through its own file library, not gnome-vfs.
	* components/mozilla/nautilus-mozilla-content-view.c:
	(mozilla_is_uri_handled_by_mozilla):

	autoconf magic for the documentation
	* configure.in:
	* Makefile.am:
	* user-guide/C/Makefile.am:
	* user-guide/Makefile.am:

	actual html/jpg/css documentation.
	* user-guide/C/html/*:
2000-10-11 03:24:05 +00:00