This file is indexed.

/usr/lib/bouml/rose/128129.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
class Uc
!!!128385.cpp!!!	import(inout f : File) : void
  for (;;) {
    QCString s;

    switch (f.read(s)) {
    case -1:
      f.eof();
      throw 0;
    case ')':
      return;
    case ATOM:
      if ((s == "logical_models") || 
          (s == "logical_presentations")) {
        f.read("(");
        f.read("list");
        f.read("unit_reference_list");
        readObjects(f);
      }
      else
	readObject(f, s);
      break;
    default:
      f.syntaxError(s);
    }
  }
!!!128897.cpp!!!	readObjects(inout f : File) : void
  for (;;) {
    QCString s;

    switch (f.read(s)) {
    case ')':
      return;
    case '(':
      break;
    default:
      f.syntaxError(s);
    }

    f.read("object");

    if (f.read(s) != ATOM)
      f.syntaxError(s, "an atom");

    if ((s == "Class") || (s == "Metaclass") ||
	(s == "Instantiated_Class") || (s == "Parameterized_Class"))
      UmlClass::import(f, item(), s);
    else if (s == "UseCase")
      UmlUseCase::import(f, item());
    else if (s == "UseCaseDiagram")
      UmlUseCaseDiagram::import(f, item());
    else if (s == "InteractionDiagram")
      UmlSequenceDiagram::import(f, item());
    else if (s == "ObjectDiagram")
      UmlCollaborationDiagram::import(f, item());
    else if (s == "Class_Category")
      UmlUseCaseView::import(item(), f);
    else if (s == "logical_presentations") {
      f.read("(");
      f.read("list");
      f.read("unit_reference_list");
      readObjects(f);
    }
    else {
      if ((s != "Association") &&	// actor -----> UC ...
	  (s != "Mechanism"))		// seq/col diagram
	UmlCom::trace("<br>" + s + " in " + QCString(f.name()) + " NOT MANAGED by UseCaseView::readObject()");
      f.skipBlock();
    }
  }