1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add py-htmlkit, a python package that assists with autogenerating HTML.

PR:		19155
Submitted by:	Kelly Yancey <kbyanc@posi.net>
This commit is contained in:
Will Andrews 2000-06-09 22:01:58 +00:00
parent fe90a46320
commit bc238b49c0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29477
6 changed files with 136 additions and 0 deletions

View File

@ -193,6 +193,7 @@
SUBDIR += prcs
SUBDIR += pth
SUBDIR += pth-devel
SUBDIR += py-htmlkit
SUBDIR += py-kjbuckets
SUBDIR += py-kqueue
SUBDIR += py-mxDateTime

35
devel/py-htmlkit/Makefile Normal file
View File

@ -0,0 +1,35 @@
# Ports collection Makefile for: py-HtmlKit
# Date created: 06/08/2000
# Whom: kbyanc@posi.net
#
# $FreeBSD$
#
PORTNAME= HtmlKit
PORTVERSION= 1.0
CATEGORIES= devel python www
MASTER_SITES= http://www.dekorte.com/Software/Python/HtmlKit/Download/
PKGNAMEPREFIX= py-
DISTNAME= HtmlKit
EXTRACT_SUFX= .tar
MAINTAINER= kbyanc@posi.net
RUN_DEPENDS= python:${PORTSDIR}/lang/python
NO_BUILD= yes
do-install:
@${MKDIR} ${PREFIX}/lib/python1.5/site-packages
@${MKDIR} ${PREFIX}/lib/python1.5/site-packages/HtmlKit/
@for i in ${WRKSRC}/*.py; do \
${INSTALL_DATA} $$i ${PREFIX}/lib/python1.5/site-packages/HtmlKit; \
done
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/HtmlKit
@for i in ${WRKSRC}/Documentation/*; do \
${INSTALL_DATA} $$i ${PREFIX}/share/doc/HtmlKit; \
done
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (HtmlKit.tar) = c0ba9861d07a537fd833a21c05b0181b

View File

@ -0,0 +1 @@
Python package that assists in the dynamic generation of HTML content

View File

@ -0,0 +1,17 @@
From the web site:
HtmlKit is a free, open source Python package that assists in the
dynamic generation of HTML content. HtmlKit was inspired by HTMLgen
and uses it's basic design ideas:
objects for HTML primatives
overriding "__str__" to allow these objects behave as strings
but with a flexible and simplified rendering framework.
HtmlKit is compatible with HTMLgen and most projects can fairly easily
switch between or use both packages.
WWW: http://www.dekorte.com/Software/Python/HtmlKit/
-Kelly
kbyanc@posi.net

View File

@ -0,0 +1,81 @@
lib/python1.5/site-packages/HtmlKit/Attribute.py
lib/python1.5/site-packages/HtmlKit/BR.py
lib/python1.5/site-packages/HtmlKit/BaseObject.py
lib/python1.5/site-packages/HtmlKit/Body.py
lib/python1.5/site-packages/HtmlKit/Bold.py
lib/python1.5/site-packages/HtmlKit/Button.py
lib/python1.5/site-packages/HtmlKit/Center.py
lib/python1.5/site-packages/HtmlKit/CheckBox.py
lib/python1.5/site-packages/HtmlKit/Column.py
lib/python1.5/site-packages/HtmlKit/Comment.py
lib/python1.5/site-packages/HtmlKit/Container.py
lib/python1.5/site-packages/HtmlKit/Cookie.py
lib/python1.5/site-packages/HtmlKit/Font.py
lib/python1.5/site-packages/HtmlKit/Form.py
lib/python1.5/site-packages/HtmlKit/FormElement.py
lib/python1.5/site-packages/HtmlKit/FormTable.py
lib/python1.5/site-packages/HtmlKit/Group.py
lib/python1.5/site-packages/HtmlKit/Header.py
lib/python1.5/site-packages/HtmlKit/Image.py
lib/python1.5/site-packages/HtmlKit/ImagePage.py
lib/python1.5/site-packages/HtmlKit/Input.py
lib/python1.5/site-packages/HtmlKit/Italic.py
lib/python1.5/site-packages/HtmlKit/Link.py
lib/python1.5/site-packages/HtmlKit/Menu.py
lib/python1.5/site-packages/HtmlKit/Option.py
lib/python1.5/site-packages/HtmlKit/Page.py
lib/python1.5/site-packages/HtmlKit/PageGroup.py
lib/python1.5/site-packages/HtmlKit/Panel.py
lib/python1.5/site-packages/HtmlKit/RadioBox.py
lib/python1.5/site-packages/HtmlKit/Row.py
lib/python1.5/site-packages/HtmlKit/RowTable.py
lib/python1.5/site-packages/HtmlKit/Script.py
lib/python1.5/site-packages/HtmlKit/Select.py
lib/python1.5/site-packages/HtmlKit/Style.py
lib/python1.5/site-packages/HtmlKit/Table.py
lib/python1.5/site-packages/HtmlKit/TableHeader.py
lib/python1.5/site-packages/HtmlKit/Text.py
lib/python1.5/site-packages/HtmlKit/TextArea.py
lib/python1.5/site-packages/HtmlKit/Title.py
lib/python1.5/site-packages/HtmlKit/Url.py
lib/python1.5/site-packages/HtmlKit/__init__.py
@dirrm lib/python1.5/site-packages/HtmlKit/
share/doc/HtmlKit/Attribute.html
share/doc/HtmlKit/BR.html
share/doc/HtmlKit/BaseObject.html
share/doc/HtmlKit/Body.html
share/doc/HtmlKit/Bold.html
share/doc/HtmlKit/Button.html
share/doc/HtmlKit/Center.html
share/doc/HtmlKit/CheckBox.html
share/doc/HtmlKit/Column.html
share/doc/HtmlKit/Comment.html
share/doc/HtmlKit/Container.html
share/doc/HtmlKit/Font.html
share/doc/HtmlKit/Form.html
share/doc/HtmlKit/FormElement.html
share/doc/HtmlKit/FormTable.html
share/doc/HtmlKit/Group.html
share/doc/HtmlKit/Header.html
share/doc/HtmlKit/Image.html
share/doc/HtmlKit/Input.html
share/doc/HtmlKit/Italic.html
share/doc/HtmlKit/Link.html
share/doc/HtmlKit/Menu.html
share/doc/HtmlKit/Option.html
share/doc/HtmlKit/Page.html
share/doc/HtmlKit/Panel.html
share/doc/HtmlKit/RadioBox.html
share/doc/HtmlKit/Row.html
share/doc/HtmlKit/RowTable.html
share/doc/HtmlKit/Select.html
share/doc/HtmlKit/Style.html
share/doc/HtmlKit/Table.html
share/doc/HtmlKit/TableHeader.html
share/doc/HtmlKit/Text.html
share/doc/HtmlKit/TextArea.html
share/doc/HtmlKit/Title.html
share/doc/HtmlKit/Url.html
share/doc/HtmlKit/__init__.html
share/doc/HtmlKit/index.html
@dirrm share/doc/HtmlKit