- Added new registration search and management interface to the EMS.
- Added badge printing support to the EMS.
This commit is contained in:
parent
33a841ba32
commit
66e4b82f8a
8 changed files with 233 additions and 65 deletions
|
|
@ -16,6 +16,10 @@
|
|||
- rfe: Admin bar doesn't resize with the browser
|
||||
- fix: Left Admin Bar overlap problem
|
||||
- Color coded most buttons, green for proceed and red for go back.
|
||||
- Encrypt page now forces SSL and can check for the SSLPROXY pass through
|
||||
variable in addition to the HTTPS variable.
|
||||
- Encrypt page no longer shows up unless SSL mode is enabled in the config
|
||||
file.
|
||||
- fix: A bug where it was possible to delete a system page if it were made
|
||||
the child of a non-system page that you had edit rights to.
|
||||
- api: Added a unified contraints system for the file and image assets.
|
||||
|
|
@ -29,7 +33,6 @@
|
|||
- Added keyword tagging to Wiki.
|
||||
- Upgraded TinyMCE to 2.1.1.1.
|
||||
- Safari 3 and above now fully supported in admin interface.
|
||||
- improved performance of EMS
|
||||
- upgraded YUI to 2.2.2 and YUI-ext to 1.0.1a
|
||||
- Improved error handling in Spectre when WebGUI hands it bad data.
|
||||
- Fixed a problem where Spectre dropped cron jobs that were erroring
|
||||
|
|
@ -57,11 +60,14 @@
|
|||
description from the RSS feed.
|
||||
- Added an index on the userId column of the groupings table to speed up
|
||||
queries for groupIds by userId (instead of the usual userIds by groupId)
|
||||
- fix: bad javascript string escaping in EMS
|
||||
- fix: Unable to upload images or edit listings for Matrix
|
||||
- fix: bad javascript string escaping in EMS
|
||||
- improved performance of EMS
|
||||
- Added import/export mechanism for EMS events.
|
||||
- Removed the long depricated Memcached cache module.
|
||||
- fix: Show edit links on EMS search view without being in Admin group
|
||||
- Added new registration search and management interface to the EMS.
|
||||
- Added badge printing support to the EMS.
|
||||
- Removed the long depricated Memcached cache module.
|
||||
- fix: Fixed a typo in the Article with attachments template (perlDreamer
|
||||
Consulting, LLC)
|
||||
- fix: Order of content position loops in Page Layout (Yung Han Khoe, United Knowledge)
|
||||
|
|
|
|||
15
docs/upgrades/templates-7.4.0/emsbadgeprint.tmpl
Normal file
15
docs/upgrades/templates-7.4.0/emsbadgeprint.tmpl
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#emsbadgeprintout000000
|
||||
#url: ems-badge-print-out-template
|
||||
#title: Badge Print
|
||||
#namespace:emsbadgeprint
|
||||
#create
|
||||
|
||||
<html><head> </head><body style="background-color: white;">
|
||||
<div style="color: black; background-color: white; width: max-width: 700px; font-family: sans-serif;">
|
||||
<div style="font-size: 33px; margin-top: 101px; text-align: center; font-weight: bold;"><tmpl_var firstName> <tmpl_var lastName></div>
|
||||
<div style="font-size: 21px; margin-top: 34px; text-align: center;"><tmpl_var city></div>
|
||||
<div style="font-size: 21px; margin-top: 12px; text-align: center;"><tmpl_var state></div>
|
||||
<div style="font-size: 10px; margin-top: 6px; text-align: left;"><tmpl_var badgeId></div>
|
||||
<div style="font-size: 21px; height: 26px; background-color: black; color: white; font-variant: small-caps; text-align: center;"><tmpl_var title></div>
|
||||
</div>
|
||||
</body></html>
|
||||
16
docs/upgrades/templates-7.4.0/emsticketprint.tmpl
Normal file
16
docs/upgrades/templates-7.4.0/emsticketprint.tmpl
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#emsticketprintout00000
|
||||
#url: ems-ticket-print-out-template
|
||||
#title: Ticket Print
|
||||
#namespace:emsticketprint
|
||||
#create
|
||||
<html><head> </head><body style="background-color: white;">
|
||||
<div style="color: black; background-color: white; max-width: 700px; font-family: sans-serif;">
|
||||
<div style="font-size: 16px; padding-left: 5px; background-color: black; color: white"><tmpl_var sku>: <tmpl_var title></div>
|
||||
<div style="font-size: 13px;"><tmpl_var location></div>
|
||||
<div style="font-size: 13px; margin-top: 14px; text-align: right;">^D(,<tmpl_var startDate>); - ^D(,<tmpl_var endDate>);</div>
|
||||
<div style="font-size: 16px; font-weight: bold; margin-top: 21px;"><tmpl_var lastName>, <tmpl_var firstName></div>
|
||||
<div style="font-size: 12px; margin-top: 6px; text-align: right; float: right;"><tmpl_var price></div>
|
||||
<div style="font-size: 12px; margin-top: 6px;"><tmpl_var badgeId></div>
|
||||
<div style="font-size: 17px; border: 1px solid black; text-align: center;"><tmpl_var emsTitle></div>
|
||||
</div>
|
||||
</body></html>
|
||||
|
|
@ -40,9 +40,18 @@ addWikiAttachments($session);
|
|||
addAdminConsoleGroupSettings($session);
|
||||
updateCommerce($session);
|
||||
updateProfileDateFormats($session);
|
||||
addEmsBadgePrinting($session);
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
#-------------------------------------------------
|
||||
sub addEmsBadgePrinting {
|
||||
my $session = shift;
|
||||
print "\tAdding badge printing support to EMS.\n" unless $quiet;
|
||||
$session->db->write("alter table EventManagementSystem add column badgePrinterTemplateId varchar(22) binary not null default 'emsbadgeprintout000000'");
|
||||
$session->db->write("alter table EventManagementSystem add column ticketPrinterTemplateId varchar(22) binary not null default 'emsticketprintout00000'");
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
# Add the default admin console group settings
|
||||
sub addAdminConsoleGroupSettings {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue