search for: ignore_case

Displaying 10 results from an estimated 10 matches for "ignore_case".

2007 Jan 24
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_js.c libswfdec/swfdec_js.h libswfdec/swfdec_script.c test/swfdec_out.c test/swfdec_out.h test/swfedit_tag.c test/swfedit_token.c test/swfedit_token.h
...c index bbd6a43..1601b4b 100644 --- a/libswfdec/swfdec_js.c +++ b/libswfdec/swfdec_js.c @@ -322,30 +322,38 @@ swfdec_js_eval_get_property (JSContext * } } -/** - * swfdec_js_eval: - * @cx: a #JSContext - * @obj: #JSObject to use as a source for evaluating - * @str: The string to evaluate - * @ignore_case: TRUE for case insensitive evaluation - * - * This function works like the Actionscript eval function used on @obj. - * It handles both slash-style and dot-style notation. - * - * Returns: the value or JSVAL_VOID if no value was found. - **/ -jsval -swfdec_js_eval (JSContext *cx, JSObject *obj, con...
2003 Oct 01
1
PATCH: option to ignore case in filenames
...propriate when used on a FAT filesystem. John ===== flist.c 1.1 vs edited ===== --- 1.1/rsync/flist.c Thu Feb 13 11:51:39 2003 +++ edited/flist.c Tue Sep 30 18:16:35 2003 @@ -1137,6 +1137,13 @@ **/ int file_compare(struct file_struct **f1, struct file_struct **f2) { + extern int ignore_case; + int (*cf)(const char *, const char *); + if (ignore_case) + cf = strcasecmp; + else + cf = u_strcmp; + if (!(*f1)->basename && !(*f2)->basename) return 0; if (!(*f1)->basename) @@ -1144,8 +1151,8 @@...
2002 Apr 18
5
mixed case file systems.
I am having trouble with rsync when I am trying to synchronize a Windows NT volume mounted with smb_fs (FreeBSD) and a unix volume which is also exported with Samba. There are instances where the DOS short name on the NT volume ends up as upper case and then doesn't match filenames which are used in the unix volumes which have been exported by Samba. I don't know if this is a Samba
2007 Jan 26
0
Branch 'interpreter' - 9 commits - libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_debugger.c libswfdec/swfdec_debugger.h libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c
...iff --git a/libswfdec/swfdec_js.c b/libswfdec/swfdec_js.c index 1601b4b..524707c 100644 --- a/libswfdec/swfdec_js.c +++ b/libswfdec/swfdec_js.c @@ -300,18 +300,20 @@ fail: static JSBool swfdec_js_eval_get_property (JSContext *cx, JSObject *obj, - const char *name, gboolean initial, gboolean ignore_case, jsval *ret) + const char *name, jsval *ret) { JSAtom *atom; JSObject *pobj; JSProperty *prop; - atom = js_Atomize (cx, name, strlen(name), ignore_case ? ATOM_NOCASE : 0); + atom = js_Atomize (cx, name, strlen(name), 0); if (!atom) return JS_FALSE; - if (initial) { + if (...
2015 Mar 11
2
[PATCH] maint.mk: remove error_message_period check
...age_period: - @grep -nEA2 '[^rp]error *\(' $$($(VC_LIST_EXCEPT)) \ - | grep -E '[^."]\."' && \ - { echo '$(ME): found error message ending in period' 1>&2; \ - exit 1; } || : - sc_file_system: @prohibit=file''system \ ignore_case=1 \ -- 2.1.0
2015 Mar 12
1
Re: [PATCH] maint.mk: remove error_message_period check
...)) \ > > - | grep -E '[^."]\."' && \ > > - { echo '$(ME): found error message ending in period' 1>&2; \ > > - exit 1; } || : > > - > > sc_file_system: > > @prohibit=file''system \ > > ignore_case=1 \ > > -- > > 2.1.0 > > It seems as if maint.mk is generated, although I have no idea where ... > Looks like gnulib did this. Or we changed our error messages as gnulib's suggestion? Regards, - Chen
2015 Mar 12
0
Re: [PATCH] maint.mk: remove error_message_period check
...]error *\(' $$($(VC_LIST_EXCEPT)) \ > - | grep -E '[^."]\."' && \ > - { echo '$(ME): found error message ending in period' 1>&2; \ > - exit 1; } || : > - > sc_file_system: > @prohibit=file''system \ > ignore_case=1 \ > -- > 2.1.0 It seems as if maint.mk is generated, although I have no idea where ... Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-df lists disk usage of guests...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...iff --git a/libswfdec/swfdec_js.c b/libswfdec/swfdec_js.c index 1601b4b..524707c 100644 --- a/libswfdec/swfdec_js.c +++ b/libswfdec/swfdec_js.c @@ -300,18 +300,20 @@ fail: static JSBool swfdec_js_eval_get_property (JSContext *cx, JSObject *obj, - const char *name, gboolean initial, gboolean ignore_case, jsval *ret) + const char *name, jsval *ret) { JSAtom *atom; JSObject *pobj; JSProperty *prop; - atom = js_Atomize (cx, name, strlen(name), ignore_case ? ATOM_NOCASE : 0); + atom = js_Atomize (cx, name, strlen(name), 0); if (!atom) return JS_FALSE; - if (initial) { + if (...
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...player.c index ace4c45..8037927 100644 --- a/libswfdec/swfdec_player.c +++ b/libswfdec/swfdec_player.c @@ -1573,8 +1573,6 @@ swfdec_player_invalidate (SwfdecPlayer *player, const SwfdecRect *rect) * swfdec_player_get_level: * @player: a #SwfdecPlayer * @name: name of the level to request - * @ignore_case: %TRUE to always be case insensitive, otherwise use the version - * to determine case sensitivity * @create: %TRUE to create if it doesn't exist * * This function is used to look up root movies in the given @player. The @@ -1588,8 +1586,7 @@ swfdec_player_invalidate (Swfdec...
2007 Jan 25
0
Branch 'interpreter' - 28 commits - configure.ac libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_player.c
...js.c index cf14f65..bbd6a43 100644 --- a/libswfdec/swfdec_js.c +++ b/libswfdec/swfdec_js.c @@ -300,29 +300,26 @@ fail: static JSBool swfdec_js_eval_get_property (JSContext *cx, JSObject *obj, - const char *name, gboolean initial, jsval *ret) + const char *name, gboolean initial, gboolean ignore_case, jsval *ret) { JSAtom *atom; JSObject *pobj; JSProperty *prop; - if (!JS_GetProperty (cx, obj, name, ret)) - return JS_FALSE; - if (!JSVAL_IS_VOID (*ret)) - return JS_TRUE; - if (!initial) - return JS_FALSE; - - atom = js_Atomize(cx, name, strlen(name), 0); + atom = js...