Stef Walter [Wed, 1 Aug 2012 12:22:53 +0000 (14:22 +0200)]
gtlsdatabase: Don't complain if no callbacks for async functions
https://bugzilla.gnome.org/show_bug.cgi?id=681118
Sweta Kothari [Fri, 3 Aug 2012 08:05:05 +0000 (13:35 +0530)]
Updated gujarati file
Sweta Kothari [Fri, 3 Aug 2012 08:02:12 +0000 (13:32 +0530)]
Updated gujarati file
David Zeuthen [Wed, 1 Aug 2012 15:57:22 +0000 (11:57 -0400)]
GDBusError: Fix up G_STATIC_ASSERT guidance
This was reported in bug 680994.
https://bugzilla.gnome.org/show_bug.cgi?id=680994
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Dan Winship [Wed, 25 Jul 2012 18:41:04 +0000 (14:41 -0400)]
gthreadpool: set default max_unused_threads and max_idle_time values
GThreadPool defaulted to 0 for max_unused_threads (meaning thread-pool
threads would exit immediately if there was not already another task
waiting for them), and 0 for max_idle_time (meaning unused threads
would linger forever, though this is only relevant if you changed
max_unused_threads).
However, GIOScheduler changed the global defaults to 2 and 15*1000,
respectively, arguing that these were more useful defaults. And they
are, so let's use them.
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Dan Winship [Mon, 30 Jul 2012 12:06:57 +0000 (08:06 -0400)]
gmain: allow g_source_get_context() on destroyed sources
g_source_get_context() was checking that the source wasn't destroyed
(since a source doesn't hold a ref on its context, and so
source->context might point to garbage in that case). However, it's
useful to be allowed to call g_source_get_context() on a source that
is destroyed-but-currently-running.
So instead, let g_source_get_context() return the context whenever
it's non-NULL, and clear the source->context of any sources that are
still in a context's sources list when the context is freed. Since
sources are only removed from the list when the source is freed (not
when it is destroyed), this means that now whenever a source has a
non-NULL context pointer, then that pointer is valid.
This also means that g_source_get_time() will now return-if-fail
rather than crashing if it is called on a source whose context has
been destroyed.
Add tests to glib/tests/mainloop to verify that g_source_get_context()
and g_source_get_time() work on destroyed sources.
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Dan Winship [Sun, 29 Jul 2012 17:06:53 +0000 (13:06 -0400)]
glib/tests/mainloop: test g_source_get_time()
Verify that
- g_source_get_time() does not change within a single callback
(even if the real time does)
- g_source_get_time() does not change between different callbacks in
the same mainloop iteration
- g_source_get_time() does change between iterations if the real
time did.
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Owen W. Taylor [Mon, 30 Jul 2012 11:33:05 +0000 (13:33 +0200)]
g_file_make_directory_with_parents: Fix error propagation
When creating a directory fails for some reason other than
the parent not existing, don't clear the error before we try
to propagate it.
To reproduce, run 'ostadmin init' on /ostree or otherwise try to
run the function on a directory with a parent directory where the
current user is not allowed to write.
https://bugzilla.gnome.org/show_bug.cgi?id=680823
Colin Walters [Mon, 30 Jul 2012 09:11:08 +0000 (05:11 -0400)]
GFile: Note semantics of g_file_delete()
Particularly for someone programming on Unix, this helps them
understand that we will unlink symbolic links, and not follow them.
Colin Walters [Sat, 28 Jul 2012 13:30:22 +0000 (09:30 -0400)]
GFile: Add g_file_delete_async()
This looks like it was stubbed out but not implemented; the vtable
entry dates to commit
3781343738de4abddf56982325a77bd70a98cd26 which
is just alex's initial merge of gio into glib.
I was working on some code that wants an asynchronous rm -rf
equivalent, and so yeah, this is desirable.
https://bugzilla.gnome.org/show_bug.cgi?id=680760
Colin Walters [Sun, 29 Jul 2012 13:29:03 +0000 (09:29 -0400)]
Add .dir-locals.el to tell Emacs users not to use tabs for C
Requested by Ryan.
https://bugzilla.gnome.org/show_bug.cgi?id=680787
Fran Diéguez [Mon, 30 Jul 2012 00:42:30 +0000 (02:42 +0200)]
Updated Galician translations
Andrej Žnidaršič [Sun, 29 Jul 2012 11:11:18 +0000 (13:11 +0200)]
Updated Slovenian translation
Lionel Landwerlin [Fri, 27 Jul 2012 12:52:17 +0000 (14:52 +0200)]
glib: fix locale detection on android
g_utf8_strup() tries to call setlocale() before starting to compute
the length of its first argument. Calling setlocale() can return NULL
(as specified in the man page), and obviously that happens on android.
https://bugzilla.gnome.org/show_bug.cgi?id=680704
Мирослав Николић [Wed, 25 Jul 2012 08:33:27 +0000 (10:33 +0200)]
Updated Serbian translation
Yaron Shahrabani [Tue, 24 Jul 2012 19:39:15 +0000 (22:39 +0300)]
Updated Hebrew translation.
Tobias Endrigkeit [Mon, 23 Jul 2012 20:11:53 +0000 (22:11 +0200)]
[l10n] Updated German translation
Kjartan Maraas [Mon, 23 Jul 2012 09:42:22 +0000 (11:42 +0200)]
Updated Norwegian bokmål translation
Colin Walters [Fri, 20 Jul 2012 14:40:56 +0000 (10:40 -0400)]
Revert unintential IAPI break for g_key_file_load_from_data()
The old (length) annotation actually wasn't being read. Changing
it to an array was telling g-i that it was an array of utf8, which
is clearly not true.
We *could* add (element-type guint8), but that would change it to a
byte array, as opposed to the original utf8 version.
Just removing the annotation should bring us back to where we
were, which was fine.
https://bugzilla.gnome.org/show_bug.cgi?id=680310
Chun-wei Fan [Thu, 19 Jul 2012 15:15:59 +0000 (23:15 +0800)]
gio/Makefile.am: Filter out gcontenttype.c for MSVC builds
gcontenttype.c was split into gcontenttype.c and gcontenttype-win32.c
in commit
32192ee9 ("Split gcontenttype.c"), so we don't want to include
gcontenttype.c in the Visual C++ build as it is no longer a source file
meant for Windows.
Thanks to Thomas H.P. Anderson for pointing this out.
Matthias Clasen [Thu, 19 Jul 2012 10:37:59 +0000 (06:37 -0400)]
Check for PR_SET_NAME
Bug 680148 claims that PR_SET_NAME may not be defined when
using an old kernel. Deal with it.
Matthias Clasen [Thu, 19 Jul 2012 10:32:29 +0000 (06:32 -0400)]
Be more careful when using xlocale
Bug 680074 shows that we may end up in situations where only
some of the xlocale functions we need are available. Rather than
trying to find the minimal set of required functions for each
use, define a global USE_XLOCALE and only use any xlocale functions
if we have a full set.
Matthias Clasen [Thu, 19 Jul 2012 10:20:10 +0000 (06:20 -0400)]
Cosmetic: Fix up line endings
Somehow a few ^M sneaked in here.
Dan Winship [Wed, 18 Jul 2012 19:08:44 +0000 (15:08 -0400)]
gmain: handle child sources being destroyed before parent
Fix a crash when a child source is destroyed before its parent. Also,
add a test case for this and the previous fix.
Dan Winship [Wed, 18 Jul 2012 18:19:36 +0000 (14:19 -0400)]
g_source_add_child_source: sync blocked state
Child sources are supposed to be blocked when their parents are, so
when adding a source to a blocked source, block the child too. Fixes a
warning when unblocking the parent.
Dan Winship [Tue, 17 Jul 2012 20:21:03 +0000 (16:21 -0400)]
gio/tests/converter-stream: add a new test, rename an old one
Add a test that the decompressor input streams handle truncated data
correctly. (They do; I wrote the test thinking there was a bug there,
but there isn't.)
Also, rename the "corruption" tests to "roundtrip", since "corruption"
makes it sound like we're testing how the converters deal with
corrupted data, as opposed to merely testing that they don't corrupt
data themselves. And fix the bug reference.
Dan Winship [Tue, 17 Jul 2012 17:17:01 +0000 (13:17 -0400)]
g_cancellable_source_new: don't use a file descriptor
Rather than implementing GCancellableSource by polling on its fd,
implement it by just waking its GMainContext up from the "cancelled"
signal handler, thereby helping to reduce file descriptor usage.
Suggested by Ryan Lortie.
https://bugzilla.gnome.org/show_bug.cgi?id=680121
Matthias Clasen [Tue, 17 Jul 2012 18:23:08 +0000 (14:23 -0400)]
Bump version
Matthias Clasen [Tue, 17 Jul 2012 17:50:58 +0000 (13:50 -0400)]
More updates
Stef Walter [Tue, 17 Jul 2012 16:34:16 +0000 (18:34 +0200)]
GIOScheduler: Fix access after free in "cancelled" handler
* GCancellable can be "cancelled" more than once if
g_cancellable_reset() is called.
* Don't assume that because the "cancelled" signal fired
it won't fire again.
https://bugzilla.gnome.org/show_bug.cgi?id=680111
Matthias Clasen [Tue, 17 Jul 2012 17:00:00 +0000 (13:00 -0400)]
2.33.6
https://bugzilla.gnome.org/show_bug.cgi?id=680111
Dan Winship [Tue, 17 Jul 2012 13:12:39 +0000 (09:12 -0400)]
GAsyncInitable: partially revert the init_finish changes
g_async_initable_real_init_finish() was previously handling all
GSimpleAsyncResults, even if they weren't created by
g_async_initable_real_init_async(), and libnm-glib accidentally relied
on that behavior. So remove the g_simple_async_result_is_valid()
check.
Krzesimir Nowak [Sun, 15 Jul 2012 17:10:43 +0000 (19:10 +0200)]
GVariantType: Add (constructor) annotation for some constructors.
This are mistaken by g-ir-scanner as GVariantType's methods, because
they take a GVariantType* as a first parameter.
https://bugzilla.gnome.org/show_bug.cgi?id=679968
Daniel Mustieles [Mon, 16 Jul 2012 14:42:49 +0000 (16:42 +0200)]
Updated Spanish translation
Marc-André Lureau [Mon, 9 Jul 2012 02:12:02 +0000 (04:12 +0200)]
win32: g_getenv() should return "" if variable exists and empty
On Windows, GetEnvironmentVariable() returns 0 for empty variables.
Checking GetLastError() == ERROR_ENVVAR_NOT_FOUND helps make a
difference between a variable that does not exist or an empty one
which should return "".
https://bugzilla.gnome.org/show_bug.cgi?id=679617
Marc-André Lureau [Mon, 9 Jul 2012 01:54:55 +0000 (03:54 +0200)]
win32: fix g_get_environ()
The current code create the strv array incorrectly, it is too big and
leaves invalid holes. This may result in crashes when freeing the
returned value.
https://bugzilla.gnome.org/show_bug.cgi?id=679617
Matthias Clasen [Mon, 16 Jul 2012 10:01:55 +0000 (06:01 -0400)]
Bump version
Matthias Clasen [Mon, 16 Jul 2012 00:36:10 +0000 (20:36 -0400)]
More updates
Ihar Hrachyshka [Sun, 15 Jul 2012 09:27:03 +0000 (12:27 +0300)]
Updated Belarusian translation.
Piotr Drąg [Sat, 14 Jul 2012 23:23:25 +0000 (01:23 +0200)]
Updated Polish translation
Chao-Hsiung Liao [Sat, 14 Jul 2012 05:51:12 +0000 (13:51 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)
Matthias Clasen [Fri, 13 Jul 2012 21:37:37 +0000 (17:37 -0400)]
Fix GModule documentation a bit
The documentation for g_module_make_resident was for some reason
in the doc comment for g_module_name.
https://bugzilla.gnome.org/show_bug.cgi?id=679813
Matthias Clasen [Fri, 13 Jul 2012 21:37:12 +0000 (17:37 -0400)]
Fix doc build
Nilamdyuti Goswami [Fri, 13 Jul 2012 12:23:45 +0000 (17:53 +0530)]
Assamese translation updated
Matthias Clasen [Fri, 13 Jul 2012 03:40:43 +0000 (23:40 -0400)]
Update NEWS
Marc-André Lureau [Wed, 11 Jul 2012 17:41:58 +0000 (19:41 +0200)]
win32: fix build g_spawn_check_exit_status() with mingw
With mingw, only gspawn-win32.c is compiled, but it is missing some
new symbols.
https://bugzilla.gnome.org/show_bug.cgi?id=679691
Krzesimir Nowak [Thu, 12 Jul 2012 14:09:57 +0000 (16:09 +0200)]
GRegex, GConvert: Add some missing annotations.
Also, removed pointless (allow-none) return annotation.
https://bugzilla.gnome.org/show_bug.cgi?id=679762
Cosimo Cecchi [Thu, 12 Jul 2012 00:25:59 +0000 (20:25 -0400)]
mount-operation: add a Since tag to the show-unmount-progress signal
Cosimo Cecchi [Fri, 6 Jul 2012 19:41:47 +0000 (15:41 -0400)]
mount-operation: add show-unmount-progress signal
The actual implementation will be in gvfs.
https://bugzilla.gnome.org/show_bug.cgi?id=676111
Tom Tryfonidis [Wed, 11 Jul 2012 23:38:20 +0000 (02:38 +0300)]
Updated Greek translation
Rui Matos [Tue, 10 Jul 2012 09:38:34 +0000 (11:38 +0200)]
GDBusNodeInfo: remove a spurious for loop
https://bugzilla.gnome.org/show_bug.cgi?id=679671
Rui Matos [Tue, 10 Jul 2012 09:37:56 +0000 (11:37 +0200)]
GDBusNodeInfo: the XML string must contain exactly one node element
Make the documentation clear about this.
https://bugzilla.gnome.org/show_bug.cgi?id=679671
Colin Walters [Tue, 10 Jul 2012 15:27:22 +0000 (11:27 -0400)]
Add g_spawn_check_exit_status()
Many (if not "almost all") programs that spawn other programs via
g_spawn_sync() or the like simply want to check whether or not the
child exited successfully, but doing so requires use of
platform-specific functionality and there's actually a fair amount of
boilerplate involved.
This new API will help drain a *lot* of mostly duplicated code in
GNOME, from gnome-session to gdm. And we can see that some bits even
inside GLib were doing it wrong; for example checking the exit status
on Unix, but ignoring it on Windows.
https://bugzilla.gnome.org/show_bug.cgi?id=679691
Dan Winship [Thu, 10 May 2012 15:09:52 +0000 (11:09 -0400)]
gio: add g_async_result_is_tagged()
Rather than doing a two step first-check-the-GAsyncResult-subtype-then-
check-the-tag, add a GAsyncResult-level method so that you can do them
both at once, simplifying the code for "short-circuit" async return
values where the vmethod never gets called.
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Dan Winship [Thu, 10 May 2012 13:00:45 +0000 (09:00 -0400)]
gio: Add g_async_result_legacy_propagate_error()
Finish deprecating the "handle GSimpleAsyncResult errors in the
wrapper function" idiom (and protect against future GSimpleAsyncResult
deprecation warnings) by adding a "legacy" GAsyncResult method
to do it in those classes/methods where it had been traditionally
done.
(This applies only to wrapper methods; in cases where an _async
vmethod explicitly uses GSimpleAsyncResult, its corresponding _finish
vmethod still uses g_simple_async_result_propagate_error.)
https://bugzilla.gnome.org/show_bug.cgi?id=667375
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Dan Winship [Mon, 11 Jun 2012 17:44:19 +0000 (13:44 -0400)]
gio: handle GSimpleAsyncResult errors in _finish vmethods
Originally, the standard idiom with GSimpleAsyncResult was to handle
all errors in the _finish wrapper function, so that vmethods only had
to deal with successful results. But this means that chaining up to a
parent _finish vmethod won't work correctly. Fix this by also checking
for errors in all the relevant vmethods. (We have to redundantly check
in both the vmethod and the wrapper to preserve compatibility.)
https://bugzilla.gnome.org/show_bug.cgi?id=667375
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Dan Winship [Tue, 17 Apr 2012 13:55:33 +0000 (09:55 -0400)]
GFile: remove some unnecessary code
The "mainloop_barrier" in copy_async_thread() is unnecessary, since
the g_simple_async_result_complete_in_idle() will be queued after all
of the g_io_scheduler_job_send_to_mainloop_async()s, and sources with
the same priority will run in the order in which they were queued.
https://bugzilla.gnome.org/show_bug.cgi?id=661767
Antoine Jacoutot [Mon, 9 Jul 2012 16:17:01 +0000 (18:17 +0200)]
goptions: use G_N_ELEMENTS instead of nitems
Ryan Lortie [Mon, 9 Jul 2012 16:43:50 +0000 (12:43 -0400)]
GVariant: fix string validation
String validation was done by checking if the string was valid utf8 and
ensuring that the first non-utf8 character was the last character (ie:
the nul terminator).
No check was actually done to make sure that this byte actually
contained a nul, however, so it was possible that you could have a
string like "hello\xff" with length 6 that would correctly validate.
Fix that, and test it.
Stef Walter [Sat, 5 May 2012 10:51:16 +0000 (12:51 +0200)]
Fix up GObject interface documentation
* Document how to override interfaces already implemented
in a base class, and also call those base class implementations
from a derived reimplementation.
* Don't recomend people use base_init() style functions to
initialize interface signals and properties, use default_init()
aka class_init() instead (as G_DEFINE_INTERFACE() uses).
* The above solves the interface init called multiple times
problem, so remove some needless naysaying about that.
* Document default_init() in the interface initialization discussion
* Linkify more stuff.
* Remove some crud and typos
https://bugzilla.gnome.org/show_bug.cgi?id=675504
Fran Diéguez [Mon, 9 Jul 2012 13:05:04 +0000 (15:05 +0200)]
Updated Galician translations
Antoine Jacoutot [Sun, 8 Jul 2012 17:23:18 +0000 (19:23 +0200)]
OpenBSD: explicitely define nitems
nitems is never guaranteed to be defined in sys/params.h as it is meant
to be defined within a protected ifdef __KERNEL condition.
Torsten Schönfeld [Mon, 3 May 2010 18:33:50 +0000 (20:33 +0200)]
gio: Add type macros for GFileAttributeInfoList and GFileAttributeMatcher
https://bugzilla.gnome.org/show_bug.cgi?id=616892
David Zeuthen [Sat, 7 Jul 2012 21:10:46 +0000 (17:10 -0400)]
gdbus-codegen: improve casting a tiny wee bit
The in commit
b79fbc5c3fc8d7093919dde2dc244d26a97596c3 for fixing
-Wstrict-aliasing warnings was a little too brutal, make it a bit
better.
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Christian Persch [Thu, 28 Jun 2012 21:20:39 +0000 (23:20 +0200)]
regex: Add new GRegexError code from PCRE 8.31
Christian Persch [Thu, 28 Jun 2012 21:21:16 +0000 (23:21 +0200)]
regex: Enable fixed test
This problem was fixed in PCRE 8.31, so uncomment the test.
Christian Persch [Thu, 14 Jun 2012 20:15:27 +0000 (22:15 +0200)]
regex: Import PCRE 8.31
https://bugzilla.gnome.org/show_bug.cgi?id=679193
Ryan Lortie [Fri, 6 Jul 2012 21:27:54 +0000 (17:27 -0400)]
GVariant: support comparing booleans
g_variant_compare() is documented as working on booleans but somehow
this case was missed. Add it and test it.
Problem discovered by Charles Kerr.
David Zeuthen [Fri, 6 Jul 2012 17:45:09 +0000 (13:45 -0400)]
gdbus-codegen: neuter warnings when using -Wstrict-aliasing
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
David Zeuthen [Fri, 6 Jul 2012 17:43:05 +0000 (13:43 -0400)]
gdbus-codegen: don't shadow variable
This avoids a warning when building with -Wshadow
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Ryan Lortie [Fri, 6 Jul 2012 17:43:17 +0000 (13:43 -0400)]
GSettings: be more careful about keys names with /
Prevent attempts to access keys ending with slashes that exist in the
schema file as references to child schemas.
Also: don't emit change signals for these same keys.
Kjartan Maraas [Fri, 6 Jul 2012 17:11:26 +0000 (19:11 +0200)]
Updated Norwegian bokmål translation
Dan Winship [Thu, 26 Apr 2012 18:08:22 +0000 (14:08 -0400)]
Clarify the GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED docs
https://bugzilla.gnome.org/show_bug.cgi?id=674898
Dan Winship [Thu, 26 Apr 2012 15:08:23 +0000 (11:08 -0400)]
Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED being a "future" value
If GLIB_VERSION_MIN_REQUIRED or GLIB_VERSION_MAX_ALLOWED was defined
to a future value, we were essentially treating it as
GLIB_VERSION_0_0. Fix to treat it as being in the future instead.
https://bugzilla.gnome.org/show_bug.cgi?id=674898
Colin Walters [Tue, 29 May 2012 21:58:41 +0000 (17:58 -0400)]
GString: Tweak documentation, add g_string_free_to_bytes()
The docs for GString should really mention GByteArray, and what makes
it different. Drop the comparison to Java which is dated and actually
inaccurate (because StringBuffer operates on Unicode).
While we're here, add g_string_free_to_bytes(), which further
complements the spread of GBytes-based API. For example, one can
create a buffer using GString, then send it off via
g_output_stream_write_bytes().
https://bugzilla.gnome.org/show_bug.cgi?id=677064
David Zeuthen [Fri, 6 Jul 2012 13:19:48 +0000 (09:19 -0400)]
gdbus-codegen: Don't generate invalid GObject property names
For a D-Bus property with name "Type" (fairly common), we used to
generate a GObject property with name "type-" and C accessors
get_type_() (to avoid clashing with the GType getter), set_type_()
(for symmetri).
However, the rules for GObject property names are fairly rigid and
specifically prohibit names ending in a dash.
Therefore change things so the chosen GObject property name is "type"
but preserve the naming rules for the C getter and setter (for the
same reasons: avoiding name clashing and symmetri).
This change does break the API of generated code (but only on the
GObject property level, the C symbols are not changed) but strictly
speaking the behavior was undefined since "type-" was an invalid
GObject property name.
Also add a test case for this.
Bug 679473.
https://bugzilla.gnome.org/show_bug.cgi?id=679473
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Emmanuele Bassi [Wed, 7 Mar 2012 12:54:04 +0000 (12:54 +0000)]
Constify collect and lcopy strings in GTypeValueTable
This avoids warnings when creating idiomatic value tables, like:
static const GTypeValueTable _clutter_shader_float_value_table = {
clutter_value_init_shader_float,
clutter_value_free_shader_float,
clutter_value_copy_shader_float,
clutter_value_peek_pointer,
"ip",
clutter_value_collect_shader_float,
"pp",
clutter_value_lcopy_shader_float
};
Because the strings are literals. And, really: nobody should be using
allocated values for the collection and lcopy strings.
https://bugzilla.gnome.org/show_bug.cgi?id=671545
Matthias Clasen [Fri, 6 Jul 2012 02:25:49 +0000 (22:25 -0400)]
Improve the g_dir_read_name documentation
This function can return NULL in error cases as well. Document
this, and explain how to discriminate the cases.
https://bugzilla.gnome.org/show_bug.cgi?id=639771
Piotr Drąg [Wed, 4 Jul 2012 02:25:41 +0000 (04:25 +0200)]
Updated POTFILES.in
Matthias Clasen [Wed, 4 Jul 2012 01:14:41 +0000 (21:14 -0400)]
Drop unneeded includes
Matthias Clasen [Wed, 4 Jul 2012 01:13:32 +0000 (21:13 -0400)]
Split gcontenttype.c
Instead of a giant #if G_OS_WIN32 #else #endif around the entire
file, just split it into gcontenttype.c and gcontenttype-win32.c.
Marc-André Lureau [Tue, 3 Jul 2012 18:04:05 +0000 (20:04 +0200)]
win32: fix build after bug 674452
Ryan Lortie [Tue, 3 Jul 2012 19:40:35 +0000 (15:40 -0400)]
GObject docs fixup
Rico Tzschichholz [Tue, 3 Jul 2012 19:22:16 +0000 (21:22 +0200)]
glib/deprecated: Fix some version typos
Nilamdyuti Goswami [Tue, 3 Jul 2012 15:31:17 +0000 (21:01 +0530)]
Assamese translation updated
Alexander Shopov [Tue, 3 Jul 2012 13:55:12 +0000 (16:55 +0300)]
Updated Bulgarian translation
Neil Roberts [Mon, 2 Jul 2012 12:41:32 +0000 (13:41 +0100)]
Fix the 'Since' tag for G_SOURCE_{REMOVE,CONTINUE}
The Since tag for these was saying 2.28 but it was actually added in
2.31. It looks like all of the Since tags list stable version numbers
so this patch bumps that up to 2.32.
https://bugzilla.gnome.org/show_bug.cgi?id=679258
Christian Persch [Mon, 2 Jul 2012 15:56:54 +0000 (17:56 +0200)]
regex: Require PCRE 8.13
Bump the required version for external PCRE to 8.13, to fix the build
with external PCRE.
Daniel Mustieles [Mon, 2 Jul 2012 15:34:59 +0000 (17:34 +0200)]
Updated Spanish translation
Daniel Mustieles [Mon, 2 Jul 2012 15:29:02 +0000 (17:29 +0200)]
Updated Spanish translation
Daniel Mustieles [Mon, 2 Jul 2012 15:24:45 +0000 (17:24 +0200)]
Fixed a a «big bug» in a string ;-)
Christian Persch [Sun, 17 Jun 2012 20:51:44 +0000 (22:51 +0200)]
regex: Fix unicode othercasing
Reorder the toupper/tolower calls when othercaseing, so this
function is bug-for-bug compatible with the pcre internal tables.
https://bugzilla.gnome.org/show_bug.cgi?id=678273
Christian Persch [Thu, 14 Jun 2012 20:04:05 +0000 (22:04 +0200)]
regex: Add FIRSTLINE compile flag
This option exists since PCRE 6.0.
Christian Persch [Thu, 7 Jun 2012 21:24:07 +0000 (23:24 +0200)]
regex: Add NOTEMPTY_ATSTART match option
Since PCRE 8.00 it supports a variant of PCRE_NOTEMPTY that works
similarly except that it only applies to the start of the matched string
but permits empty matches further in.
Christian Persch [Thu, 7 Jun 2012 20:50:52 +0000 (22:50 +0200)]
regex: Add PARTIAL_HARD match option
Since PCRE 8.00 it supports a new partial matching method PCRE_PARTIAL_HARD.
Christian Persch [Thu, 7 Jun 2012 18:12:11 +0000 (20:12 +0200)]
regex: Add JavaScript compat mode
Since PCRE 7.7, there's a flag that changes the behaviour to be more
JavaScript compatible. Since it's no effort to expose it, just do so.
Christian Persch [Thu, 7 Jun 2012 16:11:49 +0000 (18:11 +0200)]
regex: Don't leak internal PCRE options
g_regex_get_compile_get_compile_flags() and g_regex_get_match_flags()
were leaking PCRE flags that don't exist in the corresponding
public GRegexCompileFlags and GRegexMatchFlags; this change masks
these internal flags.
Christian Persch [Thu, 7 Jun 2012 14:44:52 +0000 (16:44 +0200)]
regex: Add BSR_ANYCRLF and BSR_ANY match options
These flags override the compile option at match time. They use PCRE_BSR_ANYCRLF
and PCRE_BSR_UNICODE, resp., which make \R match only CR, LF and CRLF, or any
Unicode newline character or character sequences, resp.
Christian Persch [Thu, 7 Jun 2012 14:44:10 +0000 (16:44 +0200)]
regex: Add BSR_ANYCRLF compile option
When this flag is set, \R only matches CR, LF and CRLF.
Christian Persch [Thu, 7 Jun 2012 14:42:50 +0000 (16:42 +0200)]
regex: Fix newline definition for system PCRE
While we PCRE_BSR_UNICODE is the default in the internal PCRE, that may
not be true for the system one. Force the PCRE_BSR_UNICODE flag on it.