You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(2) |
Feb
(9) |
Mar
(6) |
Apr
(8) |
May
(7) |
Jun
(49) |
Jul
(36) |
Aug
(8) |
Sep
(4) |
Oct
(11) |
Nov
(3) |
Dec
|
| 2002 |
Jan
(8) |
Feb
|
Mar
(7) |
Apr
(2) |
May
|
Jun
(3) |
Jul
(9) |
Aug
(2) |
Sep
|
Oct
(3) |
Nov
|
Dec
(2) |
| 2003 |
Jan
(6) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
(5) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(2) |
Nov
|
Dec
|
| 2004 |
Jan
(2) |
Feb
(12) |
Mar
|
Apr
(10) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(4) |
| 2005 |
Jan
(4) |
Feb
(6) |
Mar
(3) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2006 |
Jan
|
Feb
(2) |
Mar
|
Apr
(12) |
May
(2) |
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(11) |
Oct
(10) |
Nov
|
Dec
|
| 2007 |
Jan
(4) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2008 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(2) |
May
|
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(8) |
| 2010 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
1
(4) |
2
|
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
|
10
|
11
|
12
|
13
|
14
|
15
(4) |
16
|
|
17
|
18
|
19
(2) |
20
|
21
|
22
|
23
|
|
24
|
25
(2) |
26
(3) |
27
(10) |
28
(13) |
29
(11) |
30
|
|
From: Darryl O. <da...@us...> - 2001-06-29 16:42:59
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv28891 Modified Files: README INSTALL Log Message: Cleaned up files. Made more consistent with other open-source projects (moved build instructions from README to INSTALL). Index: README =================================================================== RCS file: /cvsroot/cscope/cscope/README,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** README 2001/06/29 10:52:27 1.6 --- README 2001/06/29 16:42:56 1.7 *************** *** 1,35 **** ! Cscope is a text screen based source browsing tool. ! It has been released by The Santa Cruz Operation, Inc as Open Source under ! the BSD license. Please look at COPYING for a detailed description of the ! license. ! ! BUILDING: ! Try: ! ! ./configure ! make ! ! If the build fails contact pe...@us... ! ! TIPS: ! ! - Try to use flex as the lexical analyzer. There may be some problems ! with using the native lex (due to some problems). The has been ! reported as a problem on Solaris. ! ! - On Linux systems (and possibly others) configure may fail if lex is ! a synomyn for flex. To fix, do the following: ! ! make distclean ! ./configure --with-flex ! make ! ! - On HP-UX 10.*, the default version of curses was observed to be broken. ! Get their "cumulative patches" and then compile like this, to work ! around that bug: ! ! make CURSES_LIBS=-lHcurses ! Browse to http://cscope.sourceforge.net for more current information --- 1,24 ---- ! Cscope is a text screen based source browsing tool. Although it is ! primarily designed to search C code (including lex and yacc files), it ! can also be used for C++ code. ! ! Using cscope, you can easily search for where symbols are used and ! defined. Cscope is designed to answer questions like: ! ! Where is this variable used? ! What is the value of this preprocessor symbol? ! Where is this function in the source files? ! What functions call this function? ! What functions are called by this function? ! Where does the message "out of space" come from? ! Where is this source file in the directory structure? ! What files include this header file? ! ! It has been released by The Santa Cruz Operation, Inc as Open Source ! under the BSD license. Please look at COPYING for a detailed ! description of the license. ! For instructions on how to build and install cscope, see the file, ! "INSTALL". Browse to http://cscope.sourceforge.net for more current information Index: INSTALL =================================================================== RCS file: /cvsroot/cscope/cscope/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** INSTALL 2000/04/27 16:33:47 1.2 --- INSTALL 2001/06/29 16:42:56 1.3 *************** *** 1,16 **** ! This program's build procedure is fairly standard... ! ./configure ! make ! make install ! ! Options to the configure script are up to you... run ! ./configure --help ! for details. Please report build problems at: ! http://sourceforge.net/bugs/?func=addbug&group_id=4664 (yes, even non-Linux problems). --- 1,61 ---- + ***** BUILDING: ! This program's build procedure is fairly standard. Try: ! ./configure ! make ! make install + Options to the configure script are up to you. For details, run: + + ./configure --help + Please report build problems at: ! http://sourceforge.net/bugs/?func=addbug&group_id=4664 (yes, even non-Linux problems). + + + ***** TIPS AND PROBLEMS: + + - Try to use flex as the lexical analyzer. There may be some problems + with using the native lex (due to some problems). The has been + reported as a problem on Solaris. + + However, please note that the flex-generated scanner is significantly + slower than the lex scanner (database building is at least twice as + slow). While flex appears to be more reliable, you might want to try + using lex. This is true on HP-UX. + + - On Linux systems (and possibly others) configure may fail if lex is + a synomyn for flex. To fix, do the following: + + make distclean + ./configure --with-flex + make + + - On HP-UX 10.20, the default version of curses was observed to be + broken. Get their "cumulative libHcurses patch" (patch PHCO_10947) + and then compile like this, to work around that bug: + + make CURSES_LIBS=-lHcurses + + Also on other versions of HP-UX, if the build fails at link time with + errors like: + + /usr/ccs/bin/ld: Unsatisfied symbols: + initscr (code) + wstandend (code) + ... + + you should delete the file, "config.cache", and re-run configure with + the option "--with-vcurses"; for example: + + ./configure --with-vcurses + + Note, however, that you should never see this if you build using + "make CURSES_LIBS=-lHcurses". + + + Browse to http://cscope.sourceforge.net for more current information. |
Update of /cvsroot/cscope/cscope/contrib/webcscope/icons In directory usw-pr-cvs1:/tmp/cvs-serv14190 Added Files: back.gif bomb.gif c.gif down.gif folder.gif folder.open.gif left.gif up.gif world2.gif Log Message: Readding hopefully as binary files. |
Update of /cvsroot/cscope/cscope/contrib/webcscope/icons In directory usw-pr-cvs1:/tmp/cvs-serv13573 Removed Files: back.gif bomb.gif c.gif down.gif folder.gif folder.open.gif left.gif up.gif world2.gif Log Message: .gif files added as ascii. Removed to be added as binary. --- back.gif DELETED --- --- bomb.gif DELETED --- --- c.gif DELETED --- --- down.gif DELETED --- --- folder.gif DELETED --- --- folder.open.gif DELETED --- --- left.gif DELETED --- --- up.gif DELETED --- --- world2.gif DELETED --- |
|
From: Petr S. <pe...@us...> - 2001-06-29 14:20:20
|
Update of /cvsroot/cscope/cscope/contrib/webcscope
In directory usw-pr-cvs1:/tmp/cvs-serv6619/contrib/webcscope
Added Files:
INSTALL LICENSE TODO cgi-lib.pl cscope hilite.c
Log Message:
Added webcscope to contribs.
--- NEW FILE ---
WebCScope Installation
Quick Install
0. Create a directory called cscope under your /cgi-bin (virtual) directory.
Copy all the files in the distribution to this directory.
1. Edit the 'cscope' file and change the following items:
- Location to the perl interpreter
- Location of the cscope database and other modifiable parameters
- Feedback name and email
- Location of the syntax highlighter, if you wish to use it
2. Syntax highlighter
- The syntax highlighter must be built if you decide to use it. If you
do not want syntax highlighting, you can ignore this step and set the
highlighter to /bin/cat.
- Compile 'hilite.c' using 'gcc -o hilite hilite.c'
3. Icons
- Copy the images from the icons directory into the /icons (virtual)
directory on the web server. You can also replace these images with
whatever you choose.
4. Organizing your CScope databases
- WebCScope supports multiple databases in $cscopedir
- Create a directory for each project or sub-source in $cscopedir and,
generate your cscope database using the following commands.
- find /some/source/dir -name '*.[chyls]' -print > cscope.files
- cscope -b -q
- Repeat the above step for each database you wish to create
--- NEW FILE ---
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
--- NEW FILE ---
- Better error checking and the like
- Add a more robust cookie mechanism
- More efficient way of searching 'all' databases
- Fix bugs
--- NEW FILE ---
# Perl Routines to Manipulate CGI input
# cg...@po...
# $Id: cgi-lib.pl,v 1.1 2001/06/29 14:20:16 petr Exp $
#
# Copyright (c) 1993-1999 Steven E. Brenner
# Unpublished work.
# Permission granted to use and modify this library so long as the
# copyright above is maintained, modifications are documented, and
# credit is given for any use of the library.
#
# Thanks are due to many people for reporting bugs and suggestions
# For more information, see:
# http://cgi-lib.stanford.edu/cgi-lib/
$cgi_lib'version = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
# Parameters affecting cgi-lib behavior
# User-configurable parameters affecting file upload.
$cgi_lib'maxdata = 131072; # maximum bytes to accept via POST - 2^17
$cgi_lib'writefiles = 0; # directory to which to write files, or
# 0 if files should not be written
$cgi_lib'filepre = "cgi-lib"; # Prefix of file names, in directory above
# Do not change the following parameters unless you have special reasons
$cgi_lib'bufsize = 8192; # default buffer size when reading multipart
$cgi_lib'maxbound = 100; # maximum boundary length to be encounterd
$cgi_lib'headerout = 0; # indicates whether the header has been printed
# ReadParse
# Reads in GET or POST data, converts it to unescaped text, and puts
# key/value pairs in %in, using "\0" to separate multiple selections
# Returns >0 if there was input, 0 if there was no input
# undef indicates some failure.
# Now that cgi scripts can be put in the normal file space, it is useful
# to combine both the form and the script in one place. If no parameters
# are given (i.e., ReadParse returns FALSE), then a form could be output.
# If a reference to a hash is given, then the data will be stored in that
# hash, but the data from $in and @in will become inaccessable.
# If a variable-glob (e.g., *cgi_input) is the first parameter to ReadParse,
# information is stored there, rather than in $in, @in, and %in.
# Second, third, and fourth parameters fill associative arrays analagous to
# %in with data relevant to file uploads.
# If no method is given, the script will process both command-line arguments
# of the form: name=value and any text that is in $ENV{'QUERY_STRING'}
# This is intended to aid debugging and may be changed in future releases
sub ReadParse {
# Disable warnings as this code deliberately uses local and environment
# variables which are preset to undef (i.e., not explicitly initialized)
local ($perlwarn);
$perlwarn = $^W;
$^W = 0;
local (*in) = shift if @_; # CGI input
local (*incfn, # Client's filename (may not be provided)
*inct, # Client's content-type (may not be provided)
*insfn) = @_; # Server's filename (for spooled files)
local ($len, $type, $meth, $errflag, $cmdflag, $got, $name);
binmode(STDIN); # we need these for DOS-based systems
binmode(STDOUT); # and they shouldn't hurt anything else
binmode(STDERR);
# Get several useful env variables
$type = $ENV{'CONTENT_TYPE'};
$len = $ENV{'CONTENT_LENGTH'};
$meth = $ENV{'REQUEST_METHOD'};
if ($len > $cgi_lib'maxdata) { #'
&CgiDie("cgi-lib.pl: Request to receive too much data: $len bytes\n");
}
if (!defined $meth || $meth eq '' || $meth eq 'GET' ||
$meth eq 'HEAD' ||
$type eq 'application/x-www-form-urlencoded') {
local ($key, $val, $i);
# Read in text
if (!defined $meth || $meth eq '') {
$in = $ENV{'QUERY_STRING'};
$cmdflag = 1; # also use command-line options
} elsif($meth eq 'GET' || $meth eq 'HEAD') {
$in = $ENV{'QUERY_STRING'};
} elsif ($meth eq 'POST') {
if (($got = read(STDIN, $in, $len) != $len))
{$errflag="Short Read: wanted $len, got $got\n";};
} else {
&CgiDie("cgi-lib.pl: Unknown request method: $meth\n");
}
@in = split(/[&;]/,$in);
push(@in, @ARGV) if $cmdflag; # add command-line parameters
foreach $i (0 .. $#in) {
# Convert plus to space
$in[$i] =~ s/\+/ /g;
# Split into key and value.
($key, $val) = split(/=/,$in[$i],2); # splits on the first =.
# Convert %XX from hex numbers to alphanumeric
$key =~ s/%([A-Fa-f0-9]{2})/pack("c",hex($1))/ge;
$val =~ s/%([A-Fa-f0-9]{2})/pack("c",hex($1))/ge;
# Associate key and value
$in{$key} .= "\0" if (defined($in{$key})); # \0 is the multiple separator
$in{$key} .= $val;
}
} elsif ($ENV{'CONTENT_TYPE'} =~ m#^multipart/form-data#) {
# for efficiency, compile multipart code only if needed
$errflag = !(eval <<'END_MULTIPART');
local ($buf, $boundary, $head, @heads, $cd, $ct, $fname, $ctype, $blen);
local ($bpos, $lpos, $left, $amt, $fn, $ser);
local ($bufsize, $maxbound, $writefiles) =
($cgi_lib'bufsize, $cgi_lib'maxbound, $cgi_lib'writefiles);
# The following lines exist solely to eliminate spurious warning messages
$buf = '';
($boundary) = $type =~ /boundary="([^"]+)"/; #"; # find boundary
($boundary) = $type =~ /boundary=(\S+)/ unless $boundary;
&CgiDie ("Boundary not provided: probably a bug in your server")
unless $boundary;
$boundary = "--" . $boundary;
$blen = length ($boundary);
if ($ENV{'REQUEST_METHOD'} ne 'POST') {
&CgiDie("Invalid request method for multipart/form-data: $meth\n");
}
if ($writefiles) {
local($me);
stat ($writefiles);
$writefiles = "/tmp" unless -d _ && -w _;
# ($me) = $0 =~ m#([^/]*)$#;
$writefiles .= "/$cgi_lib'filepre";
}
# read in the data and split into parts:
# put headers in @in and data in %in
# General algorithm:
# There are two dividers: the border and the '\r\n\r\n' between
# header and body. Iterate between searching for these
# Retain a buffer of size(bufsize+maxbound); the latter part is
# to ensure that dividers don't get lost by wrapping between two bufs
# Look for a divider in the current batch. If not found, then
# save all of bufsize, move the maxbound extra buffer to the front of
# the buffer, and read in a new bufsize bytes. If a divider is found,
# save everything up to the divider. Then empty the buffer of everything
# up to the end of the divider. Refill buffer to bufsize+maxbound
# Note slightly odd organization. Code before BODY: really goes with
# code following HEAD:, but is put first to 'pre-fill' buffers. BODY:
# is placed before HEAD: because we first need to discard any 'preface,'
# which would be analagous to a body without a preceeding head.
$left = $len;
PART: # find each part of the multi-part while reading data
while (1) {
die $@ if $errflag;
$amt = ($left > $bufsize+$maxbound-length($buf)
? $bufsize+$maxbound-length($buf): $left);
$errflag = (($got = read(STDIN, $buf, $amt, length($buf))) != $amt);
die "Short Read: wanted $amt, got $got\n" if $errflag;
$left -= $amt;
$in{$name} .= "\0" if defined $in{$name};
$in{$name} .= $fn if $fn;
$name=~/([-\w]+)/; # This allows $insfn{$name} to be untainted
if (defined $1) {
$insfn{$1} .= "\0" if defined $insfn{$1};
$insfn{$1} .= $fn if $fn;
}
BODY:
while (($bpos = index($buf, $boundary)) == -1) {
if ($left == 0 && $buf eq '') {
foreach $value (values %insfn) {
unlink(split("\0",$value));
}
&CgiDie("cgi-lib.pl: reached end of input while seeking boundary " .
"of multipart. Format of CGI input is wrong.\n");
}
die $@ if $errflag;
if ($name) { # if no $name, then it's the prologue -- discard
if ($fn) { print FILE substr($buf, 0, $bufsize); }
else { $in{$name} .= substr($buf, 0, $bufsize); }
}
$buf = substr($buf, $bufsize);
$amt = ($left > $bufsize ? $bufsize : $left); #$maxbound==length($buf);
$errflag = (($got = read(STDIN, $buf, $amt, length($buf))) != $amt);
die "Short Read: wanted $amt, got $got\n" if $errflag;
$left -= $amt;
}
if (defined $name) { # if no $name, then it's the prologue -- discard
if ($fn) { print FILE substr($buf, 0, $bpos-2); }
else { $in {$name} .= substr($buf, 0, $bpos-2); } # kill last \r\n
}
close (FILE);
last PART if substr($buf, $bpos + $blen, 2) eq "--";
substr($buf, 0, $bpos+$blen+2) = '';
$amt = ($left > $bufsize+$maxbound-length($buf)
? $bufsize+$maxbound-length($buf) : $left);
$errflag = (($got = read(STDIN, $buf, $amt, length($buf))) != $amt);
die "Short Read: wanted $amt, got $got\n" if $errflag;
$left -= $amt;
undef $head; undef $fn;
HEAD:
while (($lpos = index($buf, "\r\n\r\n")) == -1) {
if ($left == 0 && $buf eq '') {
foreach $value (values %insfn) {
unlink(split("\0",$value));
}
&CgiDie("cgi-lib: reached end of input while seeking end of " .
"headers. Format of CGI input is wrong.\n$buf");
}
die $@ if $errflag;
$head .= substr($buf, 0, $bufsize);
$buf = substr($buf, $bufsize);
$amt = ($left > $bufsize ? $bufsize : $left); #$maxbound==length($buf);
$errflag = (($got = read(STDIN, $buf, $amt, length($buf))) != $amt);
die "Short Read: wanted $amt, got $got\n" if $errflag;
$left -= $amt;
}
$head .= substr($buf, 0, $lpos+2);
push (@in, $head);
@heads = split("\r\n", $head);
($cd) = grep (/^\s*Content-Disposition:/i, @heads);
($ct) = grep (/^\s*Content-Type:/i, @heads);
($name) = $cd =~ /\bname="([^"]+)"/i; #";
($name) = $cd =~ /\bname=([^\s:;]+)/i unless defined $name;
($fname) = $cd =~ /\bfilename="([^"]*)"/i; #"; # filename can be null-str
($fname) = $cd =~ /\bfilename=([^\s:;]+)/i unless defined $fname;
$incfn{$name} .= (defined $in{$name} ? "\0" : "") .
(defined $fname ? $fname : "");
($ctype) = $ct =~ /^\s*Content-type:\s*"([^"]+)"/i; #";
($ctype) = $ct =~ /^\s*Content-Type:\s*([^\s:;]+)/i unless defined $ctype;
$inct{$name} .= (defined $in{$name} ? "\0" : "") . $ctype;
if ($writefiles && defined $fname) {
$ser++;
$fn = $writefiles . ".$$.$ser";
open (FILE, ">$fn") || &CgiDie("Couldn't open $fn\n");
binmode (FILE); # write files accurately
}
substr($buf, 0, $lpos+4) = '';
undef $fname;
undef $ctype;
}
1;
END_MULTIPART
if ($errflag) {
local ($errmsg, $value);
$errmsg = $@ || $errflag;
foreach $value (values %insfn) {
unlink(split("\0",$value));
}
&CgiDie($errmsg);
} else {
# everything's ok.
}
} else {
&CgiDie("cgi-lib.pl: Unknown Content-type: $ENV{'CONTENT_TYPE'}\n");
}
# no-ops to avoid warnings
$insfn = $insfn;
$incfn = $incfn;
$inct = $inct;
$^W = $perlwarn;
return ($errflag ? undef : scalar(@in));
}
# PrintHeader
# Returns the magic line which tells WWW that we're an HTML document
sub PrintHeader {
return "Content-type: text/html\n\n";
}
# HtmlTop
# Returns the <head> of a document and the beginning of the body
# with the title and a body <h1> header as specified by the parameter
sub HtmlTop
{
local ($title) = @_;
return <<END_OF_TEXT;
<html>
<head>
<title>$title</title>
</head>
<body>
<h1>$title</h1>
END_OF_TEXT
}
# HtmlBot
# Returns the </body>, </html> codes for the bottom of every HTML page
sub HtmlBot
{
return "</body>\n</html>\n";
}
# SplitParam
# Splits a multi-valued parameter into a list of the constituent parameters
sub SplitParam
{
local ($param) = @_;
local (@params) = split ("\0", $param);
return (wantarray ? @params : $params[0]);
}
# MethGet
# Return true if this cgi call was using the GET request, false otherwise
sub MethGet {
return (defined $ENV{'REQUEST_METHOD'} && $ENV{'REQUEST_METHOD'} eq "GET");
}
# MethPost
# Return true if this cgi call was using the POST request, false otherwise
sub MethPost {
return (defined $ENV{'REQUEST_METHOD'} && $ENV{'REQUEST_METHOD'} eq "POST");
}
# MyBaseUrl
# Returns the base URL to the script (i.e., no extra path or query string)
sub MyBaseUrl {
local ($ret, $perlwarn);
$perlwarn = $^W; $^W = 0;
$ret = 'http://' . $ENV{'SERVER_NAME'} .
($ENV{'SERVER_PORT'} != 80 ? ":$ENV{'SERVER_PORT'}" : '') .
$ENV{'SCRIPT_NAME'};
$^W = $perlwarn;
return $ret;
}
# MyFullUrl
# Returns the full URL to the script (i.e., with extra path or query string)
sub MyFullUrl {
local ($ret, $perlwarn);
$perlwarn = $^W; $^W = 0;
$ret = 'http://' . $ENV{'SERVER_NAME'} .
($ENV{'SERVER_PORT'} != 80 ? ":$ENV{'SERVER_PORT'}" : '') .
$ENV{'SCRIPT_NAME'} . $ENV{'PATH_INFO'} .
(length ($ENV{'QUERY_STRING'}) ? "?$ENV{'QUERY_STRING'}" : '');
$^W = $perlwarn;
return $ret;
}
# MyURL
# Returns the base URL to the script (i.e., no extra path or query string)
# This is obsolete and will be removed in later versions
sub MyURL {
return &MyBaseUrl;
}
# CgiError
# Prints out an error message which which containes appropriate headers,
# markup, etcetera.
# Parameters:
# If no parameters, gives a generic error message
# Otherwise, the first parameter will be the title and the rest will
# be given as different paragraphs of the body
sub CgiError {
local (@msg) = @_;
local ($i,$name);
if (!@msg) {
$name = &MyFullUrl;
@msg = ("Error: script $name encountered fatal error\n");
};
if (!$cgi_lib'headerout) { #')
print &PrintHeader;
print "<html>\n<head>\n<title>$msg[0]</title>\n</head>\n<body>\n";
}
print "<h1>$msg[0]</h1>\n";
foreach $i (1 .. $#msg) {
print "<p>$msg[$i]</p>\n";
}
$cgi_lib'headerout++;
}
# CgiDie
# Identical to CgiError, but also quits with the passed error message.
sub CgiDie {
local (@msg) = @_;
&CgiError (@msg);
die @msg;
}
# PrintVariables
# Nicely formats variables. Three calling options:
# A non-null associative array - prints the items in that array
# A type-glob - prints the items in the associated assoc array
# nothing - defaults to use %in
# Typical use: &PrintVariables()
sub PrintVariables {
local (*in) = @_ if @_ == 1;
local (%in) = @_ if @_ > 1;
local ($out, $key, $output);
$output = "\n<dl compact>\n";
foreach $key (sort keys(%in)) {
foreach (split("\0", $in{$key})) {
($out = $_) =~ s/\n/<br>\n/g;
$output .= "<dt><b>$key</b>\n <dd>:<i>$out</i>:<br>\n";
}
}
$output .= "</dl>\n";
return $output;
}
# PrintEnv
# Nicely formats all environment variables and returns HTML string
sub PrintEnv {
&PrintVariables(*ENV);
}
# The following lines exist only to avoid warning messages
$cgi_lib'writefiles = $cgi_lib'writefiles;
$cgi_lib'bufsize = $cgi_lib'bufsize ;
$cgi_lib'maxbound = $cgi_lib'maxbound;
$cgi_lib'version = $cgi_lib'version;
$cgi_lib'filepre = $cgi_lib'filepre;
1; #return true
--- NEW FILE ---
#!/bin/perl
# $Id: cscope,v 1.1 2001/06/29 14:20:16 petr Exp $
#
# WebCscope: A web interface to the cscope application
# Copyright (C) 2001, Ragho Mahalingam <ra...@ma...>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Change History:
#
# $Log: cscope,v $
# Revision 1.1 2001/06/29 14:20:16 petr
# Added webcscope to contribs.
#
# Revision 1.3.4.1 2001/02/05 15:14:34 rmahalin
# initial release with some bug fixes
#
# Revision 1.3.3.1 2001/01/22 22:21:23 rmahalin
# added multi-database support
# fixed cookie support for trivial functions; removed global trivials
# added syntax highlighting for files displayed on browser
#
# Revision 1.3.1.1 2001/01/11 22:17:30 rmahalin
# added direct download with mime-type 'text/c-source' and made cosmetic changes
#
# Revision 1.3 2001/01/11 21:36:39 rmahalin
# *** empty log message ***
#
# Revision 1.2 2001/01/11 21:34:13 rmahalin
# incorporated draft feedback changes
#
# Revision 1.1 2001/01/11 21:19:32 rmahalin
# Initial revision
#
require "cgi-lib.pl";
# current code version being used
$version = "iSOS 2.5/int16";
# full path to the cscope binary
$cscopecmd = "/usr/global/bin/cscope";
# cscope working directory, where all the in/out and db files are stored
$cscopedir = "/usr/local/cscope";
# trivial functions not to display, one per line in the trivs file
$trivs = "/usr/local/htdocs/cscope/trivials";
# temporary storage directory
$tmpdir = "/tmp";
$tmpinfile = $tmpdir . "/cscopein.$$";
$tmpoutfile = $tmpdir . "/cscopeout.$$";
$showfile = $tmpdir . "/showfile.$$";
# C syntax highlighting application or uncomment the line beneath to just cat
#$hiliter = "/bin/cat";
$hiliter = "/usr/local/cgi-bin/cscope/hilite";
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(time+1000000);
$cookie_exp = sprintf("%s %02d-%s-%s %02d:%02d:%02d GMT", $wday, $mday, $mon, $year, $hour, $min, $sec);
# standard images, from the apache distribution
$img{openfile} = "/icons/folder.gif";
$img{downloadfile} = "/icons/folder.open.gif";
$img{csymbol} = "/icons/c.gif";
$img{upfunc} = "/icons/up.gif";
$img{downfunc} = "/icons/down.gif";
$img{globalfunc} = "/icons/world2.gif";
$img{trashfunc} = "/icons/bomb.gif";
$img{untrashfunc} = "/icons/back.gif";
$img{back} = "/icons/left.gif";
# feedback details
$comment{name} = "Ragho Mahalingam";
$comment{email} = "ragho\@mahalingam.com";
# operations allowed
@oper = ( "Find this C symbol",
"Find this global symbol",
"Find functions called by",
"Find functions calling",
"Find this text string",
"---------------------",
"Find this egrep pattern",
"Find this file",
"Find files #including this file" );
# -- removed global trivial function list in favor of customized trivials
#open(TRIVIAL_FUNC, $trivs);
#@trivial = <TRIVIAL_FUNC>;
#close(TRIVIAL_FUNC);
@trivial = ();
MAIN:
{
$starttime = time;
if (&ReadParse(*input)) {
&ProcessCookie;
&ProcessForm;
} else {
&PrintForm;
}
}
sub ProcessCookie {
if ( defined $ENV{HTTP_COOKIE} ) {
($var, $val) = split('=',$ENV{HTTP_COOKIE});
$Cookie{$var} = $val;
if ( defined $Cookie{'cs-trivf'} ) {
# do nothing, else initialize it to null
} else {
$Cookie{'cs-trivf'} = "defined";
}
@loc_trivial = split(',', $Cookie{'cs-trivf'});
@trivial = ( @loc_trivial );
}
}
sub ProcessTrashForm {
if ( defined $input{'trash'} ) {
@trivial = (@trivial, $input{'func'});
} else {
@tmptriv = ();
for ($i=0; $i <= $#trivial; $i++) {
$fhash = unpack('H*', $input{'func'});
$thash = unpack('H*', $trivial[$i]);
if ( $fhash != $thash ) {
@tmptriv = ( @tmptriv, $trivial[$i] );
}
}
@trivial = @tmptriv;
}
$Cookie{'cs-trivf'} = join(',',@trivial);
print "Content-type: text/html\n";
print "Set-Cookie: cs-trivf=$Cookie{'cs-trivf'}; path=$ENV{SCRIPT_NAME}; expires $cookie_exp\n\n";
print &HtmlTop("Your WebCScope Trivial Functions");
print "<ul>";
for ($i=0; $i <= $#trivial; $i++) {
print "<li><a href=\"$ENV{SCRIPT_NAME}?untrash=&func=$trivial[$i]\"><img src=$img{untrashfunc} border=0></a> $trivial[$i]";
}
print "</ul><hr>\n";
print "Click <a href=\"#\" "history.back();\"><img src=$img{back} border=0></a> to go back.\n";
print &HtmlBot;
}
sub ProcessForm {
chdir $cscopedir;
opendir(DIRLIST,$cscopedir);
@dirlist = readdir(DIRLIST);
closedir(DIRLIST);
if ( $input{'db'} eq "all" ) {
@csdirs = ();
for ($i=0; $i <= $#dirlist; $i++ ) {
if ( ($dirlist[$i] ne ".") && ($dirlist[$i] ne "..") && ( -d $dirlist[$i] ) ) {
@csdirs = ( @csdirs, $dirlist[$i] );
}
}
} else {
@csdirs = ( $input{'db'} );
}
$op = $input{'op'};
$arg = $input{'arg'};
$shtriv = $input{'triv'};
$db = $input{'db'};
if ( defined $input{'fshow'} ) { &ShowFileForm; exit; }
if ( defined $input{'load'} ) { &DownloadFileForm; exit; }
if ( (defined $input{'trash'}) || (defined $input{'untrash'}) ) {
&ProcessTrashForm; exit; }
print &PrintHeader;
print &HtmlTop ("WebCscope");
print <<ENDOFHDR;
<h3>Instructions</h3><p>
<ul>
<li><img src=$img{csymbol}> will find a symbol with this name<br>
<li><img src=$img{upfunc}> will find functions <i>calling</i> this function<br>
<li><img src=$img{downfunc}> will find functions <i>called</i> by this
function<br>
<li><img src=$img{globalfunc}> will locate a global definition of this name<br>
<li><img src=$img{openfile}> will display this file and highlight
the fragment line<br>
<li><img src=$img{downloadfile}> will download this file with mimetype "text/c-source"<br>
<li><img src=$img{trashfunc}> will add this symbol/function to your trivial list<br>
</ul>
<p><hr>
ENDOFHDR
foreach $index ( 0 .. $#csdirs ) {
unlink $tmpinfile, $tmpoutfile;
open(CSCOPEIN, ">$tmpinfile");
print CSCOPEIN "$op$arg\n";
print CSCOPEIN "exit\n";
close(CSCOPEIN);
$dbdir = $cscopedir . "/" . $csdirs[$index];
chdir($dbdir);
$syscmd = "cd $dbdir; $cscopecmd -d -l < $tmpinfile > $tmpoutfile;";
system($syscmd);
$count = 1;
open(CSCOPEIN, "$tmpoutfile");
$line = <CSCOPEIN>;
@temp = split(' ',$line);
$numresult = $temp[2];
print <<ENDOFHDRs;
<h2>Search Results from <b>$csdirs[$index]</b></h2>
<font size=+1>$oper[$op]: <b>$arg</b></font><br>
Matches: $numresult<p>
<table border=1 cellpadding=2 cellspacing=2>
<tr><td><b>Num</b></td><td><b>File</b></td><td><b>Function</b></td>
<td><b>Line</b></td><td><b>Fragment</b></td></tr>
ENDOFHDRs
$trivs_rm = 0;
for ($i=0; $i < $numresult; $i++ ) {
$line = <CSCOPEIN>;
@fields = split(' ',$line);
$file = shift @fields;
$fshowfile = $file;
$func = shift @fields;
$lnum = shift @fields;
@filef = split('/',$file);
$file = $filef[$#filef];
$frag = join(' ',@fields);
if ( ! $shtriv ) {
for ( $j=0; $j <= $#trivial; $j++ )
{
$fhash = unpack('H*', $func);
$thash = unpack('H*', $trivial[$j]);
if ( $fhash == $thash ) { $trivs_rm++; goto done; }
}
}
if ( $func ne "<global>" && $func ne "<unknown>" ) {
print <<ENDOFBODY1;
<tr><td>$count</td>
<td><a href="$ENV{SCRIPT_NAME}?fshow=1&fshowfile=$fshowfile&line=$lnum&db=$db">
<img src=$img{openfile} border=0></a> $file
<a href="$ENV{SCRIPT_NAME}?load=1&file=$fshowfile&db=$db">
<img src=$img{downloadfile} border=0></a>
</td>
<td><a href="$ENV{SCRIPT_NAME}?op=0&triv=$shtriv&arg=$func&db=$db">
<img src=$img{csymbol} border=0></a>
<a href="$ENV{SCRIPT_NAME}?op=3&triv=$shtriv&arg=$func&db=$db">
<img src=$img{upfunc} border=0></a>
$func
<a href="$ENV{SCRIPT_NAME}?op=2&triv=$shtriv&arg=$func&db=$db">
<img src=$img{downfunc} border=0></a>
<a href="$ENV{SCRIPT_NAME}?op=1&triv=$shtriv&arg=$func&db=$db">
<img src=$img{globalfunc} border=0></a>
<a href="$ENV{SCRIPT_NAME}?trash=&func=$func&db=$db">
<img src=$img{trashfunc} border=0></a>
</td>
<td>$lnum</td>
<td>$frag</td></tr>
ENDOFBODY1
} else {
$func =~ tr/<>/[]/;
print <<ENDOFBODY2;
<tr><td>$count</td>
<td><a href="$ENV{SCRIPT_NAME}?fshow=1&fshowfile=$fshowfile&line=$lnum&db=$db">
<img src=$img{openfile} border=0></a> $file
<a href="$ENV{SCRIPT_NAME}?load=1&file=$fshowfile&db=$db">
<img src=$img{downloadfile} border=0></a>
</td>
<td>$func</td>
<td>$lnum</td>
<td><$frag</td></tr>
ENDOFBODY2
}
$count++;
done:
}
close(CSCOPEIN);
print "</table>\n";
print "<br>Eliminated $trivs_rm line item(s) as trivial functions<p><hr>\n";
unlink $tmpinfile, $tmpoutfile;
}
print &OperationTime;
print &Feedback;
print &HtmlBot;
}
sub DownloadFileForm {
$file = $input{'file'};
print "Content-type: text/c-source\n\n";
open(SHOWFILE, $file);
while (<SHOWFILE>) { print; }
close(SHOWFILE);
}
sub ShowFileForm {
$file = $input{'fshowfile'};
$lnum = $input{'line'};
print &PrintHeader;
print &HtmlTop ("WebCscope");
print "<b>Note</b>: Click <a href=#ref><img src=$img{downfunc} border=0></a> to go to the reference line<p><hr>\n";
print "<hr>";
unlink $showfile;
system("$hiliter $file > $showfile");
open(SHOWFILE, $showfile);
$curline = 1;
while ( <SHOWFILE> ) {
$line = $_;
if ( $curline == $lnum ) {
print "<a name=ref><blink>$line</blink>";
} else {
print $line;
}
$curline++;
}
close (SHOWFILE);
print &OperationTime;
print &Feedback;
print &HtmlBot;
}
sub PrintForm {
chdir $cscopedir;
opendir(DIRLIST,$cscopedir);
@dirlist = readdir(DIRLIST);
closedir(DIRLIST);
@csdirs = ();
for ($i=0; $i <= $#dirlist; $i++ ) {
if ( ($dirlist[$i] ne ".") && ($dirlist[$i] ne "..") && ( -d $dirlist[$i] ) ) {
@csdirs = ( @csdirs, $dirlist[$i] );
}
}
print &PrintHeader;
print &HtmlTop ("Web-CScope");
print <<ENDOFTEXTA;
Select an operation below and enter a symbol, function or text to search in
the database. The active version is $version. Input is case-sensitive,
so if your search returns no results, check the case and the symbol name.<hr>
<form method="get" action="$ENV{SCRIPT_NAME}">
<table border=0 cellpadding=2 cellspacing=2>
<tr>
<td>Operation:</td>
<td>
<select name="op">
ENDOFTEXTA
foreach $opi ( 0 .. $#oper ) {
print "<option value=$opi>$oper[$opi]";
}
print <<ENDOFTEXTB;
</select>
</td>
</tr>
<tr>
<td>CScope Database:</td>
<td>
<select name="db">
<option selected value="all">All Databases
ENDOFTEXTB
for ($i=0; $i <= $#csdirs; $i++) {
print " <option value=\"$csdirs[$i]\">$csdirs[$i]\n";
}
print <<ENDOFTEXT2;
</select>
<tr>
<td>Symbol, function or text:</td>
<td><input name="arg" size=30></td>
</tr>
<tr>
<td></td>
<td halign=center>Show trivial functions:
<input type=radio name="triv" value=1>Yes
<input type=radio name="triv" value=0 checked>No
<br><br>
<input type="submit" value="Scope It!"></td>
</tr>
</table>
<hr>
</form>
ENDOFTEXT2
print &Feedback;
print &HtmlBot;
}
sub Feedback {
$feedback = "<font size=-1>";
$feedback .= '$Id: cscope,v 1.1 2001/06/29 14:20:16 petr Exp $<br>';
$feedback .= "$comment{name}<i><";
$feedback .= "<a href=\"mailto:$comment{email}\">";
$feedback .= "$comment{email}</a>></i></font>";
return $feedback;
}
sub OperationTime {
$deltime = time - $starttime;
return "Operation took $deltime second(s)<br>";
}
--- NEW FILE ---
/*
CopyRight (C) 1999, Dmitry Obukhov, ds...@us...
mailto: ds...@us...
http://www.EmbeddedStuff.com
----------------------------------------------
Last modified 6 Apr 97
----------------------------------------------
Converts C (C++) source to HTML code fragment
with syntax highlighting.
Since program written for personal purpose
the <TABLE> tags generated. This is optional
page format specific thing.
Usage: CTHM <input_file>. All output is done
to STDOUTPUT, error messages to STDERR.
For HTML fragment generation:
CHTM file.c > file.htm
- Some input convertion required to use this
code as CGI module. Will be done soon.
- Optimization required for blocks of EOL
comments
*/
#include <stdio.h>
// ------------------- Decoding status values
#define START 0
#define INLINE 1
#define DEFINE 2
// ------------------- Decoding Remark
#define REM1 20
#define REM2 21
#define REM_END 22
#define REM_STAR 23
#define REM_STAR_1 24
#define STRING 25 // String is "like" remark
// ------------------- HTML TAG Generation
#define ON 1
#define OFF 0
// ------------------- HTML TAG type
#define MODE_KEYWORD 0
#define MODE_REMARK 2
#define MODE_REMARK_EOL 4
#define MODE_DEFINE 6
#define MODE_STRING 8
int is_delimeter(char c)
{
int ii=0;
char dlms[] =
"\t\r\n (){}[]+-*/%\"'&|^~:;<>.,";
//--------------------------------
while (dlms[ii])
{
if (c==dlms[ii++]) return 1;
}
return 0;
}
int is_keyword(char * str)
{
char * kwords[] =
{
"asm", "auto",
"break", "case",
"cdecl", "char",
"class", "const",
"continue", "default",
"delete", "do",
"double", "else",
"enum", "extern",
"far", "float",
"for", "friend",
"goto", "huge",
"if", "inline",
"int", "interrupt",
"long", "near",
"new", "operator",
"pascal", "private",
"protected", "public",
"register", "return",
"short", "signed",
"sizeof", "static",
"struct", "switch",
"template", "this",
"typedef", "union",
"unsigned", "virtual",
"void", "volatile",
"while", NULL
};
int ii=0;
int jj;
int check;
while (kwords[ii])
{
jj = 0;
check = 1;
while (kwords[ii][jj] && check)
{
if (str[jj] != kwords[ii][jj])
{
check = 0;
}
jj++;
}
if (check) return 1;
ii++;
}
return 0;
}
void set_mode(int on_off, int mode)
{
char * tags[] =
{
//-------------------- KEYWORD
"<strong>",
"</strong>",
//-------------------- Classic remarks
"<font color=\"#336600\">",
"</font>",
//-------------------- EOL Remarks
"<font color=\"#336600\">",
"</font>",
//-------------------- #DEFINE
"<font color=\"#663300\"><strong>",
"</strong></font>",
//-------------------- "string"
"<font color=\"#0000CC\">",
"</font>",
NULL, NULL
};
fprintf(stdout,tags[mode + 1 - on_off]);
}
void print_char_html(char c)
{
switch (c)
{
case '<':
fprintf(stdout,"<");
break;
case '>':
fprintf(stdout,">");
break;
case '"':
fprintf(stdout,""");
break;
case '&':
fprintf(stdout,"&");
break;
case '|':
fprintf(stdout,"¦");
break;
default:
fprintf(stdout,"%c",c);
}
}
int main(int _argc, char** _argv)
{
FILE *in, *out;
char c;
int mode;
char buf[80];
int bufidx = 0;
int progress = 1;
int echo;
int saved_mode;
int kw;
char tmpc;
char prevc;
if (_argc < 2)
{
fprintf(stderr,
"USAGE: c2html <file>\n");
return 1;
}
if ((in = fopen(_argv[1], "rt")) == NULL)
{
fprintf(stderr,
"Cannot open input file.\n");
return 1;
}
fprintf(stdout, "<pre>");
mode = START;
while (!feof(in) && progress)
{
echo = 1;
prevc = c;
c = fgetc(in);
if (c=='/' && (mode < REM1))
{
saved_mode = mode;
mode = REM1;
}
switch (mode)
{
case REM1:
echo = 0;
mode = REM2;
break;
case REM2:
if (c=='/')
{
if (saved_mode == DEFINE)
{
set_mode(OFF, MODE_DEFINE);
}
mode = REM_END;
set_mode(ON, MODE_REMARK_EOL);
}
else if (c=='*')
{
if (saved_mode == DEFINE)
{
set_mode(OFF, MODE_DEFINE);
}
mode = REM_STAR;
set_mode(ON, MODE_REMARK);
}
else
{
mode = saved_mode;
}
printf("/");
break;
case REM_END:
if (c=='\n')
{
set_mode(OFF, MODE_REMARK_EOL);
}
break;
case REM_STAR:
if (c=='*')
{
mode = REM_STAR_1;
}
break;
case REM_STAR_1:
if (c=='/')
{
mode = INLINE;
fprintf(stdout,"/");
echo = 0;
set_mode(OFF, MODE_REMARK);
}
else mode = REM_STAR;
break;
case START:
if (c=='#')
{
mode = DEFINE;
set_mode(ON, MODE_DEFINE);
break;
}
else if (c==' ') break;
mode = INLINE;
// and continue in next case
case INLINE:
if (c=='"' && //
prevc != 0x27 && //
prevc != '\\') //
{
set_mode(ON, MODE_STRING);
mode = STRING;
}
break;
case STRING:
if (c=='"' && prevc != '\\')
{
print_char_html('"');
set_mode(OFF, MODE_STRING);
echo = 0;
mode = INLINE;
}
break;
case DEFINE:
if (c=='\n')
{
set_mode(OFF, MODE_DEFINE);
}
break;
}
if (echo && //
(mode == INLINE || //
(mode!=INLINE && //
bufidx))) //
{
buf[bufidx++] = c;
buf[bufidx] = 0;
if (is_delimeter(c))
{
kw = 0;
if (bufidx>2)
{
kw = is_keyword(buf);
}
if (kw)
{
set_mode(ON, MODE_KEYWORD);
}
tmpc = buf[bufidx-1];
buf[bufidx-1] = 0;
fprintf(stdout,"%s",buf);
if (kw)
{
set_mode(OFF, MODE_KEYWORD);
}
print_char_html(tmpc);
bufidx = 0;
buf[0] = 0;
}
}
else if (echo) print_char_html(c);
if (c=='\n' && mode != REM_STAR)
{
mode = START;
}
}
fclose(in);
fprintf(stdout,"</pre>\n");
fprintf(stdout,
"<!-- == Generated by CHTM convertor -->\n");
fprintf(stdout,
"<!-- == CopyRight (C) 1999, Dmitry Obukhov, ds...@us... -->\n");
return 0;
}
|
Update of /cvsroot/cscope/cscope/contrib/webcscope/icons In directory usw-pr-cvs1:/tmp/cvs-serv6619/contrib/webcscope/icons Added Files: back.gif bomb.gif c.gif down.gif folder.gif folder.open.gif left.gif up.gif world2.gif Log Message: Added webcscope to contribs. --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a °v$Ýû}ئIÐvDpHã % r© [§@-45áoJ½Æ --- NEW FILE --- GIF89a Ñ(Q!uA!ÖJq9hRÄZ-Ýf¶ÇâN¿Á0\¾ÑÊó÷ÂÕpðt@ìû7l+ --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a pÅÁ/ãsF«×mñC¨Ûï÷9¦ïûý*:5 --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a |
|
From: Petr S. <pe...@us...> - 2001-06-29 14:20:19
|
Update of /cvsroot/cscope/cscope/contrib
In directory usw-pr-cvs1:/tmp/cvs-serv6619/contrib
Modified Files:
README
Log Message:
Added webcscope to contribs.
Index: README
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** README 2000/04/21 23:36:26 1.1
--- README 2001/06/29 14:20:16 1.2
***************
*** 5,6 ****
--- 5,9 ----
directory set (among other things) - docced in script itself.
contributed from SCO osr5.
+
+ webcscope - a web cgi interface to cscope. Contributed by Ragho Mahalingam,
+ using code from Dmitry Obukhovi and Steven E. Brenner.
|
|
From: Petr S. <pe...@us...> - 2001-06-29 14:20:19
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv6619 Modified Files: ChangeLog AUTHORS Log Message: Added webcscope to contribs. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -r1.83 -r1.84 *** ChangeLog 2001/06/29 10:52:27 1.83 --- ChangeLog 2001/06/29 14:20:15 1.84 *************** *** 1,2 **** --- 1,3 ---- + (2001/06/29 - ragho) webcscope added to contrib (2001/06/29 - broeker) Re-formatted README, and added a tip working around buggy libcurses on HP-UX 10. Index: AUTHORS =================================================================== RCS file: /cvsroot/cscope/cscope/AUTHORS,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** AUTHORS 2001/06/28 22:15:00 1.27 --- AUTHORS 2001/06/29 14:20:15 1.28 *************** *** 27,28 **** --- 27,30 ---- Triet H. Lai <th...@ma...> - GNU Emacs fixes for xcscope.el Steven Elliott <sel...@au...> - Fuzzy pattern matching for xcscope.el + Ragho Mahalingam <ra...@ma...> - webcscope + Dmitry Obukhov - Hilight code in webcscope |
|
From: Petr S. <pe...@us...> - 2001-06-29 14:14:28
|
Update of /cvsroot/cscope/cscope/contrib/webcscope/icons In directory usw-pr-cvs1:/tmp/cvs-serv4762/icons Log Message: Directory /cvsroot/cscope/cscope/contrib/webcscope/icons added to the repository |
|
From: Petr S. <pe...@us...> - 2001-06-29 14:13:58
|
Update of /cvsroot/cscope/cscope/contrib/webcscope In directory usw-pr-cvs1:/tmp/cvs-serv4558/webcscope Log Message: Directory /cvsroot/cscope/cscope/contrib/webcscope added to the repository |
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-29 10:52:30
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv2299 Modified Files: ChangeLog README Log Message: Added workaround for HP-sUX curses problem to README Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -r1.82 -r1.83 *** ChangeLog 2001/06/28 22:15:00 1.82 --- ChangeLog 2001/06/29 10:52:27 1.83 *************** *** 1,2 **** --- 1,5 ---- + (2001/06/29 - broeker) Re-formatted README, and added a tip working around + buggy libcurses on HP-UX 10. + (2001/06/29 - broeker) Oversight in packages/MSDOS/djmake.bat fixed. (2001/06/28 - darrylo) Updated xcscope.el to include GNU Emacs fixes and fuzzy pattern matching. Updated docs in xcscope.el. Index: README =================================================================== RCS file: /cvsroot/cscope/cscope/README,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** README 2000/11/20 20:07:24 1.5 --- README 2001/06/29 10:52:27 1.6 *************** *** 14,23 **** TIPS: - - Try to use flex as the lexical analyzer. There may be some problems with using the native lex (due to some problems). The has been reported as a problem on Solaris. - - On Linux systems (and possibly others) configure may fail if lex is a synomyn for flex. To fix, do the following: make distclean ./configure --with-flex make Browse to http://cscope.sourceforge.net for more current information --- 14,35 ---- TIPS: + - Try to use flex as the lexical analyzer. There may be some problems + with using the native lex (due to some problems). The has been + reported as a problem on Solaris. + + - On Linux systems (and possibly others) configure may fail if lex is + a synomyn for flex. To fix, do the following: + make distclean ./configure --with-flex make + + - On HP-UX 10.*, the default version of curses was observed to be broken. + Get their "cumulative patches" and then compile like this, to work + around that bug: + + make CURSES_LIBS=-lHcurses + Browse to http://cscope.sourceforge.net for more current information |
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-29 10:49:19
|
Update of /cvsroot/cscope/cscope/packages/MSDOS In directory usw-pr-cvs1:/tmp/cvs-serv1253/packages/MSDOS Modified Files: djmake.bat Log Message: Fix pathname of patch file Index: djmake.bat =================================================================== RCS file: /cvsroot/cscope/cscope/packages/MSDOS/djmake.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** djmake.bat 2001/06/28 15:56:06 1.1 --- djmake.bat 2001/06/29 10:49:15 1.2 *************** *** 10,14 **** echo with "ln -s": ! patch -p1 -i contrib/msdos/ylwrap.pat echo ---- Now configure and make it. --- 10,14 ---- echo with "ln -s": ! patch -p1 -i packages/MSDOS/ylwrap.pat echo ---- Now configure and make it. |
|
From: Darryl O. <da...@us...> - 2001-06-28 22:15:04
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv29033 Modified Files: AUTHORS ChangeLog Log Message: Updated AUTHORS and ChangeLog. Also updated documentation in xcscope.el, and added the ability to use cscope databases that can have different names (they no longer must all have the same name). Index: AUTHORS =================================================================== RCS file: /cvsroot/cscope/cscope/AUTHORS,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** AUTHORS 2001/05/30 21:10:55 1.26 --- AUTHORS 2001/06/28 22:15:00 1.27 *************** *** 25,26 **** --- 25,28 ---- Garret Hade - Various ocs fixes Nick Dixon - Improvement in key handling + Triet H. Lai <th...@ma...> - GNU Emacs fixes for xcscope.el + Steven Elliott <sel...@au...> - Fuzzy pattern matching for xcscope.el Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -r1.81 -r1.82 *** ChangeLog 2001/06/28 15:56:06 1.81 --- ChangeLog 2001/06/28 22:15:00 1.82 *************** *** 1,2 **** --- 1,4 ---- + (2001/06/28 - darrylo) Updated xcscope.el to include GNU Emacs fixes and + fuzzy pattern matching. Updated docs in xcscope.el. (2001/06/28 - broeker) Added files in packages/MSDOS that help compiling cscope on MSDOS using the DJGPP compiler. |
|
From: Darryl O. <da...@us...> - 2001-06-28 22:15:04
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv29033/contrib/xcscope
Modified Files:
xcscope.el
Log Message:
Updated AUTHORS and ChangeLog.
Also updated documentation in xcscope.el, and added the ability to use
cscope databases that can have different names (they no longer must
all have the same name).
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** xcscope.el 2001/06/28 04:45:05 1.8
--- xcscope.el 2001/06/28 22:15:00 1.9
***************
*** 7,11 ****
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Wed Jun 27 20:59:17 2001
; Language: Emacs-Lisp
; Package: N/A
--- 7,11 ----
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Thu Jun 28 15:10:40 2001 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
***************
*** 140,148 ****
;; current directory will be used.
;;
! ;; A cscope database directory is one in which EITHER a cscope
! ;; database file (e.g., "cscope.out") OR a cscope file list (e.g.,
;; "cscope.files") exists. If only "cscope.files" exists, the
;; corresponding "cscope.out" will be automatically created by cscope
! ;; when a search is done.
;;
;; Note that the variable, `cscope-database-regexps', is generally not
--- 140,152 ----
;; current directory will be used.
;;
! ;; A cscope database directory is one in which EITHER a cscope database
! ;; file (e.g., "cscope.out") OR a cscope file list (e.g.,
;; "cscope.files") exists. If only "cscope.files" exists, the
;; corresponding "cscope.out" will be automatically created by cscope
! ;; when a search is done. By default, the cscope database file is called
! ;; "cscope.out", but this can be changed (on a global basis) via the
! ;; variable, `cscope-database-file'. There is limited support for cscope
! ;; databases that are named differently than that given by
! ;; `cscope-database-file', using the variable, `cscope-database-regexps'.
;;
;; Note that the variable, `cscope-database-regexps', is generally not
***************
*** 322,330 ****
;; t
;;
! ;; Here, DBDIR is a directory that contains a cscope database. If only
! ;; DBDIR is specified, then that cscope database will be searched without
! ;; any additional cscope command-line options. If OPTIONS is given, then
! ;; OPTIONS is a list of strings, where each string is a separate cscope
! ;; command-line option.
;;
;; In the case of "( t )", this specifies that the search is to use the
--- 326,339 ----
;; t
;;
! ;; Here, DBDIR is a directory (or a file) that contains a cscope
! ;; database. If DBDIR is a directory, then it is expected that the
! ;; cscope database, if present, has the filename given by the variable,
! ;; `cscope-database-file'; if DBDIR is a file, then DBDIR is the path
! ;; name to a cscope database file (which does not have to be the same as
! ;; that given by `cscope-database-file'). If only DBDIR is specified,
! ;; then that cscope database will be searched without any additional
! ;; cscope command-line options. If OPTIONS is given, then OPTIONS is a
! ;; list of strings, where each string is a separate cscope command-line
! ;; option.
;;
;; In the case of "( t )", this specifies that the search is to use the
***************
*** 358,363 ****
;;
;; A cscope database directory is one in which EITHER a cscope database
! ;; file (e.g., "cscope.out") OR a cscope file list (e.g., "cscope.files")
! ;; exists.
;;
;; Here is an example of `cscope-database-regexps':
--- 367,378 ----
;;
;; A cscope database directory is one in which EITHER a cscope database
! ;; file (e.g., "cscope.out") OR a cscope file list (e.g.,
! ;; "cscope.files") exists. If only "cscope.files" exists, the
! ;; corresponding "cscope.out" will be automatically created by cscope
! ;; when a search is done. By default, the cscope database file is called
! ;; "cscope.out", but this can be changed (on a global basis) via the
! ;; variable, `cscope-database-file'. There is limited support for cscope
! ;; databases that are named differently than that given by
! ;; `cscope-database-file', using the variable, `cscope-database-regexps'.
;;
;; Here is an example of `cscope-database-regexps':
***************
*** 368,372 ****
;; ( t )
;; ( "/users/jdoe/sources/proj2")
! ;; ( "/users/jdoe/sources/proj3")
;; t
;; ( "/some/master/directory" ("-d" "-I/usr/local/include") )
--- 383,388 ----
;; ( t )
;; ( "/users/jdoe/sources/proj2")
! ;; ( "/users/jdoe/sources/proj3/mycscope.out")
! ;; ( "/users/jdoe/sources/proj4")
;; t
;; ( "/some/master/directory" ("-d" "-I/usr/local/include") )
***************
*** 385,390 ****
;;
;; 2. Next, searches will be done using the cscope database
! ;; directories, "/users/jdoe/sources/proj2" and
! ;; "/users/jdoe/sources/proj3".
;;
;; 3. If a match was found, searching will stop.
--- 401,409 ----
;;
;; 2. Next, searches will be done using the cscope database
! ;; directories, "/users/jdoe/sources/proj2",
! ;; "/users/jdoe/sources/proj3/mycscope.out", and
! ;; "/users/jdoe/sources/proj4". Note that, instead of the file,
! ;; "cscope.out", the file, "mycscope.out", will be used in the
! ;; directory "/users/jdoe/sources/proj3".
;;
;; 3. If a match was found, searching will stop.
***************
*** 421,426 ****
;; 1. Cannot handle whitespace in directory or file names.
;;
;;
- ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
--- 440,472 ----
;; 1. Cannot handle whitespace in directory or file names.
;;
+ ;; 2. By default, colored faces are used to display results. If you happen
+ ;; to use a black background, part of the results may be invisible
+ ;; (because the foreground color may be black, too). There are at least
+ ;; two solutions for this:
+ ;;
+ ;; 2a. Turn off colored faces, by setting `cscope-use-face' to `nil',
+ ;; e.g.:
+ ;;
+ ;; (setq cscope-use-face nil)
+ ;;
+ ;; 2b. Explicitly set colors for the faces used by cscope. The faces
+ ;; are:
+ ;;
+ ;; cscope-file-face
+ ;; cscope-function-face
+ ;; cscope-line-number-face
+ ;; cscope-line-face
+ ;; cscope-mouse-face
+ ;;
+ ;; The face most likely to cause problems (e.g., black-on-black
+ ;; color) is `cscope-line-face'.
+ ;;
+ ;; 3. The support for cscope databases different from that specified by
+ ;; `cscope-database-file' is quirky. If the file does not exist, it
+ ;; will not be auto-created (unlike files names by
+ ;; `cscope-database-file'). You can manually force the file to be
+ ;; created by using touch(1) to create a zero-length file; the
+ ;; database will be created the next time a search is done.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
***************
*** 472,480 ****
t
! Here, DBDIR is a directory that contains a cscope database. If only
! DBDIR is specified, then that cscope database will be searched without
! any additional cscope command-line options. If OPTIONS is given, then
! OPTIONS is a list of strings, where each string is a separate cscope
! command-line option.
In the case of \"( t )\", this specifies that the search is to use the
--- 518,530 ----
t
! Here, DBDIR is a directory (or a file) that contains a cscope database.
! If DBDIR is a directory, then it is expected that the cscope database,
! if present, has the filename given by the variable,
! `cscope-database-file'; if DBDIR is a file, then DBDIR is the path name
! to a cscope database file (which does not have to be the same as that
! given by `cscope-database-file'). If only DBDIR is specified, then that
! cscope database will be searched without any additional cscope
! command-line options. If OPTIONS is given, then OPTIONS is a list of
! strings, where each string is a separate cscope command-line option.
In the case of \"( t )\", this specifies that the search is to use the
***************
*** 508,513 ****
A cscope database directory is one in which EITHER a cscope database
! file (e.g., \"cscope.out\") OR a cscope file list (e.g., \"cscope.files\")
! exists.
Here is an example of `cscope-database-regexps':
--- 558,569 ----
A cscope database directory is one in which EITHER a cscope database
! file (e.g., \"cscope.out\") OR a cscope file list (e.g.,
! \"cscope.files\") exists. If only \"cscope.files\" exists, the
! corresponding \"cscope.out\" will be automatically created by cscope
! when a search is done. By default, the cscope database file is called
! \"cscope.out\", but this can be changed (on a global basis) via the
! variable, `cscope-database-file'. There is limited support for cscope
! databases that are named differently than that given by
! `cscope-database-file', using the variable, `cscope-database-regexps'.
Here is an example of `cscope-database-regexps':
***************
*** 518,522 ****
( t )
( \"/users/jdoe/sources/proj2\")
! ( \"/users/jdoe/sources/proj3\")
t
( \"/some/master/directory\" (\"-d\" \"-I/usr/local/include\") )
--- 574,579 ----
( t )
( \"/users/jdoe/sources/proj2\")
! ( \"/users/jdoe/sources/proj3/mycscope.out\")
! ( \"/users/jdoe/sources/proj4\")
t
( \"/some/master/directory\" (\"-d\" \"-I/usr/local/include\") )
***************
*** 535,540 ****
2. Next, searches will be done using the cscope database
! directories, \"/users/jdoe/sources/proj2\" and
! \"/users/jdoe/sources/proj3\".
3. If a match was found, searching will stop.
--- 592,600 ----
2. Next, searches will be done using the cscope database
! directories, \"/users/jdoe/sources/proj2\",
! \"/users/jdoe/sources/proj3/mycscope.out\", and
! \"/users/jdoe/sources/proj4\". Note that, instead of the file,
! \"cscope.out\", the file, \"mycscope.out\", will be used in the
! directory \"/users/jdoe/sources/proj3\".
3. If a match was found, searching will stop.
***************
*** 1264,1267 ****
--- 1324,1329 ----
(let (this-directory database-dir)
(catch 'done
+ (if (file-regular-p directory)
+ (throw 'done directory))
(setq directory (cscope-canonicalize-directory directory)
this-directory directory)
***************
*** 1527,1531 ****
(defun cscope-search-one-database ()
"Pop a database entry from cscope-search-list and do a search there."
! (let ( next-item options cscope-directory database-file outbuf done)
(setq outbuf (get-buffer-create cscope-output-buffer-name))
(save-excursion
--- 1589,1594 ----
(defun cscope-search-one-database ()
"Pop a database entry from cscope-search-list and do a search there."
! (let ( next-item options cscope-directory database-file outbuf done
! base-database-file-name)
(setq outbuf (get-buffer-create cscope-output-buffer-name))
(save-excursion
***************
*** 1536,1539 ****
--- 1599,1603 ----
(setq next-item (car cscope-search-list)
cscope-search-list (cdr cscope-search-list)
+ base-database-file-name cscope-database-file
)
(if (listp next-item)
***************
*** 1544,1547 ****
--- 1608,1620 ----
(cscope-search-directory-hierarchy
default-directory)))
+ (if (file-regular-p cscope-directory)
+ (progn
+ ;; Handle the case where `cscope-directory' is really
+ ;; a full path name to a cscope database.
+ (setq base-database-file-name
+ (file-name-nondirectory cscope-directory)
+ cscope-directory
+ (file-name-directory cscope-directory))
+ ))
(setq cscope-directory
(file-name-as-directory cscope-directory))
***************
*** 1571,1575 ****
(if cscope-command-args
(setq options (append options cscope-command-args)))
! (setq database-file (concat cscope-directory cscope-database-file)
cscope-searched-dirs (cons cscope-directory
cscope-searched-dirs)
--- 1644,1648 ----
(if cscope-command-args
(setq options (append options cscope-command-args)))
! (setq database-file (concat cscope-directory base-database-file-name)
cscope-searched-dirs (cons cscope-directory
cscope-searched-dirs)
***************
*** 1585,1590 ****
(goto-char (point-max))
(setq cscope-item-start (point))
! (insert "\nDatabase directory: " cscope-directory "\n"
! cscope-separator-line)
(setq cscope-output-start (point))
(setq default-directory cscope-directory)
--- 1658,1670 ----
(goto-char (point-max))
(setq cscope-item-start (point))
! (if (string= base-database-file-name cscope-database-file)
! (insert "\nDatabase directory: " cscope-directory "\n"
! cscope-separator-line)
! (insert "\nDatabase directory/file: "
! cscope-directory base-database-file-name "\n"
! cscope-separator-line))
! ;; Add the correct database file to search
! (setq options (cons base-database-file-name options))
! (setq options (cons "-f" options))
(setq cscope-output-start (point))
(setq default-directory cscope-directory)
|
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:56:10
|
Update of /cvsroot/cscope/cscope/packages/MSDOS
In directory usw-pr-cvs1:/tmp/cvs-serv29687/packages/MSDOS
Added Files:
README djmake.bat ylwrap.pat
Log Message:
DJGPP build support files added
--- NEW FILE ---
------------------------------------
cscope for DOS using DJGPP
------------------------------------
*) You need a rather recent DJGPP version and tools
installed. For running cscope on DOS, be sure you
have:
* GNU ed for cscope's automated editing of files. It's quite likely
you didn't have this installed, unless you're a collector of Unix
tools.
* an editor or viewer to be used as a child program when you open
a match, inside cscope. DJGPP-compiled versions, if possible.
Choose either
-- `less' if you're content with viewing the file
-- some version of `vi' (VIM, Elvis, or NVI) use cscope in it's
"classical" way
-- GNU Emacs for the full glory :-)
Set the environment variable CSCOPE_EDITOR or EDITOR to the name
of the editor you want to use. You may want to create a [cscope]
section in your djgpp.env file, if you know how to do it.
For more details what cscope is, and how to use it, see the
documentation in the root directory of the cscope sources, or the
man page.
*) For compiling cscope from sources, you need a much more complete
collection of GNU development and commandline tools, in addition
to the above, and the obvious GCC and binutils:
* bash
* make
* flex
* bison
* sed
* patch
* fileutils (cp, ln, ...)
* textutils (cat)
Optionally, if you plan to modify the sources.
* autoconf
* automake
* Perl
These are the ones I'm sure you need --- I may have overlooked some.
The DJGPP source packages is already configured, so you can just
run 'make' to get the package. Then
make install prefix=d:/djgpp"
(or wherever else your DJGPP is) to install it.
Or cd to the top source directory and execute the supplied
djmake.bat:
cd d:\djgpp\contrib\cscope
packages\msdos\djmake.bat
and watch it compile. This will be necessary if you made any
substantial changes to the sources.
Have fun with it. In case of problem, mail to dj...@de... (or the
attached Usenet newsgroup) or file a bug report at cscope's page on
Sourceforge.net.
Hans-Bernhard Br"oker (br...@ph...)
(Han...@ep...)
--- NEW FILE ---
@echo off
if exist src\fscanner.l goto dir_okay
echo !!!! Must run this batch file from the main source directory!
exit
:dir_okay
echo ---- Start by patching the ylwrap script to avoid problems
echo with "ln -s":
patch -p1 -i contrib/msdos/ylwrap.pat
echo ---- Now configure and make it.
echo -- NOTE --: this assumes you have pdcurses installed!
echo -- NOTE --: Will be using '-f' mode of flex, for faster scanning
bash configure
make CURSES_LIBS=-lpdcurses LFLAGS="-f8B"
echo ---- You may now call "make install", if desired.
echo -- DONE --
--- NEW FILE ---
--- src/ylwrap Tue Jun 26 15:23:52 2001
+++ src/ylwrap.DOS Thu Jun 28 17:39:31 2001
@@ -80,7 +80,7 @@
;;
*)
# Make a symbolic link, hard link or hardcopy.
- ln -s ../"$input" . > /dev/null 2>&1 || ln ../"$input" . > /dev/null 2>&1 || cp ../"$input" .
+ ln ../"$input" . > /dev/null 2>&1 || cp ../"$input" .
;;
esac
$prog ${1+"$@"} "$input"
|
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:56:10
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv29687 Modified Files: ChangeLog Log Message: DJGPP build support files added Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -r1.80 -r1.81 *** ChangeLog 2001/06/28 15:12:35 1.80 --- ChangeLog 2001/06/28 15:56:06 1.81 *************** *** 1,2 **** --- 1,4 ---- + (2001/06/28 - broeker) Added files in packages/MSDOS that help compiling + cscope on MSDOS using the DJGPP compiler. (2001/06/28 - broeker) Add test for existence of <sys/termios.h> header, to protect platforms that don't have it. |
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:52:51
|
Update of /cvsroot/cscope/cscope/packages/MSDOS In directory usw-pr-cvs1:/tmp/cvs-serv28484/MSDOS Log Message: Directory /cvsroot/cscope/cscope/packages/MSDOS added to the repository |
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:12:38
|
Update of /cvsroot/cscope/cscope/src In directory usw-pr-cvs1:/tmp/cvs-serv15620/src Modified Files: input.c Log Message: Test for presence of <sys/termios.h> Index: input.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/input.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** input.c 2001/05/30 21:10:56 1.7 --- input.c 2001/06/28 15:12:35 1.8 *************** *** 44,48 **** --- 44,50 ---- #include <setjmp.h> /* jmp_buf */ #include <stdlib.h> + #if HAVE_SYS_TERMIOS_H #include <sys/termios.h> + #endif static char const rcsid[] = "$Id$"; |
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:12:38
|
Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv15620
Modified Files:
ChangeLog config.h.in configure configure.in
Log Message:
Test for presence of <sys/termios.h>
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cscope/cscope/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -r1.79 -r1.80
*** ChangeLog 2001/06/27 18:07:13 1.79
--- ChangeLog 2001/06/28 15:12:35 1.80
***************
*** 1,2 ****
--- 1,4 ----
+ (2001/06/28 - broeker) Add test for existence of <sys/termios.h> header,
+ to protect platforms that don't have it.
(2001/06/27 - broeker) Yet another set of automake/autoconf changes.
Regenerated auto* files checked in, too. We are
Index: config.h.in
===================================================================
RCS file: /cvsroot/cscope/cscope/config.h.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** config.h.in 2001/06/27 16:42:25 1.7
--- config.h.in 2001/06/28 15:12:35 1.8
***************
*** 91,94 ****
--- 91,97 ----
#undef HAVE_SYS_NDIR_H
+ /* Define if you have the <sys/termios.h> header file. */
+ #undef HAVE_SYS_TERMIOS_H
+
/* Define if you have the <sys/window.h> header file. */
#undef HAVE_SYS_WINDOW_H
Index: configure
===================================================================
RCS file: /cvsroot/cscope/cscope/configure,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** configure 2001/06/27 16:42:25 1.10
--- configure 2001/06/28 15:12:35 1.11
***************
*** 2358,2362 ****
fi
! for ac_hdr in fcntl.h sys/window.h unistd.h
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
--- 2358,2362 ----
fi
! for ac_hdr in fcntl.h sys/window.h sys/termios.h unistd.h
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
Index: configure.in
===================================================================
RCS file: /cvsroot/cscope/cscope/configure.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** configure.in 2001/06/27 15:51:26 1.16
--- configure.in 2001/06/28 15:12:35 1.17
***************
*** 477,481 ****
AC_HEADER_DIRENT
AC_HEADER_STDC
! AC_CHECK_HEADERS(fcntl.h sys/window.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
--- 477,481 ----
AC_HEADER_DIRENT
AC_HEADER_STDC
! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
From: Darryl O. <da...@us...> - 2001-06-28 04:45:29
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv28870
Modified Files:
xcscope.el
Log Message:
Code cleanup.
Arrow overlays are now optional, and the overlay string is now an
option.
Quitting the cscope buffer now kills the overlay arrow.
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** xcscope.el 2001/06/28 03:26:46 1.7
--- xcscope.el 2001/06/28 04:45:05 1.8
***************
*** 7,11 ****
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Tue Mar 13 11:48:17 2001 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
--- 7,11 ----
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Wed Jun 27 20:59:17 2001
; Language: Emacs-Lisp
; Package: N/A
***************
*** 19,23 ****
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
! ;; ALPHA VERSION 0.94
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
--- 19,23 ----
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
! ;; ALPHA VERSION 0.95
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
***************
*** 679,682 ****
--- 679,703 ----
+ (defcustom cscope-allow-arrow-overlays t
+ "*If non-nil, use an arrow overlay to show target lines.
+ Arrow overlays are only used when the following functions are used:
+
+ cscope-show-entry-other-window
+ cscope-show-next-entry-other-window
+ cscope-show-prev-entry-other-window
+
+ The arrow overlay is removed when other cscope functions are used.
+ Note that the arrow overlay is not an actual part of the text, and can
+ be removed by quitting the cscope buffer."
+ :type 'boolean
+ :group 'cscope)
+
+
+ (defcustom cscope-overlay-arrow-string "=>"
+ "*The overlay string to use when displaying arrow overlays."
+ :type 'string
+ :group 'cscope)
+
+
(defvar cscope-minor-mode-hooks nil
"List of hooks to call when entering cscope-minor-mode.")
***************
*** 767,773 ****
(define-key cscope-list-entry-keymap "n" 'cscope-show-next-entry-other-window)
(define-key cscope-list-entry-keymap "p" 'cscope-show-prev-entry-other-window)
! (define-key cscope-list-entry-keymap "q" 'bury-buffer)
(define-key cscope-list-entry-keymap "Q" 'cscope-quit)
(define-key cscope-list-entry-keymap "h" 'cscope-help)
(define-key cscope-list-entry-keymap "s" 'cscope-find-this-symbol)
(define-key cscope-list-entry-keymap "g" 'cscope-find-global-definition)
--- 788,795 ----
(define-key cscope-list-entry-keymap "n" 'cscope-show-next-entry-other-window)
(define-key cscope-list-entry-keymap "p" 'cscope-show-prev-entry-other-window)
! (define-key cscope-list-entry-keymap "q" 'cscope-bury-buffer)
(define-key cscope-list-entry-keymap "Q" 'cscope-quit)
(define-key cscope-list-entry-keymap "h" 'cscope-help)
+ (define-key cscope-list-entry-keymap "?" 'cscope-help)
(define-key cscope-list-entry-keymap "s" 'cscope-find-this-symbol)
(define-key cscope-list-entry-keymap "g" 'cscope-find-global-definition)
***************
*** 799,803 ****
mode-name "cscope"
major-mode 'cscope-list-entry-mode
! overlay-arrow-string "=>")
(or overlay-arrow-position
(setq overlay-arrow-position (make-marker)))
--- 821,825 ----
mode-name "cscope"
major-mode 'cscope-list-entry-mode
! overlay-arrow-string cscope-overlay-arrow-string)
(or overlay-arrow-position
(setq overlay-arrow-position (make-marker)))
***************
*** 970,974 ****
:style toggle :selected cscope-index-recursively ]
[ "Suppress empty matches" (setq cscope-suppress-empty-matches
! (not cscope-suppress-empty-matches))
:style toggle :selected cscope-suppress-empty-matches ]
[ "Use relative paths" (setq cscope-use-relative-paths
--- 992,996 ----
:style toggle :selected cscope-index-recursively ]
[ "Suppress empty matches" (setq cscope-suppress-empty-matches
! (not cscope-suppress-empty-matches))
:style toggle :selected cscope-suppress-empty-matches ]
[ "Use relative paths" (setq cscope-use-relative-paths
***************
*** 976,980 ****
:style toggle :selected cscope-use-relative-paths ]
[ "No mouse prompts" (setq cscope-no-mouse-prompts
! (not cscope-no-mouse-prompts))
:style toggle :selected cscope-no-mouse-prompts ]
))
--- 998,1002 ----
:style toggle :selected cscope-use-relative-paths ]
[ "No mouse prompts" (setq cscope-no-mouse-prompts
! (not cscope-no-mouse-prompts))
:style toggle :selected cscope-no-mouse-prompts ]
))
***************
*** 1004,1008 ****
plist (plist-put plist 'cscope-file filename))
(if line-number
! (progn
(if (stringp line-number)
(setq line-number (string-to-number line-number)))
--- 1026,1030 ----
plist (plist-put plist 'cscope-file filename))
(if line-number
! (progn
(if (stringp line-number)
(setq line-number (string-to-number line-number)))
***************
*** 1031,1035 ****
(select-window window))
(recenter n)))
! )
--- 1053,1057 ----
(select-window window))
(recenter n)))
! )
***************
*** 1101,1105 ****
(setq new-point old-point))
(set-window-point window new-point)
! (if arrow-p
(set-marker overlay-arrow-position (point))
(set-marker overlay-arrow-position nil))
--- 1123,1127 ----
(setq new-point old-point))
(set-window-point window new-point)
! (if (and cscope-allow-arrow-overlays arrow-p)
(set-marker overlay-arrow-position (point))
(set-marker overlay-arrow-position nil))
***************
*** 1141,1145 ****
(select-window window)
(sit-for 0) ;; Redisplay hack to allow delete-other-windows
! ;; to continue displaying the correct location.
(delete-other-windows window)
))
--- 1163,1167 ----
(select-window window)
(sit-for 0) ;; Redisplay hack to allow delete-other-windows
! ;; to continue displaying the correct location.
(delete-other-windows window)
))
***************
*** 1207,1215 ****
"Help")))
(defun cscope-quit ()
(interactive)
(kill-buffer cscope-output-buffer-name)
- (setq overlay-arrow-position nil
- overlay-arrow-string nil)
)
--- 1229,1249 ----
"Help")))
+
+ (defun cscope-bury-buffer ()
+ "Clean up cscope, if necessary, and bury the buffer."
+ (interactive)
+ (let ()
+ (if overlay-arrow-position
+ (set-marker overlay-arrow-position nil))
+ (setq overlay-arrow-position nil
+ overlay-arrow-string nil)
+ (bury-buffer (get-buffer cscope-output-buffer-name))
+ ))
+
+
(defun cscope-quit ()
(interactive)
+ (cscope-bury-buffer)
(kill-buffer cscope-output-buffer-name)
)
***************
*** 1218,1225 ****
(defun cscope-canonicalize-directory (dir)
(or dir
! (setq dir default-directory))
! (setq dir (file-name-as-directory
! (expand-file-name (substitute-in-file-name dir))))
! dir
)
--- 1252,1259 ----
(defun cscope-canonicalize-directory (dir)
(or dir
! (setq dir default-directory))
! (setq dir (file-name-as-directory
! (expand-file-name (substitute-in-file-name dir))))
! dir
)
***************
*** 1288,1292 ****
;; Should we add any more places to look?
! ) ;; end catch
(if (not info)
(setq info (list (list top-directory))))
--- 1322,1326 ----
;; Should we add any more places to look?
! ) ;; end catch
(if (not info)
(setq info (list (list top-directory))))
***************
*** 1313,1317 ****
beg (- end (length line)))
(put-text-property beg end 'face 'cscope-line-face str)
! ))
str))
--- 1347,1351 ----
beg (- end (length line)))
(put-text-property beg end 'face 'cscope-line-face str)
! ))
str))
***************
*** 1367,1381 ****
(match-end 4))
)
! ;; If the current file is not the same as the previous
! ;; one ...
! (if (not (and cscope-last-file
! (string= file cscope-last-file)))
! (progn
! ;; The current file is different.
! ;; Insert a separating blank line if
! ;; necessary.
(if cscope-last-file (insert "\n"))
! ;; Insert the file name
(setq str (concat "*** " file ":"))
(if cscope-use-face
--- 1401,1415 ----
(match-end 4))
)
! ;; If the current file is not the same as the previous
! ;; one ...
! (if (not (and cscope-last-file
! (string= file cscope-last-file)))
! (progn
! ;; The current file is different.
! ;; Insert a separating blank line if
! ;; necessary.
(if cscope-last-file (insert "\n"))
! ;; Insert the file name
(setq str (concat "*** " file ":"))
(if cscope-use-face
***************
*** 1385,1411 ****
(cscope-insert-with-text-properties
str
! (expand-file-name file)
! ;; Yes, -1 is intentional
! -1)
(insert "\n")
! ))
! (if (not cscope-first-match)
! (setq cscope-first-match-point (point)))
! ;; ... and insert the line, with the
! ;; appropriate indentation.
(cscope-insert-with-text-properties
(cscope-make-entry-line function-name
line-number
! line)
(expand-file-name file)
line-number)
(insert "\n")
! (setq cscope-last-file file)
! (if cscope-first-match
! (setq cscope-matched-multiple t)
! (setq cscope-first-match
! (cons (expand-file-name file)
! (string-to-number line-number))))
! ))
(insert line "\n")
))
--- 1419,1445 ----
(cscope-insert-with-text-properties
str
! (expand-file-name file)
! ;; Yes, -1 is intentional
! -1)
(insert "\n")
! ))
! (if (not cscope-first-match)
! (setq cscope-first-match-point (point)))
! ;; ... and insert the line, with the
! ;; appropriate indentation.
(cscope-insert-with-text-properties
(cscope-make-entry-line function-name
line-number
! line)
(expand-file-name file)
line-number)
(insert "\n")
! (setq cscope-last-file file)
! (if cscope-first-match
! (setq cscope-matched-multiple t)
! (setq cscope-first-match
! (cons (expand-file-name file)
! (string-to-number line-number))))
! ))
(insert line "\n")
))
***************
*** 1564,1568 ****
cscope-program options))
(set-process-filter cscope-process cscope-filter-func)
- ;; (set-process-sentinel cscope-process 'cscope-process-sentinel)
(set-process-sentinel cscope-process cscope-sentinel-func)
(set-marker (process-mark cscope-process) (point))
--- 1598,1601 ----
***************
*** 1571,1576 ****
(setq modeline-process ": Searching ..."))
(setq buffer-read-only t)
! )
! (apply 'call-process cscope-program nil outbuf t options)
)
t
--- 1604,1609 ----
(setq modeline-process ": Searching ..."))
(setq buffer-read-only t)
! )
! (apply 'call-process cscope-program nil outbuf t options)
)
t
***************
*** 1836,1840 ****
(point)
)))
! ))
--- 1869,1873 ----
(point)
)))
! ))
|
|
From: Darryl O. <da...@us...> - 2001-06-28 04:39:51
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv28501
Modified Files:
cscope-indexer
Log Message:
Allow more source extensions.
Index: cscope-indexer
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/cscope-indexer,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** cscope-indexer 2000/06/09 00:20:55 1.1
--- cscope-indexer 2001/06/28 04:39:47 1.2
***************
*** 32,36 ****
# Author: Darryl Okahata
# Created: Thu Apr 27 17:12:14 2000
! # Modified: Tue May 9 16:09:45 2000 (Darryl Okahata) da...@so...
# Language: Shell-script
# Package: N/A
--- 32,36 ----
# Author: Darryl Okahata
# Created: Thu Apr 27 17:12:14 2000
! # Modified: Tue Jun 19 09:47:45 2001 (Darryl Okahata) da...@so...
# Language: Shell-script
# Package: N/A
***************
*** 135,142 ****
done
else
! find $DIR -type f
fi
) | \
! egrep '\.([CHchly](xx|pp|XX|PP)*|CC|HH)$' | \
sed -e '/\/CVS\//d' -e '/\/RCS\//d' -e 's/^\.\///' | \
sort > $LIST_FILE
--- 135,142 ----
done
else
! find $DIR \( -type f -o -type l \)
fi
) | \
! egrep -i '\.([chly](xx|pp)*|cc|hh)$' | \
sed -e '/\/CVS\//d' -e '/\/RCS\//d' -e 's/^\.\///' | \
sort > $LIST_FILE
|
|
From: Darryl O. <da...@us...> - 2001-06-28 03:26:48
|
Update of /cvsroot/cscope/cscope/contrib/xcscope In directory usw-pr-cvs1:/tmp/cvs-serv10167 Modified Files: xcscope.el Log Message: Corrected copyright. Index: xcscope.el =================================================================== RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** xcscope.el 2001/06/28 03:24:05 1.6 --- xcscope.el 2001/06/28 03:26:46 1.7 *************** *** 15,18 **** --- 15,20 ---- ; GNU Emacs enhancements (C) Copyright 2001, ; Triet H. Lai <th...@ma...> + ; Fuzzy matching code (C) Copyright 2001, + ; Steven Elliott <sel...@au...> ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
From: Darryl O. <da...@us...> - 2001-06-28 03:24:08
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv9476
Modified Files:
xcscope.el
Log Message:
Steven Elliott's <sel...@au...> fuzzy matching patch.
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** xcscope.el 2001/06/28 02:07:44 1.5
--- xcscope.el 2001/06/28 03:24:05 1.6
***************
*** 899,902 ****
--- 899,909 ----
(make-variable-buffer-local 'cscope-stop-at-first-match-dir-meta)
+ (defvar cscope-symbol nil
+ "The last symbol searched for.")
+
+ (defvar cscope-adjust-range 1000
+ "How far the point should be adjusted if the symbol is not on the line
+ specified by the cscope database.")
+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
***************
*** 1034,1038 ****
Put `overlay-arrow-string' if arrow-p is non-nil.
Returns the window displaying BUFFER."
! (let (buffer old-pos)
(if (and (stringp file)
(integerp line-number))
--- 1041,1046 ----
Put `overlay-arrow-string' if arrow-p is non-nil.
Returns the window displaying BUFFER."
! (let (buffer old-pos old-point new-point forward-point backward-point
! line-end line-length)
(if (and (stringp file)
(integerp line-number))
***************
*** 1044,1053 ****
(set-window-buffer window buffer)
(setq window (display-buffer buffer)))
! (set-buffer buffer)
! (if (> line-number 0)
! (progn
(setq old-pos (point))
! (goto-line line-number)
! (set-window-point window (point))
(if arrow-p
(set-marker overlay-arrow-position (point))
--- 1052,1102 ----
(set-window-buffer window buffer)
(setq window (display-buffer buffer)))
! (set-buffer buffer)
! (if (> line-number 0)
! (progn
(setq old-pos (point))
! (goto-line line-number)
! (setq old-point (point))
! (if cscope-adjust-range
! (progn
! ;; Calculate the length of the line specified by cscope.
! (end-of-line)
! (setq line-end (point))
! (goto-char old-point)
! (setq line-length (- line-end old-point))
!
! ;; Search forward and backward for the pattern.
! (setq forward-point (search-forward
! cscope-symbol
! (+ old-point
! cscope-adjust-range) t))
! (goto-char old-point)
! (setq backward-point (search-backward
! cscope-symbol
! (- old-point
! cscope-adjust-range) t))
! (if forward-point
! (progn
! (if backward-point
! (setq new-point
! ;; Use whichever of forward-point or
! ;; backward-point is closest to old-point.
! ;; Give forward-point a line-length advantage
! ;; so that if the symbol is on the currrent
! ;; line the current line is chosen.
! (if (<= (- (- forward-point line-length)
! old-point)
! (- old-point backward-point))
! forward-point
! backward-point))
! (setq new-point forward-point)))
! (if backward-point
! (setq new-point backward-point)
! (setq new-point old-point)))
! (goto-char new-point)
! (beginning-of-line)
! (setq new-point (point)))
! (setq new-point old-point))
! (set-window-point window new-point)
(if arrow-p
(set-marker overlay-arrow-position (point))
***************
*** 1056,1060 ****
(= old-pos (point))
(push-mark old-pos))
! ))
)
(message "No entry found at point."))
--- 1105,1109 ----
(= old-pos (point))
(push-mark old-pos))
! ))
)
(message "No entry found at point."))
***************
*** 1812,1815 ****
--- 1861,1865 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding symbol: %s" symbol)
(list "-0" symbol) nil 'cscope-process-filter
***************
*** 1824,1827 ****
--- 1874,1878 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding global definition: %s" symbol)
(list "-1" symbol) nil 'cscope-process-filter
***************
*** 1837,1840 ****
--- 1888,1892 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding functions called by: %s" symbol)
(list "-2" symbol) nil 'cscope-process-filter
***************
*** 1850,1853 ****
--- 1902,1906 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding functions calling: %s" symbol)
(list "-3" symbol) nil 'cscope-process-filter
***************
*** 1862,1865 ****
--- 1915,1919 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding text string: %s" symbol)
(list "-4" symbol) nil 'cscope-process-filter
***************
*** 1875,1878 ****
--- 1929,1933 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding egrep pattern: %s" symbol)
(list "-6" symbol) nil 'cscope-process-filter
***************
*** 1888,1891 ****
--- 1943,1947 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding file: %s" symbol)
(list "-7" symbol) nil 'cscope-process-filter
***************
*** 1902,1905 ****
--- 1958,1962 ----
))
(let ()
+ (setq cscope-symbol symbol)
(cscope-call (format "Finding files #including file: %s" symbol)
(list "-8" symbol) nil 'cscope-process-filter
|
|
From: Darryl O. <da...@us...> - 2001-06-28 02:07:48
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv26167
Modified Files:
xcscope.el
Log Message:
Triet H. Lai's <th...@ma...> GNU Emacs enhancements
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** xcscope.el 2001/06/28 01:29:23 1.4
--- xcscope.el 2001/06/28 02:07:44 1.5
***************
*** 4,8 ****
; File: xcscope.el
; RCS: $RCSfile$ $Revision$ $Date$ $Author$
! ; Description: cscope interface for XEmacs
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
--- 4,8 ----
; File: xcscope.el
; RCS: $RCSfile$ $Revision$ $Date$ $Author$
! ; Description: cscope interface for (X)Emacs
; Author: Darryl Okahata
[...962 lines suppressed...]
"Display functions calling a function."
(interactive (list
! (cscope-prompt-for-symbol
! "Find functions calling this function: " nil)
))
(let ()
***************
*** 1640,1644 ****
(interactive (list
(let (cscope-no-mouse-prompts)
! (cscope-prompt-for-symbol "Find files #including this file: " t))
))
(let ()
--- 1898,1903 ----
(interactive (list
(let (cscope-no-mouse-prompts)
! (cscope-prompt-for-symbol
! "Find files #including this file: " t))
))
(let ()
|
|
From: Darryl O. <da...@us...> - 2001-06-28 01:29:25
|
Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv16655
Modified Files:
xcscope.el
Log Message:
Last updates (before big changes).
Index: xcscope.el
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/xcscope.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** xcscope.el 2000/08/11 20:47:32 1.3
--- xcscope.el 2001/06/28 01:29:23 1.4
***************
*** 7,11 ****
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Fri Aug 11 12:04:25 2000 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
--- 7,11 ----
; Author: Darryl Okahata
; Created: Wed Apr 19 17:03:38 2000
! ; Modified: Tue Mar 13 11:48:17 2001 (Darryl Okahata) da...@so...
; Language: Emacs-Lisp
; Package: N/A
***************
*** 15,21 ****
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
! ;; ALPHA VERSION 0.92
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This is a cscope interface for XEmacs.
;; It currently runs under Unix only.
--- 15,37 ----
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
! ;; ALPHA VERSION 0.93
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
+ ;; This program is free software; you can redistribute it and/or modify
+ ;; it under the terms of the GNU General Public License as published by
+ ;; the Free Software Foundation; either version 2, or (at your option)
+ ;; any later version.
+ ;;
+ ;; This program is distributed in the hope that it will be useful,
+ ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ;; GNU General Public License for more details.
+ ;;
+ ;; You should have received a copy of the GNU General Public License
+ ;; along with GNU Emacs; see the file COPYING. If not, write to
+ ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ ;;
+ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+ ;;
;; This is a cscope interface for XEmacs.
;; It currently runs under Unix only.
***************
*** 712,715 ****
--- 728,738 ----
+ (defvar cscope-start-directory nil
+ "Internal variable used to save the initial start directory.
+ The results buffer gets reset to this directory when a search has
+ completely finished.")
+ (make-variable-buffer-local 'cscope-start-directory)
+
+
(defvar cscope-search-list nil
"A list of (DIR . FLAGS) entries.
***************
*** 1113,1117 ****
(if (and cscope-suppress-empty-matches (= cscope-output-start (point)))
(delete-region cscope-item-start (point-max))
! (insert cscope-separator-line))
(setq continue
(and cscope-search-list
--- 1136,1144 ----
(if (and cscope-suppress-empty-matches (= cscope-output-start (point)))
(delete-region cscope-item-start (point-max))
! (progn
! (if (not cscope-start-directory)
! (setq cscope-start-directory default-directory))
! (insert cscope-separator-line)
! ))
(setq continue
(and cscope-search-list
***************
*** 1138,1141 ****
--- 1165,1170 ----
(setq cscope-process nil
modeline-process ": Search complete")
+ (if cscope-start-directory
+ (setq default-directory cscope-start-directory))
)
))
***************
*** 1153,1157 ****
(cdr cscope-first-match) window)
))
! ( update-window
(set-window-point window cscope-first-match-point))
)
--- 1182,1186 ----
(cdr cscope-first-match) window)
))
! ( (and update-window cscope-first-match-point)
(set-window-point window cscope-first-match-point))
)
***************
*** 1262,1265 ****
--- 1291,1295 ----
(* (car (cdr (cdr times))) 1.0E-6)))))
(setq default-directory directory
+ cscope-start-directory nil
cscope-search-list (cscope-find-info directory)
cscope-searched-dirs nil
***************
*** 1268,1271 ****
--- 1298,1302 ----
cscope-sentinel-func sentinel-func
cscope-first-match nil
+ cscope-first-match-point nil
cscope-stop-at-first-match-dir-meta (memq t cscope-search-list)
cscope-matched-multiple nil
|
|
From: Hans-Bernhard B. <br...@us...> - 2001-06-27 18:07:16
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv581 Modified Files: ChangeLog Log Message: Updated Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -r1.78 -r1.79 *** ChangeLog 2001/06/26 14:05:52 1.78 --- ChangeLog 2001/06/27 18:07:13 1.79 *************** *** 1,2 **** --- 1,6 ---- + (2001/06/27 - broeker) Yet another set of automake/autoconf changes. + Regenerated auto* files checked in, too. We are + 'make distcheck' ready, now. Added 'ylwrap' to + CVS. (2001/06/26 - broeker) Changed lex/flex handling in automake/autoconf setup to make 'make distcheck' work cleanly: added new |