diff options
author | Basile Starynkevitch <basile.starynkevitch@inria.fr> | 2003-11-24 10:44:07 +0000 |
---|---|---|
committer | Basile Starynkevitch <basile.starynkevitch@inria.fr> | 2003-11-24 10:44:07 +0000 |
commit | 0d5a86e5204266235d183963156bcbfdc22618df (patch) | |
tree | aa1a8b2018f6faea1804a64105fe06bddea164b1 | |
parent | cb7ba4eacacad20a5958777665f0b8d0e6d56cfb (diff) | |
download | ocaml-0d5a86e5204266235d183963156bcbfdc22618df.tar.gz |
added $Id$ keywords
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5973 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
60 files changed, 98 insertions, 3 deletions
diff --git a/ocamldoc/odoc.ml b/ocamldoc/odoc.ml index 04bdedfd30..c8a1d9368a 100644 --- a/ocamldoc/odoc.ml +++ b/ocamldoc/odoc.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Main module for bytecode. *) @@ -124,3 +125,4 @@ let _ = exit 0 +(* eof $Id$ *) diff --git a/ocamldoc/odoc_analyse.ml b/ocamldoc/odoc_analyse.ml index e7f276549d..0ef95ee9b2 100644 --- a/ocamldoc/odoc_analyse.ml +++ b/ocamldoc/odoc_analyse.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of source files. This module is strongly inspired from driver/main.ml :-) *) @@ -444,3 +445,4 @@ let load_modules file = raise (Failure s) +(* eof $Id$ *) diff --git a/ocamldoc/odoc_analyse.mli b/ocamldoc/odoc_analyse.mli index 4b1254b8d3..b1da2aeb10 100644 --- a/ocamldoc/odoc_analyse.mli +++ b/ocamldoc/odoc_analyse.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of source files. *) diff --git a/ocamldoc/odoc_args.ml b/ocamldoc/odoc_args.ml index 6f48d13944..bdd692bc4c 100644 --- a/ocamldoc/odoc_args.ml +++ b/ocamldoc/odoc_args.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* cvsid $Id$ *) (** Command-line arguments. *) open Clflags @@ -302,3 +303,4 @@ let parse ~html_generator ~latex_generator ~texi_generator ~man_generator ~dot_g hidden_modules := List.sort (fun a -> fun b -> - (compare a b)) !hidden_modules +(* eof $Id$ *) diff --git a/ocamldoc/odoc_args.mli b/ocamldoc/odoc_args.mli index 8495a6b790..889f09ce58 100644 --- a/ocamldoc/odoc_args.mli +++ b/ocamldoc/odoc_args.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of the command line arguments. *) diff --git a/ocamldoc/odoc_ast.ml b/ocamldoc/odoc_ast.ml index 7fc23b8344..8085ca1cb4 100644 --- a/ocamldoc/odoc_ast.ml +++ b/ocamldoc/odoc_ast.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of implementation files. *) open Misc @@ -1532,3 +1533,4 @@ module Analyser = +(* eof $Id$ *) diff --git a/ocamldoc/odoc_ast.mli b/ocamldoc/odoc_ast.mli index 458365b099..666fa1973e 100644 --- a/ocamldoc/odoc_ast.mli +++ b/ocamldoc/odoc_ast.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The module for analysing the typed abstract syntax tree and source code and creating modules, classes, ..., elements.*) diff --git a/ocamldoc/odoc_class.ml b/ocamldoc/odoc_class.ml index fc367765ba..aea0748bfb 100644 --- a/ocamldoc/odoc_class.ml +++ b/ocamldoc/odoc_class.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of classes and class types.*) @@ -249,3 +250,4 @@ let class_type_parameter_text_by_name clt label = None +(* eof $Id$ *) diff --git a/ocamldoc/odoc_comments.ml b/ocamldoc/odoc_comments.ml index 2b1d1f6fd0..765207ddc8 100644 --- a/ocamldoc/odoc_comments.ml +++ b/ocamldoc/odoc_comments.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of comments. *) @@ -310,3 +311,5 @@ module Info_retriever = end module Basic_info_retriever = Info_retriever (Odoc_text.Texter) + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_comments.mli b/ocamldoc/odoc_comments.mli index 349ccaf96c..0579926a90 100644 --- a/ocamldoc/odoc_comments.mli +++ b/ocamldoc/odoc_comments.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of comments. *) diff --git a/ocamldoc/odoc_comments_global.ml b/ocamldoc/odoc_comments_global.ml index e2149bcefa..6e18fd295d 100644 --- a/ocamldoc/odoc_comments_global.ml +++ b/ocamldoc/odoc_comments_global.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The global variables used by the special comment parser.*) @@ -44,3 +45,4 @@ let init () = return_value := None ; customs := [] +(* eof $Id$ *) diff --git a/ocamldoc/odoc_comments_global.mli b/ocamldoc/odoc_comments_global.mli index 69116d55df..9e0474676e 100644 --- a/ocamldoc/odoc_comments_global.mli +++ b/ocamldoc/odoc_comments_global.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The global variables used by the special comment parser.*) diff --git a/ocamldoc/odoc_control.ml b/ocamldoc/odoc_control.ml index 7519a782eb..705bf4ad3c 100644 --- a/ocamldoc/odoc_control.ml +++ b/ocamldoc/odoc_control.ml @@ -9,5 +9,5 @@ (* *) (***********************************************************************) - +(* $Id$ *) diff --git a/ocamldoc/odoc_cross.ml b/ocamldoc/odoc_cross.ml index d9f99f3878..4134ea84b8 100644 --- a/ocamldoc/odoc_cross.ml +++ b/ocamldoc/odoc_cross.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Cross referencing. *) @@ -810,3 +811,5 @@ let associate module_list = let _ = associate_type_of_elements_in_comments module_list in () + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_cross.mli b/ocamldoc/odoc_cross.mli index d4c1d5ccca..1c6a357027 100644 --- a/ocamldoc/odoc_cross.mli +++ b/ocamldoc/odoc_cross.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Cross-referencing. *) diff --git a/ocamldoc/odoc_dag2html.ml b/ocamldoc/odoc_dag2html.ml index 4231bab00b..805cdc1efe 100644 --- a/ocamldoc/odoc_dag2html.ml +++ b/ocamldoc/odoc_dag2html.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The types and functions to create a html table representing a dag. Thanks to Daniel De Rauglaudre. *) diff --git a/ocamldoc/odoc_dag2html.mli b/ocamldoc/odoc_dag2html.mli index b66de064c2..0f21e745d2 100644 --- a/ocamldoc/odoc_dag2html.mli +++ b/ocamldoc/odoc_dag2html.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The types and functions to create a html table representing a dag. Thanks to Daniel de Rauglaudre. *) diff --git a/ocamldoc/odoc_dep.ml b/ocamldoc/odoc_dep.ml index 096daa86c4..c02d66066f 100644 --- a/ocamldoc/odoc_dep.ml +++ b/ocamldoc/odoc_dep.ml @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Top modules dependencies. *) module StrS = Depend.StringSet diff --git a/ocamldoc/odoc_dot.ml b/ocamldoc/odoc_dot.ml index ed9275e7f2..877a84b913 100644 --- a/ocamldoc/odoc_dot.ml +++ b/ocamldoc/odoc_dot.ml @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Definition of a class which outputs a dot file showing top modules dependencies.*) diff --git a/ocamldoc/odoc_env.ml b/ocamldoc/odoc_env.ml index 5294d0ca17..ab0fff272b 100644 --- a/ocamldoc/odoc_env.ml +++ b/ocamldoc/odoc_env.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Environment for finding complete names from relative names. *) @@ -240,3 +241,5 @@ let subst_class_type env t = Types.Tcty_fun (l, new_texp, new_ct) in iter t + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_env.mli b/ocamldoc/odoc_env.mli index 698a3877a3..6532a58d5c 100644 --- a/ocamldoc/odoc_env.mli +++ b/ocamldoc/odoc_env.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Environment for finding complete names from relative names. *) diff --git a/ocamldoc/odoc_exception.ml b/ocamldoc/odoc_exception.ml index b9e9428ce4..4d81f81202 100644 --- a/ocamldoc/odoc_exception.ml +++ b/ocamldoc/odoc_exception.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of exceptions. *) @@ -28,3 +29,4 @@ and t_exception = { mutable ex_code : string option ; } + diff --git a/ocamldoc/odoc_global.ml b/ocamldoc/odoc_global.ml index c516242ac7..4e08456617 100644 --- a/ocamldoc/odoc_global.ml +++ b/ocamldoc/odoc_global.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Global variables. *) diff --git a/ocamldoc/odoc_global.mli b/ocamldoc/odoc_global.mli index 30158f95fd..3a9eab6514 100644 --- a/ocamldoc/odoc_global.mli +++ b/ocamldoc/odoc_global.mli @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Global variables. *) (** A counter for errors. *) diff --git a/ocamldoc/odoc_html.ml b/ocamldoc/odoc_html.ml index 033c891ada..2db74bf6b0 100644 --- a/ocamldoc/odoc_html.ml +++ b/ocamldoc/odoc_html.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Generation of html documentation. *) @@ -2014,3 +2015,4 @@ class html = +(* eof $Id$ *) diff --git a/ocamldoc/odoc_info.ml b/ocamldoc/odoc_info.ml index 76df17d5b3..ffb016a148 100644 --- a/ocamldoc/odoc_info.ml +++ b/ocamldoc/odoc_info.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Interface for analysing documented OCaml source files and to the collected information. *) diff --git a/ocamldoc/odoc_info.mli b/ocamldoc/odoc_info.mli index a920ac3c68..02ed187336 100644 --- a/ocamldoc/odoc_info.mli +++ b/ocamldoc/odoc_info.mli @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Interface to the information collected in source files. *) (** The differents kinds of element references. *) diff --git a/ocamldoc/odoc_inherit.ml b/ocamldoc/odoc_inherit.ml index 7519a782eb..705bf4ad3c 100644 --- a/ocamldoc/odoc_inherit.ml +++ b/ocamldoc/odoc_inherit.ml @@ -9,5 +9,5 @@ (* *) (***********************************************************************) - +(* $Id$ *) diff --git a/ocamldoc/odoc_latex.ml b/ocamldoc/odoc_latex.ml index 0990f5ab5a..7da4d23891 100644 --- a/ocamldoc/odoc_latex.ml +++ b/ocamldoc/odoc_latex.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Generation of LaTeX documentation. *) @@ -981,3 +982,5 @@ class latex = prerr_endline s ; incr Odoc_info.errors end + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_latex_style.ml b/ocamldoc/odoc_latex_style.ml index 34e81ffe0f..1e557f55f0 100644 --- a/ocamldoc/odoc_latex_style.ml +++ b/ocamldoc/odoc_latex_style.ml @@ -11,6 +11,8 @@ (** The content of the LaTeX style to generate when generating LaTeX code. *) +(* $Id$ *) + let content =" %% Support macros for LaTeX documentation generated by ocamldoc. %% This file is in the public domain; do what you want with it. diff --git a/ocamldoc/odoc_lexer.mll b/ocamldoc/odoc_lexer.mll index acf7b4bd3a..353ddfbe13 100644 --- a/ocamldoc/odoc_lexer.mll +++ b/ocamldoc/odoc_lexer.mll @@ -10,6 +10,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** The lexer for special comments. *) open Lexing diff --git a/ocamldoc/odoc_man.ml b/ocamldoc/odoc_man.ml index 8b61bb1ac5..23af3d8e8a 100644 --- a/ocamldoc/odoc_man.ml +++ b/ocamldoc/odoc_man.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The man pages generator. *) open Odoc_info diff --git a/ocamldoc/odoc_merge.ml b/ocamldoc/odoc_merge.ml index 3acce8c4bb..ae1d6dcf43 100644 --- a/ocamldoc/odoc_merge.ml +++ b/ocamldoc/odoc_merge.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Merge of information from [.ml] and [.mli] for a module.*) @@ -949,3 +950,4 @@ let merge merge_options modules_list = in iter modules_list +(* eof $Id$ *) diff --git a/ocamldoc/odoc_merge.mli b/ocamldoc/odoc_merge.mli index 3dadeecc0a..cae4d230b3 100644 --- a/ocamldoc/odoc_merge.mli +++ b/ocamldoc/odoc_merge.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Merge of information from [.ml] and [.mli] for a module.*) diff --git a/ocamldoc/odoc_messages.ml b/ocamldoc/odoc_messages.ml index 59ef7da3f4..aa5b0c57b5 100644 --- a/ocamldoc/odoc_messages.ml +++ b/ocamldoc/odoc_messages.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The messages of the application. *) diff --git a/ocamldoc/odoc_misc.ml b/ocamldoc/odoc_misc.ml index d2c3c52e3b..b1da6973e4 100644 --- a/ocamldoc/odoc_misc.ml +++ b/ocamldoc/odoc_misc.ml @@ -9,7 +9,7 @@ (* *) (***********************************************************************) - +(* $Id$ *) let input_file_as_string nom = let chanin = open_in_bin nom in @@ -450,3 +450,5 @@ let remove_option typ = | Types.Tsubst t2 -> iter t2.Types.desc in { typ with Types.desc = iter typ.Types.desc } + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_misc.mli b/ocamldoc/odoc_misc.mli index caa1b0a27f..59200c2440 100644 --- a/ocamldoc/odoc_misc.mli +++ b/ocamldoc/odoc_misc.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Miscelaneous functions *) diff --git a/ocamldoc/odoc_module.ml b/ocamldoc/odoc_module.ml index fc3a941b86..e9df5cbe50 100644 --- a/ocamldoc/odoc_module.ml +++ b/ocamldoc/odoc_module.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of modules and module types. *) diff --git a/ocamldoc/odoc_name.ml b/ocamldoc/odoc_name.ml index 188d3fb0ea..ef01ec4a3f 100644 --- a/ocamldoc/odoc_name.ml +++ b/ocamldoc/odoc_name.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation of element names. *) diff --git a/ocamldoc/odoc_name.mli b/ocamldoc/odoc_name.mli index 6319b40e91..b0a5d55440 100644 --- a/ocamldoc/odoc_name.mli +++ b/ocamldoc/odoc_name.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation of element names. *) diff --git a/ocamldoc/odoc_ocamlhtml.mll b/ocamldoc/odoc_ocamlhtml.mll index 12f8af3701..ba4c0c8f31 100644 --- a/ocamldoc/odoc_ocamlhtml.mll +++ b/ocamldoc/odoc_ocamlhtml.mll @@ -11,6 +11,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Generation of html code to display OCaml code. *) open Lexing diff --git a/ocamldoc/odoc_parameter.ml b/ocamldoc/odoc_parameter.ml index 1cd5cac5fd..790250fc82 100644 --- a/ocamldoc/odoc_parameter.ml +++ b/ocamldoc/odoc_parameter.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of method / function / class parameters, and module parameters.*) diff --git a/ocamldoc/odoc_parser.mly b/ocamldoc/odoc_parser.mly index 13e111101f..9b99e24f02 100644 --- a/ocamldoc/odoc_parser.mly +++ b/ocamldoc/odoc_parser.mly @@ -10,6 +10,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + open Odoc_types open Odoc_comments_global diff --git a/ocamldoc/odoc_scan.ml b/ocamldoc/odoc_scan.ml index 96abc22f0f..2618d064ba 100644 --- a/ocamldoc/odoc_scan.ml +++ b/ocamldoc/odoc_scan.ml @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Scanning of modules and elements. The class scanner defined in this module can be used to diff --git a/ocamldoc/odoc_search.ml b/ocamldoc/odoc_search.ml index ef81d9317a..990930d695 100644 --- a/ocamldoc/odoc_search.ml +++ b/ocamldoc/odoc_search.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Research of elements through modules. *) @@ -627,3 +628,5 @@ let find_section mods regexp = with Res_section (_,t) -> t | _ -> assert false + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_search.mli b/ocamldoc/odoc_search.mli index f7f8c61fb0..affd315fb4 100644 --- a/ocamldoc/odoc_search.mli +++ b/ocamldoc/odoc_search.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Research of elements through modules. *) diff --git a/ocamldoc/odoc_see_lexer.mll b/ocamldoc/odoc_see_lexer.mll index 8e7dfcd459..a556679bd2 100644 --- a/ocamldoc/odoc_see_lexer.mll +++ b/ocamldoc/odoc_see_lexer.mll @@ -10,6 +10,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + let print_DEBUG2 s = print_string s ; print_newline () (** the lexer for special comments. *) diff --git a/ocamldoc/odoc_sig.ml b/ocamldoc/odoc_sig.ml index 53d2962f03..70f55f3675 100644 --- a/ocamldoc/odoc_sig.ml +++ b/ocamldoc/odoc_sig.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Analysis of interface files. *) @@ -1325,3 +1326,5 @@ module Analyser = m end + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_sig.mli b/ocamldoc/odoc_sig.mli index 3530659c10..bbd946420d 100644 --- a/ocamldoc/odoc_sig.mli +++ b/ocamldoc/odoc_sig.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The module for analysing a signature and source code and creating modules, classes, ..., elements.*) diff --git a/ocamldoc/odoc_str.ml b/ocamldoc/odoc_str.ml index a0263b0032..f5d92e73ae 100644 --- a/ocamldoc/odoc_str.ml +++ b/ocamldoc/odoc_str.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The functions to get a string from different kinds of elements (types, modules, ...). *) @@ -226,3 +227,5 @@ let string_of_method m = (match m.M.met_value.M.val_info with None -> "" | Some i -> Odoc_misc.string_of_info i) + +(* eof $Id$ *) diff --git a/ocamldoc/odoc_str.mli b/ocamldoc/odoc_str.mli index e98809cda1..a06852ebe3 100644 --- a/ocamldoc/odoc_str.mli +++ b/ocamldoc/odoc_str.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** The functions to get a string from different kinds of elements (types, modules, ...). *) diff --git a/ocamldoc/odoc_text.ml b/ocamldoc/odoc_text.ml index 5a9b9130fd..aa675692f7 100644 --- a/ocamldoc/odoc_text.ml +++ b/ocamldoc/odoc_text.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) exception Text_syntax of int * int * string (* line, char, string *) diff --git a/ocamldoc/odoc_text.mli b/ocamldoc/odoc_text.mli index 5b18a413a4..6ed5bd0e44 100644 --- a/ocamldoc/odoc_text.mli +++ b/ocamldoc/odoc_text.mli @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** A module with a function to parse strings to obtain a [Odoc_types.text] value. *) diff --git a/ocamldoc/odoc_text_lexer.mll b/ocamldoc/odoc_text_lexer.mll index b141c914aa..44f0e8c88b 100644 --- a/ocamldoc/odoc_text_lexer.mll +++ b/ocamldoc/odoc_text_lexer.mll @@ -10,6 +10,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** The lexer for string to build text structures. *) open Lexing diff --git a/ocamldoc/odoc_text_parser.mly b/ocamldoc/odoc_text_parser.mly index ab39951027..2abd562f74 100644 --- a/ocamldoc/odoc_text_parser.mly +++ b/ocamldoc/odoc_text_parser.mly @@ -10,6 +10,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + open Odoc_types let identchar = diff --git a/ocamldoc/odoc_to_text.ml b/ocamldoc/odoc_to_text.ml index 3d44e476cf..a80eb3889a 100644 --- a/ocamldoc/odoc_to_text.ml +++ b/ocamldoc/odoc_to_text.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Text generation. diff --git a/ocamldoc/odoc_type.ml b/ocamldoc/odoc_type.ml index 946b70eb0e..bcf194d143 100644 --- a/ocamldoc/odoc_type.ml +++ b/ocamldoc/odoc_type.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of a type, but not class nor module type.*) diff --git a/ocamldoc/odoc_types.ml b/ocamldoc/odoc_types.ml index 86367be952..fd8938ed69 100644 --- a/ocamldoc/odoc_types.ml +++ b/ocamldoc/odoc_types.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) type ref_kind = RK_module diff --git a/ocamldoc/odoc_types.mli b/ocamldoc/odoc_types.mli index 42c80f5daf..61e8db7b26 100644 --- a/ocamldoc/odoc_types.mli +++ b/ocamldoc/odoc_types.mli @@ -9,6 +9,8 @@ (* *) (***********************************************************************) +(* $Id$ *) + (** Types for the information collected in comments. *) (** The differents kinds of element references. *) diff --git a/ocamldoc/odoc_value.ml b/ocamldoc/odoc_value.ml index b5b8eb0d46..b001f1464f 100644 --- a/ocamldoc/odoc_value.ml +++ b/ocamldoc/odoc_value.ml @@ -9,6 +9,7 @@ (* *) (***********************************************************************) +(* $Id$ *) (** Representation and manipulation of values, class attributes and class methods. *) |