Tue, 07 May 2013 05:04:46 -0400
Rewrite debug window filter in JS.
Note, this does cause a couple regressions, but they are probably not
that big a deal. First, the JS regular expression syntax is slightly
different. Second, the JS regex API lacks a way to reliably determine
the location of matched groups, so we can't highlight just the groups
and must highlight the entire expression.
I suspect that none of our users ever had to use any fancy regex in the
debug window, and that most of our developers didn't even know it could
be done. So I doubt these regressions will cause much pain.
|
15523
8505bd287c48
This renames the binary to 'pidgin', and I think it properly
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
1 | capdir = $(libdir)/pidgin |
|
14328
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
2 | |
|
14736
90fe3dd8e9db
[gaim-migrate @ 17420]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
14573
diff
changeset
|
3 | cap_la_LDFLAGS = -module -avoid-version |
|
14328
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
4 | |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
5 | if PLUGINS |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
6 | |
|
15523
8505bd287c48
This renames the binary to 'pidgin', and I think it properly
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
7 | cappixdir = $(datadir)/pixmaps/pidgin/buttons |
|
14328
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
8 | |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
9 | cap_LTLIBRARIES = cap.la |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
10 | |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
11 | cap_la_SOURCES = \ |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
12 | cap.h \ |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
13 | cap.c \ |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
14 | cap_statistics.h |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
15 | |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
16 | endif |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
17 | |
|
26489
7d8de8906c79
Clean unnecessary changes out of the Makefiles.
Michael Ruprecht <maiku@pidgin.im>
parents:
22648
diff
changeset
|
18 | cap_la_LIBADD = $(GTK_LIBS) $(SQLITE3_LIBS) |
|
14328
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
19 | |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
20 | AM_CPPFLAGS = \ |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
21 | -DDATADIR=\"$(datadir)\" \ |
|
15435
4b933b06d75e
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@pidgin.im>
parents:
14736
diff
changeset
|
22 | -I$(top_srcdir)/libpurple \ |
|
16810
7f257f18af06
Now that version.h is a generated source file, we need to add
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15523
diff
changeset
|
23 | -I$(top_builddir)/libpurple \ |
|
15435
4b933b06d75e
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@pidgin.im>
parents:
14736
diff
changeset
|
24 | -I$(top_srcdir)/pidgin \ |
|
14328
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
25 | $(DEBUG_CFLAGS) \ |
|
34f47ce417d4
[gaim-migrate @ 16948]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
diff
changeset
|
26 | $(GTK_CFLAGS) \ |
|
14573
7e18a0a07718
[gaim-migrate @ 17231]
Geoff Foster <g-off_@users.sourceforge.net>
parents:
14328
diff
changeset
|
27 | $(SQLITE3_CFLAGS) |
|
18939
06394c9e81d8
Add mingw makefile for cap. This isn't being built by default, but allows someone to do so if they want to.
Daniel Atallah <datallah@pidgin.im>
parents:
16972
diff
changeset
|
28 | |
|
06394c9e81d8
Add mingw makefile for cap. This isn't being built by default, but allows someone to do so if they want to.
Daniel Atallah <datallah@pidgin.im>
parents:
16972
diff
changeset
|
29 | EXTRA_DIST = Makefile.mingw |