ソースを参照

Fixed line breaks to keep readability on 80 char terminal.

Alois Mahdal 12 年 前
コミット
4186bc3e55
共有1 個のファイルを変更した12 個の追加5 個の削除を含む
  1. 12
    5
      README.md

+ 12
- 5
README.md ファイルの表示

5
 
5
 
6
 ##htlog.cgi##
6
 ##htlog.cgi##
7
 
7
 
8
-Collects GET requests with parameters *msg*, *tag* and *i* and logs them into single text file.
8
+Collects GET requests with parameters *msg*, *tag* and *i* and logs them into 
9
+single text file.
9
 
10
 
10
 *   *msg* is actual message body. It can be used to contain parseable data 
11
 *   *msg* is actual message body. It can be used to contain parseable data 
11
     like `name=john;age=32;state=il`
12
     like `name=john;age=32;state=il`
22
 
23
 
23
 ##autotest.pl##
24
 ##autotest.pl##
24
 
25
 
25
-Script to make it easier to start developing your new Perl module under pressure of unit tests written in [Test::More][1] and the likes.
26
+Script to make it easier to start developing your new Perl module under 
27
+pressure of unit tests written in [Test::More][1] and the likes.
26
 
28
 
27
   [1]: (http://perldoc.perl.org/Test/More.html)
29
   [1]: (http://perldoc.perl.org/Test/More.html)
28
 
30
 
29
-Suggested use is to sit on the other monitor, run all *.t* files around and around and be annoying about the fact that they fail.  Then the rule of thumb goes without saying: "no green, no commit".
31
+Suggested use is to sit on the other monitor, run all *.t* files around 
32
+and around and be annoying about the fact that they fail.  Then the rule 
33
+of thumb goes without saying: "no green, no commit".
30
 
34
 
31
 
35
 
32
 ##timestamp.pl##
36
 ##timestamp.pl##
33
 
37
 
34
-Script to measure how long mone second takes.  For those that know how long one second takes, it can serve as a snippet for Perl `&stamp()`.
38
+Script to measure how long mone second takes.  For those that know how long 
39
+one second takes, it can serve as a snippet for Perl `&stamp()`.
35
 
40
 
36
 
41
 
37
 
42
 
38
 ##helper.pm##
43
 ##helper.pm##
39
 
44
 
40
-Container module for some utility methods for Perl.  Probably only `dmup()` is interesting—it bears a nice quick and dirty way for dumping Perl data.
45
+Container module for some utility methods for Perl.  Probably only `dmup()` 
46
+is interesting—it bears a nice quick and dirty way for dumping Perl 
47
+data.