File: michaeld.sql

package info (click to toggle)
opendb 0.81p18-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,716 kB
  • ctags: 6,787
  • sloc: php: 50,213; sql: 3,098; sh: 272; makefile: 54; xml: 48
file content (124 lines) | stat: -rw-r--r-- 6,644 bytes parent folder | download
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#
# Michaeld site plugin definition
#
# Add support for MichaelDVD.com.au site plugin to DVD
#
# Author: Andrew Donkin <ard@waikato.ac.nz>
#

#
# Cleanup
#
DELETE FROM s_site_plugin WHERE site_type = 'michaeld';
DELETE FROM s_site_plugin_conf WHERE site_type = 'michaeld';
DELETE FROM s_site_plugin_input_field WHERE site_type = 'michaeld';
DELETE FROM s_site_plugin_link WHERE site_type = 'michaeld';
DELETE FROM s_site_plugin_s_attribute_type_map WHERE site_type = 'michaeld';
DELETE FROM s_site_plugin_s_attribute_type_lookup_map WHERE site_type = 'michaeld';

INSERT INTO s_site_plugin (site_type, classname, order_no, title, image, description, external_url, items_per_page, more_info_url)
VALUES('michaeld', 'michaeld', 4, 'MichaelD', 'michaeld.png', 'MichaelDVD is the best source of region 2 and 4 DVD information.', 'http://www.michaeldvd.com.au', 25, 'http://www.michaeldvd.com.au/Discs/Disc.asp?ID={michaeldid}');

#
# Input Fields
#	
INSERT INTO s_site_plugin_input_field (site_type, field, order_no, description, prompt, field_type, default_value, refresh_mask)
VALUES('michaeld', 'title', 1, '', 'Title Search', 'text', '', '{title}');

INSERT INTO s_site_plugin_input_field (site_type, field, order_no, description, prompt, field_type, default_value, refresh_mask)
VALUES('michaeld', 'michaeldid', 2, '', 'MichaelDVD ID', 'text', '', '{michaeldid}');

#
# Links
#
INSERT INTO s_site_plugin_link(site_type, s_item_type_group, s_item_type, order_no, description, url, title_url)
VALUES('michaeld', '*', '*', 1, 'More Info', 'http://www.michaeldvd.com.au/Discs/Disc.asp?ID={michaeldid}', 'http://www.michaeldvd.com.au/Search/TitleSearch.asp?title={title}');

#
# site variable to s_attribute_type mapping
#
INSERT INTO s_site_plugin_s_attribute_type_map(site_type, variable, s_item_type_group, s_item_type, s_attribute_type)
VALUES ('michaeld', 'title', '*', '*', 'ALT_TITLE');

INSERT INTO s_site_plugin_s_attribute_type_map(site_type, variable, s_item_type_group, s_item_type, s_attribute_type)
VALUES ('michaeld', 'title', '*', '*', 'S_TITLE');

INSERT INTO s_site_plugin_s_attribute_type_map(site_type, variable, s_item_type_group, s_item_type, s_attribute_type)
VALUES ('michaeld', 'blurb', 'VIDEO', '*', 'MOVIE_PLOT');

INSERT INTO s_site_plugin_s_attribute_type_map(site_type, variable, s_item_type_group, s_item_type, s_attribute_type)
VALUES ('michaeld', 'genre', 'VIDEO', '*', 'MOVIEGENRE');

#
# site variable to s_attribute_type_lookup mapping
#
# MichaelD has over 50 categories; we have 20.  These are the ones OpenDb
# is missing (May 2002).
# The following michaeld genre mappings are not defined.
# 'caper', 'childrens','circus','classical','coming-of-age','dance','family','game','imax','mob','new age',
# 'olympics','post apocalyptic','satire','screensaver','sports','surfing','unknown','vampire','various','wrestling'
INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'anime', 'Animation');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'black comedy', 'Comedy');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'bond', 'Action');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'bond', 'Adventure');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'claymation', 'Animation');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'comedy western', 'Comedy');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'comedy western', 'Western');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'demo/test', 'Other');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'disaster', 'Adventure');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'karaoke', 'Other');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'martial arts', 'Action');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'opera', 'Music');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'romantic comedy', 'Romance');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'romantic comedy', 'Comedy');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'science fiction', 'ScienceFiction');

INSERT INTO s_site_plugin_s_attribute_type_lookup_map(site_type, s_attribute_type, value, lookup_attribute_val)
VALUES('michaeld', 'MOVIEGENRE', 'star trek', 'ScienceFiction');

####################################################################################################
# Item Type / Attribute Type relationships
####################################################################################################

#
# The attributes.
#
INSERT INTO s_attribute_type (s_attribute_type, description, prompt,input_type, display_type, s_field_type, site_type) 
VALUES ( 'MICHAELDID', 'MichaelD ID','MichaelD ID', 'hidden', 'hidden', NULL, 'michaeld');

# Best Region
INSERT INTO s_attribute_type (s_attribute_type, description, prompt,input_type, display_type, s_field_type, site_type) 
VALUES ( 'MIKER4R1','R4 vs. R1 comparsion', 'Best region', 'textarea(50,3)', 'display(%value%)', NULL, NULL);

# Link to DVD
INSERT INTO s_item_attribute_type (s_item_type, s_attribute_type, order_no,prompt, compulsory_ind) VALUES ( 'DVD', 'MICHAELDID', '0', NULL, NULL);
INSERT INTO s_item_attribute_type (s_item_type, s_attribute_type, order_no, prompt, compulsory_ind) VALUES ( 'DVD', 'MIKER4R1', '140',NULL, NULL);