summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorrodent <rodent@pkgsrc.org>2013-04-07 20:49:31 +0000
committerrodent <rodent@pkgsrc.org>2013-04-07 20:49:31 +0000
commit4f59818ca397a0a8ad8c34ad79350bc491cfbf3b (patch)
tree79de035a23bbb285c8713b492fa4fa499634f7f8 /www
parent5d6863fbd2e22843934a2ea9139fc1ad3ddb77f7 (diff)
downloadpkgsrc-4f59818ca397a0a8ad8c34ad79350bc491cfbf3b.tar.gz
Edited DESCR in the case of:
File too long (should be no more than 24 lines). Line too long (should be no more than 80 characters). Trailing empty lines. Trailing white-space. Trucated the long files as best as possible while preserving the most info contained in them.
Diffstat (limited to 'www')
-rw-r--r--www/aws-demos/DESCR5
-rw-r--r--www/heel/DESCR22
-rw-r--r--www/kdewebdev4/DESCR3
-rw-r--r--www/p5-HTTP-Response-Encoding/DESCR1
-rw-r--r--www/py-beautifulsoup4/DESCR42
-rw-r--r--www/ruby-erubis/DESCR3
-rw-r--r--www/ruby-rack-rewrite/DESCR4
7 files changed, 35 insertions, 45 deletions
diff --git a/www/aws-demos/DESCR b/www/aws-demos/DESCR
index a1ad8aa8fe7..1eb95e4046e 100644
--- a/www/aws-demos/DESCR
+++ b/www/aws-demos/DESCR
@@ -1,3 +1,2 @@
-This package demonstrates the capability of the Ada Web Server. More than
-25 small programs built with AWS are installed for educational purposes.
-
+This package demonstrates the capability of the Ada Web Server. More than 25
+small programs built with AWS are installed for educational purposes.
diff --git a/www/heel/DESCR b/www/heel/DESCR
index 2f55b915d5b..598b200e8d7 100644
--- a/www/heel/DESCR
+++ b/www/heel/DESCR
@@ -1,11 +1,10 @@
-Heel is a small static web server for use when you need a quick web
-server for a directory. Once the server is running, heel will use
-launchy (http://copiousfreetime.rubyforge.org/launchy/) to open your
-browser at the URL of your document root. Heel is built using
-Rack(http://rack.rubyforge.org) and Thin
-(http://code.macournoyer.com/thin/)
+Heel is a small static web server for use when you need a quick web server for a
+directory. Once the server is running, heel will use launchy
+(http://copiousfreetime.rubyforge.org/launchy/) to open your browser at the URL
+of your document root. Heel is built using Rack(http://rack.rubyforge.org) and
+Thin (http://code.macournoyer.com/thin/)
- % heel
+% heel
>> Thin web server (v1.0.0 codename That's What She Said)
>> Threaded mode OFF
>> Maximum connections set to 1024
@@ -13,8 +12,7 @@ Rack(http://rack.rubyforge.org) and Thin
Launching your browser...
-Or run it in the background
-
+Or run it in the background:
% heel --daemonize Created /Users/jeremy/.heel
heel's PID (/Users/jeremy/.heel/heel.pid) and log file
@@ -24,9 +22,3 @@ at http://0.0.0.0:4331/
% heel --kill Sending TERM to process 3304
Done.
-
-Heel is a small static web server for use when you need a quick web
-server for a directory. Heel is built using Rack and Thin. Beyond
-just serving up webpages, heel uses an ERB template and famfamfam
-icons to create useful index pages. And to make things even easier it
-launches your browser for you so no cut and paste necessary.
diff --git a/www/kdewebdev4/DESCR b/www/kdewebdev4/DESCR
index fd8cbccf09f..16533ccc9a2 100644
--- a/www/kdewebdev4/DESCR
+++ b/www/kdewebdev4/DESCR
@@ -1,4 +1,5 @@
-The kdewebdev package is the web development package for the K Desktop Environment.
+The kdewebdev package is the web development package for the K Desktop
+Environment.
It contains Quanta Plus and other applications, which are useful for web
development. They are runtime dependencies of Quanta Plus, and it is
diff --git a/www/p5-HTTP-Response-Encoding/DESCR b/www/p5-HTTP-Response-Encoding/DESCR
index b43ca78eee5..700eabffd88 100644
--- a/www/p5-HTTP-Response-Encoding/DESCR
+++ b/www/p5-HTTP-Response-Encoding/DESCR
@@ -3,4 +3,3 @@ This module adds the following methods to HTTP::Response objects:
$res->charset
$res->encoder
$res->encoding
-
diff --git a/www/py-beautifulsoup4/DESCR b/www/py-beautifulsoup4/DESCR
index 998932a10d0..fa4a88bd402 100644
--- a/www/py-beautifulsoup4/DESCR
+++ b/www/py-beautifulsoup4/DESCR
@@ -1,25 +1,23 @@
-Beautiful Soup is a Python library designed for quick turnaround
-projects like screen-scraping. Three features make it powerful:
+Beautiful Soup is a Python library designed for quick turnaround projects like
+screen-scraping. Three features make it powerful:
- * Beautiful Soup provides a few simple methods and Pythonic idioms
- for navigating, searching, and modifying a parse tree: a toolkit
- for dissecting a document and extracting what you need. It doesn't
- take much code to write an application
- * Beautiful Soup automatically converts incoming documents to
- Unicode and outgoing documents to UTF-8. You don't have to think
- about encodings, unless the document doesn't specify an encoding
- and Beautiful Soup can't autodetect one. Then you just have to
- specify the original encoding.
- * Beautiful Soup sits on top of popular Python parsers like lxml
- and html5lib, allowing you to try out different parsing strategies
- or trade speed for flexibility.
+ * Beautiful Soup provides a few simple methods and Pythonic idioms for
+ navigating, searching, and modifying a parse tree: a toolkit for dissecting a
+ document and extracting what you need. It doesn't take much code to write an
+ application
+ * Beautiful Soup automatically converts incoming documents to Unicode and
+ outgoing documents to UTF-8. You don't have to think about encodings, unless
+ the document doesn't specify an encoding and Beautiful Soup can't autodetect
+ one. Then you just have to specify the original encoding.
+ * Beautiful Soup sits on top of popular Python parsers like lxml and html5lib,
+ allowing you to try out different parsing strategies or trade speed for
+ flexibility.
-Beautiful Soup parses anything you give it, and does the tree
-traversal stuff for you. You can tell it "Find all the links", or
-"Find all the links of class externalLink", or "Find all the links
-whose urls match "foo.com", or "Find the table heading that's got
-bold text, then give me that text."
+Beautiful Soup parses anything you give it, and does the tree traversal stuff
+for you. You can tell it "Find all the links", or "Find all the links of class
+externalLink", or "Find all the links whose urls match "foo.com", or "Find the
+table heading that's got bold text, then give me that text."
-Valuable data that was once locked up in poorly-designed websites
-is now within your reach. Projects that would have taken hours take
-only minutes with Beautiful Soup.
+Valuable data that was once locked up in poorly-designed websites is now within
+your reach. Projects that would have taken hours take only minutes with
+Beautiful Soup.
diff --git a/www/ruby-erubis/DESCR b/www/ruby-erubis/DESCR
index c93f797c01a..a5f9beb9b09 100644
--- a/www/ruby-erubis/DESCR
+++ b/www/ruby-erubis/DESCR
@@ -5,7 +5,8 @@ Erubis is an implementation of eRuby. It has the following features.
* Auto escaping support
* Auto trimming spaces around '<% %>'
* Embedded pattern changeable (default '<% %>')
-* Enable to handle Processing Instructions (PI) as embedded pattern (ex. '<?rb ... ?>')
+* Enable to handle Processing Instructions (PI) as embedded pattern
+ (ex. '<?rb ... ?>')
* Context object available and easy to combine eRuby template with YAML datafile
* Print statement available
* Easy to extend and customize in subclass
diff --git a/www/ruby-rack-rewrite/DESCR b/www/ruby-rack-rewrite/DESCR
index b9b77371ca3..ee8a0064914 100644
--- a/www/ruby-rack-rewrite/DESCR
+++ b/www/ruby-rack-rewrite/DESCR
@@ -1,4 +1,4 @@
# rack-rewrite
-A rack middleware for defining and applying rewrite rules. In many cases you
-can get away with rack-rewrite instead of writing Apache mod_rewrite rules.
+A rack middleware for defining and applying rewrite rules. In many cases you can
+get away with rack-rewrite instead of writing Apache mod_rewrite rules.