-
Notifications
You must be signed in to change notification settings - Fork 8
/
metatag.info
107 lines (80 loc) · 3.08 KB
/
metatag.info
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name = Metatag
description = "Adds support and an API to implement meta tags."
package = SEO
core = 7.x
; This requires Drupal 7.40 because of the project:module dependency structure.
dependencies[] = drupal:system (>= 7.40)
; CTools is required.
dependencies[] = ctools:ctools
; Requires Token; v7.x-1.6 is highly recommended due to bugs with certain tags
; when using older versions.
dependencies[] = token:token
configure = admin/config/search/metatags
; The main classes.
files[] = metatag.inc
; Defines the basic meta tags.
files[] = metatag.migrate.inc
; Search API integration.
files[] = metatag.search_api.inc
; Tests.
; Devel is a dependency for all tests as it's used to automatically trim meta
; tags to a certain length.
test_dependencies[] = devel:devel
files[] = tests/MetatagTestBase.test
; Basic configuration handling.
files[] = tests/MetatagCoreUnitTest.test
; Basic tag testing.
files[] = tests/MetatagTagsTestBase.test
files[] = tests/MetatagTagsTest.test
; Core entities.
files[] = tests/MetatagCoreNodeTest.test
files[] = tests/MetatagCoreTermTest.test
files[] = tests/MetatagCoreUserTest.test
; Handling of core's default meta tags.
files[] = tests/MetatagCoreTagRemovalTest.test
; The custom Bulk Revert functionality.
files[] = tests/MetatagBulkRevertTest.test
; String handling.
files[] = tests/MetatagCoreStringHandlingTest.test
files[] = tests/MetatagCoreStringHandlingWithI18nTest.test
; XSS testing.
files[] = tests/MetatagCoreXSSTest.test
; Output caching.
files[] = tests/MetatagCoreOutputCachingTest.test
; Images need special attention.
test_dependencies[] = imagecache_token:imagecache_token
files[] = tests/MetatagCoreImageTest.test
; Internationalization & translation.
test_dependencies[] = entity_translation:entity_translation
test_dependencies[] = i18n:i18n
files[] = tests/MetatagCoreLocaleTest.test
files[] = tests/MetatagCoreNodeWithI18nTest.test
files[] = tests/MetatagCoreTermWithI18nTest.test
files[] = tests/MetatagCoreWithI18nOutputTest.test
files[] = tests/MetatagCoreWithI18nDisabledTest.test
files[] = tests/MetatagCoreWithI18nConfigTest.test
; Integration with Me.
test_dependencies[] = me:me
files[] = tests/MetatagCoreWithMeTest.test
; Integration with Media.
test_dependencies[] = file_entity:file_entity
test_dependencies[] = media:media (>= 2.0, < 3.0)
files[] = tests/MetatagCoreWithMediaTest.test
; Integration with Panels.
test_dependencies[] = panels:panels
files[] = tests/MetatagCoreWithPanelsTest.test
; Integration with Profile2.
test_dependencies[] = profile2:profile2
files[] = tests/MetatagCoreWithProfile2Test.test
; Integration with Search API.
test_dependencies[] = entity:entity
test_dependencies[] = search_api:search_api
files[] = tests/MetatagCoreWithSearchApiTest.test
; Integration with Views.
test_dependencies[] = views:views
files[] = tests/MetatagCoreWithViewsTest.test
; Integration with Workbench Moderation.
test_dependencies[] = workbench_moderation:workbench_moderation
files[] = tests/MetatagCoreWithWorkbenchModerationTest.test
; Test dependencies used by submodules, left here to make it easier to find.
test_dependencies[] = context:context