mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-01-21 18:48:34 +08:00
patch #856724/857342 and odds and ends.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
Mon Feb 9 14:53:19 EST 2004 Brian Bruns <brian@bruns.com>
|
||||||
|
|
||||||
|
* src/util/mdb-export.c: reorganized a bit, added header text and options from patch #857342
|
||||||
|
* src/util/mdb-export.c: added -I option from patch #857342
|
||||||
|
* src/gmdb2/gladefiles/gmdb-schema.glade: fix close button
|
||||||
|
* src/sql/lexer.l: allow negative numbers
|
||||||
|
|
||||||
Sun Feb 8 13:02:56 EST 2004 Brian Bruns <brian@bruns.com>
|
Sun Feb 8 13:02:56 EST 2004 Brian Bruns <brian@bruns.com>
|
||||||
|
|
||||||
* doc/faq.html: update email addy
|
* doc/faq.html: update email addy
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
config.h.in
|
|
||||||
config.h
|
config.h
|
||||||
|
config.h.in
|
||||||
stamp-h1
|
stamp-h1
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
bin_PROGRAMS = mdb-dump
|
bin_PROGRAMS = mdb-hexdump
|
||||||
mdb_dump_SOURCES = mdb-dump.c mdbsupport.c
|
mdb_hexdump_SOURCES = mdb-dump.c mdbsupport.c
|
||||||
EXTRA_DIST = mdbsupport.h
|
EXTRA_DIST = mdbsupport.h
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
|
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
|
||||||
LDADD = ../libmdb/libmdb.la
|
LDADD = ../libmdb/libmdb.la
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
<property name="use_stock">True</property>
|
<property name="use_stock">True</property>
|
||||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||||
<property name="response_id">-6</property>
|
<property name="response_id">-6</property>
|
||||||
<signal name="clicked" handler="gmdb_schema_export_cb" object="schema_dialog" last_modification_time="Sun, 29 Dec 2002 21:00:13 GMT"/>
|
<signal name="clicked" handler="gtk_widget_destroy" object="schema_dialog" last_modification_time="Mon, 12 Jan 2004 18:40:24 GMT"/>
|
||||||
</widget>
|
</widget>
|
||||||
</child>
|
</child>
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ like { return LIKE; }
|
|||||||
[A-z][A-z0-9_#@]* { yylval.name = strdup(yytext); return NAME; }
|
[A-z][A-z0-9_#@]* { yylval.name = strdup(yytext); return NAME; }
|
||||||
|
|
||||||
'[A-z0-9 !@#$%^&*()-_+={}[\];:",.<>/?`~|\\]*' { yylval.name = strdup(yytext); return STRING; }
|
'[A-z0-9 !@#$%^&*()-_+={}[\];:",.<>/?`~|\\]*' { yylval.name = strdup(yytext); return STRING; }
|
||||||
([0-9]+|([0-9]*\.[0-9+)([eE][-+]?[0-9]+)?) {
|
(-*[0-9]+|([0-9]*\.[0-9+)([eE][-+]?[0-9]+)?) {
|
||||||
yylval.name = strdup(yytext); return NUMBER;
|
yylval.name = strdup(yytext); return NUMBER;
|
||||||
}
|
}
|
||||||
~?(\/?[A-z0-9\.]+)+ { yylval.name = strdup(yytext); return PATH; }
|
~?(\/?[A-z0-9\.]+)+ { yylval.name = strdup(yytext); return PATH; }
|
||||||
|
|||||||
Reference in New Issue
Block a user