~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/Doxyfile

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Doxyfile: default configuration for `doxygen'.
2
 
 
3
 
# We used to explicitly list inputs (for faster doxygen runs), but 
4
 
# switched to recursive scan because we have a large number of inputs
5
 
# and almost everybody forgot to update the list to reflect latest changes.
6
 
FILE_PATTERNS = *.cpp *.h
7
 
RECURSIVE = yes
8
 
EXCLUDE_PATTERNS = sp-skeleton.*
9
 
# Input used to be generated with the command
10
 
# find -name '*.cpp' -o -name '*.h'|xargs grep -l '\\file'|sort|sed 's,^./,     ,;s,$,  \\,'
11
 
# (and remove the non source files sp-skeleton.*).
12
 
#INPUT = \
13
 
#       application/application.cpp     \
14
 
#       (file listing was here...)
15
 
 
16
 
 
17
 
# Uncomment this to treat undocumented things as if they had an empty
18
 
# documentation string; comment it out to suppress all undocumented things from
19
 
# the output.
20
 
# Leaving it uncommented allows using doxygen output as the primary information
21
 
# source about a class (without needing to look at the source code to look for
22
 
# undocumented things).
23
 
# OTOH, you may find it annoying to have reems of relatively unhelpful
24
 
# information: commenting it out gives more compact display of the helpful
25
 
# bits.
26
 
# I'm commenting it out for now to facilitate checking existing doc comments
27
 
# for doxygen correctness.
28
 
#EXTRACT_ALL = yes
29
 
 
30
 
# I'll disable this for the moment, to reduce the number of files in the output.
31
 
SOURCE_BROWSER = no
32
 
 
33
 
# Keep the output out of the src directory so that it doesn't get in the way of
34
 
# `rgrep'.
35
 
OUTPUT_DIRECTORY = ../doxygen
36
 
 
37
 
# In absence of explicit `\brief', treat the first "sentence" as the brief part
38
 
# and the rest as detail.  (With explicit `\brief', the first _paragraph_ is
39
 
# considered the brief part.)
40
 
#
41
 
# It's unclear whether programmers should deliberately use this facility.
42
 
# Advantage: Less clutter.
43
 
# Disadvantage: Absence of `\brief' may indicate that the comment was written
44
 
# by someone unfamiliar with doxygen and not giving thought to what the brief
45
 
# description should be.  Using explicit `\brief' may facilitate checking
46
 
# non-\briefed comments for doxygen correctness.
47
 
# OTOH, using `\brief' may be parrot-like: it doesn't necessarily indicate
48
 
# doxygen familiarity.
49
 
JAVADOC_AUTOBRIEF = yes
50
 
 
51
 
WARN_IF_UNDOCUMENTED = yes
52
 
 
53
 
GENERATE_TODOLIST = yes
54
 
 
55
 
GENERATE_BUGLIST = yes
56
 
 
57
 
REFERENCED_BY_RELATION = yes
58
 
 
59
 
EXTRACT_STATIC = yes
60
 
 
61
 
WARN_LOGFILE = doxygen-log
62