blob: 2bfabe8d8de78d52de20f79570746d12470241eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# New ports collection makefile for: drupal6-webform
# Date created: 2 June 2009
# Whom: Nick Hilliard <nick@foobar.org>
#
# $FreeBSD$
#
PORTNAME= webform
DISTVERSION= 6.x-3.17
CATEGORIES= www
MAINTAINER= nick@foobar.org
COMMENT= Drupal module to allow easy creation of forms
USE_DRUPAL= yes
DRUPAL6_MODULE= yes
MODULE_FILES= components/date.inc \
components/email.inc \
components/fieldset.inc \
components/file.inc \
components/grid.inc \
components/hidden.inc \
components/markup.inc \
components/number.inc \
components/pagebreak.inc \
components/select.inc \
components/textarea.inc \
components/textfield.inc \
components/time.inc \
css/webform-admin.css \
css/webform.css \
images/calendar.png \
includes/webform.admin.inc \
includes/webform.components.inc \
includes/webform.emails.inc \
includes/webform.export.inc \
includes/webform.options.inc \
includes/webform.pages.inc \
includes/webform.report.inc \
includes/webform.submissions.inc \
js/select-admin.js \
js/webform-admin.js \
js/webform.js \
templates/webform-calendar.tpl.php \
templates/webform-confirmation.tpl.php \
templates/webform-form.tpl.php \
templates/webform-mail.tpl.php \
templates/webform-results-submissions.tpl.php \
templates/webform-submission-information.tpl.php \
templates/webform-submission-navigation.tpl.php \
templates/webform-submission-page.tpl.php \
templates/webform-submission.tpl.php \
tests/components.test \
tests/permissions.test \
tests/submission.test \
tests/webform.test \
views/webform.views.inc \
views/webform_handler_field_form_body.inc \
views/webform_handler_field_is_draft.inc \
views/webform_handler_field_node_link_edit.inc \
views/webform_handler_field_node_link_results.inc \
views/webform_handler_field_submission_count.inc \
views/webform_handler_field_submission_link.inc \
views/webform_handler_filter_is_draft.inc \
webform.api.php \
webform.info \
webform.install \
webform.module
MODULE_DIRS= components \
css \
images \
includes \
js \
templates \
tests \
views
DOC_FILES= CHANGELOG.txt LICENSE.txt README.txt THEMING.txt
.include <bsd.port.mk>
|