| 1 | /* ========================================================================== **
|
|---|
| 2 | * debug2html.c
|
|---|
| 3 | *
|
|---|
| 4 | * Copyright (C) 1998 by Christopher R. Hertel
|
|---|
| 5 | *
|
|---|
| 6 | * Email: [email protected]
|
|---|
| 7 | *
|
|---|
| 8 | * -------------------------------------------------------------------------- **
|
|---|
| 9 | * Parse Samba debug logs (2.0 & greater) and output the results as HTML.
|
|---|
| 10 | * -------------------------------------------------------------------------- **
|
|---|
| 11 | *
|
|---|
| 12 | * This program is free software; you can redistribute it and/or modify
|
|---|
| 13 | * it under the terms of the GNU General Public License as published by
|
|---|
| 14 | * the Free Software Foundation; either version 3 of the License, or
|
|---|
| 15 | * (at your option) any later version.
|
|---|
| 16 | *
|
|---|
| 17 | * This program is distributed in the hope that it will be useful,
|
|---|
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 20 | * GNU General Public License for more details.
|
|---|
| 21 | *
|
|---|
| 22 | * You should have received a copy of the GNU General Public License
|
|---|
| 23 | * along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|---|
| 24 | *
|
|---|
| 25 | * -------------------------------------------------------------------------- **
|
|---|
| 26 | * This program provides an example of the use of debugparse.c, and also
|
|---|
| 27 | * does a decent job of converting Samba logs into HTML.
|
|---|
| 28 | * -------------------------------------------------------------------------- **
|
|---|
| 29 | *
|
|---|
| 30 | * Revision 1.4 1998/11/13 03:37:01 tridge
|
|---|
| 31 | * fixes for OSF1 compilation
|
|---|
| 32 | *
|
|---|
| 33 | * Revision 1.3 1998/10/28 20:33:35 crh
|
|---|
| 34 | * I've moved the debugparse module files into the ubiqx directory because I
|
|---|
| 35 | * know that 'make proto' will ignore them there. The debugparse.h header
|
|---|
| 36 | * file is included in includes.h, and includes.h is included in debugparse.c,
|
|---|
| 37 | * so all of the pieces "see" each other. I've compiled and tested this,
|
|---|
| 38 | * and it does seem to work. It's the same compromise model I used when
|
|---|
| 39 | * adding the ubiqx modules into the system, which is why I put it all into
|
|---|
| 40 | * the same directory.
|
|---|
| 41 | *
|
|---|
| 42 | * Chris -)-----
|
|---|
| 43 | *
|
|---|
| 44 | * Revision 1.1 1998/10/26 23:21:37 crh
|
|---|
| 45 | * Here is the simple debug parser and the debug2html converter. Still to do:
|
|---|
| 46 | *
|
|---|
| 47 | * * Debug message filtering.
|
|---|
| 48 | * * I need to add all this to Makefile.in
|
|---|
| 49 | * (If it looks at all strange I'll ask for help.)
|
|---|
| 50 | *
|
|---|
| 51 | * If you want to compile debug2html, you'll need to do it by hand until I
|
|---|
| 52 | * make the changes to Makefile.in. Sorry.
|
|---|
|
|---|