6.19.10.2.23. Miscellaneous

The usual stuff that is hard to classify.
Start python section to interscript/frames/inputf.py[33 /42 ] Next Prev First Last
  1068: #line 1416 "input_frame.ipk"
  1069:   def print_contents(self,*args, **kwds):
  1070:     "Print table of contents"
  1071:     self.select(None)
  1072:     weaver = self.get_weaver()
  1073:     apply(weaver.print_contents, args, kwds)
  1074: 
  1075:   def print_file_list(self,*args,**kwds):
  1076:     "Print complete list of all files"
  1077:     self.select(None)
  1078:     weaver = self.get_weaver()
  1079:     apply(weaver.print_file_list, args, kwds)
  1080: 
  1081:   def print_file_status(self,*args,**kwds):
  1082:     """Weave status information. Warning: this information
  1083:     changes from pass to pass, and will prevent your document
  1084:     converging to a fixpoint if the output is woven to a
  1085:     named file sink. Make sure the weaver driver is a
  1086:     simple file sink, which is included in convergence checks."""
  1087:     self.select(None)
  1088:     weaver = self.get_weaver()
  1089:     apply(weaver.print_file_status, args, kwds)
  1090: 
  1091:   def print_source_list(self, *args, **kwds):
  1092:     "Weave the interscript source tree"
  1093:     self.select(None)
  1094:     weaver = self.get_weaver()
  1095:     apply(weaver.print_source_list, args, kwds)
  1096: 
  1097:   def print_include_list(self, *args, **kwds):
  1098:     "Weave the include file list"
  1099:     self.select(None)
  1100:     weaver = self.get_weaver()
  1101:     apply(weaver.print_include_list, args, kwds)
  1102: 
  1103:   def macro(self,name):
  1104:     self.select(None)
  1105:     weaver = self.get_weaver()
  1106:     return data_tangler(memory(name),weaver)
  1107: 
  1108:   def print_identifier_cross_reference(self, *args, **kwds):
  1109:     "Weave the identifier cross reference table"
  1110:     self.select(None)
  1111:     weaver = self.get_weaver()
  1112:     apply(weaver.identifier_reference, args, kwds)
  1113: 
  1114:   def print_class_reference(self, *args, **kwds):
  1115:     "Weave the class cross reference table"
  1116:     self.select(None)
  1117:     weaver = self.get_weaver()
  1118:     apply(weaver.class_reference, args, kwds)
  1119: 
End python section to interscript/frames/inputf.py[33]