=== gedit 2.19.2 ===

2007-07-03  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.19.2 released

2007-07-03  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/Makefile.am: added SubstitutionParser.py
	
2007-07-03  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	* plugins/snippets/snippets/SubstitutionParser.py:
	* plugins/snippets/snippets/Parser.py:
	* plugins/snippets/snippets/Snippet.py:
	* plugins/snippets/snippets/Placeholder.py:
	
	Added new regex placeholder type to snippets

2007-07-03  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-view.c:
	* plugins/snippets/snippets/Manager.py:

	Adapt to GtkSourceView smart-home-end renaming.

2007-07-03  Paolo Borelli  <pborelli@katamail.com>

	* plugins/externaltools/tools/functions.py:
	* plugins/externaltools/tools/manager.py:
	
	Fix a couple of problems in latest patch.

2007-07-02  Jesse van den Kieboom  <jesse@icecrew.nl>

	* bindings/python/Makefile.am:
	* bindings/python/gedit.defs:
	* bindings/python/gedit.override:
	
	added bindings for gedit-language-manager
	
	* plugins/snippets/snippets/Manager.py:
	* plugins/snippets/snippets/WindowHelper.py:
	
	use gtksourceview2 instead of gtksourceview1 and use new language
	manager bindings
	
	* plugins/externaltools/tools/functions.py:
	* plugins/externaltools/tools/manager.py:
	
	use new language manager bindings
	
2007-07-01  Paolo Borelli  <pborelli@katamail.com>

	* plugins/taglist/gedit-taglist-plugin-parser.c: look up
	tags in .gnome2/gedit/taglist beside the legacy
	.gedit-2/plugins/taglist.

2007-07-01  Paolo Borelli  <pborelli@katamail.com>

	* plugins/spell/gedit-spell-language-dialog.c:

	remove unused include.

	* gedit/dialogs/gedit-preferences-dialog.glade:
	* gedit/dialogs/gedit-encodings-dialog.glade:

	remove uneeded <requires lib="gnome">

2007-07-01  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-tab.c: allow to save as when in the 
	EXTERNALLY_MODIFIED_NOTIFICATION state. Fixes bug #439184.

2007-06-30  Christian Kirbach  <Christian.Kirbach@googlemail.com>

	* gedit/gedit-print.c:
	* gedit/gedit-session.c:
	* gedit/gedit-tab.c:
	Fix about 20 gcc4 compiler warnings.

2007-06-30  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/Helper.py: removed debug_print action which
	was accidentally committed

2007-06-30  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/: changed file names to more consistent ones
	(dropping the Snippet prefix). Created a new and improved parser for 
	snippets and abstracted it in Parser.py. Changed syntax of multiple
	default values for normal placeholders to: ${1:[def1,def2]} (was
	${1:def1:def2}) and changed system snippets accordingly. Changed syntax
	of python placeholder dependencies to $<[1,2]: return 'example'> (was
	$<1,2: return 'example'>) to be able to differentiate between
	dependencies and tabstops (which wasn't working before and thus made 
	python placeholders unusable in many cases). Fixed proper escaping in
	placeholders. Fixed python placeholders without dependencies or 
	tabstop (were deleted before). Fixes #441287. Fixes #444219.

2007-06-30  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/data/c++.xml: changed language id to C@43@@43@ 
	(fixes #449341). Patch by Alex Cornejo
	
2007-06-30  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/data/css.xml: fixed text-transform snippets (fixes 
	#451781), patch by Damian Peterson

2007-06-30  Paolo Borelli  <pborelli@katamail.com>

	* plugins/filebrowser/gedit-file-browser-plugin.c: use
	g_getenv instead of getenv. Fixes a warning noted by
	Christian Kirbach.

2007-06-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit-tab.[ch]: do not include gedit-print.h in the public
	gedit-tab header since gedit-print.h is not installed anymore.

2007-06-29  Paolo Borelli  <pborelli@katamail.com>

	* gedit-encodings.[ch]:

	Make gedit_encodings_copy just return the same pointer and
	gedit_encodings_free a noop: GeditEncoding is not a real 
	boxed type and the GeditEncoding object for a given encoding
	should always be the same pointer.
	While at it also make sure that our table of encodings is 
	const so that it can go in readonly section. Translation
	of encoding names are resolved lazily.

2007-06-29  Paolo Borelli  <pborelli@katamail.com>

	* gedit-commands-file.c:
	* gedit/gedit-window.[ch]:

	Reimplement differently the persistance of the default path
	of the filechooser that was broken by the removal of 
	"document->priv->is_saving_as".

2007-06-29  Steve Frécinaux  <code@istique.net>

	* gedit/gedit-app.h:
	* gedit/gedit-document-loader.h:
	* gedit/gedit-document-saver.h:
	* gedit/gedit-document.h:
	* gedit/gedit-documents-panel.h:
	* gedit/gedit-message-area.h:
	* gedit/gedit-panel.h:
	* gedit/gedit-plugin-manager.h:
	* gedit/gedit-plugin.h:
	* gedit/gedit-print.h:
	* gedit/gedit-progress-message-area.h:
	* gedit/gedit-tab.h:
	* gedit/gedit-window.h:

	Remove unused GEDIT_*_CONST casts, so they don't appear in the
	developper documentation anymore.

2007-06-29  Steve Frécinaux  <code@istique.net>

	* docs/reference/tmpl/gedit-document.sgml:
	* gedit/gedit-document.c:
	* gedit/gedit-document.h:
	* gedit/gedit-marshal.list:
	* gedit/gedit-window.c:

	Implement Save and Save As as operations of GeditDocument as the
	default handler of a "save" signal.
	Also kill "document->priv->is_saving_as" and write some related bits
	of developper documentation.

2007-06-28  Changwoo Ryu  <cwryu@debian.org>

	* configure.ac: Removed help/ko/Makefile for gnome-doc-utils
	migration.

2007-06-28  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-file-chooser-dialog.c
	* gedit/gedit-language-manager.c:
	* gedit/gedit-window.c:

	Adapt to gtksourceview changes.

2007-06-27  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-source-style-manager.c: do not unref style
	old scheme when changing default scheme.

2007-06-26  Paolo Borelli  <pborelli@katamail.com>

	* plugins/externaltools/data/build.tool.in: also try
	GNUmakefile and makefile and handle spaces in directory names.

2007-06-25  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-file.c: remove stray comma in
	error message. Patch by Joachim Noreiko.

2007-06-25  Paolo Borelli  <pborelli@katamail.com>

	* plugins/filebrowser/gedit-file-browser-plugin.c: fix a typo.
	patch by Thierry Moisan.
	* gedit/gedit-ui.h: capitalization and Mnemonic fix for
	the incremental search menu item. Patch by Dennis Cranston.
	* gedit/gedit-commands-file.c: remove '...' from dialog title