aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-05-22Next attempt to match an empty line on WindowsJörg Mayer1-2/+2
svn path=/trunk/; revision=10960
2004-05-22some beautifying andUlf Lamping1-29/+21
bring the links to live, so the html manpage will jump correctly to it's link targets svn path=/trunk/; revision=10959
2004-05-22add a target to build the manpagesUlf Lamping1-1/+4
svn path=/trunk/; revision=10958
2004-05-22update manpage, to reflect recent (and not so recent :-( changes in the GUI,Ulf Lamping1-194/+229
like some things in the menu and Preferences, and fixed some minor bugs which caused undesired formatting. svn path=/trunk/; revision=10957
2004-05-22From Gisle Vanem: export more functions from libethereal, as they'reGuy Harris1-0/+4
needed by Ethereal itself. svn path=/trunk/; revision=10956
2004-05-22Fix the other place where we construct temporary path names to useGuy Harris1-4/+4
G_DIR_SEPARATOR and G_DIR_SEPARATOR_S, to get rid of one more horse-frightening pathname. svn path=/trunk/; revision=10955
2004-05-22GTK+ 1.2[.x] doesn't handle UTF-8 text, so do the "Authors" tab onlyGuy Harris1-1/+10
with GTK+ 1.3 and later. If we're doing the "Authors" tab, include "text_page.h" to declare "text_page_new()". svn path=/trunk/; revision=10954
2004-05-22Put "make-authors-short.pl" into the release tarball.Guy Harris2-3/+12
Use it to generate the "AUTHORS-SHORT" file, put that file into the release tarball, and install it in the data directory. Add "AUTHORS-SHORT" to the .cvsignore file. svn path=/trunk/; revision=10953
2004-05-22Include "cvsversion.h" so we report the version correctly for buildsGuy Harris1-1/+3
from CVS. svn path=/trunk/; revision=10952
2004-05-22Declare "text_page_new()" in a "gtk/text_page.h" header, rather thanGuy Harris4-11/+35
embedding a declaration in "gtk/about_dlg.c". Do the Authors page in the About dialog on UN*X as well as on Windows. svn path=/trunk/; revision=10951
2004-05-22Don't put a newline at the end of the compiled-with version informationGuy Harris2-5/+5
- we don't put it at the end of the run-time version information. Add newlines into formats used with that information where appropriate (the "About" dialog box already had a newline in the format). svn path=/trunk/; revision=10950
2004-05-21Convert to UTF-8: iconv -f latin1 -t utf-8 AUTHORS >AUTHORS.utf-8Jörg Mayer1-8/+8
svn path=/trunk/; revision=10949
2004-05-21Don't print empty lines follwing a }Jörg Mayer1-0/+6
svn path=/trunk/; revision=10948
2004-05-21Add a missing {Jörg Mayer1-1/+1
svn path=/trunk/; revision=10947
2004-05-21WIN32 only: add an "Authors" notebook tab, to show the content ofUlf Lamping1-5/+8
the AUTHORS-SHORT file svn path=/trunk/; revision=10946
2004-05-21install (and uninstall) AUTHORS-SHORT and COPYING filesUlf Lamping1-1/+5
svn path=/trunk/; revision=10945
2004-05-21convert AUTHORS file to a shorter version (without the tasks done)Ulf Lamping2-4/+32
for the about dialog svn path=/trunk/; revision=10944
2004-05-21From Thomas Anders enhancements to PacketCableRonnie Sahlberg2-43/+87
svn path=/trunk/; revision=10943
2004-05-21code cleanup (e.g. removed unused function parameters),Ulf Lamping4-22/+41
added new about page, showing the authors file (but still commented out) svn path=/trunk/; revision=10942
2004-05-21Now that the "About" dialog box's code is in "gtk/about_dlg.c", move theGuy Harris5-5/+37
"create an About dialog" function's declaration to "gtk/about_dlg.h". svn path=/trunk/; revision=10941
2004-05-21GCC warns about zero-length format strings, presumably either becauseGuy Harris1-17/+17
not all *printf routines don't handle them or because there's no advantage to using one rather than just copying a null string to the target (the length-checking done by "snprintf"-style routines is useful for a null string only if the target is zero-length, which it isn't in this case). Clean up indentation. svn path=/trunk/; revision=10940
2004-05-21Make the XPM data an array of "const char *", to get rid of a compilerGuy Harris1-1/+1
warning. svn path=/trunk/; revision=10939
2004-05-21Get rid of a no-longer-used variable.Guy Harris1-3/+1
svn path=/trunk/; revision=10938
2004-05-21Include <string.h> to declare "strdup()".Guy Harris1-2/+3
svn path=/trunk/; revision=10937
2004-05-21split helper text page function into a generic and a help specific part,Ulf Lamping1-9/+25
so other files can use this functionality too svn path=/trunk/; revision=10936
2004-05-21gtk_window_present() new dialog windows, to be sure they get on topUlf Lamping1-1/+2
svn path=/trunk/; revision=10935
2004-05-21Tag unused parameters with _U_ to squelch GCC compiler warnings (they'reGuy Harris3-9/+10
GTK+ callbacks so we don't get to change the calling sequence). svn path=/trunk/; revision=10934
2004-05-20complete new layout of the summary dialogUlf Lamping1-159/+184
svn path=/trunk/; revision=10933
2004-05-20simple_list_new(): hide title row, if titles == NULLUlf Lamping1-4/+8
svn path=/trunk/; revision=10932
2004-05-20"datafile_dir" in "init_plugins()" is used regardless of whether we'reGuy Harris1-13/+8
on Windows or UN*X - don't #ifdef it. Clean up the #ifdefs in "get_plugins_global_dir()". Clean up white space. svn path=/trunk/; revision=10931
2004-05-20beautify the "About Ethereal" page, put plugin list into the dialogUlf Lamping3-160/+127
svn path=/trunk/; revision=10930
2004-05-20as it's difficult to create a list widget for both supported GTK versions,Ulf Lamping2-2/+95
I've started to implement a simple list to hide the complexity svn path=/trunk/; revision=10929
2004-05-20separate dir functions from the plugin init,Ulf Lamping3-33/+98
put this and some other dirs in the about dialog svn path=/trunk/; revision=10928
2004-05-20code cleanupUlf Lamping1-4/+2
svn path=/trunk/; revision=10927
2004-05-20call gtk_window_present() only on GTK2 and aboveUlf Lamping1-1/+3
svn path=/trunk/; revision=10926
2004-05-20moved the about dialog from main.c to it's own new about_dlg.c,Ulf Lamping5-136/+261
added a notebook tab with some directory infos (still incomplete and ugly) cleaned up #includes in main.c (hoping this didn't break the build on unix) svn path=/trunk/; revision=10925
2004-05-20added a depend to ethereal-tap-register.c,Ulf Lamping1-2/+2
so adding a gtk-tap will regenerate this file svn path=/trunk/; revision=10924
2004-05-20avoid using ushort (not available on all platforms), use guint16 insteadUlf Lamping1-2/+2
svn path=/trunk/; revision=10923
2004-05-20update menu check items, if name resolution prefs changedUlf Lamping3-11/+22
svn path=/trunk/; revision=10922
2004-05-19workaround for GTK2 bug: bring main window back to front,Ulf Lamping1-1/+11
when a dialog is closed svn path=/trunk/; revision=10921
2004-05-19Fixes to LMP for draft-09 support.Ashok Narayanan2-35/+26
Minor fix to RSVP for G-UNI object number. svn path=/trunk/; revision=10920
2004-05-19Remove hf argument to common routines for dissecting domain sids. MostTim Potter6-84/+54
of the callers passed -1 for this parameter anyway. svn path=/trunk/; revision=10919
2004-05-18Thomas Anders: Pathnames might contain Spaces, krb5-config might not be in PATHJörg Mayer1-5/+5
svn path=/trunk/; revision=10918
2004-05-18update to packetcable dissect all of apreq/aprep packetsRonnie Sahlberg1-7/+228
svn path=/trunk/; revision=10917
2004-05-18New protocol : PacketCable : PKTCRonnie Sahlberg5-3/+219
The AP-REQ and AP_REP packets are partially dissected up to and including the kerberos blob. work in progress svn path=/trunk/; revision=10916
2004-05-18this is a hack, to workaround a bug in GTK2.x!Ulf Lamping1-3/+13
when changing the font size, even refilling of the corresponding gtk_text_buffer doesn't seem to trigger an update. The only workaround is to freshly select the frame, which will remove any existing notebook tabs and "restart" the whole byte view again. svn path=/trunk/; revision=10915
2004-05-17GTK2 only: catch window state event, and call display_queued_messages()Ulf Lamping2-17/+35
if window not iconified any longer. Queue up simple_dialog messages, if window *is* iconified svn path=/trunk/; revision=10914
2004-05-17In rpc programs statistics, change RTT (RoundTripTime) to SRTRonnie Sahlberg2-8/+8
(ServiceResponseTime) since that is a more appropriate name for these stats. svn path=/trunk/; revision=10913
2004-05-17rename the NOT_DECODED_YET macros to avoid a name clashRonnie Sahlberg7-56/+56
for those sources that include both packet-ber.h and packet-per.h svn path=/trunk/; revision=10912
2004-05-16From Yaniv Kaul: add support for 3 MS-Exchange, non-RFC compliantGuy Harris1-2/+6
commands, per http://support.microsoft.com/default.aspx?scid=kb;[LN];812455 svn path=/trunk/; revision=10911