From owner-cvs-doc@FreeBSD.ORG Sun Jun 15 15:45:37 2008 Return-Path: Delivered-To: cvs-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 380FA106567B; Sun, 15 Jun 2008 15:45:37 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2C56B8FC1B; Sun, 15 Jun 2008 15:45:37 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m5FFjb6C033849; Sun, 15 Jun 2008 15:45:37 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m5FFjbtg033848; Sun, 15 Jun 2008 15:45:37 GMT (envelope-from keramida) Message-Id: <200806151545.m5FFjbtg033848@repoman.freebsd.org> From: Giorgos Keramidas Date: Sun, 15 Jun 2008 15:45:37 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/el_GR.ISO8859-7/share/tools/checkupdate Makefile checkupdate.1 checkupdate.py X-BeenThere: cvs-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the doc and www trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2008 15:45:37 -0000 keramida 2008-06-15 15:45:37 UTC FreeBSD doc repository Added files: el_GR.ISO8859-7/share/tools/checkupdate Makefile checkupdate.1 checkupdate.py Log: Add a new Python-based utility we wrote for the FreeBSD Greek documentation project (and anyone else interested to use it). In the translated files, we have added special `tags' some time in the past, using the format: %SOURCE% en_GR.ISO8859-1/articles/foo/file.sgml %SRCID% 1.5 to denote that this translation was based on revision 1.5 of the file referenced in `%SOURCE%'. The `checkupdate' utility makes parsing and checking of these tags easier. It expects to receive a list of files to check in standard input, so it can be run by typing: find el_GR.ISO8859-7 | checkupdate This should report in standard output something like: : el_GR.ISO8859-7/articles/compiz-fusion/Makefile rev. 1.1 : 1.1 -> 1.1 en_US.ISO8859-1/articles/compiz-fusion/Makefile : : el_GR.ISO8859-7/articles/compiz-fusion/article.sgml rev. 1.1 : 1.3 -> 1.5 en_US.ISO8859-1/articles/compiz-fusion/article.sgml We will keep extending the `checkupdate.py' script to add more features, like a "patch preview" mode. The version committed here works well enough for now, and it already shows a lot of files that we have to update in el_GR.ISO8859-7 :) Inspired by: pgj's shell based version of `checkupdate' Revision Changes Path 1.1 +15 -0 doc/el_GR.ISO8859-7/share/tools/checkupdate/Makefile (new) 1.1 +120 -0 doc/el_GR.ISO8859-7/share/tools/checkupdate/checkupdate.1 (new) 1.1 +408 -0 doc/el_GR.ISO8859-7/share/tools/checkupdate/checkupdate.py (new)