This file is indexed.

/usr/lib/bouml/html/7937.bodies is in bouml-plugouts-src 4.21-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
class UmlPackage
!!!129888.cpp!!!	sKind() : string
  return (stereotype() == "profile")
    ? "profile" : "package";
!!!129888.java!!!	sKind() : string
  return (stereotype() == "profile")
    ? "profile" : "package";
!!!128088.cpp!!!	html(in pfix : string, in rank : uint, in level : uint) : void
  define();
  
  if (stereotype() == "profile")
    chapter("Profile", pfix, rank, "profile", level);
  else
    chapter("Package", pfix, rank, "package", level);

  QCString s = description();
  
  if (!s.isEmpty()) {
    fw.write("<p>");
    writeq(s);
    fw.write("<br /></p>");
  }
  
  bool ul = FALSE;
  
  s = cppNamespace();
  
  if (!s.isEmpty()) {
    fw.write("<p></p><ul>\n");
    ul = TRUE;
    fw.write("<li>C++ namespace : ");
    writeq(s);
    fw.write("</li>\n");
  }

  s = javaPackage();
  
  if (!s.isEmpty()) {
    if (! ul)
      fw.write("<p></p><ul>");
    ul = TRUE;
    fw.write("<li>Java package : ");
    writeq(s);
    fw.write("</li>\n");
  }
    
  if (ul)
    fw.write("</ul>\n");
    
  write_dependencies();
    
  UmlDiagram * d = associatedDiagram();
  
  if (d != 0) {
    fw.write("<p>Diagram : ");
    d->write();
    fw.write("</p>\n");
  }

  write_properties();

  write_children(pfix, rank, level);

  unload(FALSE, FALSE);
!!!128088.java!!!	html(in pfix : string, in rank : uint, in level : uint) : void
  define();
  
  if (stereotype() == "profile")
    chapter("Profile", pfix, rank, "profile", level);
  else
    chapter("Package", pfix, rank, "package", level);

  String s = description();
  
  if (s.length() != 0) {
    fw.write("<p>");
    writeq(s);
    fw.write("<br /></p>");
  }
    
  boolean ul = false;
  
  s = cppNamespace();
  
  if (s.length() != 0) {
    fw.write("<p></p><ul>\n");
    ul = true;
    fw.write("<li>C++ namespace : ");
    writeq(s);
    fw.write("</li>\n");
  }

  s = javaPackage();
  
  if (s.length() != 0) {
    if (! ul)
      fw.write("<p></p><ul>");
    ul = true;
    fw.write("<li>Java package : ");
    writeq(s);
    fw.write("</li>\n");
  }
    
  if (ul)
    fw.write("</ul>\n");
    
  write_dependencies();
  
  UmlDiagram d = associatedDiagram();
  
  if (d != null) {
    fw.write("<p>Diagram : ");
    d.write();
    fw.write("</p>\n");
  }

  write_properties();

  write_children(pfix, rank, level);

  unload(false, false);
!!!150274.cpp!!!	memo_ref() : void
  packages.addElement(this);
  UmlItem::memo_ref();
!!!150274.java!!!	memo_ref() : void
  packages.addElement(this);
  super.memo_ref();

!!!150530.cpp!!!	ref_index() : void
  if (!packages.isEmpty())
    fw.write("<a href=\"packages.html\" target = \"projectFrame\"><b> -Packages- </b></a>");
!!!150530.java!!!	ref_index() : void
  if (!packages.isEmpty())
    fw.write("<a href=\"packages.html\" target = \"projectFrame\"><b> -Packages- </b></a>");
!!!150402.cpp!!!	generate_index() : void
  UmlItem::generate_index(packages, "Packages", "packages");
!!!150402.java!!!	generate_index() : void
  generate_index(packages, "Package", "packages");
!!!149378.cpp!!!	chapterp() : bool
  return TRUE;
!!!149378.java!!!	chapterp() : bool
  return true;