consistently use tag_article on the admin side
[bse.git] / Changes.txt
CommitLineData
1be64ebd
TC
1BSE 0.21 - unreleased
2========
3
bf7dd331
TC
4 - verbose output of generate.pl is now based on the template
5 admin/generate.tmpl
1be64ebd 6
bf7dd331 7 - add the referer tag to all dynamic pages
1be64ebd 8
b23cb063
TC
9 - added [undeletable articles] to bse.cfg as a supplement to
10 @NO_DELETE. @NO_DELETE is now deprecated and may be removed in a
11 future release of BSE.
12 https://rt4.develop-help.com/Ticket/Display.html?id=1209
1be64ebd 13
595e72db
TC
14 - iterator inlines can now be filtered (Adrian Oldham)
15
16 - added some more extension to content type mappings for video
17 formats (Adrian Oldham)
18
8ddd08f7
TC
19 - the shopadmin order list targets are now much more efficient - they
20 no longer load the entire order table, are paginated, and let the
21 data do the selection of matching records.
22
23 NOTE: this removes some backward compatibility - iterator filters
24 no longer work and a new tag, all_order_count can be used to fetch
25 order counts. Extra search parameters have been provided to filter
26 the results.
27
28 - added a new adminurl2 tag where the second parameter is a target.
29
3d99ca04
TC
30 - siteusers.pl now flashes all success messages, and success message
31 text is fetched from the messages table
32
54fada18
TC
33 - added is_released and is_expired methods to Article. This should
34 be visible to article tags in templates.
35
bf7dd331
TC
36Bug fixes:
37
38 - thumb.pl would return content types with doubled image/ prefixes,
39 eg. image/image/jpeg
e728024c 40
c710d90c
TC
41 - update BSE::AdminUsers, BSE::ChangePW, BSE::UI::AdminReport to use
42 more modern admin tags
0611c441 43 https://rt4.develop-help.com/Ticket/Display.html?id=1234 (partial)
c710d90c 44 (Adrian Oldham for BSE::ChangePW, BSE::UI::AdminReport)
0611c441 45
5b2aab45
TC
46 - with [site].secureadmin enabled, refreshes to the secure admin url
47 could cause a 500 error.
48
8fb3d3d4
TC
49 - check nomatch fields even for blank fields. Otherwise a field with
50 a LF or CR would not be caught by the dh_one_line validation rule.
51
a8a25cfd
TC
52 - saving a tag from the tag manager without changing the name or
53 deleting a tag that doesn't exist would result in a 500 error.
54 https://rt4.develop-help.com/Ticket/Display.html?id=1287
55
6e56cf75
TC
56 - setting an unfilled order's stage to "shipped" now sets whoFilled
57 and whenFilled for the order.
58 https://rt4.develop-help.com/Ticket/Display.html?id=1286
59
d9b0f5e1
TC
60 - an empty title (but no missing) when saving a user or group file no
61 longer defaults that to the file display name.
62 https://rt4.develop-help.com/Ticket/Display.html?id=1303
63
64 - validation errors are now correctly displayed for adding a user or
65 group file
66 https://rt4.develop-help.com/Ticket/Display.html?id=1302
67
68 - supplying an empty content type when saving a user or group file
69 now resets the content type to that derived from the file's display
70 name.
71 https://rt4.develop-help.com/Ticket/Display.html?id=1304
72
8ddd08f7
TC
73Templates:
74
75 - admin/order_list*.tmpl - see the order list re-work above.
76
f8d5dfae
TC
77 - you can now use <:- and -:> as tag delimiters to consume whitespace
78 on the left and right of the tag. This doesn't occur for wrap, but
79 should for other tags.
80
8ddd08f7
TC
81Internals:
82
83 - added a getCount() method to retrieve a count of matching records.
84
2897cd79 85BSE 0.20 - 22 Dec 2011
6abd8ce8
TC
86========
87
b27af108
TC
88Please read any NOTES below carefully.
89
6abd8ce8
TC
90 - store a truncated card number for credit card payments (both online
91 and email). Reinstate storage of the card holder name in ccName.
92 ccNumberHash is no longer populated.
93
94 - ifNeedDelivery (checkoutnew_base.tmpl) wasn't being reset on order
95 submission.
96
b27af108
TC
97 - the site_users table has been refactored into the bse_siteusers
98 table, removing the bill* fields and adding deliv* fields. Other
99 obsolete fields have also been removed.
100
101 NOTE: To preserve your registered users on upgrade, run the
102 provided schema/site_users_to_members.sql SQL through the mysql
103 tool. This will create entries in bse_siteusers corresponding to
104 those in your original site_users table. You MUST start with an
105 empty bse_siteusers table or the script will throw an error.
106
107 NOTE: Any configuration such as report definitions, query group
108 definitions should now refer to bse_siteusers instead of
109 site_users.
110
111 - Data::UUID 1.148 is now required
112
be262d15
TC
113 - remove target entry for the shop confirm action, which was
114 otherwise removed years ago. RT #1280.
115
fb10b11e
TC
116 - logon now starts a new session, preserving the cart. As a
117 side-effect this logs out the admin user, though this may
118 change. RT #1279.
119
120 - passing a new session id between the SSL and non-SSL versions of
121 the site is now validated. RT #1279.
122
f13d1b43
TC
123 NOTE: This requires that [site].secret be set to a value specific
124 to your site. Running:
125
126 openssl rand -base64 32
127
128 generates a suitable value.
129
fb10b11e
TC
130 - delete the session data for a site users session when they logoff.
131 As a side effect this will log out the admin user.
132
cd1c5bfa
TC
133 - allow dynamic content pages to display flashed messages with the
134 message tag. Note that not all actions flash a message.
135
6abd8ce8
TC
136Template updates:
137
b27af108
TC
138 - checkoutpay_base.tmpl - the name of the cardHolder payment field is
139 now ccName.
140
141 - admin/order_detail.tmpl - order ccPAN can be used to display the
142 truncated card number.
143
144 - user/options_billing_base.tmpl and its generated template have been
145 renamed with s/billing/delivery/ since it now contains delivery
146 details. The link to it from user/options(_base).tmpl has also
147 been updated.
148
149 - user/options_base.tmpl, user/register_base.tmpl,
150 admin/users/(add,edit,view).tmpl have been updated to match the new
151 site users schema.
152
fb10b11e
TC
153 - user/logon_base.tmpl, user/register_base.tmpl - updated the
154 "nothing is more permanent that a temporary solution" link text for
155 logon, register and recover password.
156
cd1c5bfa
TC
157 - shopitem.tmpl - display the flashed message, if any.
158
62e56298
TC
159 - removed the unused checkoutcard and checkoutconfirm templates
160
b27af108 161Internals:
6abd8ce8 162
b27af108
TC
163 - Squirrel::Table->make now looks for default_I<colname> when looking
164 for default values for a column.